/* ============================================================
   MAHIR — premium.css
   Extraordinary visual layer on top of style.css
   Noise grain · dot grid · spotlight glow · glassmorphism
   Stacked typography · cinematic hero · magnetic cards
   ============================================================ */

/* ── ENHANCED TOKENS ── */
:root {
  --yellow-rgb:     255, 214, 0;
  --noise-opacity:  0.035;
  --glow-spread:    180px;
  --card-glass:     rgba(255,255,255,0.04);
  --card-glass-bdr: rgba(255,255,255,0.08);
  --section-gap:    130px;
}

/* ═══════════════════════════════════════
   GLOBAL GRAIN TEXTURE
   SVG noise as pseudo — one rule covers all dark sections
═══════════════════════════════════════ */
.hero::after,
.stats-section::after,
.audience-split::after,
.testimonials-section::after,
.guarantee-section::after,
.cta-strip::after,
.map-section::after,
.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: var(--noise-opacity);
  pointer-events: none;
  z-index: 0;
}
/* Make sure content sits above grain */
.hero .hero-bg,
.hero .hero-glow-orb,
.hero .hero-particles,
.hero .hero-container,
.stats-section .container,
.stats-section .stats-grid,
.audience-split .split-panel,
.testimonials-section .container,
.guarantee-section .container,
.cta-strip .cta-strip-inner,
.map-section .map-container,
.site-footer .container,
.site-footer .footer-grid,
.site-footer .footer-bottom { position: relative; z-index: 1; }

/* ═══════════════════════════════════════
   DOT GRID ON LIGHT SECTIONS
═══════════════════════════════════════ */
.services-section,
.process-section,
.why-section,
.about-preview-section,
.blog-preview-section {
  position: relative;
}
.services-section::before,
.process-section::before,
.why-section::before,
.about-preview-section::before,
.blog-preview-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.services-section .container,
.services-section .section-header,
.services-section .services-grid,
.services-section .section-cta-row,
.process-section .container,
.why-section .container,
.about-preview-section .container,
.blog-preview-section .container { position: relative; z-index: 1; }

/* ═══════════════════════════════════════
   ANNOUNCE BAR — premium ticker style
═══════════════════════════════════════ */
.announce-bar {
  background: linear-gradient(90deg, #050505 0%, #0D0D0D 50%, #050505 100%);
  border-bottom: 1px solid rgba(255,214,0,.15);
}
.announce-center {
  background: linear-gradient(90deg, rgba(255,214,0,.12), rgba(255,214,0,.06), rgba(255,214,0,.12));
  padding: 4px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255,214,0,.2);
  backdrop-filter: blur(8px);
}

/* ═══════════════════════════════════════
   NAVBAR — frosted glass upgrade
═══════════════════════════════════════ */
.navbar {
  background: rgba(5,5,5,0) !important;
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s, box-shadow .4s !important;
}
.navbar.scrolled {
  background: rgba(5,5,5,.88) !important;
  backdrop-filter: blur(28px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(160%) !important;
  border-bottom-color: rgba(255,214,0,.1) !important;
  box-shadow: 0 1px 0 rgba(255,214,0,.06), 0 8px 40px rgba(0,0,0,.55) !important;
}

/* ═══════════════════════════════════════
   HERO — complete cinematic rebuild
═══════════════════════════════════════ */
.hero {
  background: #050505;
  min-height: calc(100vh - 114px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Animated radial mesh gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 20% 60%, rgba(255,214,0,.07) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(255,214,0,.04) 0%, transparent 60%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(255,214,0,.06) 0%, transparent 50%);
  animation: hero-bg-drift 14s ease-in-out infinite alternate;
}
@keyframes hero-bg-drift {
  0%   { opacity: 1; transform: scale(1) translate(0,0); }
  100% { opacity: .8; transform: scale(1.04) translate(-1%, 1%); }
}

/* Horizontal scan line overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,214,0,.012) 3px,
    rgba(255,214,0,.012) 4px
  );
  pointer-events: none;
  z-index: 0;
}

/* Hero grid overlay */
.hero-particles::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,214,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,214,0,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

/* HERO CONTENT — fitted to viewport, no overflow */
.hero-container {
  min-height: calc(100vh - 114px);
  padding-top: 40px;
  padding-bottom: 40px;
  gap: 48px;
  align-items: center;
}
.hero-content { max-width: 620px; }

.hero-eyebrow {
  position: relative;
  padding: 5px 14px 5px 10px;
  background: rgba(255,214,0,.08);
  border: 1px solid rgba(255,214,0,.25);
  border-radius: 30px;
  backdrop-filter: blur(8px);
  font-size: .62rem;
  letter-spacing: .14em;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  margin-right: 8px;
  flex-shrink: 0;
  animation: pulse-ring 2s ease-out infinite;
}

/* Hero H1 — tight, fits both lines in viewport */
.hero-content h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  line-height: .92;
  letter-spacing: -.03em;
  margin-bottom: 0;
  text-wrap: balance;
}
.hero-h1-line1 {
  display: block;
  color: var(--white);
  -webkit-text-stroke: 0px transparent;
}
.hero-h1-line2 {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--yellow);
  text-stroke: 2px var(--yellow);
  background: none;
  position: relative;
}
/* Yellow filled highlight word */
.hero-h1-line1 .highlight {
  color: var(--yellow);
  position: relative;
  display: inline-block;
}
.hero-h1-line1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 6px;
  background: rgba(255,214,0,.22);
  border-radius: 2px;
  z-index: -1;
}

.hero-sub {
  font-size: .98rem;
  color: rgba(255,255,255,.62);
  max-width: 480px;
  margin: 18px 0 24px;
  line-height: 1.7;
  border-left: 2px solid rgba(255,214,0,.35);
  padding-left: 14px;
}

