/* ==========================================================================
   FAIRCLEAN HOUSE CLEANING — style.css
   Single stylesheet. Sections:
   01 Variables · 02 Reset/Base · 03 Font Classes & Utilities · 04 Buttons
   05 Top Bar · 06 Header & Nav · 07 Hero · 08 CTA Bar · 09 Attention to Detail
   10 Parallax Bands · 11 Why Choose Us · 12 Featured Services (Plans)
   13 Promise (Testimonials) · 14 Great Choice · 15 Scheduling + Stats
   16 Why Cleaning Matters · 17 Service Areas · 18 What to Expect + FAQ
   19 Book Now · 20 Footer · 21 Sub-page Header · 22 Services Page
   23 About Page · 24 Contact Page & Forms · 25 Scroll Reveal · 26 Responsive
   ========================================================================== */

/* ---------- 01 Variables (brand palette extracted from the Fairclean logo) ---------- */
:root {
  --color-primary-dark: #1E3A5C;   /* deep navy — top bar, dark bands */
  --color-primary:      #2F547E;   /* logo navy — buttons, headings */
  --color-accent:       #6FA8B0;   /* logo teal — accents, hover, icons */
  --color-accent-dark:  #3E7C86;   /* teal for small text on white (AA contrast) */
  --color-accent-soft:  #E4F1F2;   /* tinted teal surface */
  --color-bg-light:     #F3F8F9;   /* light section background */
  --color-bg-white:     #FFFFFF;
  --color-text-dark:    #1B2A3A;
  --color-text-muted:   #56677A;
  --color-border:       #DCE7EB;
  --color-gold:         #E3B341;   /* star icons */

  --font-display: 'Nunito', 'Trebuchet MS', sans-serif;
  --font-body:    'DM Sans', 'Segoe UI', Arial, sans-serif;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(30, 58, 92, .08);
  --shadow:    0 14px 40px rgba(30, 58, 92, .14);
  --shadow-lg: 0 24px 60px rgba(30, 58, 92, .22);
  --container: 1200px;
  --header-h:  84px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- 02 Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-dark);
  background: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
svg { flex-shrink: 0; }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }

/* ---------- 03 Font Classes & Utilities ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--color-primary);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.01em;
}
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section--light { background: var(--color-bg-light); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 12px;
}
.eyebrow--light { color: #BFE0E4; }
.section-title { font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 18px; }
.section-title--light { color: #fff; }
.divider {
  width: 70px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  margin: 0 0 26px;
}
.divider--center { margin-left: auto; margin-right: auto; }
.divider--light { background: var(--color-accent); }
.section-header { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-header p { color: var(--color-text-muted); }
.text-muted { color: var(--color-text-muted); }
.check-icon { width: 22px; height: 22px; color: var(--color-accent); }

/* ---------- 04 Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s, border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--color-primary); color: #fff; box-shadow: 0 8px 22px rgba(47, 84, 126, .3); }
.btn--primary:hover { background: var(--color-primary-dark); }
.btn--accent { background: var(--color-accent); color: var(--color-primary-dark); box-shadow: 0 8px 22px rgba(111, 168, 176, .35); }
.btn--accent:hover { background: #fff; color: var(--color-primary); }
.btn--outline { border-color: var(--color-primary); color: var(--color-primary); background: transparent; }
.btn--outline:hover { background: var(--color-primary); color: #fff; }
.btn--ghost-light { border-color: rgba(255, 255, 255, .7); color: #fff; background: transparent; }
.btn--ghost-light:hover { background: #fff; color: var(--color-primary); }
.btn--sm { padding: 10px 22px; font-size: 14px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* ---------- 05 Top Bar ---------- */
.topbar { background: var(--color-primary-dark); color: #DCE9F2; font-size: 14px; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 46px; }
.topbar__group { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; transition: color .2s; }
.topbar__item svg { width: 15px; height: 15px; color: var(--color-accent); }
a.topbar__item:hover { color: #fff; }
.topbar__item strong { color: #fff; font-weight: 700; }
.topbar .btn { padding: 7px 18px; font-size: 13px; box-shadow: none; }

/* ---------- 06 Header & Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: #fff; /* no backdrop-filter: it would trap the fixed mobile nav inside the header */
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow .3s;
}
.header.is-scrolled { box-shadow: 0 8px 30px rgba(30, 58, 92, .12); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); }
.header__logo img { height: 48px; width: auto; max-width: 220px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav__list { display: flex; align-items: center; gap: 6px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  font-weight: 600; font-size: 16px;
  color: var(--color-text-dark);
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  background: none; border: 0; cursor: pointer;
}
.nav__link svg { width: 14px; height: 14px; transition: transform .25s; }
.nav__link:hover, .nav__link.is-active { color: var(--color-primary); }
.nav__link.is-active { box-shadow: inset 0 -3px 0 var(--color-accent); border-radius: 0; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 250px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--color-accent);
  padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s, transform .25s var(--ease), visibility .25s;
}
.dropdown a { display: block; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 500; }
.dropdown a:hover { background: var(--color-bg-light); color: var(--color-primary); }
.nav__item--has-dropdown:hover .dropdown,
.nav__item--has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__item--has-dropdown:hover > .nav__link svg { transform: rotate(180deg); }
.nav__cta { display: flex; gap: 10px; }
.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border: 0; border-radius: var(--radius-sm);
  background: var(--color-primary); color: #fff; cursor: pointer;
}
.menu-toggle svg { width: 24px; height: 24px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- 07 Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 170px;
  background: var(--color-primary-dark) url('../images/gallery/hero-white-kitchen.jpg') center bottom / cover no-repeat;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30, 58, 92, .78) 0%, rgba(30, 58, 92, .62) 55%, rgba(30, 58, 92, .82) 100%);
}
.hero__inner { position: relative; z-index: 1; }
.hero__title {
  color: #fff;
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 900;
  max-width: 980px; margin: 0 auto 38px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .25);
}
.hero__title em { font-style: normal; color: #BFE0E4; }
.hero__card {
  max-width: 720px; margin: 0 auto;
  background: rgba(255, 255, 255, .96);
  color: var(--color-text-dark);
  border-radius: var(--radius-lg);
  padding: 34px 38px 32px;
  box-shadow: var(--shadow-lg);
}
.hero__card-icon { width: 64px; height: 64px; margin: -70px auto 12px; background: #fff; border-radius: 50%; box-shadow: var(--shadow); padding: 10px; }
.hero__card-kicker { font-size: 15px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--color-accent-dark); }
.hero__card-title { font-size: clamp(24px, 3vw, 34px); margin: 6px 0 24px; }
.hero__card .btn-row { justify-content: center; }
.hero__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .35);
  font-size: 14px; font-weight: 600; color: #fff;
  backdrop-filter: blur(4px);
}
.hero__badge svg { width: 17px; height: 17px; color: #BFE0E4; }

/* ---------- 08 CTA Bar (floats over the hero, like the template) ---------- */
.cta-bar { position: relative; z-index: 5; margin-top: -60px; }
.cta-bar__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 880px; margin: 0 auto;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-bar__btn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 26px 20px;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.9vw, 22px);
  font-weight: 800;
  transition: filter .2s;
}
.cta-bar__btn svg { width: 24px; height: 24px; }
.cta-bar__btn:hover { filter: brightness(1.08); }
.cta-bar__btn--call { background: var(--color-primary); color: #fff; }
.cta-bar__btn--text { background: var(--color-accent); color: var(--color-primary-dark); }

/* ---------- 09 Attention to Detail ---------- */
.detail__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center; }
.collage { position: relative; min-height: 520px; }
.collage__main { width: 78%; height: 440px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.collage__secondary {
  position: absolute; right: 0; bottom: 0;
  width: 44%; height: 300px; object-fit: cover;
  border-radius: var(--radius-lg);
  border: 8px solid #fff;
  box-shadow: var(--shadow);
}
.collage__icon {
  position: absolute; left: -18px; bottom: 50px;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--color-accent); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  border: 6px solid #fff;
}
.collage__icon svg { width: 40px; height: 40px; }
.detail__content p { margin-bottom: 18px; color: var(--color-text-muted); }
.detail__signoff { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--color-primary) !important; }
.detail__signoff span { display: block; font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--color-accent-dark); letter-spacing: .12em; text-transform: uppercase; }

