/* ============================================================
   ZENZELE INKULEKO CONSTRUCTION
   Stylesheet v2.0 - CraftConnect SA Production
   Audit v2: Light theme applied. Dark sections preserved for rhythm.
   ============================================================ */

/* GOOGLE FONTS: loaded via <link> in each page <head> (preconnect + stylesheet)
   so font download starts in parallel with this file instead of after it. */

/* SKIP NAVIGATION LINK (accessibility) */
.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 10000;
  background: var(--green-primary, #2ec43d);
  color: #0d0d0d;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 0;
}

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* WARM BASE COLOURS – Jeffrey’s Bay sand & sun feel */
  --bg-primary:       #f8f4ed;     /* warm off-white / beach sand */
  --bg-secondary:     #fffcf7;
  --bg-card:          #fffdf7;
  --bg-surface:       #f2ede4;     /* very light terracotta tint */

  --text-primary:     #2c2c2c;
  --text-secondary:   #5c5648;     /* warmer brown-grey */
  --text-muted:       #8a7f6b;

  /* Keep your signature green but slightly deeper */
  --green-primary:    #2ec43d;   /* brand green: icons, accents, large headings, backgrounds */
  --green-dark:       #22a030;   /* hover states */
  --green-light:      #4fd45e;   /* subtle highlights only */
  --green-text:       #1e8c2b;   /* the only green allowed for text under 24px (WCAG AA on the cream background) */
  --green-glow:       rgba(46, 196, 61, 0.12);
  /* WhatsApp brand green #25D366 is allowed ONLY on WhatsApp buttons and the float. */

  /* New warm accents */
  --warm-beige:       #e8d9c2;
  --terracotta:       #c76d4e;

  /* Existing radius & effects – we will override below */
  --radius:           8px;
  --radius-lg:        16px;
  --shadow-card:      0 10px 30px rgba(0,0,0,0.08);
  --shadow-card-hover:0 20px 40px rgba(46, 196, 61, 0.18);
  --section-pad:      96px;

  /* Dark section tokens - used by CTA, stats strip, etc. */
  --dark-bg:          #141414;
  --dark-bg-card:     #1e1e1e;
  --dark-border:      rgba(255,255,255,0.08);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  background-image:
    radial-gradient(1200px 600px at 85% -100px, rgba(199, 109, 78, 0.10), transparent 60%),
    radial-gradient(900px 500px at -100px 40%, rgba(46, 196, 61, 0.04), transparent 60%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); }

h1, h2, h3 {
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
}
h4 { font-size: 1.4rem; }

p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.text-green  { color: var(--green-primary) !important; }
.text-white  { color: #ffffff !important; }
.text-muted  { color: var(--text-muted) !important; }
.text-center { text-align: center; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section + .section,
.page-hero + .section,
.stats-strip + .section,
.section + .stats-strip {
  margin-top: 0;
}

/* Light section variants */
.section--dark    { background-color: var(--bg-primary); }
.section--mid     { background-color: #ede5d5; }
.section--surface {
  background-color: var(--bg-surface);
  border-top: 1px solid rgba(199, 109, 78, 0.12);
  border-bottom: 1px solid rgba(199, 109, 78, 0.12);
}

/* Editorial accent: the single green word in headings reads as crafted, not templated */
.section-heading .text-green,
.page-hero h1 .text-green {
  font-style: italic;
}

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

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

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================================
   SECTION LABELS & HEADINGS
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-text);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--green-primary);
  flex-shrink: 0;
}

.section-heading {
  margin-bottom: 16px;
}

.section-subheading {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.green-underline {
  position: relative;
  display: inline-block;
}

.green-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--green-primary);
  border-radius: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46, 196, 61, 0.30);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  transform: translateY(-2px);
}

/* White outline variant for use inside dark sections */
.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.35);
}

.btn-outline-white:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
}