/* Hero CTA cluster */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-cta-primary {
  padding: 14px 30px;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .01em;
  border-radius: 6px;
  box-shadow: 0 0 0 0 rgba(255,214,0,.5), inset 0 1px 0 rgba(255,255,255,.25);
  transition: box-shadow .3s, transform .2s, background .2s !important;
}
.hero-cta-primary:hover {
  box-shadow: 0 0 40px rgba(255,214,0,.55), inset 0 1px 0 rgba(255,255,255,.3) !important;
  transform: translateY(-2px) scale(1.02) !important;
}
.hero-cta-secondary {
  border-radius: 6px;
  padding: 12px 26px;
  position: relative;
  overflow: hidden;
}
.hero-cta-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,214,0,.07);
  opacity: 0;
  transition: opacity .25s;
}
.hero-cta-secondary:hover::before { opacity: 1; }

/* Badges — remove double checkmark (CSS adds ✓, HTML text starts with ✓) */
.hero-badges { gap: 8px; margin-top: 24px; }
.hero-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  backdrop-filter: blur(6px);
}
/* Remove the CSS ::before checkmark — HTML already has ✓ in the text */
.hero-badge-item::before { display: none; }

/* Hero floating cards — glass morphism, compact */
.hero-right { gap: 12px; }
.hero-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 3px solid var(--yellow);
  border-radius: 12px;
  padding: 16px 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.hero-card::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,214,0,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-card:hover {
  transform: translateX(-4px);
  box-shadow: 0 8px 36px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.1);
}
.hero-card-icon { font-size: 1.6rem; flex-shrink: 0; }
.hero-card strong { font-size: .98rem; letter-spacing: -.01em; }
.hero-card span { font-size: .76rem; }

/* Hero Image — cleaner on the right side */
.hero-image-v3 {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  min-height: 700px;
}

.cleaner-image {
  max-width: 130%;
  width: 130%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(255, 214, 0, 0.15));
  animation: float-cleaner 3s ease-in-out infinite;
  transform-origin: bottom center;
  margin-bottom: -80px;
}

@keyframes float-cleaner {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* ═══════════════════════════════════════
   TRUST BAR — premium thin line
═══════════════════════════════════════ */
.trust-bar {
  background: linear-gradient(90deg, #070707, #0D0D0D, #070707);
  border-top: 1px solid rgba(255,214,0,.1);
  border-bottom: 1px solid rgba(255,214,0,.07);
}
.trust-item { gap: 8px; padding: 20px 12px; }
.trust-label {
  font-size: .8rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.8);
}
.trust-icon { font-size: 1.2rem; }

/* ═══════════════════════════════════════
   SERVICES — elevated cards with glow
═══════════════════════════════════════ */
.services-section { padding: var(--section-gap) 0; }
.service-card {
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 16px;
  padding: 34px 26px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,.04), 0 0 0 0 rgba(255,214,0,0);
  transition: transform .32s cubic-bezier(.2,.8,.2,1), box-shadow .32s, border-color .32s !important;
  overflow: visible;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,214,0,.18) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-12px) !important;
  box-shadow:
    0 24px 60px rgba(255,214,0,.16),
    0 8px 20px rgba(0,0,0,.1) !important;
  border-color: rgba(255,214,0,.4) !important;
}
.service-card:hover::after { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-name { font-size: 1.02rem; font-weight: 800; letter-spacing: -.01em; }
.service-desc { font-size: .87rem; line-height: 1.65; }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(255,214,0,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════
   STATS — massive numbers, max impact
═══════════════════════════════════════ */
.stats-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #0A0A0A 0%, #111 50%, #0A0A0A 100%);
  position: relative;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,214,0,.35), transparent);
}
.stats-section::after { display: none; } /* disable grain here — use border instead */
.stats-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,214,0,.15), transparent);
  display: block !important;
  background-image: none;
  opacity: 1;
}
.stat-block { padding: 50px 24px; }
.stat-num,
.stat-plus,
.stat-static {
  font-size: clamp(3rem,6vw,4.8rem) !important;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #FFD600 0%, #FFB700 60%, #FFE033 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline !important;
}
.stat-label {
  font-size: .75rem;
  letter-spacing: .12em;
  margin-top: 10px;
  color: rgba(255,255,255,.45);
}
.stat-block:hover .stat-num,
.stat-block:hover .stat-plus,
.stat-block:hover .stat-static {
  background: linear-gradient(135deg, #FFE033 0%, #FFD600 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ═══════════════════════════════════════
   PROCESS — connector upgrade
═══════════════════════════════════════ */
.process-section { padding: var(--section-gap) 0; }
.step-num {
  width: 78px; height: 78px;
  background: #0A0A0A;
  border: 2px solid var(--yellow);
  font-size: 1.5rem;
  box-shadow:
    0 0 0 6px rgba(255,214,0,.06),
    0 0 30px rgba(255,214,0,.1);
  transition: box-shadow .3s, transform .3s;
}
.process-step:hover .step-num {
  box-shadow:
    0 0 0 8px rgba(255,214,0,.1),
    0 0 40px rgba(255,214,0,.2);
  transform: scale(1.08);
}
.process-connector {
  background: linear-gradient(90deg, var(--yellow) 0%, rgba(255,214,0,.3) 100%);
  height: 1px;
  box-shadow: 0 0 12px rgba(255,214,0,.3);
}

/* ═══════════════════════════════════════
   AUDIENCE SPLIT — cinematic panels
═══════════════════════════════════════ */
.audience-split { min-height: 560px; }
.split-panel { position: relative; overflow: hidden; }
.split-residential {
  background:
    linear-gradient(135deg, rgba(255,214,0,.08) 0%, transparent 60%),
    #0D0D0D;
}
.split-commercial {
  background:
    linear-gradient(225deg, rgba(255,214,0,.06) 0%, transparent 60%),
    #141414;
}

/* Big ghost number in corner */
.split-residential::after,
.split-commercial::after {
  content: attr(data-num);
  position: absolute;
  bottom: -20px; right: 20px;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 11rem;
  color: rgba(255,214,0,.04);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -.05em;
}
.split-content {
  position: relative;
  z-index: 2;
}
.split-label {
  font-size: .7rem;
  letter-spacing: .2em;
  background: rgba(255,214,0,.1);
  border: 1px solid rgba(255,214,0,.2);
  padding: 5px 14px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
}
.split-content h3 {
  font-size: clamp(1.4rem,2.5vw,2rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 14px;
  text-wrap: balance;
}
.split-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid rgba(255,214,0,.3);
  border-radius: 6px;
  font-size: .88rem;
  background: rgba(255,214,0,.06);
  backdrop-filter: blur(6px);
  transition: background .3s, border-color .3s, gap .3s;
}
.split-panel:hover .split-cta {
  background: rgba(255,214,0,.14);
  border-color: rgba(255,214,0,.55);
}

/* Dividing line */
.audience-split .split-panel:first-child {
  border-right: 1px solid rgba(255,214,0,.1);
}

/* ═══════════════════════════════════════
   TESTIMONIALS — elevated cards
═══════════════════════════════════════ */
.testimonials-section { padding: var(--section-gap) 0; }
.testimonial-card {
  background: linear-gradient(135deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid var(--yellow);
  border-radius: 18px;
  padding: 36px;
  backdrop-filter: blur(10px);
  box-shadow:
    0 4px 30px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 6rem;
  color: rgba(255,214,0,.08);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.testimonial-stars {
  font-size: 1rem;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.testimonial-text {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  line-height: 1.78;
  margin-bottom: 24px;
}
.author-name {
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.author-location {
  font-size: .78rem;
  color: rgba(255,255,255,.38);
}
.carousel-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,.2);
  border-radius: 30px;
  transition: width .35s, background .3s !important;
}
.carousel-dot.active {
  width: 28px;
  background: var(--yellow);
  border-radius: 3px;
}

/* ═══════════════════════════════════════
   WHY SECTION — polished cards
═══════════════════════════════════════ */
.why-section { padding: var(--section-gap) 0; }
.why-card {
  border-radius: 18px;
  padding: 34px 28px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  background: #fff;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), rgba(255,214,0,.4));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: block;
  width: 54px; height: 54px;
  background: rgba(255,214,0,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -.01em; }

/* ═══════════════════════════════════════
   GUARANTEE — dramatic dark split
═══════════════════════════════════════ */
.guarantee-section {
  padding: var(--section-gap) 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,214,0,.04) 0%, transparent 70%),
    #0A0A0A;
}
.guarantee-col {
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 8px 40px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
}
.guarantee-col::before {
  background: linear-gradient(90deg, var(--yellow), rgba(255,214,0,.4));
  height: 2px;
}
.guarantee-icon { font-size: 3.2rem; margin-bottom: 22px; }
.guarantee-col h3 { font-size: 1.5rem; letter-spacing: -.02em; color: var(--white); }

/* ═══════════════════════════════════════
   ABOUT PREVIEW — premium split
═══════════════════════════════════════ */
.about-preview-section { padding: var(--section-gap) 0; }
.about-img-wrap {
  border-radius: 24px;
  border: 1px solid rgba(255,214,0,.2);
  box-shadow:
    0 24px 80px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,214,0,.08);
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,214,0,.1) 0%, transparent 70%),
    #1A1A1A;
}
.about-img-label {
  font-size: 1.6rem;
  letter-spacing: .08em;
  text-shadow: 0 0 40px rgba(255,214,0,.4);
}
.about-credentials span {
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.09);
  font-size: .82rem;
  transition: background .2s, border-color .2s, color .2s;
}
.about-credentials span:hover {
  background: rgba(255,214,0,.1);
  border-color: rgba(255,214,0,.3);
  color: var(--yellow-dim);
}

