/* ═══════════════════════════════════════════════════════
   THE ELEMENTALS LAUNDRY – THEME STYLESHEET v2.0
   ═══════════════════════════════════════════════════════ */

:root {
  --dd-primary:      #1a56db;
  --dd-primary-dark: #1340a8;
  --dd-accent:       #f59e0b;
  --dd-accent-light: #fef3c7;
  --dd-dark:         #111827;
  --dd-dark-2:       #1f2937;
  --dd-text:         #374151;
  --dd-text-light:   #6b7280;
  --dd-white:        #ffffff;
  --dd-bg-light:     #f9fafb;
  --dd-bg-gray:      #f3f4f6;
  --dd-border:       #e5e7eb;
  --dd-shadow:       0 4px 24px rgba(26,86,219,.10);
  --dd-shadow-lg:    0 16px 48px rgba(26,86,219,.18);
  --dd-radius:       12px;
  --dd-radius-lg:    20px;
  --dd-font-sans:    'Nunito', system-ui, sans-serif;
  --dd-font-heading: 'Poppins', system-ui, sans-serif;
  --header-h:        72px;
  --header-topbar-h: 56px;
  --header-bottombar-h: 48px;
  --header-total-h:  104px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--dd-font-sans);
  color: var(--dd-text);
  background: var(--dd-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--dd-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--dd-primary-dark); }
ul, ol { list-style: none; }

/* ─── Layout ─────────────────────────────────────────────── */
.dd-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.dd-section { padding: 80px 0; }
.dd-section--gray { background: var(--dd-bg-light); }
.dd-section--dark { background: var(--dd-dark); color: var(--dd-white); }
.dd-site-wrapper { min-height: calc(100vh - var(--header-total-h)); }

/* ─── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--dd-font-heading); font-weight: 800; line-height: 1.2; color: var(--dd-dark); }
.dd-section--dark h1,.dd-section--dark h2,.dd-section--dark h3 { color: var(--dd-white); }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
.dd-label {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--dd-primary); margin-bottom: 12px;
}
.dd-section-title { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 16px; }
.dd-section-subtitle { font-size: 1.05rem; color: var(--dd-text-light); max-width: 640px; }
.dd-accent-text { color: var(--dd-accent); }
.dd-primary-text { color: var(--dd-primary); }
.dd-underline {
  position: relative; display: inline;
}
.dd-underline::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 4px; background: var(--dd-accent); border-radius: 2px;
}

/* ─── Buttons ────────────────────────────────────────────── */
.dd-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; font-family: var(--dd-font-heading);
  font-size: .9rem; font-weight: 700; border-radius: 50px;
  border: 2px solid transparent; cursor: pointer;
  transition: all .22s ease; text-decoration: none; white-space: nowrap;
}
.dd-btn--primary { background: var(--dd-primary); color: #fff; border-color: var(--dd-primary); }
.dd-btn--primary:hover { background: var(--dd-primary-dark); border-color: var(--dd-primary-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--dd-shadow); }
.dd-btn--outline { background: transparent; color: var(--dd-primary); border-color: var(--dd-primary); }
.dd-btn--outline:hover { background: var(--dd-primary); color: #fff; }
.dd-btn--white { background: #fff; color: var(--dd-primary); border-color: #fff; }
.dd-btn--white:hover { background: var(--dd-bg-light); }
.dd-btn--white-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.dd-btn--white-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.dd-btn--accent { background: var(--dd-accent); color: var(--dd-dark); border-color: var(--dd-accent); }
.dd-btn--lg { padding: 16px 36px; font-size: 1rem; }
.dd-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── Header ─────────────────────────────────────────────── */
.dd-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--dd-white);
  border-bottom: 1px solid var(--dd-border);
  transition: box-shadow .25s;
}
.dd-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.10); }

/* Top bar: logo + phone */
.dd-header__topbar {
  border-bottom: 1px solid var(--dd-border);
}
.dd-header__topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-topbar-h, 56px);
}

/* Logo */
.dd-header__logo { flex-shrink: 0; }
.dd-header__logo a { display: flex; align-items: center; text-decoration: none; }
.dd-header__logo img { height: 48px; width: auto; }
.site-logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-line1 { font-family: var(--dd-font-heading); font-size: 1.9rem; font-weight: 900; color: var(--dd-primary); letter-spacing: .04em; }
.logo-line2 { font-family: var(--dd-font-heading); font-size: 1.9rem; font-weight: 900; color: var(--dd-primary); border-bottom: 3px solid var(--dd-accent); padding-bottom: 1px; letter-spacing: .06em; }

/* Phone link */
.dd-header__phone {
  display: flex; align-items: center; gap: 6px;
  font-size: .92rem; font-weight: 600; color: var(--dd-dark-2);
  text-decoration: underline; text-underline-offset: 2px;
  transition: color .18s;
}
.dd-header__phone:hover { color: var(--dd-primary); }
.dd-header__phone svg { flex-shrink: 0; color: var(--dd-text-light); }

