:root {
  --dd-navy: #071A2D;
  --dd-orange: #F05A16;
  --dd-text: #2B2F33;
  --dd-muted: #6B7280;
  --dd-light: #F4F6F8;
  --dd-border: #D8DEE5;
  --dd-white: #FFFFFF;
  --dd-whatsapp: #25D366;
  --dd-radius: 14px;
  --dd-shadow: 0 14px 34px rgba(7, 26, 45, 0.12);
}

body {
  color: var(--dd-text);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--dd-navy);
  font-weight: 800;
  line-height: 1.15;
}

a { color: var(--dd-orange); }
a:hover { color: var(--dd-navy); }

.site-content, .entry-content { margin-top: 0; }
.inside-article { padding: 0 !important; }
.entry-header { display: none; }

/* HEADER */
.dd-site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #FFFFFF;
  border-bottom: 1px solid #D8DEE5;
  box-shadow: 0 4px 18px rgba(7, 26, 45, 0.04);
}

.dd-header-container {
  width: min(1180px, 100%);
  margin: 0 auto;
  min-height: 82px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.dd-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.dd-logo img {
  width: 210px;
  max-width: 100%;
  height: auto;
  display: block;
}

.dd-main-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dd-main-nav a {
  color: #071A2D;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dd-main-nav a:hover,
.dd-main-nav .current-menu-item > a {
  color: #F05A16;
}

.dd-main-nav .menu-item-has-children {
  position: relative;
}

.dd-main-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #FFFFFF;
  border: 1px solid #D8DEE5;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(7, 26, 45, 0.14);
  padding: 12px !important;
  display: none !important;
  flex-direction: column;
  gap: 4px !important;
  z-index: 1000;
}

.dd-main-nav .menu-item-has-children:hover .sub-menu {
  display: flex !important;
}

.dd-main-nav .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  white-space: nowrap;
}

.dd-main-nav .sub-menu a:hover {
  background: #F4F6F8;
}

.dd-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.dd-header-phone {
  color: #071A2D;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
}

.dd-header-phone:hover { color: #F05A16; }

.dd-header-cta {
  background: #F05A16;
  color: #FFFFFF;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dd-header-cta:hover {
  background: #071A2D;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.dd-mobile-actions, .dd-mobile-menu { display: none; }

/* GLOBAL SECTIONS */
.dd-section { padding: 90px 20px; }
.dd-section-light { background: var(--dd-light); }
.dd-section-dark { background: var(--dd-navy); color: var(--dd-white); }
.dd-section-dark h2, .dd-section-dark h3, .dd-section-dark p, .dd-section-dark li { color: var(--dd-white); }

.dd-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.dd-eyebrow {
  color: var(--dd-orange);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.dd-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.dd-section-title {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 18px;
}

.dd-subtitle {
  color: var(--dd-muted);
  max-width: 760px;
  font-size: 18px;
  margin-bottom: 34px;
}

.dd-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.dd-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dd-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.dd-card {
  background: var(--dd-white);
  border: 1px solid var(--dd-border);
  border-radius: var(--dd-radius);
  padding: 28px;
  box-shadow: 0 8px 20px rgba(7, 26, 45, 0.06);
  transition: all 0.2s ease;
}

.dd-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--dd-shadow);
}

.dd-card h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

.dd-card p {
  color: var(--dd-muted);
  margin-bottom: 0;
}

.dd-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.dd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 800;
  font-family: 'Roboto', Arial, sans-serif;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dd-btn-primary { background: var(--dd-orange); color: var(--dd-white); }
.dd-btn-primary:hover { background: var(--dd-navy); color: var(--dd-white); transform: translateY(-1px); }
.dd-btn-secondary { background: var(--dd-navy); color: var(--dd-white); }
.dd-btn-secondary:hover { background: var(--dd-orange); color: var(--dd-white); }
.dd-btn-whatsapp { background: var(--dd-whatsapp); color: var(--dd-white); }
.dd-btn-whatsapp:hover { background: #1ebe5d; color: var(--dd-white); }

.dd-image {
  border-radius: 22px;
  box-shadow: var(--dd-shadow);
  overflow: hidden;
  background: #FFFFFF;
}

.dd-image img {
  width: 100%;
  height: auto;
  display: block;
}

.dd-hero-placeholder,
.dd-service-placeholder {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff 0%, #e9eef4 100%);
  color: #071A2D;
  font-weight: 800;
  text-align: center;
  padding: 30px;
}

.dd-list {
  padding-left: 0;
  list-style: none;
  margin: 24px 0;
}

.dd-list li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.dd-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--dd-orange);
  font-weight: 800;
}