.btn-outline-green:hover {
  background: var(--green-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* WhatsApp brand button */
.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  border: none;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

/* Email CTA button - dark solid, distinct from green */
.btn-email {
  background: #1a1a2e;
  color: #ffffff;
  border: none;
}

.btn-email:hover {
  background: #16213e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

/* Nav CTA - near-black, matches design mockup */
.btn-dark {
  background: #141414;
  color: #ffffff;
  border: none;
}

.btn-dark:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 0.9rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}

/* Default solid white state (interior pages start here via JS) */
.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

/* Home page: nav is over dark hero - keep links white until scrolled */
.nav--over-dark:not(.scrolled) .nav__link {
  color: rgba(255,255,255,0.82);
}

.nav--over-dark:not(.scrolled) .nav__link:hover,
.nav--over-dark:not(.scrolled) .nav__link.active {
  color: var(--green-primary);
  background: rgba(255,255,255,0.08);
}

.nav--over-dark:not(.scrolled) .nav__logo-name {
  color: #ffffff;
}

.nav--over-dark:not(.scrolled) .nav__toggle span {
  background: #ffffff;
}

/* Split hero nav - dark text on transparent background (left panel is light) */
.nav--split-hero:not(.scrolled) .nav__link {
  color: var(--text-primary);
}

.nav--split-hero:not(.scrolled) .nav__link:hover,
.nav--split-hero:not(.scrolled) .nav__link.active {
  color: var(--green-primary);
  background: rgba(0,0,0,0.05);
}

.nav--split-hero:not(.scrolled) .nav__logo-name {
  color: var(--text-primary);
}

.nav--split-hero:not(.scrolled) .nav__toggle span {
  background: var(--text-primary);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  transition: var(--transition);
}

.nav__logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-text);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--green-primary);
  background: var(--green-glow);
}

.nav__cta {
  margin-left: 16px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}

/* Mobile Nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.nav__mobile.open { display: flex; }

.nav__mobile-link {
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

.nav__mobile-link:last-child { border-bottom: none; }

.nav__mobile-link:hover {
  color: var(--green-primary);
  background: var(--green-glow);
  padding-left: 24px;
}

/* ============================================================
   HERO - EXACT IMAGE MATCH
   ============================================================ */

:root {
  --nav-height: 96px;
  --max-width: 1440px;
  --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: all 0.3s ease;
  --border-color: rgba(0,0,0,0.08);
  --green-border: rgba(46,196,61,0.18);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #f4f4f2;
}

.hero--split {
  display: flex;
  min-height: 100vh;
  position: relative;
}

/* =========================
   LEFT PANEL
   ========================= */

.hero__left {
  position: relative;
  width: 52%;
  min-height: 100vh;
  z-index: 3;
  background:
    linear-gradient(
      100deg,
      rgba(255,255,255,0.98) 0%,
      rgba(247,247,247,0.96) 70%,
      rgba(240,240,240,0.92) 100%
    );
  clip-path: polygon(0 0, 88% 0, 72% 100%, 0 100%);
  display: flex;
  align-items: center;
  padding:
    calc(var(--nav-height) + 10px)
    60px
    120px
    70px;
  backdrop-filter: blur(2px);
}

.hero__left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.35),
      rgba(255,255,255,0)
    );
  pointer-events: none;
}

.hero__left-content {
  max-width: 540px;
  position: relative;
  z-index: 2;
  margin-top: -20px;
}

.hero__eyebrow {
  position: relative;
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1d1d1d;
  margin-bottom: 34px;
  padding-bottom: 16px;
}

.hero__eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 66px;
  height: 3px;
  background: var(--green-primary);
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(4.6rem, 5vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 500;
  color: #171717;
  margin-bottom: 32px;
}

.hero__headline .line-2 {
  color: var(--green-primary);
  display: block;
}

.hero__sub {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #343434;
  max-width: 510px;
  margin-bottom: 40px;
}

/* =========================
   SERVICE CARDS
   ========================= */

.hero__service-cards {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

.hero__scard {
  width: 312px;
  min-height: 196px;
  border-radius: 18px;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(46,196,61,0.18), transparent 40%),
    linear-gradient(145deg, #132418 0%, #0f1411 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 10px 35px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.03);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.hero__scard--dark {
  background:
    radial-gradient(circle at top left, rgba(46,196,61,0.08), transparent 35%),
    linear-gradient(145deg, #1f2323 0%, #111313 100%);
}

.hero__scard:hover {
  transform: translateY(-6px);
}

.hero__scard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

.hero__scard-icon {
  font-size: 1.4rem;
  color: #ffffff;
}

.hero__scard-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 1rem;
}

.hero__scard-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero__scard-line {
  width: 40px;
  height: 3px;
  background: var(--green-primary);
  margin-bottom: 14px;
}

.hero__scard-sub {
  font-size: 0.96rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.76);
}

/* =========================
   RIGHT IMAGE PANEL
   ========================= */

.hero__right {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(85%) sepia(8%) brightness(1.03) contrast(1.05);
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(255,255,255,0.18) 0%,
      rgba(255,255,255,0.02) 30%,
      rgba(0,0,0,0.18) 100%
    );
}

/* =========================
   TRUST BAR
   ========================= */

.hero__trust-bar {
  width: 100%;
  max-width: 1100px;
  margin: -28px auto 0;
  position: relative;
  z-index: 21;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 8px 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-right: 1px solid var(--border-color);
}

.hero__trust-item:last-child {
  border-right: none;
}

.hero__trust-icon {
  font-size: 1.45rem;
  color: var(--green-primary);
}