/* Bottom bar: nav + CTA */
.dd-header__bottombar {
  background: var(--dd-white);
}
.dd-header__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: var(--header-bottombar-h, 48px); display: flex; align-items: center; gap: 24px;
}

.dd-header__nav { display: flex; align-items: center; }
.dd-nav__list { display: flex; align-items: center; gap: 2px; }
/* Hide WordPress sub-menus in desktop nav — not implemented as a mega-menu */
.dd-nav__list .sub-menu { display: none !important; }
.dd-nav__list li a {
  display: block; padding: 8px 12px; font-size: .855rem; font-weight: 600;
  color: var(--dd-dark-2); border-radius: 8px; transition: all .18s; white-space: nowrap;
}
.dd-nav__list li a:hover,
.dd-nav__list li.current-menu-item > a,
.dd-nav__list li.current_page_item > a,
.dd-nav__list li.current-menu-ancestor > a,
.dd-nav__list li.current-menu-parent > a,
.dd-nav__list li.current_page_ancestor > a,
.dd-nav__list li.current_page_parent > a { background: rgba(26,86,219,.08); color: var(--dd-primary); }

.dd-header__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto; }
.dd-header__cta { font-size: .82rem; padding: 10px 20px; }

/* Desktop: hide mobile-only logo — !important to override any specificity conflicts */
.dd-header__bottombar .dd-header__logo--mobile { display: none !important; }

/* On mobile: hide topbar, show mobile logo in bottom bar */
@media (max-width: 900px) {
  :root { --header-total-h: var(--header-h); } /* topbar is hidden, so only count the bottom bar */
  .dd-header__topbar { display: none !important; }
  .dd-header__bottombar { border-bottom: 1px solid var(--dd-border); }
  .dd-header__inner { height: var(--header-h); }
  .dd-header__nav { display: none; }
  .dd-header__bottombar .dd-header__logo--mobile { display: flex !important; }
  .dd-header__bottombar .dd-header__logo--mobile img { height: 40px; }
}

/* Hamburger */
.dd-hamburger {
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; width: 40px; height: 40px;
  background: var(--dd-bg-light); border: 1px solid var(--dd-border);
  border-radius: 8px; cursor: pointer; transition: all .2s; flex-shrink: 0;
}
.dd-hamburger:hover { background: var(--dd-bg-gray); }
.dd-hamburger__bar { display: block; width: 18px; height: 2px; background: var(--dd-dark-2); border-radius: 2px; transition: all .25s; }
.dd-hamburger[aria-expanded="true"] .dd-hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dd-hamburger[aria-expanded="true"] .dd-hamburger__bar:nth-child(2) { opacity: 0; }
.dd-hamburger[aria-expanded="true"] .dd-hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Secondary Nav Panel */
.dd-secondary-nav {
  position: absolute; top: var(--header-total-h); right: 24px;
  background: var(--dd-white); border: 1px solid var(--dd-border);
  border-radius: var(--dd-radius); box-shadow: var(--dd-shadow-lg);
  padding: 16px; min-width: 200px;
  opacity: 0; transform: translateY(-10px) scale(.97);
  pointer-events: none; transition: all .22s ease; z-index: 999;
}
.dd-secondary-nav.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.dd-secondary-nav__list { display: flex; flex-direction: column; gap: 2px; }
.dd-secondary-nav__list li a {
  display: block; padding: 10px 14px; font-weight: 600; font-size: .875rem;
  color: var(--dd-dark-2); border-radius: 8px; transition: all .18s;
}
.dd-secondary-nav__list li a:hover { background: rgba(26,86,219,.08); color: var(--dd-primary); }
.dd-secondary-nav__close {
  position: absolute; top: 10px; right: 10px; background: none; border: none;
  cursor: pointer; color: var(--dd-text-light); width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center; border-radius: 6px; transition: all .18s;
}
.dd-secondary-nav__close:hover { background: var(--dd-bg-gray); color: var(--dd-dark); }