/* ═══════════════════════════════════════
   CTA STRIP — full bleed yellow glow
═══════════════════════════════════════ */
.cta-strip {
  padding: var(--section-gap) 0;
  background:
    radial-gradient(ellipse 55% 80% at 50% 50%, rgba(255,214,0,.09) 0%, transparent 65%),
    #080808;
}
.cta-strip h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -.025em;
  line-height: 1.05;
  text-wrap: balance;
}
.cta-strip p { font-size: 1.05rem; color: rgba(255,255,255,.55); }

/* ═══════════════════════════════════════
   BLOG PREVIEW — card depth
═══════════════════════════════════════ */
.blog-preview-section { padding: var(--section-gap) 0; }
.blog-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.07);
}
.blog-card-img-wrap {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.blog-img-kitchen {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.6) 100%),
    linear-gradient(135deg, #1a1200 0%, #2d2000 50%, #1a1200 100%);
}
.blog-img-mattress {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.6) 100%),
    linear-gradient(135deg, #001a2d 0%, #00121f 50%, #001a2d 100%);
}
.blog-img-solar {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.6) 100%),
    linear-gradient(135deg, #1a1a00 0%, #252500 50%, #1a1a00 100%);
}
.blog-img-kitchen::after,
.blog-img-mattress::after,
.blog-img-solar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255,214,0,.1) 0%, transparent 70%);
}
.blog-tag {
  border-radius: 4px;
  font-size: .62rem;
  letter-spacing: .12em;
  padding: 4px 10px;
}
.blog-card-body h3 { font-size: .97rem; letter-spacing: -.01em; line-height: 1.45; }

/* ═══════════════════════════════════════
   MAP — refined
═══════════════════════════════════════ */
.map-section {
  background:
    radial-gradient(ellipse 50% 50% at 50% 20%, rgba(255,214,0,.05) 0%, transparent 60%),
    #060606;
  padding: var(--section-gap) 0;
}
.map-wrap {
  border-radius: 22px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(255,214,0,.5) 0%, rgba(255,214,0,.1) 50%, rgba(255,255,255,.05) 100%);
  box-shadow:
    0 30px 80px rgba(0,0,0,.5),
    0 0 60px rgba(255,214,0,.06);
}
.map-frame-border { border-radius: 19px; overflow: hidden; }