/* ---------- 10 Parallax Bands (decorative image strips) ---------- */
.band {
  position: relative;
  height: 280px;
  background-position: center 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30, 58, 92, .35), rgba(111, 168, 176, .15)); }
.band--right { width: 88%; margin-left: auto; border-radius: var(--radius-lg) 0 0 var(--radius-lg); overflow: hidden; }
.band--left { width: 88%; margin-right: auto; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; overflow: hidden; }
.band--1 { background-image: url('../images/gallery/cozy-living-room.jpg'); }
.band--2 { background-image: url('../images/gallery/kitchen-island.jpg'); }

/* ---------- 11 Why Choose Us (image left, colored panel right — template split) ---------- */
.why { padding: 0; background: var(--color-primary) url('../images/gallery/living-room.jpg') left center / cover no-repeat; }
.why__panel {
  margin-left: auto;
  width: 56%;
  min-height: 540px;
  padding: 90px 7% 90px 70px;
  background: linear-gradient(90deg, rgba(47, 84, 126, .95), var(--color-primary) 30%);
  color: #fff;
  display: flex; flex-direction: column; justify-content: center;
}
.why__title { color: #fff; font-size: clamp(28px, 3.2vw, 40px); margin-bottom: 18px; }
.why__list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; margin-bottom: 36px; }
.why__item { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 17px; }
.why__item span.icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  display: grid; place-items: center;
}
.why__item svg { width: 18px; height: 18px; color: #BFE0E4; }
.why .btn-row .btn--accent:hover { background: #fff; }

/* ---------- 12 Featured Services (plans) ---------- */
.plans { background: var(--color-bg-light); }
.plans__intro { max-width: 820px; margin: 0 auto 56px; text-align: center; }
.plans__intro p { color: var(--color-text-muted); }
.plans__intro a { color: var(--color-primary); font-weight: 700; border-bottom: 2px solid var(--color-accent); }
.plans__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.plan-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; align-items: flex-end;
  color: #fff;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.plan-card__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.plan-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(30, 58, 92, .05) 20%, rgba(30, 58, 92, .92) 100%); }
.plan-card:hover .plan-card__bg { transform: scale(1.06); }
.plan-card__body { padding: 36px; }
.plan-card__tag {
  display: inline-block; margin-bottom: 12px; padding: 5px 14px;
  border-radius: 999px; background: var(--color-accent); color: var(--color-primary-dark);
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.plan-card h3 { color: #fff; font-size: 30px; margin-bottom: 10px; }
.plan-card p { color: #E6EEF4; margin-bottom: 22px; max-width: 460px; }

/* ---------- 13 Promise (testimonials layout) ---------- */
.promise__icon { display: block; width: 56px; height: 56px; margin: 0 auto 14px; color: var(--color-accent); }
.promise__icon svg { width: 100%; height: 100%; }
.promise__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.promise-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.promise-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stars { display: flex; gap: 4px; color: var(--color-gold); margin-bottom: 16px; }
.stars svg { width: 20px; height: 20px; }
.promise-card h3 { font-size: 22px; margin-bottom: 10px; }
.promise-card p { color: var(--color-text-muted); font-size: 16px; }
.promise__note { text-align: center; margin-top: 40px; color: var(--color-text-muted); }
.promise__note a { color: var(--color-primary); font-weight: 700; border-bottom: 2px solid var(--color-accent); }

/* ---------- 14 Great Choice ---------- */
.choice { background: var(--color-bg-light); }
.choice__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: center; }
.choice__content p { color: var(--color-text-muted); margin-bottom: 18px; }
.choice__lead { font-size: 20px; color: var(--color-primary) !important; font-weight: 600; }
.choice__media { position: relative; }
.choice__media img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.choice__media-icon {
  position: absolute; top: -26px; right: 30px;
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--color-primary); color: #fff;
  display: grid; place-items: center;
  border: 6px solid var(--color-bg-light);
}
.choice__media-icon svg { width: 36px; height: 36px; }

/* ---------- 15 Scheduling Band + Stats ---------- */
.schedule {
  padding: 80px 0;
  background: var(--color-primary) url('../images/gallery/modern-kitchen.jpg') center / cover no-repeat;
  color: #fff;
  text-align: center;
  position: relative;
}
.schedule::before { content: ""; position: absolute; inset: 0; background: rgba(30, 58, 92, .93); }
.schedule .container { position: relative; }
.schedule p.lead { font-size: 19px; color: #DCE9F2; margin-bottom: 30px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; padding-top: 44px; border-top: 1px solid rgba(255, 255, 255, .18); }
.stat__num { font-family: var(--font-display); font-weight: 900; font-size: clamp(38px, 4.4vw, 54px); color: #fff; line-height: 1; }
.stat__label { margin-top: 8px; color: #BFE0E4; font-size: 15px; font-weight: 600; }

/* ---------- 16 Why Cleaning Matters ---------- */
.matters__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: center; }
.matters__collage { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; position: relative; }
.matters__collage img { width: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.matters__collage img:first-child { height: 460px; }
.matters__collage img:nth-child(2) { height: 340px; align-self: end; }
.matters__collage .collage__icon { left: auto; right: calc(50% - 46px); bottom: auto; top: 30px; background: var(--color-primary); }
.quote {
  position: relative;
  margin: 8px 0 24px;
  padding: 28px 30px 26px 34px;
  background: var(--color-accent-soft);
  border-left: 5px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 18px; font-style: italic;
  color: var(--color-primary-dark);
}
.quote cite { display: block; margin-top: 12px; font-style: normal; font-weight: 700; color: var(--color-accent-dark); font-size: 15px; letter-spacing: .08em; text-transform: uppercase; }
.matters__content > p { color: var(--color-text-muted); }

/* ---------- 17 Service Areas ---------- */
.areas {
  background: linear-gradient(180deg, rgba(243, 248, 249, .95), rgba(243, 248, 249, .95)), url('../images/gallery/bright-kitchen.jpg') center / cover no-repeat;
}
.areas__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.area-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  padding: 30px 18px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.area-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--color-accent); }
.area-card__icon {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--color-accent-soft); color: var(--color-primary);
  transition: background .3s, color .3s;
}
.area-card:hover .area-card__icon { background: var(--color-primary); color: #fff; }
.area-card__icon svg { width: 26px; height: 26px; }
.area-card h3 { font-size: 20px; }
.area-card small { color: var(--color-text-muted); font-size: 14px; margin-top: -8px; }
.areas__note { text-align: center; margin-top: 36px; color: var(--color-text-muted); }

/* ---------- 18 What to Expect (steps) + FAQ ---------- */
.expect__steps { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; margin-bottom: 100px; }
.expect__media { position: relative; }
.expect__media img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.expect__media .collage__icon { left: auto; right: -20px; bottom: 40px; }
.steps { display: grid; gap: 22px; }
.step {
  display: grid; grid-template-columns: 70px 1fr; gap: 20px; align-items: start;
  padding: 26px 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.step__num {
  width: 70px; height: 70px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--color-primary); color: #fff;
  font-family: var(--font-display); font-weight: 900; font-size: 28px;
}
.step:nth-child(2) .step__num { background: var(--color-accent); color: var(--color-primary-dark); }
.step:nth-child(3) .step__num { background: var(--color-primary-dark); }
.step h3 { font-size: 20px; margin-bottom: 6px; letter-spacing: .02em; }
.step h3 small { display: block; font-family: var(--font-body); font-size: 13px; letter-spacing: .2em; color: var(--color-accent-dark); font-weight: 700; }
.step h3 a { border-bottom: 2px solid var(--color-accent); }
.step p { color: var(--color-text-muted); font-size: 16px; }

.faq__title { text-align: center; font-size: clamp(28px, 3.2vw, 40px); margin-bottom: 12px; }
.faq__list { max-width: 900px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item.is-open { border-color: var(--color-accent); box-shadow: var(--shadow-sm); }
.faq-item__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px;
  background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--color-primary);
}
.faq-item__icon {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--color-accent-soft); color: var(--color-primary);
  transition: transform .3s var(--ease), background .3s, color .3s;
}
.faq-item__icon svg { width: 16px; height: 16px; }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); background: var(--color-primary); color: #fff; }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item__a-inner { padding: 0 26px 24px; color: var(--color-text-muted); }
.faq-item__a-inner p + p { margin-top: 12px; }
.faq-item__a-inner a { color: var(--color-primary); font-weight: 700; }

/* ---------- 19 Book Now ---------- */
.booknow {
  padding: 90px 0;
  background: linear-gradient(120deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, #3F6E8C 100%);
  color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.booknow::before, .booknow::after {
  content: ""; position: absolute; border-radius: 50%;
  border: 2px solid rgba(191, 224, 228, .18);
}
.booknow::before { width: 420px; height: 420px; left: -140px; top: -160px; }
.booknow::after { width: 300px; height: 300px; right: -90px; bottom: -130px; }
.booknow .container { position: relative; z-index: 1; }
.booknow h2 { color: #fff; font-size: clamp(30px, 4vw, 48px); margin-bottom: 14px; }
.booknow p { color: #DCE9F2; margin-bottom: 30px; font-size: 18px; }

/* ---------- 20 Footer ---------- */
.footer {
  background: #F7FAFB;
  border-top: 5px solid var(--color-accent);
  padding: 90px 0 0;
  font-size: 16px;
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 60px; }
.footer__brand img { height: 48px; width: auto; max-width: 220px; object-fit: contain; margin-bottom: 20px; }
.footer__brand p { color: var(--color-text-muted); }
.footer__title { font-size: 19px; margin-bottom: 18px; }
.footer__list li { margin-bottom: 10px; }
.footer__list a { color: var(--color-text-muted); transition: color .2s, padding .2s; }
.footer__list a:hover { color: var(--color-primary); padding-left: 4px; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; color: var(--color-text-muted); }
.footer__contact-item svg { width: 18px; height: 18px; color: var(--color-accent-dark); margin-top: 4px; }
.footer__contact-item a:hover { color: var(--color-primary); }
.footer__hours { color: var(--color-text-muted); }
.footer__hours strong { color: var(--color-text-dark); display: block; }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding: 22px 0 26px;
  border-top: 1px solid var(--color-border);
  font-size: 14px; color: var(--color-text-muted);
}

/* ---------- 21 Sub-page Header ---------- */
.page-header {
  position: relative;
  padding: 110px 0 100px;
  background: var(--color-primary-dark) center / cover no-repeat;
  color: #fff; text-align: center;
}
.page-header::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30, 58, 92, .82), rgba(30, 58, 92, .7)); }
.page-header .container { position: relative; }
.page-header h1 { color: #fff; font-size: clamp(36px, 5vw, 58px); font-weight: 900; margin-bottom: 14px; }
.page-header p { color: #DCE9F2; font-size: 19px; max-width: 700px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 16px; font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #BFE0E4; }
.breadcrumb a:hover { color: #fff; }
.page-header--services { background-image: url('../images/gallery/kitchen-island.jpg'); }
.page-header--about    { background-image: url('../images/gallery/living-room.jpg'); }
.page-header--faq      { background-image: url('../images/gallery/bright-kitchen.jpg'); }
.page-header--contact  { background-image: url('../images/gallery/modern-kitchen.jpg'); }

/* ---------- 22 Services Page ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature + .feature { margin-top: 100px; }
.feature--reverse .feature__media { order: 2; }
.feature__media img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.feature__content p { color: var(--color-text-muted); margin-bottom: 18px; }
.checklist { display: grid; gap: 10px; margin: 6px 0 28px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li svg { width: 22px; height: 22px; color: var(--color-accent-dark); margin-top: 3px; }
.checklist--2col { grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.rooms__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.room-card { background: #fff; border-radius: var(--radius-lg); padding: 30px 26px; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.room-card__icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--color-accent-soft); color: var(--color-primary); margin-bottom: 18px; }
.room-card__icon svg { width: 28px; height: 28px; }
.room-card h3 { font-size: 21px; margin-bottom: 12px; }
.room-card ul li { position: relative; padding-left: 18px; color: var(--color-text-muted); font-size: 15px; margin-bottom: 6px; }
.room-card ul li::before { content: ""; position: absolute; left: 0; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--color-accent); }

/* ---------- 23 About Page ---------- */
.story__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.story__content p { color: var(--color-text-muted); margin-bottom: 18px; }
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value-card { background: #fff; border-radius: var(--radius-lg); padding: 34px 30px; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-card__icon { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--color-primary); color: #fff; margin-bottom: 18px; }
.value-card:nth-child(even) .value-card__icon { background: var(--color-accent); color: var(--color-primary-dark); }
.value-card__icon svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 21px; margin-bottom: 8px; }
.value-card p { color: var(--color-text-muted); font-size: 16px; }

/* ---------- 24 Contact Page & Forms ---------- */
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: start; }
.contact-info { display: grid; gap: 16px; }
.contact-info__item {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color .25s, transform .25s var(--ease);
}
a.contact-info__item:hover { border-color: var(--color-accent); transform: translateX(4px); }
.contact-info__icon { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--color-primary); color: #fff; flex-shrink: 0; }
.contact-info__icon svg { width: 22px; height: 22px; }
.contact-info__label { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--color-accent-dark); }
.contact-info__value { font-weight: 600; color: var(--color-text-dark); word-break: break-word; }
.form-card { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); border-top: 5px solid var(--color-accent); }
.form-card h2 { font-size: 30px; margin-bottom: 6px; }
.form-card > p { color: var(--color-text-muted); margin-bottom: 26px; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__full { grid-column: 1 / -1; }
.form label { display: block; font-size: 14px; font-weight: 700; color: var(--color-primary); margin-bottom: 6px; }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-light);
  font-size: 16px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--color-accent); background: #fff; box-shadow: 0 0 0 4px rgba(111, 168, 176, .18); }