.dd-process-step { counter-increment: step; position: relative; }
.dd-process-step::before {
  content: counter(step);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dd-orange);
  color: var(--dd-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
}
.dd-process-grid { counter-reset: step; }

/* FORM PLACEHOLDER */
.dd-form-placeholder {
  border: 2px dashed var(--dd-border);
  border-radius: 12px;
  padding: 26px;
  background: #fff;
  color: var(--dd-muted);
}

/* FOOTER */
.dd-site-footer {
  background: #071A2D;
  color: #FFFFFF;
  padding-top: 72px;
}

.dd-footer-container {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 20px 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
  gap: 42px;
}

.dd-footer-logo { display: inline-flex; margin-bottom: 20px; }
.dd-footer-logo img { width: 210px; max-width: 100%; height: auto; display: block; background: #fff; border-radius: 10px; padding: 6px; }

.dd-footer-brand p, .dd-footer-col p, .dd-footer-bottom p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.dd-footer-col h3 {
  color: #FFFFFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 18px;
}

.dd-footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.dd-footer-col a, .dd-footer-contact a { color: rgba(255, 255, 255, 0.78); text-decoration: none; transition: color 0.2s ease; }
.dd-footer-col a:hover, .dd-footer-contact a:hover { color: #F05A16; }

.dd-footer-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.dd-footer-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 18px; border-radius: 8px; color: #FFFFFF !important; text-decoration: none; font-weight: 800; }
.dd-footer-btn-orange { background: #F05A16; }
.dd-footer-btn-orange:hover { background: #FFFFFF; color: #071A2D !important; }
.dd-footer-btn-whatsapp { background: #25D366; }
.dd-footer-btn-whatsapp:hover { background: #1ebe5d; }

.dd-footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.14); padding: 18px 20px; }
.dd-footer-bottom-inner { width: min(1180px, 100%); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.dd-footer-bottom p { margin: 0; font-size: 14px; }

/* MOBILE STICKY CTA */
.dd-mobile-sticky-cta { display: none; }

@media (max-width: 1024px) {
  .dd-main-nav, .dd-header-actions { display: none; }
  .dd-header-container { min-height: 72px; }
  .dd-logo img { width: 165px; }
  .dd-mobile-actions { display: flex; align-items: center; gap: 10px; }
  .dd-mobile-icon, .dd-menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #071A2D;
    color: #FFFFFF;
    border: none;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
  }
  .dd-mobile-whatsapp { background: #25D366; }
  .dd-menu-toggle { cursor: pointer; background: #F05A16; }
  .dd-mobile-menu {
    background: #FFFFFF;
    border-top: 1px solid #D8DEE5;
    padding: 14px 20px 22px;
  }
  .dd-mobile-menu.is-open { display: grid; gap: 8px; }
  .dd-mobile-menu a { color: #071A2D; font-weight: 800; text-decoration: none; padding: 12px 8px; border-bottom: 1px solid #F4F6F8; }
  .dd-mobile-menu a:hover { color: #F05A16; }
  .dd-mobile-menu-cta { background: #F05A16; color: #FFFFFF !important; text-align: center; border-radius: 8px; margin-top: 10px; border-bottom: none !important; }
}

@media (max-width: 980px) {
  .dd-footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .dd-grid-2, .dd-grid-3, .dd-grid-4 { grid-template-columns: 1fr 1fr; }
  .dd-section { padding: 70px 18px; }
}

@media (max-width: 768px) {
  body { padding-bottom: 64px; }
  .dd-mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #071A2D;
    box-shadow: 0 -8px 24px rgba(7, 26, 45, 0.18);
  }
  .dd-mobile-sticky-cta a {
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
    padding: 15px 8px;
    font-weight: 800;
    font-size: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }
  .dd-mobile-sticky-cta a:last-child { border-right: none; }
  .dd-sticky-whatsapp { background: #25D366; }
  .dd-sticky-offer { background: #F05A16; }
}

@media (max-width: 640px) {
  .dd-grid-2, .dd-grid-3, .dd-grid-4 { grid-template-columns: 1fr; }
  .dd-section { padding: 56px 16px; }
  .dd-btn-row { flex-direction: column; }
  .dd-btn { width: 100%; }
  .dd-site-footer { padding-top: 54px; }
  .dd-footer-container { grid-template-columns: 1fr; gap: 32px; }
  .dd-footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .dd-footer-buttons { flex-direction: column; }
  .dd-footer-btn { width: 100%; }
}


.dd-footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.dd-footer-credit a {
  color: #FFFFFF;
  font-weight: 800;
  text-decoration: none;
}

.dd-footer-credit a:hover {
  color: #F05A16;
}

.dd-heart {
  display: inline-block;
  color: #ff5a6e;
  transform-origin: center;
  animation: ddPulseHeart 1.4s ease-in-out infinite;
}

@keyframes ddPulseHeart {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.18); }
  30% { transform: scale(0.96); }
  45% { transform: scale(1.12); }
  60% { transform: scale(1); }
}

/* ==========================================================
   DoruDesign — Homepage Hero v2 + meniu premium
   Actualizare: primul container Acasă + tipografie meniu
   Imagine fundal: Media Library /wp-content/uploads/2026/05/home_1.jpg
   ========================================================== */

.dd-home-hero-v2 {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('/wp-content/uploads/2026/05/home_1.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.dd-home-hero-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 255, 255, 0.18);
}

.dd-home-hero-v2-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(7, 26, 45, 0.50) 0%,
    rgba(7, 26, 45, 0.42) 45%,
    rgba(7, 26, 45, 0.34) 100%
  );
}

.dd-home-hero-v2-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 100px 20px 96px;
  text-align: center;
}

.dd-home-hero-v2-content h1 {
  max-width: 980px;
  margin: 0 auto 22px;
  color: #FFFFFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
}

.dd-home-hero-v2-content p {
  max-width: 760px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.24);
}

.dd-home-hero-v2-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.dd-hero-v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: all 0.22s ease;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.dd-hero-v2-btn-dark {
  background: #071A2D;
  color: #FFFFFF;
}

.dd-hero-v2-btn-dark:hover {
  background: #F05A16;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.dd-hero-v2-btn-whatsapp {
  background: #12C85A;
  color: #FFFFFF;
}

.dd-hero-v2-btn-whatsapp::before {
  content: '●';
  display: inline-block;
  margin-right: 9px;
  font-size: 10px;
  color: #FFFFFF;
}

.dd-hero-v2-btn-whatsapp:hover {
  background: #0FAE4E;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Header premium — meniu mai clar, mai fin, mai puțin bold */
.dd-main-nav ul,
.dd-primary-menu {
  gap: 18px;
}

.dd-main-nav a,
.dd-primary-menu a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500 !important;
  letter-spacing: 0.005em;
  color: #071A2D;
  text-decoration: none;
  line-height: 1.2;
}

.dd-main-nav a:hover,
.dd-primary-menu a:hover {
  color: #F05A16;
}

.dd-main-nav .current-menu-item > a,
.dd-main-nav .current_page_item > a,
.dd-primary-menu > li.current-menu-item > a,
.dd-primary-menu > li.current_page_item > a {
  background: #071A2D;
  color: #FFFFFF !important;
  font-weight: 600 !important;
  border-radius: 7px;
  padding: 10px 12px;
}

.dd-main-nav .sub-menu a,
.dd-primary-menu .sub-menu a {
  font-size: 14px;
  font-weight: 500 !important;
  padding: 10px 12px;
}

.dd-main-nav .sub-menu .current-menu-item > a,
.dd-primary-menu .sub-menu .current-menu-item > a {
  background: #F4F6F8;
  color: #071A2D !important;
}

.dd-header-phone {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.dd-header-cta {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.dd-logo img {
  width: 190px;
}

@media (max-width: 1120px) {
  .dd-main-nav ul,
  .dd-primary-menu {
    gap: 13px;
  }

  .dd-main-nav a,
  .dd-primary-menu a {
    font-size: 13.5px;
  }
}

@media (max-width: 900px) {
  .dd-home-hero-v2 {
    min-height: 560px;
  }

  .dd-home-hero-v2-content {
    padding: 96px 18px 88px;
  }
}

@media (max-width: 640px) {
  .dd-home-hero-v2 {
    min-height: 540px;
    background-position: center center;
  }

  .dd-home-hero-v2-overlay {
    background: rgba(7, 26, 45, 0.64);
  }

  .dd-home-hero-v2-content {
    padding: 82px 16px 76px;
  }

  .dd-home-hero-v2-content h1 {
    font-size: 34px;
  }

  .dd-home-hero-v2-content p {
    font-size: 16px;
  }

  .dd-home-hero-v2-actions {
    flex-direction: column;
  }

  .dd-hero-v2-btn {
    width: 100%;
  }
}