/* ═══════════════════════════════════════
   FOOTER — deep dark
═══════════════════════════════════════ */
.site-footer {
  background:
    linear-gradient(180deg, #080808 0%, #050505 100%);
  border-top: 1px solid rgba(255,214,0,.08);
}
.footer-col-title {
  font-size: .65rem;
  letter-spacing: .18em;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,214,0,.12);
  margin-bottom: 22px;
}
.footer-links a {
  font-size: .86rem;
  padding: 3px 0;
  display: block;
  color: rgba(255,255,255,.45);
  transition: color .2s, padding-left .2s;
}
.footer-links a:hover {
  color: var(--yellow);
  padding-left: 6px;
}
.footer-tagline { color: rgba(255,255,255,.38); font-size: .85rem; line-height: 1.65; }
.social-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  transition: background .25s, border-color .25s, transform .25s !important;
}
.social-icon:hover {
  background: var(--yellow) !important;
  color: var(--black) !important;
  border-color: var(--yellow) !important;
  border-radius: 10px !important;
  transform: translateY(-4px) rotate(-6deg) !important;
}

/* ═══════════════════════════════════════
   SECTION HEADERS — universal upgrade
═══════════════════════════════════════ */
.section-header { margin-bottom: 64px; }
.section-eyebrow {
  font-size: .64rem;
  letter-spacing: .2em;
  padding: 5px 14px;
  background: rgba(255,214,0,.07);
  border: 1px solid rgba(255,214,0,.18);
  border-radius: 30px;
  backdrop-filter: blur(4px);
}
/* On light sections, keep it visible */
.services-section .section-eyebrow,
.process-section .section-eyebrow,
.why-section .section-eyebrow,
.about-preview-section .section-eyebrow,
.blog-preview-section .section-eyebrow {
  background: rgba(185,154,0,.08);
  border-color: rgba(185,154,0,.2);
  color: var(--yellow-dim);
}
.section-line {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), rgba(255,214,0,.2));
  margin-top: 16px;
  border-radius: 2px;
}
.section-title {
  font-size: clamp(2rem,4vw,3.2rem);
  letter-spacing: -.025em;
  line-height: 1.08;
  text-wrap: balance;
  margin-top: 8px;
}

/* ═══════════════════════════════════════
   BUTTONS — universal polish
═══════════════════════════════════════ */
.btn-primary {
  border-radius: 7px;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(255,214,0,.4), inset 0 1px 0 rgba(255,255,255,.25) !important;
}
.btn-outline {
  border-radius: 7px;
  font-weight: 700;
}

/* ═══════════════════════════════════════
   SCROLL PROGRESS — thicker, gradient
═══════════════════════════════════════ */
.scroll-progress {
  height: 2px;
  background: linear-gradient(90deg, #FFD600, #FFE033, #B89A00);
  box-shadow: 0 0 8px rgba(255,214,0,.5);
}

/* ═══════════════════════════════════════
   CURSOR SPOTLIGHT (added by JS)
═══════════════════════════════════════ */
.cursor-spotlight {
  position: fixed;
  top: 0; left: 0;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,214,0,.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9990;
  transform: translate(-50%,-50%);
  transition: opacity .4s;
  will-change: transform;
}

/* ═══════════════════════════════════════
   MAGNETIC CARD (added by JS class)
═══════════════════════════════════════ */
.magnetic { transition: transform .15s cubic-bezier(.2,.8,.2,1) !important; }

/* ═══════════════════════════════════════
   CHATBOT — glassmorphism upgrade
═══════════════════════════════════════ */
.chat-panel {
  border-radius: 22px !important;
  background: rgba(15,15,15,.92) !important;
  backdrop-filter: blur(24px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(150%) !important;
  border: 1px solid rgba(255,214,0,.22) !important;
  box-shadow:
    0 24px 60px rgba(0,0,0,.7),
    0 0 0 1px rgba(255,255,255,.04) !important;
}
.chat-header { background: rgba(0,0,0,.5) !important; border-radius: 22px 22px 0 0; }
.chat-fab {
  background: var(--yellow) !important;
  box-shadow: 0 4px 24px rgba(255,214,0,.5), inset 0 1px 0 rgba(255,255,255,.3) !important;
}

/* ═══════════════════════════════════════
   WA FLOAT — pulse ring
═══════════════════════════════════════ */
.wa-float {
  box-shadow:
    0 4px 20px rgba(37,211,102,.4),
    0 0 0 0 rgba(37,211,102,.4) !important;
  animation: wa-pulse-ring 2.5s ease-out infinite !important;
}
@keyframes wa-pulse-ring {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.4); }
  60%  { box-shadow: 0 4px 20px rgba(37,211,102,.3), 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ═══════════════════════════════════════
   MOBILE BAR — frosted
═══════════════════════════════════════ */
.mob-bar {
  background: rgba(8,8,8,.92) !important;
  backdrop-filter: blur(20px) !important;
  border-top: 1px solid rgba(255,214,0,.1) !important;
}

/* ═══════════════════════════════════════
   INNER PAGE HERO (services, about, etc.)
═══════════════════════════════════════ */
.page-hero {
  background:
    radial-gradient(ellipse 70% 55% at 30% 70%, rgba(255,214,0,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(255,214,0,.04) 0%, transparent 55%),
    #060606;
  padding: 110px 0 90px;
}
.page-hero h1 {
  font-size: clamp(2.8rem,6vw,5rem);
  letter-spacing: -.025em;
  line-height: .9;
}
.page-hero::before {
  background: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: .03;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   CONTACT PAGE — complete CSS
   All unique class names from contact.html
═══════════════════════════════════════ */

/* Page hero sub-heading on inner pages */
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin: 14px auto 0;
  line-height: 1.65;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero .breadcrumb {
  margin-bottom: 16px;
}

/* Contact section layout */
.contact-section {
  background: #F5F5F3;
  padding: 80px 0 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.85fr;
  gap: 36px;
  align-items: start;
}
.contact-col h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--t-light);
  margin-bottom: 6px;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.contact-col-sub {
  font-size: .88rem;
  color: var(--t-light-sub);
  margin-bottom: 28px;
}

/* Booking form wrapper */
.booking-form {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 4px 32px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.04);
}
.form-group {
  position: relative;
  margin-bottom: 18px;
}
.floating-label-group { position: relative; }

/* All form inputs — light form needs DARK text */
.form-input {
  display: block;
  width: 100%;
  padding: 22px 16px 8px;
  background: #F7F7F6;
  border: 1.5px solid #E5E5E3;
  border-radius: 10px;
  font-family: var(--ff-body);
  font-size: .95rem;
  color: #111;
  outline: none;
  transition: border-color .22s, box-shadow .22s, background .22s;
  line-height: 1.4;
}
.form-input:focus {
  border-color: var(--yellow);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,214,0,.14);
}
.form-input::placeholder { color: transparent; }

/* Floating label */
.form-label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-family: var(--ff-body);
  font-size: .92rem;
  color: #888;
  pointer-events: none;
  transition: top .22s, transform .22s, font-size .22s, color .22s;
  transform-origin: left top;
  white-space: nowrap;
}
.form-textarea + .form-label {
  top: 20px;
  transform: none;
}
/* Float up on focus or when has value */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label,
.form-textarea:focus ~ .form-label,
.form-textarea:not(:placeholder-shown) ~ .form-label {
  top: 8px;
  transform: none;
  font-size: .72rem;
  color: var(--yellow-dim);
  font-weight: 600;
}
/* Static label for select */
.form-label-static {
  display: block;
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 600;
  color: #888;
  margin-bottom: 6px;
  padding-left: 4px;
}
.form-select {
  display: block;
  width: 100%;
  padding: 14px 16px;
  background: #F7F7F6;
  border: 1.5px solid #E5E5E3;
  border-radius: 10px;
  font-family: var(--ff-body);
  font-size: .95rem;
  color: #111;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color .22s, box-shadow .22s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,214,0,.14);
}
.form-select option { color: #111; background: #fff; }
.form-textarea {
  min-height: 100px;
  resize: vertical;
  padding-top: 28px;
  padding-bottom: 10px;
}
.form-submit {
  width: 100%;
  padding: 17px 24px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 10px;
  margin-top: 4px;
  letter-spacing: .01em;
  justify-content: center;
}
.form-note {
  font-size: .76rem;
  color: #999;
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}
/* Form success state */
.form-success {
  background: #fff;
  border: 2px solid var(--yellow);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
}
.form-success-icon { font-size: 3rem; display: block; margin-bottom: 14px; }
.form-success h3 { color: var(--t-light); margin-bottom: 8px; font-size: 1.4rem; }
.form-success p { color: var(--t-light-sub); margin-bottom: 24px; }

/* Direct contact column */
.contact-direct {
  background: #111;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 4px 32px rgba(0,0,0,.35);
}
.contact-direct h2 { color: #fff !important; margin-bottom: 24px !important; }
.direct-contact-items { display: flex; flex-direction: column; gap: 4px; }
.direct-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 4px;
}
.direct-phone:hover .direct-value { color: var(--yellow-hot); }
.direct-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
}
.direct-item:last-child { border-bottom: none; }
.direct-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,214,0,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.direct-label {
  display: block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 2px;
}
.direct-value {
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .92rem;
  color: #fff;
  line-height: 1.4;
  transition: color .2s;
}
.direct-phone .direct-value { font-size: 1.5rem; color: var(--yellow); letter-spacing: -.01em; }
.direct-phone .direct-icon { background: rgba(255,214,0,.15); }
.direct-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .9rem;
  padding: 13px 20px;
  border-radius: 10px;
  margin: 8px 0 12px;
  text-decoration: none;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.direct-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