/* ── Mobile hamburger panel (all screen sizes where it appears) ── */
@media (max-width: 900px) {
  .dd-secondary-nav {
    position: fixed;
    top: var(--header-total-h);
    left: 0; right: 0; width: 100%;
    border-left: none; border-right: none;
    border-radius: 0 0 var(--dd-radius) var(--dd-radius);
    min-width: 0; padding: 16px 16px 28px;
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,.18);
    max-height: calc(100vh - var(--header-total-h));
    overflow-y: auto;
  }
  .dd-secondary-nav.is-open { transform: translateY(0); }
  .dd-secondary-nav__close { top: 14px; right: 16px; width: 32px; height: 32px; }

  /* Walker-generated list */
  .dd-mob-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 2px;
  }
  .dd-mob-item { display: block; }
  .dd-mob-row { display: flex; align-items: center; }
  .dd-mob-link {
    flex: 1; display: block;
    padding: 13px 16px; font-size: 1rem; font-weight: 600;
    color: var(--dd-dark-2); border-radius: 10px;
    text-decoration: none; transition: background .18s, color .18s;
  }
  .dd-mob-link:hover,
  .dd-mob-link.is-active { background: rgba(26,86,219,.08); color: var(--dd-primary); }

  /* Chevron toggle */
  .dd-sub-toggle {
    flex-shrink: 0; width: 40px; height: 44px;
    background: none; border: none; cursor: pointer;
    color: var(--dd-text-light);
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px; transition: background .18s, color .18s;
  }
  .dd-sub-toggle:hover { background: rgba(26,86,219,.08); color: var(--dd-primary); }
  .dd-sub-toggle svg { transition: transform .22s; }
  .dd-sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

  /* Submenu hidden by default */
  .dd-mob-submenu {
    display: none;
    list-style: none; margin: 0; padding: 0 0 6px 16px;
  }
  .dd-mob-submenu.is-open { display: flex; flex-direction: column; gap: 2px; }
  .dd-mob-submenu .dd-mob-link {
    font-size: .9rem; font-weight: 500; color: var(--dd-text-light); padding: 10px 14px;
  }
  .dd-mob-submenu .dd-mob-link:hover { background: rgba(26,86,219,.08); color: var(--dd-primary); }
}

/* ─── HERO ───────────────────────────────────────────────── */
.dd-hero {
  position: relative; min-height: 520px; display: flex;
  align-items: center; overflow: hidden;
  background: linear-gradient(120deg, #071730 0%, #1a56db 100%);
}
.dd-hero__bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: .20; }
.dd-hero__overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(7,23,48,.92) 45%, rgba(26,86,219,.4) 100%); }
.dd-hero__content {
  position: relative; z-index: 2;
  color: var(--dd-white); padding: 100px 0;
  max-width: 620px; /* LEFT-ALIGNED – no margin:auto */
}
.dd-hero__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--dd-accent); margin-bottom: 20px;
}
.dd-hero__label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--dd-accent); border-radius: 2px; }
.dd-hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900;
  color: #fff; line-height: 1.1; margin-bottom: 20px;
}
.dd-hero__title .highlight { color: var(--dd-accent); }
.dd-hero__desc { font-size: 1.05rem; opacity: .85; margin-bottom: 36px; max-width: 500px; line-height: 1.7; }
.dd-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
/* Sub-hero for inner pages */
.dd-hero--sm { min-height: 320px; }
.dd-hero--sm .dd-hero__content { padding: 64px 0; }

/* ─── HOW IT WORKS – CONNECTED STEPS ────────────────────── */
.dd-steps-section { padding: 80px 0; }
.dd-steps-section__header { margin-bottom: 56px; }
.dd-steps-connected {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.dd-steps-connected::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--dd-border) 0%, var(--dd-primary) 50%, var(--dd-border) 100%);
  z-index: 0;
}
.dd-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 16px; position: relative; z-index: 1;
}
.dd-step__icon-wrap {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--dd-white); border: 2px solid var(--dd-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; position: relative;
  box-shadow: 0 4px 16px rgba(26,86,219,.10);
  transition: all .3s;
}
.dd-step__icon-wrap svg { width: 36px; height: 36px; color: var(--dd-primary); }
.dd-step__num {
  position: absolute; top: -6px; right: -6px;
  width: 26px; height: 26px; background: var(--dd-primary);
  color: #fff; font-size: .72rem; font-weight: 800;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}
.dd-step:hover .dd-step__icon-wrap { border-color: var(--dd-primary); box-shadow: 0 8px 24px rgba(26,86,219,.18); transform: translateY(-4px); }
.dd-step__title { font-size: 1rem; font-weight: 800; margin-bottom: 10px; color: var(--dd-dark); }
.dd-step__desc { font-size: .855rem; color: var(--dd-text-light); line-height: 1.65; }

@media (max-width: 768px) {
  .dd-steps-connected { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dd-steps-connected::before { display: none; }
}
@media (max-width: 480px) {
  .dd-steps-connected { grid-template-columns: 1fr; gap: 24px; }
  .dd-step { flex-direction: row; text-align: left; gap: 20px; align-items: flex-start; }
  .dd-step__icon-wrap { width: 64px; height: 64px; flex-shrink: 0; margin-bottom: 0; }
  .dd-step__icon-wrap svg { width: 26px; height: 26px; }
}

/* ─── WHY CHOOSE – ICON FEATURE GRID ────────────────────── */
.dd-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.dd-why-card {
  background: var(--dd-white);
  border: 1px solid var(--dd-border);
  border-radius: var(--dd-radius);
  padding: 32px 28px;
  display: flex; flex-direction: column; align-items: flex-start;
  transition: all .25s; position: relative; overflow: hidden;
}
.dd-why-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--dd-primary);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .3s ease;
}
.dd-why-card:hover { box-shadow: var(--dd-shadow-lg); transform: translateY(-4px); border-color: transparent; }
.dd-why-card:hover::before { transform: scaleY(1); }
.dd-why-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(26,86,219,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--dd-primary); margin-bottom: 20px;
}
.dd-why-card__icon svg { width: 26px; height: 26px; }
.dd-why-card__title { font-size: 1rem; font-weight: 800; margin-bottom: 10px; color: var(--dd-dark); }
.dd-why-card__desc { font-size: .875rem; color: var(--dd-text-light); line-height: 1.65; }
@media (max-width: 900px) { .dd-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .dd-why-grid { grid-template-columns: 1fr; } }