.hero__trust-text strong {
  display: block;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 6px;
}

.hero__trust-text span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* =========================
   STATS STRIP
   ========================= */

.stats-strip {
  position: relative;
  z-index: 20;
  margin-top: -34px;
  padding: 0 52px 42px;
  background: transparent;
}

.stats-strip__inner {
  background: #ffffff;
  border-radius: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

.stat-item {
  padding: 34px 38px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid rgba(0,0,0,0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__icon {
  width: 66px;
  height: 66px;
  border-radius: 16px;
  background: #eef7e8;
  color: #19361f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.stat-item__text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  color: #171717;
  margin-bottom: 8px;
}

.stat-item__text span {
  font-size: 1rem;
  color: #4a4a4a;
}

/* =========================
   NAVBAR TUNING
   ========================= */

.nav__links {
  gap: 18px;
}

.nav__link {
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: #191919;
}

.nav__link.active {
  position: relative;
}

.nav__link.active::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: #171717;
}

.nav__cta {
  border-radius: 14px;
  padding: 18px 34px;
  font-size: 0.95rem;
  background: #171717;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1200px) {
  .hero__headline {
    font-size: 5rem;
  }
  .hero__trust-bar {
    /* left: 40% removed - leftover from an old absolute layout, it shifted
       the relative bar off-canvas on tablet widths */
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    max-width: calc(100% - 48px);
  }
  .hero__service-cards {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero--split {
    display: block;
  }
  .hero__left {
    width: 100%;
    clip-path: none;
    padding: 140px 24px 40px;
  }
  .hero__right {
    position: relative;
    height: 70vh;
  }
  .hero__headline {
    font-size: 4rem;
  }
  .hero__service-cards {
    flex-direction: column;
  }
  .hero__scard {
    width: 100%;
  }
  .hero__trust-bar {
    /* left/right/bottom removed - they offset the relative bar past the
       viewport edge on phones. Margins constrain it instead. */
    margin: -28px 16px 0;
    width: auto;
    max-width: none;
    grid-template-columns: 1fr;
  }
  .stats-strip {
    margin-top: 24px;
    padding: 0 20px 40px;
  }
  .stats-strip__inner {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
}


/* ============================================================
   SERVICE CARDS
   FIX 2: Floating individual cards with hover lift, no gap-border grid
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  background: transparent;
  border: none;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  /* Flex column so the "View Details" link always pins to the bottom */
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--green-border);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--green-glow);
  border: 1px solid var(--green-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}

.service-card__icon i {
  font-size: 1.3rem;
  color: var(--green-primary);
}

.service-card:hover .service-card__icon {
  background: var(--green-primary);
  border-color: var(--green-primary);
}

.service-card:hover .service-card__icon i {
  color: #ffffff;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-text);
  transition: var(--transition);
  margin-top: auto;   /* always sits at card bottom */
  padding-top: 16px;  /* breathing room above the link */
}

.service-card__link i {
  font-size: 0.7rem;
  transition: var(--transition);
}

.service-card:hover .service-card__link i {
  transform: translateX(4px);
}

/* Break the Perfect Grid – Add Organic Flow */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;           /* prevents uniform height */
}

/* Make placeholders feel less rigid */
.gallery-placeholder {
  border-radius: 28px;
  background: linear-gradient(145deg, #f8f4ed, #e8d9c2);
  border: 3px dashed var(--warm-beige);
}

/* ============================================================
   ABOUT TEASER
   ============================================================ */
.about-teaser__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}

.about-teaser__image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-teaser__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(0,0,0,0.65) 100%
  );
}

.about-teaser__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.about-stat {
  background: rgba(10, 10, 10, 0.80);
  backdrop-filter: blur(12px);
  padding: 20px 16px;
  text-align: center;
}

.about-stat__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--green-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.about-teaser__content {
  padding: 20px 0;
}

.about-teaser__list {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-teaser__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.about-teaser__list li i {
  color: var(--green-primary);
  font-size: 0.85rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ============================================================
   ZI BLINDS CALLOUT
   FIX 5: Intentionally kept dark for page rhythm
   ============================================================ */
.blinds-callout {
  /* Explicit dark - does not inherit light theme bg */
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 80px 0;
  position: relative;
  overflow: hidden;

  /* Scope dark variables for all children */
  --text-primary:   #ffffff;
  --text-secondary: #a8a8a8;
  --text-muted:     #5c5c5c;
  --bg-card:        var(--dark-bg-card);
  --border-color:   var(--dark-border);
}

.blinds-callout::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,196,61,0.07) 0%, transparent 70%);
}

.blinds-callout__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.blinds-callout__logo {
  flex-shrink: 0;
  width: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--green-border);
}