/* Social channels column */
.contact-social {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.contact-social h2 { color: var(--t-light) !important; margin-bottom: 20px !important; }
.social-channels { display: flex; flex-direction: column; gap: 12px; }
.social-channel-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  background: #F7F7F6;
  border: 1.5px solid #E8E8E6;
  border-radius: 14px;
  text-decoration: none;
  transition: border-color .25s, box-shadow .25s, transform .2s, background .25s;
}
.social-channel-card:hover {
  border-color: var(--yellow);
  background: rgba(255,214,0,.04);
  box-shadow: 0 6px 24px rgba(255,214,0,.15);
  transform: translateY(-3px);
}
.social-channel-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
}
.social-channel-name {
  display: block;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: .95rem;
  color: var(--t-light);
  line-height: 1.2;
}
.social-channel-handle {
  display: block;
  font-size: .8rem;
  color: var(--yellow-dim);
  font-weight: 600;
  margin-top: 2px;
}
.social-channel-desc {
  display: block;
  font-size: .76rem;
  color: var(--t-light-sub);
  margin-top: 2px;
}
.social-channel-arrow {
  margin-left: auto;
  color: var(--t-light-sub);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform .25s, color .25s;
}
.social-channel-card:hover .social-channel-arrow {
  transform: translateX(4px);
  color: var(--yellow);
}

/* Emergency strip */
.emergency-strip {
  background: var(--yellow);
  padding: 56px 0;
}
.emergency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.emergency-text h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.4rem,3vw,2rem);
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.emergency-text p {
  font-size: .95rem;
  color: rgba(0,0,0,.65);
  font-weight: 500;
}
.emergency-phone {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2rem,4vw,3rem);
  color: var(--black);
  letter-spacing: -.025em;
  text-decoration: none;
  background: rgba(0,0,0,.08);
  padding: 14px 32px;
  border-radius: 10px;
  border: 2px solid rgba(0,0,0,.15);
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.emergency-phone:hover {
  background: rgba(0,0,0,.14);
  transform: scale(1.03);
}