/* ─── COMMERCIAL SECTION (DARK SPLIT) ───────────────────── */
.dd-commercial-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--dd-radius-lg);
  overflow: hidden;
  box-shadow: var(--dd-shadow-lg);
}
.dd-commercial-block__left {
  background: var(--dd-dark);
  padding: 56px 48px;
  color: var(--dd-white);
  display: flex; flex-direction: column; justify-content: center;
}
.dd-commercial-block__left .dd-label { color: var(--dd-accent); }
.dd-commercial-block__left h2 { color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 16px; }
.dd-commercial-block__left p { color: rgba(255,255,255,.75); margin-bottom: 24px; }
.dd-commercial-block__services {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 32px;
}
.dd-commercial-block__services li {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.85);
}
.dd-commercial-block__services li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--dd-accent); border-radius: 50%; flex-shrink: 0;
}
.dd-commercial-block__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.dd-commercial-block__right {
  position: relative; min-height: 400px;
  background: linear-gradient(135deg, #1a56db 0%, #0b3b8c 100%);
}
.dd-commercial-block__right img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .55; mix-blend-mode: luminosity;
}
.dd-commercial-block__right-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px;
}
.dd-commercial-block__stat { color: #fff; }
.dd-commercial-block__stat-num { font-size: 3rem; font-weight: 900; line-height: 1; color: var(--dd-accent); }
.dd-commercial-block__stat-label { font-size: .875rem; opacity: .75; }
@media (max-width: 768px) {
  .dd-commercial-block { grid-template-columns: 1fr; }
  .dd-commercial-block__left { padding: 40px 28px; }
  .dd-commercial-block__right { min-height: 260px; }
}

/* ─── REVIEWS CAROUSEL ───────────────────────────────────── */
.dd-carousel { position: relative; }
.dd-carousel__track-wrap { overflow: hidden; border-radius: var(--dd-radius-lg); }
.dd-carousel__track {
  display: flex; transition: transform .45s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.dd-carousel__slide {
  min-width: 100%; padding: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dd-review-card {
  background: var(--dd-white); border: 1px solid var(--dd-border);
  border-radius: var(--dd-radius); padding: 28px;
  display: flex; flex-direction: column;
}
.dd-review-card__stars { color: var(--dd-accent); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.dd-review-card__text { font-size: .9rem; color: var(--dd-text); margin-bottom: 20px; font-style: italic; flex: 1; line-height: 1.7; }
.dd-review-card__author { font-weight: 800; font-size: .875rem; color: var(--dd-dark); }
.dd-review-card__date { font-size: .78rem; color: var(--dd-text-light); margin-top: 2px; }
.dd-carousel__controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 32px;
}
.dd-carousel__btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--dd-border); background: var(--dd-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; color: var(--dd-dark);
}
.dd-carousel__btn:hover { border-color: var(--dd-primary); color: var(--dd-primary); background: rgba(26,86,219,.06); }
.dd-carousel__btn:disabled { opacity: .3; cursor: default; }
.dd-carousel__btn svg { width: 18px; height: 18px; }
.dd-carousel__dots { display: flex; gap: 8px; align-items: center; }
.dd-carousel__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--dd-border); cursor: pointer; transition: all .22s;
  border: none; padding: 0;
}
.dd-carousel__dot.active { background: var(--dd-primary); width: 24px; border-radius: 4px; }
@media (max-width: 768px) {
  .dd-carousel__slide { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .dd-carousel__slide { grid-template-columns: 1fr; }
}

/* ─── FAQ ACCORDION ──────────────────────────────────────── */
.dd-faq-list { margin-top: 32px; }
.dd-faq-item { border: 1px solid var(--dd-border); border-radius: var(--dd-radius); margin-bottom: 10px; overflow: hidden; }
.dd-faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: var(--dd-white); border: none; cursor: pointer;
  font-family: var(--dd-font-heading); font-size: .95rem; font-weight: 700;
  color: var(--dd-dark); text-align: left; gap: 16px; transition: background .18s;
}
.dd-faq-question:hover { background: var(--dd-bg-light); }
.dd-faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; background: var(--dd-bg-gray);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.dd-faq-item.is-open .dd-faq-icon { transform: rotate(45deg); background: var(--dd-primary); color: #fff; }
.dd-faq-answer { max-height: 0; overflow: hidden; transition: max-height .32s ease, padding .3s ease; padding: 0 24px; }
.dd-faq-item.is-open .dd-faq-answer { max-height: 600px; padding: 0 24px 22px; }
.dd-faq-answer p { font-size: .9rem; color: var(--dd-text); }

/* ─── INDUSTRIES GRID ────────────────────────────────────── */
.dd-industries-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; margin-top: 40px;
}
.dd-industry-card {
  position: relative; border-radius: var(--dd-radius); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer; background: linear-gradient(135deg,#1a56db,#111827);
  transition: transform .3s, box-shadow .3s;
}
.dd-industry-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.25); }
.dd-industry-card__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .45s ease, opacity .3s ease;
  opacity: 1;
}
.dd-industry-card:hover .dd-industry-card__img { transform: scale(1.07); opacity: .85; }
/* Legacy bg alias */
.dd-industry-card__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .55; transition: opacity .3s, transform .3s;
}
.dd-industry-card:hover .dd-industry-card__bg { opacity: .4; transform: scale(1.04); }
.dd-industry-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
  transition: background .3s;
}
.dd-industry-card:hover .dd-industry-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}
/* Placeholder when no image */
.dd-industry-card--no-img .dd-industry-card__overlay {
  background: linear-gradient(135deg, rgba(26,86,219,.8) 0%, rgba(17,24,39,.9) 100%);
}
.dd-industry-card__label {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  color: #fff; font-weight: 800; font-size: .9rem; text-shadow: 0 1px 6px rgba(0,0,0,.5);
  letter-spacing: .02em;
}