.blinds-callout__content {
  flex: 1;
}

.blinds-callout__products {
  display: flex;
  gap: 0;
  margin: 24px 0;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.blinds-product-pill {
  flex: 1;
  padding: 16px;
  text-align: center;
  border-right: 1px solid var(--dark-border);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition);
  background: var(--dark-bg-card);
}

.blinds-product-pill:last-child { border-right: none; }

.blinds-product-pill i {
  display: block;
  font-size: 1.1rem;
  color: var(--green-primary);
  margin-bottom: 8px;
}

.blinds-product-pill:hover {
  background: var(--green-glow);
  color: var(--green-primary);
}

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats-section {
  padding: 80px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.stat-block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.stat-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--green-border);
}

.stat-block__number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--green-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-block__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
/* ============================================================
   REVIEWS SECTION - Google Reviews Style
   ============================================================ */
.reviews-section {
  background: var(--bg-surface);
}

/* Header row: heading centered */
.reviews-header {
  text-align: center;
  margin-bottom: 52px;
}

/* 3-column review cards grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Individual review card */
.review-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  border-color: rgba(26, 115, 232, 0.2);
}

/* Top row: avatar + name/date + Google G */
.review-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--avatar-bg, #5f6368);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
}

.review-card__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.review-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.review-card__date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Responsive */
.review-card__stars {
  display: flex;
  gap: 2px;
}

.review-card__stars i {
  font-size: 0.82rem;
  color: #F4B400;
}

/* Review body */
.review-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: normal;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-grid .review-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .reviews-summary {
    align-items: flex-start;
    width: 100%;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid .review-card:last-child {
    grid-column: auto;
  }
}

/* ============================================================
   CTA SECTION
   FIX 5: Intentionally kept dark for page rhythm
   ============================================================ */
.cta-section {
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;

  /* Scope dark variables for all children */
  --text-primary:   #ffffff;
  --text-secondary: #a8a8a8;
  --text-muted:     #5c5c5c;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(46,196,61,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.05rem;
  color: #a8a8a8;
  max-width: 520px;
  margin: 0 auto 44px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--green-primary);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

.cta-phone i {
  font-size: 2rem;
}

/* ============================================================
   FOOTER
   Kept dark - standard pattern, gives page a strong close
   ============================================================ */
.footer {
  background: #141414;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 64px 0 0;

  /* Scope dark variables */
  --text-primary:   #ffffff;
  --text-secondary: #a8a8a8;
  --text-muted:     #5c5c5c;
  --bg-card:        var(--dark-bg-card);
  --border-color:   rgba(255,255,255,0.08);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand-text {
  font-size: 0.9rem;
  color: #5c5c5c;
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c5c5c;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__social-link:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: var(--green-glow);
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.88rem;
  color: #5c5c5c;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer__link:hover {
  color: var(--green-primary);
  padding-left: 6px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__contact-item i {
  font-size: 0.85rem;
  color: var(--green-primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer__contact-item span {
  font-size: 0.88rem;
  color: #5c5c5c;
  line-height: 1.5;
}

.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: #5c5c5c;
}

.footer__nhbrc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-glow);
  border: 1px solid var(--green-border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-text);
}

.footer__nhbrc i { font-size: 0.7rem; }

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
}

.wa-float__btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: wa-pulse 3s infinite;
}

.wa-float__btn i {
  font-size: 1.6rem;
  color: white;
}

.wa-float__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.wa-float__tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.wa-float__tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--border-color);
}

.wa-float:hover .wa-float__tooltip {
  opacity: 1;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.08); }
}

/* ============================================================
   PAGE HERO (Interior Pages)
   FIX 3: Nav now receives .scrolled on page load for interior pages (via JS)
   ============================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,196,61,0.06) 0%, transparent 65%);
}

.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 16px;
}

.page-hero__label i { font-size: 0.65rem; }

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

.page-hero__bg-text {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 18vw;
  color: rgba(0,0,0,0.04);
  letter-spacing: -0.02em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-border), transparent);
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.process-step__number {
  width: 72px;
  height: 72px;
  background: var(--green-primary);
  color: #0d0d0d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(46, 196, 61, 0.3);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.process-step:hover .process-step__number {
  transform: scale(1.05);
}

/* Process step watermark numbers */
.process-step {
  overflow: hidden;
}

.process-step[data-step]::before {
  content: attr(data-step);
  position: absolute;
  right: -8px;
  top: -16px;
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 1;
  color: rgba(46, 196, 61, 0.05);
  font-weight: bold;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 768px) {
  .process-step[data-step]::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .process-step__number {
    width: 56px;
    height: 56px;
    font-size: 1.8rem;
  }
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.process-step__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-card-hover);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__overlay i {
  font-size: 1.5rem;
  color: white;
}