/* FAQ section */
.faq-section {
  background: #F5F5F3;
  padding: 100px 0;
}
.faq-section .section-title { color: var(--t-light); }
.faq-section .section-eyebrow { color: var(--yellow-dim); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #E5E5E3; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .98rem;
  color: var(--t-light);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.faq-question:hover { color: var(--yellow-dim); }
.faq-chevron {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #EEEEED;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  transition: transform .3s, background .3s, color .3s;
  color: #555;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--yellow);
  color: var(--black);
}
.faq-answer { height: 0; overflow: hidden; }
.faq-answer-inner {
  padding: 0 24px 20px 0;
  font-size: .93rem;
  color: var(--t-light-sub);
  line-height: 1.78;
}
.faq-answer-inner a { color: var(--yellow-dim); text-decoration: underline; }

/* ═══════════════════════════════════════
   RESPONSIVE OVERRIDES
═══════════════════════════════════════ */
@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; }
  .emergency-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  :root { --section-gap: 80px; }
  .hero-h1-line2 { -webkit-text-stroke: 1.5px var(--yellow); }
  .hero-content h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-container { padding-top: 72px; padding-bottom: 48px; }
  .audience-split .split-residential::after,
  .audience-split .split-commercial::after { font-size: 7rem; }
  .booking-form { padding: 28px 20px; }
  .contact-direct { padding: 28px 20px; }
  .contact-social { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero-eyebrow { font-size: .58rem; letter-spacing: .1em; }
  .hero-content h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .hero-h1-line2 { -webkit-text-stroke: 1px var(--yellow); }
  .emergency-phone { font-size: 1.7rem; padding: 12px 24px; }
}

/* ═══════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none !important; }
  .wa-float { animation: none !important; }
  .cursor-spotlight { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   ALL-PAGES FIX — Complete CSS for every missing class
   Services · About · Blog · Contact (supplemental)
   Appended to premium.css
═══════════════════════════════════════════════════════════ */

/* ── SHARED: page-hero inner layout ── */
.page-hero { position: relative; overflow: hidden; }
.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

/* ── SHARED: footer-col must always be visible ── */
.footer-col { color: var(--t-dark); }
.footer-col-brand { color: var(--t-dark); }

/* ── SHARED: .reveal base (visible by default, JS animates) ── */
.reveal { opacity: 1; transform: none; }

/* ── SHARED: areas-note ── */
.areas-note {
  text-align: center;
  margin-top: 24px;
  font-size: .88rem;
  color: var(--t-light-sub);
}

/* ══════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════ */

.services-detail-section {
  background: #F5F5F3;
  padding: 90px 0 110px;
  position: relative;
}
.services-detail-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.services-detail-section .container { position: relative; z-index: 1; }

.service-detail-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border-radius: 20px;
  padding: 0;
  margin-bottom: 28px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s, border-color .3s;
}
.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--yellow);
  border-radius: 0 2px 2px 0;
}
.service-detail-card:hover {
  box-shadow: 0 8px 40px rgba(255,214,0,.12), 0 2px 8px rgba(0,0,0,.06);
  border-color: rgba(255,214,0,.3);
}
.service-detail-alt {
  background: #FEFEFE;
}

.svc-detail-icon {
  width: 100px; height: 100px;
  background: rgba(255,214,0,.07);
  border-radius: 18px;
  border: 1px solid rgba(255,214,0,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 6px;
}

.svc-detail-body { min-width: 0; }

.svc-detail-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.svc-detail-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--t-light);
  letter-spacing: -.02em;
  margin-bottom: 14px;
  line-height: 1.15;
}

.svc-detail-body > p {
  font-size: .95rem;
  color: var(--t-light-sub);
  line-height: 1.78;
  margin-bottom: 24px;
  max-width: 68ch;
}

.svc-checklist { margin-bottom: 24px; }
.svc-checklist h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .82rem;
  color: var(--t-light);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.svc-checklist ul { display: flex; flex-direction: column; gap: 8px; }
.svc-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--t-light-sub);
  line-height: 1.55;
}
.svc-checklist li::before {
  content: '✓';
  color: var(--yellow-dim);
  font-weight: 800;
  font-size: .82rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.svc-detail-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.svc-duration {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .82rem;
  color: var(--t-light-sub);
  background: #F0F0EE;
  padding: 5px 14px;
  border-radius: 30px;
}
.svc-price {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--yellow-dim);
  background: rgba(255,214,0,.08);
  padding: 5px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255,214,0,.2);
}

/* Services page: why section 4-col */
.why-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Services page: testimonials static grid */
.testimonials-static-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Services page: service areas */
.service-areas-section {
  background: #F5F5F3;
  padding: 90px 0;
  position: relative;
}
.service-areas-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,.055) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.service-areas-section .container { position: relative; z-index: 1; }
.service-areas-section .section-title { color: var(--t-light); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.area-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .82rem;
  color: var(--t-light);
  transition: border-color .2s, color .2s, background .2s, transform .2s;
  cursor: default;
}
.area-tag::before { content: '📍'; font-size: .75rem; }
.area-tag:hover {
  border-color: var(--yellow);
  color: var(--yellow-dim);
  background: rgba(255,214,0,.04);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */

/* Story section */
.about-story-section {
  background: #F5F5F3;
  padding: 100px 0;
  position: relative;
}
.about-story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.about-story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-text h2 {
  color: var(--t-light);
  letter-spacing: -.025em;
  margin-bottom: 20px;
}
.about-story-text p {
  font-size: .96rem;
  color: var(--t-light-sub);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 56ch;
}

/* Visual stats card */
.about-story-visual { display: flex; align-items: center; justify-content: center; }
.about-visual-card {
  background: #111;
  border-radius: 24px;
  padding: 48px 44px;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.about-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 30%, rgba(255,214,0,.08), transparent 65%);
}
.about-visual-stat {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px 0;
}
.about-stat-num {
  display: block;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  background: linear-gradient(135deg, #FFD600, #FFE033);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label {
  display: block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-visual-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,214,0,.2), transparent);
  margin: 0 20px;
  position: relative;
  z-index: 1;
}
.about-visual-tagline {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 24px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* Values section */
.values-section {
  background: #0D0D0D;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.values-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: .03;
  pointer-events: none;
  z-index: 0;
}
.values-section .container { position: relative; z-index: 1; }
.values-section .section-title { color: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.value-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  transition: transform .25s, box-shadow .25s, background .25s;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), rgba(255,214,0,.3));
  opacity: 0;
  transition: opacity .3s;
}
.value-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.value-card:hover::before { opacity: 1; }
.value-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 16px;
}
.value-card h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--yellow);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.value-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