/* ─── SERVICE AREA ───────────────────────────────────────── */
.dd-sa-search-bar {
  display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap;
}
.dd-sa-search-bar input {
  flex: 1; min-width: 220px; padding: 14px 22px;
  border: 2px solid var(--dd-border); border-radius: 50px;
  font-size: .95rem; font-family: var(--dd-font-sans);
  color: var(--dd-dark); outline: none; transition: border-color .2s, box-shadow .2s;
}
.dd-sa-search-bar input:focus { border-color: var(--dd-primary); box-shadow: 0 0 0 3px rgba(26,86,219,.1); }
/* ── Alpha nav: wraps on desktop, scrolls horizontally on mobile ── */
.dd-sa-alpha-nav {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; align-items: center;
}
/* City-name pill buttons — never clip multi-word names */
.dd-sa-alpha-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 38px; padding: 0 16px;
  border-radius: 100px; border: 1.5px solid var(--dd-border);
  background: var(--dd-white); font-weight: 600; font-size: .825rem;
  color: var(--dd-text-light); cursor: pointer;
  white-space: nowrap; flex-shrink: 0; line-height: 1;
  transition: background .18s, border-color .18s, color .18s, box-shadow .18s;
}
.dd-sa-alpha-btn:hover { border-color: var(--dd-primary); color: var(--dd-primary); background: rgba(26,86,219,.05); }
.dd-sa-alpha-btn.active { background: var(--dd-primary); color: #fff; border-color: var(--dd-primary); box-shadow: 0 2px 8px rgba(26,86,219,.25); }

.dd-area-group { margin-bottom: 40px; scroll-margin-top: 90px; }
.dd-area-group__header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
/* Pill badge wide enough for full city names */
.dd-area-group__header::before {
  content: attr(data-letter);
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 14px; height: 34px;
  background: var(--dd-primary); color: #fff;
  border-radius: 100px; font-size: .8rem; font-weight: 800;
  letter-spacing: .03em; white-space: nowrap; flex-shrink: 0;
}
/* Decorative rule after the badge */
.dd-area-group__header::after {
  content: ''; flex: 1; height: 1.5px;
  background: var(--dd-border); border-radius: 2px;
}
.dd-area-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.dd-area-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; background: var(--dd-bg-light);
  border: 1px solid var(--dd-border); border-radius: 50px;
  font-size: .84rem; font-weight: 600; color: var(--dd-text);
  text-decoration: none; transition: all .18s;
}
.dd-area-chip svg { width: 12px; height: 12px; opacity: .5; flex-shrink: 0; }
.dd-area-chip:hover { background: var(--dd-primary); border-color: var(--dd-primary); color: #fff; }
.dd-area-chip:hover svg { opacity: 1; }
.dd-area-chip.hidden { display: none; }

/* ─── NEIGHBORHOOD PAGE ──────────────────────────────────── */
.dd-nbhd-hero { background: linear-gradient(120deg, #071730 0%, #1a56db 100%); }
.dd-nbhd-name { font-size: clamp(2rem, 6vw, 4rem); font-weight: 900; color: var(--dd-accent); line-height: 1; margin-bottom: 8px; }
.dd-nbhd-subtitle { font-size: 1rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; margin-bottom: 24px; }
.dd-nbhd-bullets { list-style: none; margin: 0 0 28px; }
.dd-nbhd-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: rgba(255,255,255,.85); margin-bottom: 8px;
}
.dd-nbhd-bullets li::before { content: '✓'; color: var(--dd-accent); font-weight: 800; flex-shrink: 0; }
.dd-nbhd-info-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--dd-radius); padding: 24px 28px; margin-top: 32px;
}
.dd-nbhd-info-card h3 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
.dd-nbhd-info-card p { color: rgba(255,255,255,.7); font-size: .875rem; margin-bottom: 0; }
.dd-cities-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.dd-city-chip {
  padding: 7px 16px; background: var(--dd-bg-light); border: 1px solid var(--dd-border);
  border-radius: 50px; font-size: .82rem; font-weight: 600; color: var(--dd-primary);
  text-decoration: none; transition: all .18s;
}
.dd-city-chip:hover { background: var(--dd-primary); color: #fff; border-color: var(--dd-primary); }

/* ─── CONTACT FORM ───────────────────────────────────────── */
.dd-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.dd-contact-info__item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.dd-contact-info__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(26,86,219,.08); display: flex; align-items: center; justify-content: center; color: var(--dd-primary); flex-shrink: 0; }
.dd-contact-info__icon svg { width: 22px; height: 22px; }
.dd-contact-info__label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--dd-text-light); margin-bottom: 4px; }
.dd-contact-info__value { font-weight: 700; color: var(--dd-dark); }
.dd-contact-form-card { background: var(--dd-white); border: 1px solid var(--dd-border); border-radius: var(--dd-radius-lg); padding: 40px; box-shadow: var(--dd-shadow); }
@media (max-width: 768px) { .dd-contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ─── ABOUT PAGE ─────────────────────────────────────────── */
.dd-about-lead { font-size: 1.15rem; font-weight: 600; color: var(--dd-dark); line-height: 1.7; margin-bottom: 24px; }
.dd-team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 40px; }
.dd-team-card { text-align: center; }
.dd-team-card__avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--dd-bg-gray); margin: 0 auto 14px; overflow: hidden; }
.dd-team-card__name { font-weight: 800; font-size: .95rem; }
.dd-team-card__role { font-size: .82rem; color: var(--dd-text-light); }
.dd-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.dd-stat { padding: 32px 16px; background: var(--dd-white); border-radius: var(--dd-radius); border: 1px solid var(--dd-border); }
.dd-stat__num { font-size: 2.4rem; font-weight: 900; color: var(--dd-primary); line-height: 1; }
.dd-stat__label { font-size: .82rem; color: var(--dd-text-light); margin-top: 6px; }
@media (max-width: 640px) { .dd-stats-row { grid-template-columns: repeat(2, 1fr); } }