.gallery-placeholder {
  background: var(--bg-card);
  border: 2px dashed var(--border-color);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  transition: var(--transition);
}

.gallery-placeholder:hover {
  border-color: var(--green-border);
  background: var(--green-glow);
}

.gallery-placeholder i {
  font-size: 2rem;
  color: var(--text-muted);
}

.gallery-placeholder span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-control::placeholder { color: var(--text-muted); }

.form-control:focus {
  border-color: var(--green-primary);
  background: var(--bg-secondary);
  box-shadow: 0 0 0 3px rgba(46, 196, 61, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999999' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  margin-bottom: 16px;
}

.contact-info-card:hover {
  border-color: var(--green-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.contact-info-card__icon {
  width: 48px;
  height: 48px;
  background: var(--green-glow);
  border: 1px solid var(--green-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-info-card__icon i {
  font-size: 1.1rem;
  color: var(--green-primary);
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.contact-info-card p, .contact-info-card a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.contact-info-card a:hover { color: var(--green-primary); }

/* FIX 6: Map - natural colour, remove dark invert */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  height: 300px;
  margin-top: 16px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  /* No filter - natural map colours */
}

/* ============================================================
   SERVICES PAGE SPECIFIC
   ============================================================ */
.service-detail {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  margin-bottom: 24px;
}

.service-detail:hover { border-color: var(--green-border); }

.service-detail__header {
  padding: 40px 44px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-surface);
}

.service-detail__icon {
  width: 64px;
  height: 64px;
  background: var(--green-glow);
  border: 1px solid var(--green-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-detail__icon i {
  font-size: 1.4rem;
  color: var(--green-primary);
}

.service-detail__body {
  padding: 32px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-detail__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background: var(--bg-surface);
  transition: var(--transition);
}

.service-detail__list li:hover {
  border-color: var(--green-border);
  background: var(--green-glow);
}

.service-detail__list li i {
  color: var(--green-primary);
  font-size: 0.78rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ============================================================
   DARK SECTION HEADING OVERRIDES
   Headings in dark sections need explicit colour because CSS custom
   property scoping doesn't override inherited computed values in all
   browsers. Direct rules guarantee visibility.
   ============================================================ */
.blinds-callout h1,
.blinds-callout h2,
.blinds-callout h3,
.blinds-callout h4,
.blinds-callout h5,
.blinds-callout .section-heading {
  color: #ffffff;
}

.blinds-callout p {
  color: #a8a8a8;
}

.cta-section h1,
.cta-section h3,
.cta-section h4,
.cta-section h5 {
  color: #ffffff;
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5 {
  color: #ffffff;
}

/* ============================================================
   BLINDS PAGE SPECIFIC
   ============================================================ */
.blinds-hero {
  position: relative;
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: #0f1a10;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;

  /* Scope dark variables so headings and text are readable */
  --text-primary:   #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.72);
  --text-muted:     rgba(255, 255, 255, 0.45);
  --border-color:   rgba(255, 255, 255, 0.10);
}

.blinds-hero h1,
.blinds-hero h2,
.blinds-hero h3,
.blinds-hero h4,
.blinds-hero h5 {
  color: #ffffff;
}

.blinds-hero p {
  color: rgba(255, 255, 255, 0.72);
}

.blinds-hero .breadcrumb,
.blinds-hero .breadcrumb a,
.blinds-hero .breadcrumb span {
  color: rgba(255, 255, 255, 0.45);
}

.blinds-hero .breadcrumb a:hover {
  color: var(--green-primary);
}

.blinds-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57,212,74,0.08) 0%, transparent 65%);
}

.blinds-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.blinds-hero__inner .breadcrumb {
  margin-bottom: 32px;
}

.blinds-hero__logo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 28px;
  border: 2px solid rgba(57,212,74,0.35);
  box-shadow: 0 0 40px rgba(57,212,74,0.15);
}

.discount-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #1a3a1c, #0f1a10);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  padding: 18px 28px;
  margin-top: 40px;
}

.discount-banner__icon {
  width: 44px;
  height: 44px;
  background: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.discount-banner__icon i {
  color: #0d0d0d;
  font-size: 1rem;
}

.discount-banner__text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-primary);
}

.discount-banner__text span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: var(--green-border);
}

.feature-item i {
  color: var(--green-primary);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.feature-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .feature-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.nhbrc-badge {
  background: var(--bg-card);
  border: 1px solid var(--green-border);
  border-left: 4px solid var(--terracotta);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
}

.nhbrc-badge__icon {
  width: 72px;
  height: 72px;
  background: var(--green-glow);
  border: 2px solid var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nhbrc-badge__icon i {
  font-size: 1.6rem;
  color: var(--green-primary);
}

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

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--green-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.value-card i {
  font-size: 1.4rem;
  color: var(--green-primary);
  margin-bottom: 16px;
  display: block;
}

.value-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   TRUST STRIP (Contact page)
   Audit fix 2026-06-10: these classes were used in contact.html
   but had no styles at all.
   ============================================================ */
.trust-strip {
  padding: 0 24px 64px;
  background: var(--bg-primary);
}

.trust-strip__inner {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid rgba(0,0,0,0.08);
}

.trust-item:last-child { border-right: none; }

.trust-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-glow);
  border: 1px solid var(--green-border);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.trust-item__text strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.trust-item__text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .trust-strip__inner { grid-template-columns: 1fr; }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .trust-item:last-child { border-bottom: none; }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--green-text); }