/* Team section */
.team-section {
  background: #F5F5F3;
  padding: 100px 0;
  position: relative;
}
.team-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.team-section .container { position: relative; z-index: 1; }
.team-section .section-title { color: var(--t-light); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.team-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.team-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), rgba(255,214,0,.3));
  transform: scaleX(0);
  transition: transform .35s;
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.team-card:hover::after { transform: scaleX(1); }
.team-avatar {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--yellow);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255,214,0,.3);
}
.team-initials {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--black);
  letter-spacing: -.01em;
}
.team-name {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--t-light);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.team-role {
  display: block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow-dim);
  margin-bottom: 14px;
}
.team-bio {
  font-size: .85rem;
  color: var(--t-light-sub);
  line-height: 1.65;
}

/* Equipment section */
.equipment-section {
  background: #111;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.equipment-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: .028;
  pointer-events: none;
  z-index: 0;
}
.equipment-section .container { position: relative; z-index: 1; }
.equipment-section .section-title { color: var(--white); }
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.equipment-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform .25s, box-shadow .25s;
}
.equipment-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.equipment-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 16px;
}
.equipment-card h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--yellow);
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.equipment-card ul { display: flex; flex-direction: column; gap: 10px; }
.equipment-card li {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.equipment-card li::before {
  content: '✓';
  color: var(--yellow);
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Cert section */
.cert-section {
  background: #080808;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cert-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,214,0,.25), transparent);
}
.cert-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,214,0,.12), transparent);
}
.cert-section .container { position: relative; z-index: 1; }
.cert-section .section-title { color: var(--white); }
.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,214,0,.15);
  border-radius: 50px;
  padding: 12px 22px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .84rem;
  color: var(--white);
  backdrop-filter: blur(6px);
  transition: border-color .25s, background .25s, transform .2s;
}
.cert-badge:hover {
  border-color: rgba(255,214,0,.4);
  background: rgba(255,214,0,.07);
  transform: translateY(-3px);
}
.cert-icon { font-size: 1.1rem; }

/* About areas */
.about-areas {
  background: #F5F5F3;
  padding: 90px 0;
}
.about-areas .section-title { color: var(--t-light); }

/* ══════════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════════ */

.blog-main-section {
  background: #F5F5F3;
  padding: 80px 0 100px;
  position: relative;
}
.blog-main-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.blog-main-section .container { position: relative; z-index: 1; }

/* Featured article */
.blog-featured {
  background: #fff;
  border: 2px solid rgba(255,214,0,.3);
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 4px 32px rgba(255,214,0,.08), 0 2px 8px rgba(0,0,0,.06);
  transition: box-shadow .3s, border-color .3s;
}
.blog-featured:hover {
  border-color: rgba(255,214,0,.55);
  box-shadow: 0 8px 48px rgba(255,214,0,.14);
}
.blog-featured-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: stretch;
  min-height: 380px;
}
.blog-featured-img {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,214,0,.12), transparent 70%),
    linear-gradient(135deg, #1a1600 0%, #111 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-feat-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
}
.blog-feat-icon { font-size: 6rem; filter: drop-shadow(0 0 30px rgba(255,214,0,.3)); }
.blog-featured-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.blog-featured-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--t-light);
  letter-spacing: -.02em;
  line-height: 1.2;
}
.blog-featured-body h2 a { color: var(--t-light); transition: color .2s; }
.blog-featured-body h2 a:hover { color: var(--yellow-dim); }
.blog-featured-body > p { font-size: .93rem; color: var(--t-light-sub); line-height: 1.75; }
.blog-tag-featured {
  background: var(--black);
  color: var(--yellow);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-right: 6px;
}

/* Blog meta row */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.blog-read-time {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .78rem;
  color: var(--t-light-sub);
}
.blog-date {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .78rem;
  color: var(--t-light-sub);
}
.blog-card-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

/* Blog full grid */
.blog-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.blog-card-full {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.blog-card-full:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,.12);
  border-color: rgba(255,214,0,.25);
}
.blog-card-full .blog-card-img-wrap { height: 210px; overflow: hidden; }
.blog-card-full .blog-card-img-wrap:hover { transform: none; }
.blog-card-full .blog-card-body { padding: 26px 24px; }
.blog-card-full h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .98rem;
  color: var(--t-light);
  line-height: 1.45;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.blog-card-full h3 a { color: var(--t-light); transition: color .2s; }
.blog-card-full h3 a:hover { color: var(--yellow-dim); }
.blog-card-full > .blog-card-body > p,
.blog-card-full .blog-card-body p {
  font-size: .88rem;
  color: var(--t-light-sub);
  line-height: 1.65;
  margin-bottom: 14px;
}

/* Blog image placeholders */
.blog-img-kitchen2 {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1c1200 0%, #2d1e00 50%, #1a1200 100%);
  position: relative;
}
.blog-img-mattress2 {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #00141e 0%, #001a2a 50%, #00101a 100%);
}
.blog-img-solar2 {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1c1c00 0%, #2a2800 50%, #181800 100%);
}
.blog-img-sofa2 {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a000a 0%, #280010 50%, #180008 100%);
}
.blog-img-water {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #001a1a 0%, #002525 50%, #001515 100%);
}
.blog-img-carpet2 {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0d1a00 0%, #152400 50%, #0a1400 100%);
}
/* Add subtle glow to all blog images */
.blog-img-kitchen2::after,
.blog-img-mattress2::after,
.blog-img-solar2::after,
.blog-img-sofa2::after,
.blog-img-water::after,
.blog-img-carpet2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 55% at 50% 50%, rgba(255,214,0,.09), transparent 70%);
}

/* Newsletter section */
.newsletter-section {
  background: linear-gradient(135deg, #0D0D0D 0%, #111 50%, #0D0D0D 100%);
  padding: 72px 0;
  border-top: 1px solid rgba(255,214,0,.1);
  border-bottom: 1px solid rgba(255,214,0,.07);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(255,214,0,.05), transparent 65%);
  pointer-events: none;
}
.newsletter-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.newsletter-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.newsletter-text p {
  font-size: .92rem;
  color: rgba(255,255,255,.5);
}
.newsletter-form {
  display: flex;
  gap: 10px;
  min-width: 380px;
}
.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: .95rem;
  outline: none;
  transition: border-color .25s, background .25s;
}
.newsletter-input:focus {
  border-color: var(--yellow);
  background: rgba(255,255,255,.1);
}
.newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-btn {
  white-space: nowrap;
  border-radius: 8px;
  padding: 14px 24px;
}
.newsletter-ok {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .95rem;
  color: #22C55E;
  margin-top: 8px;
}