/* ─── TWO COL ────────────────────────────────────────────── */
.dd-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 768px) { .dd-two-col { grid-template-columns: 1fr; gap: 40px; } }

/* ─── CARDS ──────────────────────────────────────────────── */
.dd-card { background: var(--dd-white); border: 1px solid var(--dd-border); border-radius: var(--dd-radius); padding: 32px; }
.dd-card--shadow { box-shadow: var(--dd-shadow); border: none; }

/* ─── FORMS ──────────────────────────────────────────────── */
.dd-form-group { margin-bottom: 20px; }
.dd-form-label { display: block; font-weight: 700; font-size: .875rem; margin-bottom: 6px; color: var(--dd-dark); }
.dd-form-input,.dd-form-select,.dd-form-textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--dd-border);
  border-radius: 10px; font-size: .95rem; font-family: var(--dd-font-sans);
  color: var(--dd-dark); background: var(--dd-white); transition: border-color .2s; outline: none;
}
.dd-form-input:focus,.dd-form-select:focus,.dd-form-textarea:focus { border-color: var(--dd-primary); box-shadow: 0 0 0 3px rgba(26,86,219,.1); }
.dd-form-textarea { resize: vertical; min-height: 130px; }
.dd-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .dd-form-row { grid-template-columns: 1fr; } }