.breadcrumb i { font-size: 0.6rem; color: var(--text-muted); }
.breadcrumb span { color: var(--text-secondary); }

/* ============================================================
   FOCUS VISIBLE - Keyboard Accessibility
   ============================================================ */
:focus { outline: none; }

:focus-visible {
  outline: 2px solid var(--green-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline: 2px solid var(--green-primary);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(46, 196, 61, 0.18);
}

.nav__link:focus-visible,
.nav__mobile-link:focus-visible,
.footer__link:focus-visible {
  outline: 2px solid var(--green-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.form-control:focus-visible {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(46, 196, 61, 0.12);
}

.nav__toggle:focus-visible {
  outline: 2px solid var(--green-primary);
  outline-offset: 4px;
  border-radius: 6px;
}

.wa-float__btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.footer__social-link:focus-visible {
  outline: 2px solid var(--green-primary);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ============================================================
   AOS OVERRIDES
   ============================================================ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1400px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .service-card { padding: 24px 18px; }
}

@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  /* stats-strip responsive handled in hero section */
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  :root { --section-pad: 72px; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .service-card { padding: 22px 16px; }
  .service-card__title { font-size: 1.2rem; }
  .service-card__text { font-size: 0.82rem; }
  .blinds-callout__inner { flex-direction: column; gap: 40px; }
  .blinds-callout__logo { width: 140px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .service-detail__body { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

@media (max-width: 640px) {
  :root { --section-pad: 56px; --nav-height: 68px; }
  .grid-3, .services-grid { grid-template-columns: 1fr; }
  /* stats-strip mobile handled in hero section */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .blinds-callout__products { flex-wrap: wrap; }
  .blinds-product-pill { min-width: 50%; }
  .footer__inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .cta-phone { font-size: 2rem; }
  .values-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .process-steps { grid-template-columns: 1fr; }
  .service-detail__header { padding: 28px 24px; }
  .service-detail__body { padding: 24px; }
  .nhbrc-badge { flex-direction: column; gap: 16px; }
  .stat-block { padding: 32px 20px; }
  .about-teaser__image-wrap img { height: 360px; }
  .page-hero { padding: calc(var(--nav-height) + 48px) 0 48px; }
}

/* ============================================================
   REDUCED MOTION - Accessibility
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.1ms !important;
    scroll-behavior: auto !important;
  }
  .hero__bg {
    transition: none !important;
    transform: scale(1) !important;
  }
  .hero__bg.loaded {
    transform: scale(1) !important;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .wa-float__btn {
    animation: none !important;
  }
  .hero__badge::before {
    animation: none !important;
    opacity: 1;
  }
  .scroll-arrow {
    animation: none !important;
  }
}

/* ============================================================
   GALLERY FILTER ACTIVE STATE
   ============================================================ */
.gallery-filter-btn {
  transition: all 0.25s ease;
}
.gallery-filter-btn.is-active {
  background: var(--green-primary) !important;
  color: #0d0d0d !important;
  border-color: var(--green-primary) !important;
}
.gallery-item,
.gallery-placeholder {
  transition: opacity 0.3s ease, transform 0.3s ease, var(--transition);
}
.gallery-item.is-hidden,
.gallery-placeholder.is-hidden {
  display: none;
}

/* ============================================================
   SMALL TOUCH TARGETS - Mobile
   ============================================================ */
@media (max-width: 640px) {
  .wa-float {
    bottom: 20px;
    right: 20px;
  }
  .wa-float__btn {
    width: 52px;
    height: 52px;
  }
  .nav__toggle {
    padding: 10px 8px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .blinds-callout__inner {
    text-align: center;
  }
  .section-label {
    font-size: 0.7rem;
  }
  .contact-info-card {
    padding: 24px 20px;
  }
  .cta-section {
    padding: 72px 0;
  }
  .hero__sub {
    font-size: 1rem;
  }
  .page-hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }
}

/* ============================================================
   SERVICE MODALS
   ============================================================ */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.service-modal.is-open {
  display: flex;
}

.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  animation: modal-fade-in 0.3s ease-out;
}

.service-modal__panel {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modal-slide-in 0.3s ease-out;
  padding: 40px;
  text-align: center;
}

.service-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.service-modal__close:hover {
  background: var(--green-glow);
  border-color: var(--green-primary);
  color: var(--green-primary);
}

.service-modal__icon {
  width: 80px;
  height: 80px;
  background: var(--green-glow);
  border: 2px solid var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.service-modal__icon i {
  font-size: 2rem;
  color: var(--green-primary);
}

.service-modal h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.service-modal p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-modal p:last-of-type {
  margin-bottom: 32px;
}

@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modal-slide-in {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Modal responsive */
@media (max-width: 640px) {
  .service-modal__panel {
    padding: 32px 24px;
    margin: 20px;
  }

  .service-modal__icon {
    width: 64px;
    height: 64px;
  }

  .service-modal__icon i {
    font-size: 1.6rem;
  }

  .service-modal h3 {
    font-size: 1.5rem;
  }
}

/* ============================================================
   PEOPLE GRID - About Page
   ============================================================ */

.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.person-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.person-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-color: var(--green-border);
}

.person-card__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.person-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.person-card:hover .person-card__image img {
  transform: scale(1.05);
}

.person-card__content {
  padding: 32px;
}

.person-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.person-card__role {
  font-size: 0.9rem;
  color: var(--green-text);
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.person-card__bio {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.person-card__contact {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .people-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .person-card__content {
    padding: 24px;
  }

  .person-card h3 {
    font-size: 1.6rem;
  }
}

/* ============================================================
   PRODUCT SHOWCASE - Blinds Page
   ============================================================ */

.product-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.product-showcase__item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-showcase__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-color: var(--green-border);
}

.product-showcase__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.product-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-showcase__item:hover .product-showcase__image img {
  transform: scale(1.05);
}

.product-showcase__content {
  padding: 24px;
  text-align: center;
}

.product-showcase__icon {
  width: 64px;
  height: 64px;
  background: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #0d0d0d;
  font-size: 1.4rem;
}

.product-showcase__content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.product-showcase__content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ============================================================
   BLINDS STEPS - How It Works
   ============================================================ */

.blinds-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.blinds-step {
  flex: 1;
  text-align: center;
  max-width: 240px;
}

.blinds-step__number {
  width: 60px;
  height: 60px;
  background: var(--green-primary);
  color: #0d0d0d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.blinds-step h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.blinds-step p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9rem;
}

.blinds-steps__connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-border), transparent);
  flex-shrink: 0;
  align-self: center;
  margin-bottom: 60px;
}

/* ============================================================
   PRODUCT PLACEHOLDERS - Blinds Page
   ============================================================ */
.product-placeholder {
  position: relative;
  background: #111e12;
  overflow: hidden;
}

.product-placeholder__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-placeholder__inner svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Clickable product card */
.product-modal-trigger {
  cursor: pointer;
}

.product-modal-trigger:hover .product-showcase__image svg {
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.product-showcase__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-text);
  margin-top: 4px;
  transition: var(--transition);
}

.product-modal-trigger:hover .product-showcase__cta {
  gap: 12px;
}

/* ============================================================
   HOW IT WORKS - Mobile Fix
   ============================================================ */
@media (max-width: 768px) {
  .blinds-steps {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 0 8px;
  }

  .blinds-steps__connector {
    display: none;
  }

  .blinds-step {
    padding: 24px 20px;
    max-width: 100%;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
  }

  .blinds-step__number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 14px;
  }

  .blinds-step h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .blinds-step p {
    font-size: 0.88rem;
  }
}

/* ============================================================
   VALUE CARDS - Center Aligned
   ============================================================ */
.value-card {
  text-align: center;
}

.value-card i {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   SOFTENED GEOMETRY (rebuilt 2026-06-10)
   Soft corners and lift, without !important overrides or
   scale() hover (scale causes text blur on low-DPI screens).
   ============================================================ */
:root {
  --radius:    24px;
  --radius-lg: 32px;
}

.service-card,
.person-card,
.value-card,
.product-showcase__item,
.gallery-item,
.contact-info-card,
.nhbrc-badge,
.stat-item {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover,
.person-card:hover,
.value-card:hover,
.product-showcase__item:hover,
.gallery-item:hover,
.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

/* Softer, more approachable headings */
.section-heading,
h1, h2, h3 {
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* ============================================================
   AOS NO-JS / CDN-FAILURE FALLBACK (new, 2026-06-10)
   If AOS fails to load, data-aos elements must never stay hidden.
   Pairs with the fail-safe AOS init snippet on every page.
   ============================================================ */
body.no-aos [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}

/* ============================================================
   MOBILE STICKY ACTION BAR (conversion, 2026-06-10)
   Hidden on desktop; replaces the WhatsApp float on small
   screens to avoid doubling up.
   ============================================================ */
.mobile-action-bar { display: none; }

@media (max-width: 640px) {
  .mobile-action-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  }
  .mobile-action-bar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .mobile-action-bar__btn--call { background: #141414; color: #ffffff; }
  .mobile-action-bar__btn--wa   { background: #25D366; color: #ffffff; }
  .wa-float { display: none; }
  body { padding-bottom: 56px; }
  .footer { padding-bottom: 56px; }
}

/* ============================================================
   BUILD 2026-06-10 ADDITIONS
   ============================================================ */

/* G2 - TEAM NAME PENDING - dev placeholder */
.team-name-pending {
  color: var(--text-muted);
  font-style: italic;
  font-size: 1.2rem;
  border: 1px dashed var(--border-color);
  padding: 4px 12px;
  border-radius: 8px;
  display: inline-block;
}

/* G3 - PERSON CARD PHOTO PLACEHOLDER - warm tone replaces dark box */
.person-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0e4d0, #e5d3b8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
}

.person-card__placeholder svg {
  opacity: 0.5;
}

.person-card__placeholder span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(199, 109, 78, 0.7);
}

/* G5 - STORY IMAGE PLACEHOLDER - warm terracotta container */
.story__image--placeholder {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #f0e4d0 0%, #e0cdb5 50%, #d4bb9e 100%);
  border: 2px solid rgba(199, 109, 78, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.story__image--placeholder svg {
  width: 60%;
  height: auto;
  opacity: 0.35;
}

@media (max-width: 900px) {
  .story__image--placeholder {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .story__image--placeholder {
    height: 220px;
    margin-top: 24px;
  }
}

/* G6 - SERVICE DETAIL HEADER - watermark number */
.service-detail__header {
  position: relative;
  overflow: hidden;
}

.service-detail__header[data-service-num]::after {
  content: attr(data-service-num);
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 9rem;
  line-height: 1;
  color: rgba(46, 196, 61, 0.06);
  font-weight: bold;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

@media (max-width: 768px) {
  .service-detail__header[data-service-num]::after {
    display: none;
  }
}

/* G9 - SERVICE SUBHEADING - replaces inline styles on h4 elements */
.service-subheading {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  font-style: italic;
  font-weight: 500;
}

@media (max-width: 640px) {
  .service-subheading {
    font-size: 1.1rem;
  }
}

/* G10 - PRODUCT SHOWCASE - FEATURED 2x2 GRID (Blinds page upgrade) */
.product-showcase.product-showcase--featured {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.product-showcase.product-showcase--featured .product-showcase__image {
  height: 300px;
}

@media (max-width: 768px) {
  .product-showcase.product-showcase--featured {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-showcase.product-showcase--featured .product-showcase__image {
    height: 240px;
  }
}

@media (max-width: 580px) {
  .product-showcase.product-showcase--featured .product-showcase__image {
    height: 200px;
  }
}

/* G11 - DISCOUNT BANNER mobile stack */
@media (max-width: 640px) {
  .discount-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

/* G12 - GALLERY single-item grid fix */
.gallery-grid:has(.gallery-item:only-child) {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid:has(.gallery-item:only-child) .gallery-item {
  aspect-ratio: 4/3;
}

.gallery-grid:has(.gallery-item:only-child) .gallery-item img {
  object-fit: cover;
}

/* G13 - MAP WRAP - Google Maps embed container (Contact page) */
.map-wrap {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}

.map-wrap iframe {
  width: 100%;
  height: 280px;
  display: block;
  border: none;
}

@media (max-width: 768px) {
  .map-wrap iframe {
    height: 220px;
  }
}

@media (max-width: 580px) {
  .map-wrap iframe {
    height: 180px;
  }
}

/* G15 - REVIEWS DEV PLACEHOLDER - visible marker for non-live content
   Remove reviews-section--dev class from the HTML before launch */
.reviews-section--dev {
  outline: 3px dashed rgba(255, 180, 0, 0.5);
  outline-offset: -3px;
  position: relative;
}

.reviews-section--dev::before {
  content: "DEV: PLACEHOLDER REVIEWS - NOT FOR LAUNCH";
  display: block;
  text-align: center;
  background: rgba(255, 180, 0, 0.15);
  color: rgba(180, 120, 0, 0.9);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-bottom: 1px dashed rgba(255, 180, 0, 0.4);
  margin-bottom: 8px;
}