.form textarea { min-height: 130px; resize: vertical; }
.form .btn { width: 100%; }
.form__note { font-size: 14px; color: var(--color-text-muted); text-align: center; }
.form__error { display: none; grid-column: 1 / -1; padding: 12px 16px; border-radius: var(--radius-sm); background: #FDECEC; color: #9B2C2C; font-size: 15px; font-weight: 600; }
.form__error.is-visible { display: block; }

/* ---------- 25 Scroll Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal--left { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }
.reveal--delay-3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- 26 Responsive ---------- */
@media (max-width: 1100px) {
  .nav { gap: 16px; }
  .nav__link { padding: 10px 10px; }
  .topbar__hide-md { display: none !important; }
}

/* Tablet */
@media (max-width: 1024px) {
  body { font-size: 16px; }
  .section { padding: 80px 0; }
  .menu-toggle { display: inline-flex; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(360px, 88vw);
    flex-direction: column; align-items: stretch; gap: 24px;
    padding: 96px 26px 30px;
    background: #fff;
    box-shadow: -20px 0 60px rgba(30, 58, 92, .25);
    clip-path: inset(0 0 0 100%);
    visibility: hidden;
    transition: clip-path .4s var(--ease), visibility 0s linear .4s;
    overflow-y: auto;
    z-index: 99;
  }
  .nav.is-open { clip-path: inset(0 0 0 -60px); visibility: visible; transition: clip-path .4s var(--ease); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { width: 100%; justify-content: space-between; padding: 14px 12px; font-size: 17px; border-bottom: 1px solid var(--color-border); border-radius: 0; }
  .nav__link.is-active { box-shadow: none; color: var(--color-accent-dark); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 12px; display: none; min-width: 0; }
  .nav__item--has-dropdown.is-open .dropdown { display: block; }
  .nav__item--has-dropdown.is-open > .nav__link svg { transform: rotate(180deg); }
  .nav__cta { flex-direction: column; }
  .nav__cta .btn { width: 100%; }
  .menu-toggle { position: relative; z-index: 101; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(15, 30, 48, .45); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; z-index: 98; }
  .nav-backdrop.is-visible { opacity: 1; visibility: visible; }

  .detail__inner, .choice__inner, .matters__inner, .story__inner, .feature, .contact__grid { grid-template-columns: 1fr; gap: 50px; }
  .feature--reverse .feature__media { order: 0; }
  .expect__steps { grid-template-columns: 1fr; }
  .expect__media img { height: 380px; }
  .why__panel { width: 100%; background: rgba(47, 84, 126, .94); padding: 80px 40px; }
  .areas__grid { grid-template-columns: repeat(3, 1fr); }
  .rooms__grid { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .promise__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --header-h: 70px; }
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .topbar__inner { justify-content: center; min-height: 42px; }
  .topbar__group--secondary { display: none; }
  .topbar__group { gap: 16px; }
  .topbar__email { display: none !important; }
  .header__logo img { height: 40px; max-width: 180px; }
  .hero { padding: 64px 0 120px; }
  .hero__card { padding: 30px 20px 26px; }
  .hero__card .btn-row .btn { width: 100%; }
  .cta-bar { margin-top: -46px; padding: 0 18px; }
  .cta-bar__inner { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
  .cta-bar__btn { padding: 20px 16px; }
  .collage { min-height: 0; }
  .collage__main { width: 100%; height: 320px; }
  .collage__secondary { position: relative; width: 70%; height: 220px; margin: -90px 0 0 auto; }
  .collage__icon { width: 74px; height: 74px; left: 12px; bottom: 30px; }
  .band { display: none; }
  .why__panel { padding: 64px 22px; min-height: 0; }
  .why__list { grid-template-columns: 1fr; }
  .plans__grid, .promise__grid { grid-template-columns: 1fr; }
  .plan-card { min-height: 360px; }
  .plan-card__body { padding: 26px; }
  .choice__media img { height: 340px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
  .matters__collage img:first-child { height: 300px; }
  .matters__collage img:nth-child(2) { height: 230px; }
  .areas__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .area-card { padding: 22px 12px; }
  .area-card h3 { font-size: 17px; }
  .expect__steps { margin-bottom: 70px; }
  .expect__media { display: none; }
  .step { grid-template-columns: 54px 1fr; padding: 22px 18px; gap: 16px; }
  .step__num { width: 54px; height: 54px; font-size: 22px; }
  .faq-item__q { padding: 18px; font-size: 17px; }
  .faq-item__a-inner { padding: 0 18px 20px; }
  .btn-row--stack-mobile .btn { width: 100%; }
  .footer { padding-top: 64px; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { justify-content: center; text-align: center; }
  .page-header { padding: 80px 0 70px; }
  .feature__media img { height: 300px; }
  .checklist--2col { grid-template-columns: 1fr; }
  .rooms__grid, .values__grid { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
}

@media (max-width: 360px) {
  .btn { padding: 14px 22px; font-size: 15px; }
  .areas__grid { grid-template-columns: 1fr; }
}