/* ─── CTA SECTION ────────────────────────────────────────── */
.dd-cta-section {
  background: linear-gradient(135deg, var(--dd-primary) 0%, #0b3b8c 100%);
  color: #fff; text-align: center; padding: 80px 0;
}
.dd-cta-section h2 { color: #fff; margin-bottom: 12px; }
.dd-cta-section p { opacity: .82; margin-bottom: 32px; }
.dd-cta-section__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.dd-footer { background: var(--dd-dark); color: rgba(255,255,255,.7); }
.dd-footer__top { padding: 64px 0 48px; }
.dd-footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; }
.dd-footer .site-logo-text .logo-line1,
.dd-footer .site-logo-text .logo-line2 { color: #fff; }
.dd-footer .dd-header__logo img { filter: brightness(10); }
.dd-footer__tagline { font-size: .875rem; margin: 16px 0 20px; opacity: .7; }
.dd-footer__social { display: flex; gap: 10px; margin: 20px 0; }
.dd-footer__social a { width: 36px; height: 36px; background: rgba(255,255,255,.08); color: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.dd-footer__social a:hover { background: var(--dd-primary); }
.dd-footer__social a svg { width: 16px; height: 16px; }
.dd-footer__address { font-size: .82rem; opacity: .55; font-style: normal; margin-top: 16px; line-height: 1.7; }
.dd-footer__col-title { font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1); }
.dd-footer__nav { display: flex; flex-direction: column; gap: 10px; list-style: none; margin: 0; padding: 0; }
.dd-footer__nav li { font-size: .84rem; color: rgba(255,255,255,.6); }
.dd-footer__nav li a { font-size: .84rem; color: rgba(255,255,255,.6); transition: color .18s; text-decoration: none; }
.dd-footer__nav li a:hover { color: #fff; }
.dd-footer__see-all { color: var(--dd-accent) !important; font-weight: 700 !important; margin-top: 6px; display: inline-block; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.1); width: 100%; }
.dd-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; font-size: .8rem; opacity: .5; text-align: center; }
@media (max-width:1024px) { .dd-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:640px) { .dd-footer__grid { grid-template-columns: 1fr; } }

/* ─── BLOG ───────────────────────────────────────────────── */
.dd-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 32px; padding: 60px 0; }
.dd-blog-post img { border-radius: var(--dd-radius); margin-bottom: 16px; }
.dd-blog-post h2 { font-size: 1.15rem; margin-bottom: 8px; }
.dd-blog-post h2 a { color: var(--dd-dark); }
.dd-blog-post h2 a:hover { color: var(--dd-primary); }
.dd-post-meta { font-size: .8rem; color: var(--dd-text-light); margin-bottom: 10px; }

/* ─── SECTION HEADER ──────────────────────────────────────── */
.dd-section-header { margin-bottom: 48px; }
.dd-section-header--center { text-align: center; }
.dd-section-header--center .dd-section-subtitle { margin: 0 auto; }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes dd-fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.dd-animate { opacity: 0; }
.dd-animate.is-visible { animation: dd-fadeUp .6s ease forwards; }
.dd-animate:nth-child(2).is-visible { animation-delay:.08s; }
.dd-animate:nth-child(3).is-visible { animation-delay:.16s; }
.dd-animate:nth-child(4).is-visible { animation-delay:.24s; }
.dd-animate:nth-child(5).is-visible { animation-delay:.32s; }
.dd-animate:nth-child(6).is-visible { animation-delay:.40s; }

/* ─── RESPONSIVE MOBILE ─────────────────────────────────── */
@media (max-width: 640px) {
  .dd-section { padding: 56px 0; }
  .dd-hero { min-height: 420px; }
  .dd-hero__content { padding: 72px 0; }
}