/* ══════════════════════════════════════════
   RESPONSIVE — all inner pages
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .service-detail-card {
    flex-direction: column;
  }
  .svc-detail-icon { width: 72px; height: 72px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-grid { grid-template-columns: 1fr 1fr; }
  .blog-featured-inner { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 260px; }
  .blog-full-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-form { min-width: unset; }
  .testimonials-static-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .service-detail-card .svc-detail-body { padding: 24px 20px 28px; }
  .blog-full-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-grid { grid-template-columns: 1fr; }
  .cert-badges { gap: 12px; }
  .newsletter-form { flex-direction: column; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured-body { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .svc-detail-meta { flex-direction: column; align-items: flex-start; }
  .about-visual-card { padding: 32px 28px; }
}

/* ── REMAINING MICRO-FIXES ── */

/* gsap-init: visible by default, JS sets opacity:0 before first paint */
.gsap-init { opacity: 1; transform: none; }

/* hero-card variants — same style, numbered for potential float delays */
.hero-card-1, .hero-card-2, .hero-card-3 { /* inherits .hero-card */ }

/* map-wrap-large — same as map-wrap but full width */
.map-wrap-large {
  display: block;
  padding: 3px;
  background: linear-gradient(135deg, rgba(255,214,0,.5), rgba(255,214,0,.1), rgba(255,255,255,.05));
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 60px rgba(255,214,0,.06);
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}
.map-wrap-large iframe {
  display: block;
  border: 0;
  border-radius: 19px;
  filter: grayscale(30%) contrast(1.1);
  width: 100%;
  height: 480px;
}

/* ═══════════════════════════════════════
   HERO V3 — Laptop Optimized & Left Aligned
═══════════════════════════════════════ */
.hero-v3 {
  position: relative;
  height: calc(100vh - 114px);
  min-height: 500px;
  max-height: 900px;
  display: flex;
  align-items: center;
  background: #050505;
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
}

.hero-bg-v3 {
  position: absolute;
  inset: 0;
  background-image: url('../images/house_cleaning_wide.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay-v3 {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0.88) 50%, rgba(8,8,8,0.55) 100%),
    linear-gradient(rgba(255,214,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,214,0,0.02) 1px, transparent 1px);
  background-size: auto, 50px 50px, 50px 50px;
  z-index: 2;
}

.hero-container-v3 {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero-content-v3 {
  max-width: 800px;
  text-align: left;
}

.hero-badge-v3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 214, 0, 0.06);
  border: 1px solid rgba(255, 214, 0, 0.2);
  border-radius: 100px;
  margin-bottom: 16px;
}

.hero-badge-v3 span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
}

.hero-content-v3 h1 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 18px;
  font-weight: 900;
}

.hero-content-v3 h1 span {
  display: block;
}

.hero-content-v3 h1 .line-2 {
  color: var(--white);
  -webkit-text-stroke: 0;
}

.hero-desc-v3 {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin-bottom: 28px;
}

.hero-actions-v3 {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-stats-v3 {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  font-size: 1.5rem;
}

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-text strong {
  font-size: 1rem;
  color: var(--white);
}

.stat-text span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
  .hero-v3 {
    min-height: auto;
    padding: 100px 0 60px;
  }
  .hero-container-v3 {
    flex-direction: column;
    gap: 40px;
  }
  .hero-image-v3 {
    min-height: 400px;
    width: 100%;
    overflow: hidden;
  }
  .cleaner-image {
    max-width: 100%;
    width: 100%;
    margin-bottom: 0;
  }
  .hero-stats-v3 {
    flex-wrap: wrap;
    gap: 24px;
  }
  .stat-divider {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-actions-v3 {
    flex-direction: column;
  }
  .hero-content-v3 h1 {
    font-size: 2.5rem;
  }
}

/* ═══════════════════════════════════════
   REAL IMAGE OVERRIDES — all new images
═══════════════════════════════════════ */

/* Blog card real images */
.blog-card-img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.blog-card-img-wrap:hover .blog-card-img-real {
  transform: scale(1.04);
}

/* Featured blog image */
.blog-feat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px;
}
.blog-featured-img {
  overflow: hidden;
  border-radius: 16px;
}

/* About team image in index preview */
.about-img-wrap {
  overflow: hidden;
  border-radius: 24px;
}
.about-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 24px;
  min-height: 340px;
}

/* Service detail real images */
.svc-detail-img-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  max-height: 280px;
  flex-shrink: 0;
}
.svc-detail-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.service-detail-card:hover .svc-detail-img {
  transform: scale(1.03);
}

/* About story visual with real image */
.about-visual-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  border: 1px solid rgba(255,214,0,.2);
}
.about-visual-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.3) 70%, transparent 100%);
  padding: 28px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.about-visual-overlay .about-visual-stat {
  text-align: center;
}
.about-visual-overlay .about-stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.about-visual-overlay .about-stat-label {
  display: block;
  font-size: 0.65rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.about-visual-overlay .about-visual-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,214,0,.25);
  flex-shrink: 0;
}

/* Team avatar with real photo */
.team-avatar-img {
  background: none !important;
  padding: 0 !important;
  overflow: hidden;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  border: 3px solid rgba(255,214,0,.4);
}
.team-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 50%;
}

/* Testimonial customer image */
.testimonials-img-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.testimonials-customer-img {
  width: 100%;
  max-width: 700px;
  height: 340px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 20px;
  border: 1px solid rgba(255,214,0,.15);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  display: block;
}

/* Service detail body padding */
.service-detail-card .svc-detail-body {
  padding: 32px 40px 40px;
}

@media (max-width: 768px) {
  .about-visual-img { height: 280px; }
  .svc-detail-img { height: 200px; }
  .testimonials-customer-img { height: 220px; }
  .about-team-img { min-height: 260px; }
}