/* ─── SCHEDULE FORM PAGE ─────────────────────────────────── */
.dd-schedule-page { padding: 64px 0; }
.dd-schedule-page .dd-container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.dd-schedule-page__info h1 { font-size: 2rem; margin-bottom: 16px; }
.dd-schedule-page__feature { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.dd-schedule-page__feature-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(26,86,219,.08); display: flex; align-items: center; justify-content: center; color: var(--dd-primary); flex-shrink: 0; }
.dd-schedule-form-card { background: #fff; border: 1px solid var(--dd-border); border-radius: var(--dd-radius-lg); padding: 40px; box-shadow: var(--dd-shadow-lg); position: sticky; top: 88px; }
@media (max-width: 900px) {
  .dd-schedule-page .dd-container { grid-template-columns: 1fr; }
  .dd-schedule-form-card { position: static; }
}

/* ─── MISC ───────────────────────────────────────────────── */
.dd-services-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 10px; margin-top: 20px; }
.dd-services-list li { display: flex; align-items: center; gap: 10px; font-size: .875rem; font-weight: 600; }
.dd-services-list li::before { content: ''; width: 8px; height: 8px; background: var(--dd-primary); border-radius: 50%; flex-shrink: 0; }
.dd-price-card { background: var(--dd-primary); color: #fff; border-radius: var(--dd-radius-lg); padding: 36px 40px; text-align: center; box-shadow: var(--dd-shadow-lg); }
.dd-price-card__title { font-size: .95rem; font-weight: 600; opacity: .8; margin-bottom: 8px; }
.dd-price-card__amount { font-size: 3.8rem; font-weight: 900; line-height: 1; color: #fff; }
.dd-price-card__unit { font-size: 1.1rem; font-weight: 600; opacity: .75; margin-bottom: 10px; }
.dd-price-card__fee { font-size: .9rem; opacity: .7; margin-bottom: 16px; }
.dd-price-card__note { font-size: .8rem; opacity: .6; }

/* Admin logo notice */
.elementals-laundry-admin-wrap { max-width: 960px; }

/* ═══════════════════════════════════════════════════════════
   SERVICE AREA — LIGHT CENTERED HERO
   ═══════════════════════════════════════════════════════════ */
.dd-sa-hero {
    position: relative;
    background: #f0f4ff;
    overflow: hidden;
    padding: 80px 0 60px;
    text-align: center;
}

/* Decorative SVG blobs */
.dd-sa-hero__deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: .9;
}
/* Belt-and-braces: SVGs must never escape their deco container */
.dd-sa-hero__deco svg {
    display: block;
    max-width: 100%;
    height: auto;
}
.dd-sa-hero__deco--pin  { top: -10px;  left: -20px;  width: 160px; }
.dd-sa-hero__deco--circle { top: -20px; right: -30px; width: 200px; }
.dd-sa-hero__deco--star { bottom: 28px; left: 48px;   width: 32px; }

/* Inner content */
.dd-sa-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Title */
.dd-sa-hero__title {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 900;
    color: var(--dd-dark, #0f172a);
    line-height: 1.2;
    margin-bottom: 18px;
}
.dd-sa-hero__accent {
    position: relative;
    color: var(--dd-dark, #0f172a);
    display: inline-block;
}
.dd-sa-hero__accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 4px;
    background: #f59e0b;
    border-radius: 2px;
}

/* Sub-heading */
.dd-sa-hero__sub {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dd-dark, #0f172a);
    margin-bottom: 12px;
}

/* Description */
.dd-sa-hero__desc {
    font-size: .95rem;
    color: var(--dd-text-light, #6b7280);
    line-height: 1.75;
    max-width: 720px;
    margin: 0 auto 32px;
}

/* CTA buttons row */
.dd-sa-hero__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.dd-sa-hero__actions .dd-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.dd-sa-hero__actions .dd-btn--outline {
    background: transparent;
    border: 2px solid var(--dd-dark, #0f172a);
    color: var(--dd-dark, #0f172a);
    font-weight: 700;
}
.dd-sa-hero__actions .dd-btn--outline:hover {
    background: var(--dd-dark, #0f172a);
    color: #fff;
}

/* ── Mobile ── */
@media (max-width: 640px) {
    .dd-sa-hero { padding: 56px 0 44px; }
    .dd-sa-hero__deco--pin    { width: 100px; left: -10px; }
    .dd-sa-hero__deco--circle { width: 120px; right: -10px; }
    .dd-sa-hero__deco--star   { width: 22px;  left: 24px; bottom: 16px; }
    .dd-sa-hero__actions { flex-direction: column; align-items: center; }
    .dd-sa-hero__actions .dd-btn { width: 100%; max-width: 320px; justify-content: center; }
    /* Search bar stacks */
    .dd-sa-search-bar { flex-direction: column; }
    .dd-sa-search-bar .dd-btn { width: 100%; justify-content: center; }
    /* Alpha nav: single scrollable row on mobile */
    .dd-sa-alpha-nav { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; padding-bottom: 6px; scrollbar-width: thin; scrollbar-color: var(--dd-border) transparent; }
    .dd-sa-alpha-nav::-webkit-scrollbar { height: 4px; }
    .dd-sa-alpha-nav::-webkit-scrollbar-thumb { background: var(--dd-border); border-radius: 4px; }
    .dd-sa-alpha-btn { height: 34px; padding: 0 13px; font-size: .78rem; scroll-snap-align: start; }
}
@media (max-width: 400px) {
    .dd-sa-hero__title { font-size: 1.5rem; }
}

/* ─── Suppress third-party injected headers (HFE / Elementor / JetThemeCore) ── */
/* These plugins inject their own sticky header on top of our theme header.      */
/* Hide all known wrappers so only dd-header is visible.                         */
.hfe-header,
.elementor-location-header,
.jet-header,
.site-header:not(#dd-header),
header.elementor-section,
.ast-above-header-wrap,
.fl-builder-content[data-type="header"] {
  display: none !important;
}
