/* ============================================================
   MAHIR DEEP CLEANING SERVICES — style.css  v2
   Fully synced with actual HTML class names
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  --black:         #0A0A0A;
  --dark:          #111111;
  --dark-alt:      #181818;
  --dark-card:     #1E1E1E;
  --dark-border:   #2A2A2A;
  --yellow:        #FFD600;
  --yellow-hot:    #FFE033;
  --yellow-glow:   rgba(255,214,0,0.18);
  --yellow-dim:    #B89A00;
  --white:         #FFFFFF;
  --off-white:     #F5F5F5;
  --grey-light:    #ECECEC;
  --grey-mid:      #9CA3AF;
  --surface:       #F9F9F9;
  --surface-alt:   #F2F2F0;
  --border-light:  #E0E0E0;
  /* Text */
  --t-dark:        #FFFFFF;
  --t-dark-sub:    #AAAAAA;
  --t-dark-muted:  #555555;
  --t-light:       #111111;
  --t-light-sub:   #555555;
  /* Spacing */
  --max-w:         1200px;
  --r-sm:          8px;
  --r-md:          14px;
  --r-lg:          24px;
  /* Fonts */
  --ff-display:    'Montserrat', sans-serif;
  --ff-body:       'Inter', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--t-dark);          /* WHITE by default — dark site */
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .25s; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--ff-body); }

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
h1 { font-family: var(--ff-display); font-weight: 900; font-size: clamp(3rem,7vw,5.5rem); line-height: .95; letter-spacing: -.02em; }
h2 { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.9rem,4vw,3rem); line-height: 1.1; }
h3 { font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.1rem,2.5vw,1.55rem); line-height: 1.25; }
h4 { font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem; }
p  { font-family: var(--ff-body); font-size: 1rem; line-height: 1.75; }

.highlight { color: var(--yellow); }

/* ── SECTION SHARED ── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.section-title { color: var(--t-dark); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--yellow);
  margin: 12px auto 0;
  transform-origin: left;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .95rem;
  padding: 15px 30px;
  border-radius: var(--r-sm);
  border: 2px solid var(--yellow);
  position: relative;
  overflow: hidden;
  transition: background .25s, box-shadow .25s, transform .2s;
}
.btn-primary:hover {
  background: var(--yellow-hot);
  border-color: var(--yellow-hot);
  box-shadow: 0 10px 35px rgba(255,214,0,.45);
  transform: scale(1.04);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--yellow);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  border: 2px solid var(--yellow);
  transition: background .25s, color .25s, box-shadow .25s, transform .2s;
}
.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 8px 30px rgba(255,214,0,.35);
  transform: scale(1.04);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  border: 2px solid #25D366;
  transition: background .25s, transform .2s;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: scale(1.04);
}

/* ══════════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════════ */
.announce-bar {
  background: var(--black);
  height: 42px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--dark-border);
  position: relative;
  z-index: 1001;
}
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 24px;
}
.announce-left,
.announce-right {
  font-family: var(--ff-display);
  font-size: .72rem;
  font-weight: 600;
  color: var(--t-dark-sub);
  white-space: nowrap;
}
.announce-center {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: .72rem;
  font-weight: 700;
  color: var(--yellow);
}
.announce-phone { color: var(--yellow); }
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,8,8,0);
  padding: 0 24px;
  transition: background .4s, box-shadow .4s;
}
.navbar.scrolled {
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 2px 40px rgba(0,0,0,.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-main {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--yellow);
  letter-spacing: -.01em;
}
.nav-brand-sub {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .5rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .88rem;
  color: var(--white);
  letter-spacing: .02em;
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width .3s;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover,
.nav-link.active { color: var(--yellow); }

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-trust-badge {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .75rem;
  color: var(--t-dark-sub);
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-cta {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .82rem;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: background .25s, transform .2s, box-shadow .25s;
}
.nav-cta:hover {
  background: var(--yellow-hot);
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(255,214,0,.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 1002;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════
   MOBILE MENU OVERLAY
══════════════════════════════════════════ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--t-dark-sub);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
.mobile-close:hover { color: var(--white); }
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mobile-nav-link {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--white);
  transition: color .2s;
  padding: 8px 0;
}
.mobile-nav-link:hover { color: var(--yellow); }
.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}

/* ══════════════════════════════════════════
   HERO — Dark section, white text
══════════════════════════════════════════ */
.hero {
  background: #080808;
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,214,0,.10), transparent);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-orb {
  position: absolute;
  width: 400px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(255,214,0,.22) 0%, transparent 70%);
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  gap: 60px;
  padding: 120px 24px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-content { max-width: 680px; }
.hero-eyebrow {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.hero-container h1 { color: var(--white); }
.hero-h1-line1,
.hero-h1-line2 { display: block; color: var(--white); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--t-dark-sub);
  max-width: 520px;
  margin: 22px 0 34px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-cta-primary {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1rem;
  padding: 17px 34px;
  border-radius: var(--r-sm);
  border: 2px solid var(--yellow);
  position: relative;
  overflow: hidden;
  transition: background .25s, box-shadow .25s, transform .2s;
}
.hero-cta-primary:hover {
  background: var(--yellow-hot);
  box-shadow: 0 10px 35px rgba(255,214,0,.45);
  transform: scale(1.04);
}
.hero-cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--yellow);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: var(--r-sm);
  border: 2px solid var(--yellow);
  transition: background .25s, color .25s, transform .2s;
}
.hero-cta-secondary:hover {
  background: var(--yellow);
  color: var(--black);
  transform: scale(1.04);
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badge-item {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .78rem;
  color: var(--t-dark-sub);
}

/* Hero right cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-left: 3px solid var(--yellow);
  border-radius: var(--r-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-card-icon { font-size: 2rem; flex-shrink: 0; }
.hero-card strong {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  display: block;
}
.hero-card span {
  font-size: .8rem;
  color: var(--t-dark-sub);
  display: block;
}

/* ══════════════════════════════════════════
   TRUST BAR — Dark
══════════════════════════════════════════ */
.trust-bar {
  background: #050505;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 12px;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--dark-border);
  flex-shrink: 0;
}
.trust-icon { font-size: 1.4rem; }
.trust-label {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .82rem;
  color: var(--white);
  white-space: nowrap;
}

/* ══════════════════════════════════════════
   SERVICES — Light section
══════════════════════════════════════════ */
.services-section {
  background: #F9F9F9;
  padding: 110px 0;
}
.services-section .section-title { color: var(--t-light); }
.services-section .section-eyebrow { color: var(--yellow-dim); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 30px 22px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.service-card-top-border {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.service-card:hover .service-card-top-border { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255,214,0,.18);
}
.service-icon {
  width: 50px; height: 50px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
}
.service-card:hover .service-icon { transform: scale(1.2) rotate(-8deg); }
.service-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--t-light);
  margin-bottom: 10px;
}
.service-desc {
  font-size: .88rem;
  color: var(--t-light-sub);
  line-height: 1.6;
  margin-bottom: 18px;
}
.service-link {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .8rem;
  color: var(--yellow-dim);
  letter-spacing: .04em;
  transition: color .2s;
}
.service-link:hover { color: var(--yellow); }
.section-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* ══════════════════════════════════════════
   STATS — Dark
══════════════════════════════════════════ */
.stats-section {
  background: #111111;
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.stat-block {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--dark-border);
  transition: transform .22s;
  cursor: default;
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { transform: scale(1.06); }
.stat-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.stat-num {
  display: inline;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2.4rem,5vw,3.6rem);
  color: var(--yellow);
  line-height: 1;
}
.stat-plus,
.stat-static {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2.4rem,5vw,3.6rem);
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  display: block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .82rem;
  color: var(--t-dark-sub);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 8px;
}

/* ══════════════════════════════════════════
   PROCESS — Light
══════════════════════════════════════════ */
.process-section {
  background: #F2F2F0;
  padding: 110px 0;
}
.process-section .section-title { color: var(--t-light); }
.process-section .section-eyebrow { color: var(--yellow-dim); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  position: relative;
  margin-top: 20px;
}
.process-connector {
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: var(--yellow);
  transform-origin: left;
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--yellow);
  position: relative;
  z-index: 2;
}
.step-body { padding-top: 4px; }
.step-icon { font-size: 1.6rem; margin-bottom: 12px; display: block; }
.step-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--t-light);
  margin-bottom: 8px;
}
.step-desc {
  font-size: .88rem;
  color: var(--t-light-sub);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   AUDIENCE SPLIT — Dark
══════════════════════════════════════════ */
.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.split-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 60px 50px;
  cursor: pointer;
}
.split-residential { background: #141414; }
.split-commercial  { background: #1a1a1a; }
.split-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  transition: opacity .4s;
  z-index: 1;
}
.split-panel:hover .split-overlay { opacity: .65; }
.split-content { position: relative; z-index: 2; }
.split-label {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .65rem;
  letter-spacing: .15em;
  color: var(--yellow);
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.split-content h3 { color: var(--white); margin-bottom: 12px; }
.split-content p { color: var(--t-dark-sub); font-size: .95rem; margin-bottom: 24px; max-width: 360px; }
.split-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--yellow);
  transition: gap .3s;
}
.split-arrow { transition: transform .3s; }
.split-panel:hover .split-arrow { transform: translateX(8px); }

/* ══════════════════════════════════════════
   TESTIMONIALS — Dark
══════════════════════════════════════════ */
.testimonials-section {
  background: #0D0D0D;
  padding: 110px 0;
}
.testimonials-section .section-title { color: var(--white); }
.testimonials-carousel { position: relative; overflow: hidden; }
.testimonial-card {
  background: var(--dark-alt);
  border: 1px solid var(--dark-border);
  border-left: 3px solid var(--yellow);
  border-radius: var(--r-md);
  padding: 32px;
  display: none;
  transition: transform .25s, box-shadow .25s;
}
.testimonial-card.active { display: block; }
.testimonial-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: .1em; }
.testimonial-text {
  font-size: .95rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author { display: flex; flex-direction: column; gap: 3px; }
.author-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--white);
}
.author-location { font-size: .8rem; color: var(--t-dark-sub); }
.carousel-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dark-border);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--yellow);
  transform: scale(1.3);
}
.testimonials-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.section-link {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .88rem;
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 30px;
  padding: 8px 18px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .85rem;
  color: var(--white);
}

/* ══════════════════════════════════════════
   WHY SECTION — Light
══════════════════════════════════════════ */
.why-section {
  background: #F9F9F9;
  padding: 110px 0;
}
.why-section .section-title { color: var(--t-light); }
.why-section .section-eyebrow { color: var(--yellow-dim); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
.why-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.why-card h4 { color: var(--t-light); margin-bottom: 10px; }
.why-card p { font-size: .9rem; color: var(--t-light-sub); line-height: 1.6; }

/* ══════════════════════════════════════════
   GUARANTEE — Dark
══════════════════════════════════════════ */
.guarantee-section {
  background: #111111;
  padding: 110px 0;
}
.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}
.guarantee-col {
  padding: 50px 44px;
  background: var(--dark-alt);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.guarantee-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
}
.guarantee-icon { font-size: 3rem; display: block; margin-bottom: 20px; }
.guarantee-col h3 { color: var(--white); margin-bottom: 14px; }
.guarantee-col p { color: var(--t-dark-sub); margin-bottom: 28px; line-height: 1.7; }
.guarantee-col .btn-outline { color: var(--yellow); border-color: var(--yellow); }
.guarantee-col .btn-outline:hover { background: var(--yellow); color: var(--black); }
.guarantee-divider {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.shield-graphic { margin-bottom: 20px; }

/* ══════════════════════════════════════════
   ABOUT PREVIEW — Light
══════════════════════════════════════════ */
.about-preview-section {
  background: #F2F2F0;
  padding: 110px 0;
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  background: var(--dark-card);
  border-radius: var(--r-lg);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--yellow);
  position: relative;
  overflow: hidden;
  flex-direction: column;
  gap: 8px;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,214,0,.12), transparent);
}
.about-img-placeholder {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-img-label {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--yellow);
  letter-spacing: .1em;
}
.about-img-sub {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: .78rem;
  color: var(--t-dark-sub);
  letter-spacing: .04em;
}
.about-text h2 { color: var(--t-light); margin-bottom: 16px; }
.about-text p { color: var(--t-light-sub); margin-bottom: 24px; line-height: 1.8; }
.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.about-credentials span {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .8rem;
  color: var(--t-light);
  background: var(--grey-light);
  padding: 6px 14px;
  border-radius: 30px;
}

/* ══════════════════════════════════════════
   CTA STRIP — Dark
══════════════════════════════════════════ */
.cta-strip {
  background: #0A0A0A;
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(255,214,0,.06), transparent);
}
.cta-strip-inner { position: relative; z-index: 1; }
.cta-strip h2 { color: var(--white); margin-bottom: 16px; }
.cta-strip p { color: var(--t-dark-sub); max-width: 500px; margin: 0 auto 34px; }
.cta-strip-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.cta-strip-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-strip-badges span {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .78rem;
  color: var(--t-dark-sub);
}

/* ══════════════════════════════════════════
   BLOG PREVIEW — Light
══════════════════════════════════════════ */
.blog-preview-section {
  background: #F9F9F9;
  padding: 110px 0;
}
.blog-preview-section .section-title { color: var(--t-light); }
.blog-preview-section .section-eyebrow { color: var(--yellow-dim); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
.blog-card-img-wrap {
  height: 200px;
  background: #1E1E1E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
  transition: transform .5s;
}
.blog-card:hover .blog-card-img-wrap { transform: scale(1.05); }
.blog-card-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1E1E1E 0%, #2A2A2A 100%);
}
.blog-img-kitchen  { background: linear-gradient(135deg, #1a1a1a, #2d1f00); }
.blog-img-mattress { background: linear-gradient(135deg, #1a1a1a, #001f2d); }
.blog-img-solar    { background: linear-gradient(135deg, #1a1a1a, #2d2a00); }
.blog-card-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.blog-card-body h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .98rem;
  color: var(--t-light);
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-card-body h3 a { color: var(--t-light); }
.blog-card-body h3 a:hover { color: var(--yellow-dim); }
.blog-card-body p { font-size: .88rem; color: var(--t-light-sub); line-height: 1.6; margin-bottom: 14px; }

/* ══════════════════════════════════════════
   MAP — Dark
══════════════════════════════════════════ */
.map-section {
  background: #080808;
  padding: 110px 0;
  text-align: center;
}
.map-container { position: relative; z-index: 1; }
.map-label {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.map-section h2 { color: var(--white); margin-bottom: 10px; }
.map-address {
  font-size: .92rem;
  color: var(--t-dark-sub);
  margin-bottom: 36px;
}
.map-address a { color: var(--yellow); }
.map-wrap {
  display: inline-block;
  padding: 3px;
  background: linear-gradient(135deg, var(--yellow), #333);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(255,214,0,.12);
  max-width: 520px;
  width: 100%;
}
.map-frame-border {
  border-radius: 17px;
  overflow: hidden;
}
.map-wrap iframe {
  display: block;
  border: 0;
  border-radius: 17px;
  filter: grayscale(30%) contrast(1.1);
  width: 100%;
  height: 400px;
}

/* ══════════════════════════════════════════
   FOOTER — Dark
══════════════════════════════════════════ */
.site-footer {
  background: #0D0D0D;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-col-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
  display: block;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-brand-text {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--yellow);
}
.footer-tagline {
  font-size: .88rem;
  color: var(--t-dark-sub);
  margin-bottom: 24px;
  max-width: 240px;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t-dark-sub);
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.social-icon:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-5px);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .88rem;
  color: var(--t-dark-sub);
  transition: color .2s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list li {
  font-size: .88rem;
  color: var(--t-dark-sub);
  line-height: 1.5;
}
.footer-contact-list a { color: var(--yellow); }
.footer-contact-list a:hover { color: var(--yellow-hot); }
.footer-bottom {
  background: var(--black);
  border-top: 1px solid var(--dark-border);
  padding: 20px 24px;
}
.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom span {
  font-size: .8rem;
  color: var(--t-dark-muted);
}
.footer-bottom a { color: var(--t-dark-sub); }
.footer-bottom a:hover { color: var(--yellow); }
.footer-made-with {
  font-size: .8rem !important;
  color: var(--yellow) !important;
  font-family: var(--ff-display);
  font-weight: 600;
}

/* ══════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 100px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9500;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,.55);
}

/* ══════════════════════════════════════════
   CHATBOT
══════════════════════════════════════════ */
.chat-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,214,0,.4);
  border: none;
  transition: transform .3s, box-shadow .3s;
}
.chat-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(255,214,0,.55);
}
.chat-fab-notif {
  position: absolute;
  top: -3px; right: -3px;
  width: 20px; height: 20px;
  background: #FF3B30;
  color: var(--white);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  border: 2px solid var(--dark);
}
.chat-panel {
  position: fixed;
  bottom: 96px; right: 24px;
  width: 380px; height: 530px;
  background: var(--dark-card);
  border: 1px solid var(--yellow);
  border-radius: 20px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  z-index: 9998;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.chat-panel.open { display: flex; }
.chat-header {
  background: var(--black);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--dark-border);
  flex-shrink: 0;
}
.chat-header-info { display: flex; flex-direction: column; gap: 2px; }
.chat-title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: .85rem;
  color: var(--yellow);
  letter-spacing: .05em;
}
.chat-status {
  font-size: .72rem;
  color: var(--t-dark-sub);
  font-family: var(--ff-display);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.chat-online-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22C55E;
  display: inline-block;
}
.chat-close {
  background: none;
  border: none;
  color: var(--t-dark-sub);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color .2s;
}
.chat-close:hover { color: var(--white); }
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--dark-border); border-radius: 2px; }
.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: .88rem;
  line-height: 1.5;
}
.chat-msg.bot {
  background: var(--dark-alt);
  border-left: 2px solid var(--yellow);
  color: var(--white);
  align-self: flex-start;
}
.chat-msg.user {
  background: var(--yellow);
  color: var(--black);
  align-self: flex-end;
  font-weight: 600;
}
.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 12px;
  flex-shrink: 0;
}
.chat-chip {
  background: var(--dark-alt);
  border: 1px solid var(--dark-border);
  color: var(--t-dark-sub);
  font-family: var(--ff-body);
  font-size: .78rem;
  padding: 6px 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.chat-chip:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--dark-border);
  flex-shrink: 0;
}
.chat-input {
  flex: 1;
  background: var(--dark-alt);
  border: 1px solid var(--dark-border);
  border-radius: 50px;
  padding: 10px 16px;
  color: var(--white);
  font-size: .88rem;
  outline: none;
  transition: border-color .2s;
}
.chat-input:focus { border-color: var(--yellow); }
.chat-input::placeholder { color: var(--t-dark-muted); }
.chat-send {
  background: var(--yellow);
  color: var(--black);
  border: none;
  border-radius: 50px;
  padding: 10px 18px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.chat-send:hover { background: var(--yellow-hot); transform: scale(1.04); }

/* ══════════════════════════════════════════
   MOBILE BOTTOM BAR
══════════════════════════════════════════ */
.mob-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 58px;
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
  z-index: 9000;
  padding: 0 8px;
}
.mob-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
  text-decoration: none;
  color: var(--t-dark-sub);
  font-size: .6rem;
  font-family: var(--ff-display);
  font-weight: 600;
  transition: color .2s;
  background: none;
  border: none;
  cursor: pointer;
  height: 100%;
}
.mob-bar-item:hover { color: var(--yellow); }
.mob-bar-icon { font-size: 1.1rem; line-height: 1; }
.mob-bar-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: var(--yellow);
  color: var(--black) !important;
  border-radius: 50px;
  padding: 0 14px;
  height: 40px;
  margin-top: -16px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: .7rem;
  box-shadow: 0 -4px 20px rgba(255,214,0,.3);
  text-decoration: none;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   SCROLL PROGRESS
══════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--yellow);
  z-index: 1002;
  pointer-events: none;
  width: 0;
}

/* ══════════════════════════════════════════
   INNER PAGE HERO
══════════════════════════════════════════ */
.page-hero {
  background: #080808;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,214,0,.10), transparent);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); position: relative; z-index: 1; margin-bottom: 18px; }
.page-hero .sub {
  font-size: 1.1rem;
  color: var(--t-dark-sub);
  max-width: 600px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}
.page-hero .hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--t-dark-sub);
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb .sep { color: var(--t-dark-muted); }

/* ══════════════════════════════════════════
   SERVICES PAGE — EXPANDED
══════════════════════════════════════════ */
.services-expanded {
  background: #F9F9F9;
  padding: 110px 0;
}
.service-expanded-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border-light);
}
.service-expanded-card:last-child { border-bottom: none; }
.service-expanded-card.reverse { direction: rtl; }
.service-expanded-card.reverse > * { direction: ltr; }
.sec-visual {
  background: var(--dark-card);
  border-radius: var(--r-lg);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--dark-border);
}
.sec-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, var(--yellow-glow), transparent);
  pointer-events: none;
}
.sec-icon-large { font-size: 5rem; position: relative; z-index: 1; text-align: center; }
.sec-content h2 { color: var(--t-light); margin-bottom: 14px; font-size: clamp(1.5rem,2.5vw,2.1rem); }
.sec-content p { color: var(--t-light-sub); margin-bottom: 22px; }
.service-checklist { margin-bottom: 24px; }
.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: var(--t-light-sub);
  padding: 7px 0;
  border-bottom: 1px solid var(--border-light);
}
.service-checklist li:last-child { border-bottom: none; }
.service-checklist li::before { content: '✓'; color: var(--yellow); font-weight: 700; flex-shrink: 0; }
.service-meta { display: flex; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.service-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .82rem;
  color: var(--t-light-sub);
  background: var(--grey-light);
  padding: 5px 12px;
  border-radius: 30px;
}
.service-price {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--yellow-dim);
  margin-bottom: 22px;
}

/* Services page — why grid & service areas */
.services-why { background: #0D0D0D; padding: 110px 0; }
.services-why .section-title { color: var(--white); }
.services-why .why-card { background: var(--dark-alt); border-color: var(--dark-border); }
.services-why .why-card h4 { color: var(--white); }
.services-why .why-card p  { color: var(--t-dark-sub); }

.service-areas-section { background: #F2F2F0; padding: 110px 0; }
.service-areas-section .section-title { color: var(--t-light); }
.areas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.area-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .85rem;
  color: var(--t-light);
  transition: border-color .2s, color .2s;
}
.area-tag:hover { border-color: var(--yellow); color: var(--yellow-dim); }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-story { background: #F9F9F9; padding: 110px 0; }
.story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-visual {
  background: var(--dark-card);
  border-radius: var(--r-lg);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}
.story-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,214,0,.12), transparent);
}
.story-text h2 { color: var(--t-light); margin-bottom: 16px; }
.story-text p { color: var(--t-light-sub); margin-bottom: 16px; line-height: 1.8; }

.values-section { background: #111111; padding: 110px 0; }
.values-section .section-title { color: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.value-card {
  background: var(--dark-alt);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-md);
  padding: 30px 22px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.value-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.value-icon { font-size: 2.5rem; display: block; margin-bottom: 14px; }
.value-card h4 { color: var(--yellow); margin-bottom: 10px; }
.value-card p { font-size: .88rem; color: var(--t-dark-sub); line-height: 1.6; }

.team-section { background: #F2F2F0; padding: 110px 0; }
.team-section .section-title { color: var(--t-light); }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 30px 22px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--yellow);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--black);
}
.team-name { font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; color: var(--t-light); margin-bottom: 4px; }
.team-role { font-size: .82rem; color: var(--yellow-dim); font-family: var(--ff-display); font-weight: 600; }

.equipment-section { background: #111111; padding: 110px 0; }
.equipment-section .section-title { color: var(--white); }
.equipment-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.equipment-col {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-md);
  padding: 34px 26px;
}
.equipment-col h4 { color: var(--yellow); margin-bottom: 16px; font-size: 1rem; }
.equipment-col ul li {
  font-size: .9rem;
  color: var(--t-dark-sub);
  padding: 8px 0;
  border-bottom: 1px solid var(--dark-border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.equipment-col ul li:last-child { border-bottom: none; }
.equipment-col ul li::before { content: '✓'; color: var(--yellow); flex-shrink: 0; font-weight: 700; }

.certs-section { background: #0A0A0A; padding: 60px 0; }
.certs-row { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 20px; }
.cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 14px 22px;
  border-radius: 50px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .82rem;
  color: var(--white);
}
.cert-badge span { color: var(--yellow); font-size: 1.1rem; }

/* ══════════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════════ */
.blog-hero { background: #080808; padding: 80px 0 60px; text-align: center; }
.blog-hero h1 { color: var(--white); }
.blog-hero .sub { color: var(--t-dark-sub); margin: 16px auto 0; max-width: 500px; }

.blog-main { background: #F9F9F9; padding: 80px 0; }
.blog-main .section-eyebrow { color: var(--yellow-dim); }
.blog-main .section-title { color: var(--t-light); }

.featured-article {
  background: var(--white);
  border: 2px solid var(--yellow);
  border-radius: var(--r-lg);
  padding: 44px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}
.featured-article-img {
  background: var(--dark-card);
  border-radius: var(--r-md);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.featured-article-content h2 { font-size: clamp(1.3rem,2vw,1.8rem); color: var(--t-light); margin-bottom: 14px; }
.featured-article-content p { color: var(--t-light-sub); margin-bottom: 22px; }

.newsletter-strip {
  background: var(--dark);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}
.newsletter-strip h3 { color: var(--white); margin-bottom: 10px; }
.newsletter-strip p { color: var(--t-dark-sub); margin-bottom: 26px; }
.newsletter-form { display: flex; gap: 12px; max-width: 440px; margin: 0 auto; }
.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-sm);
  color: var(--white);
  font-size: .95rem;
  outline: none;
  transition: border-color .25s;
}
.newsletter-input:focus { border-color: var(--yellow); }
.newsletter-input::placeholder { color: var(--t-dark-muted); }

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-section { background: #F9F9F9; padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; align-items: start; }
.contact-col-title { font-family: var(--ff-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 26px; }

.booking-form {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 36px;
}
.booking-form .contact-col-title { color: var(--t-light); }
.form-group { position: relative; margin-bottom: 22px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 18px 16px 8px;
  background: #F2F2F0;
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  font-size: .95rem;
  color: var(--t-light);
  outline: none;
  transition: border-color .25s;
  appearance: none;
}
.form-textarea { min-height: 120px; resize: vertical; padding-top: 24px; }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,214,0,.1);
}
.form-label {
  position: absolute;
  top: 14px; left: 16px;
  font-size: .88rem;
  color: var(--t-light-sub);
  pointer-events: none;
  transition: transform .22s, font-size .22s, color .22s;
  transform-origin: left;
}
.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label,
.form-textarea:focus + .form-label,
.form-textarea:not(:placeholder-shown) + .form-label,
.form-select:focus + .form-label,
.form-select.has-value + .form-label {
  transform: translateY(-10px) scale(.78);
  color: var(--yellow-dim);
}
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '▼';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: .6rem;
  color: var(--t-light-sub);
  pointer-events: none;
}
.form-submit { width: 100%; padding: 17px; font-size: 1rem; font-family: var(--ff-display); font-weight: 800; border-radius: var(--r-sm); }
.form-note { font-size: .78rem; color: var(--t-light-sub); text-align: center; margin-top: 12px; }
.form-success {
  display: none;
  background: #22C55E;
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--r-sm);
  text-align: center;
  font-family: var(--ff-display);
  font-weight: 700;
  margin-top: 14px;
}

.direct-contact {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-lg);
  padding: 34px 28px;
}
.direct-contact .contact-col-title { color: var(--white); }
.dc-phone {
  display: block;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--yellow);
  margin-bottom: 18px;
}
.dc-wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .9rem;
  padding: 13px 20px;
  border-radius: var(--r-sm);
  margin-bottom: 18px;
  width: 100%;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.dc-wa-btn:hover { background: #1ebe5d; transform: translateY(-2px); }
.dc-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--dark-border); }
.dc-item:last-child { border-bottom: none; }
.dc-icon { font-size: 1.1rem; flex-shrink: 0; color: var(--yellow); }
.dc-text { font-size: .88rem; color: var(--t-dark-sub); line-height: 1.5; }
.dc-text a { color: var(--yellow); }
.dc-text strong { display: block; color: var(--white); font-family: var(--ff-display); font-weight: 600; font-size: .75rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 2px; }

.social-col {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 34px 28px;
}
.social-col .contact-col-title { color: var(--t-light); }
.social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: #F2F2F0;
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  text-decoration: none;
  transition: border-color .25s, box-shadow .25s, transform .2s;
}
.social-card:last-child { margin-bottom: 0; }
.social-card:hover { border-color: var(--yellow); box-shadow: 0 8px 24px rgba(255,214,0,.15); transform: translateY(-3px); }
.social-card-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--dark-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--yellow);
  flex-shrink: 0;
}
.social-card-name { font-family: var(--ff-display); font-weight: 700; font-size: .95rem; color: var(--t-light); display: block; }
.social-card-sub { font-size: .8rem; color: var(--t-light-sub); display: block; }

.emergency-strip { background: var(--yellow); padding: 50px 0; text-align: center; }
.emergency-strip h3 { color: var(--black); font-size: clamp(1.3rem,3vw,1.9rem); margin-bottom: 10px; }
.emergency-strip p { color: var(--black); margin-bottom: 18px; font-weight: 600; opacity: .8; }
.emergency-phone { display: block; font-family: var(--ff-display); font-weight: 900; font-size: clamp(2rem,5vw,3.2rem); color: var(--black); letter-spacing: -.02em; }

.faq-section { background: #F9F9F9; padding: 110px 0; }
.faq-section .section-title { color: var(--t-light); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.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: 24px; height: 24px;
  border-radius: 50%;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  transition: transform .3s, background .3s;
}
.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 0 20px; font-size: .92rem; color: var(--t-light-sub); line-height: 1.75; }

/* ══════════════════════════════════════════
   PRINT
══════════════════════════════════════════ */
@media print {
  .mob-bar, .wa-float, .chat-fab, .chat-panel, .announce-bar, .navbar { display: none !important; }
  body { background: white; color: black; }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:nth-child(3) { border-top: 1px solid var(--dark-border); }
  .stat-block:nth-child(4) { border-top: 1px solid var(--dark-border); border-right: none; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 992px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; padding: 60px 24px 40px; min-height: calc(100vh - 114px); }
  .hero-badges { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-right { display: none; }

  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }

  .trust-inner { justify-content: center; }
  .trust-divider { display: none; }
  .trust-item { flex: none; width: 50%; }

  .process-steps { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .process-connector { display: none; }

  .audience-split { grid-template-columns: 1fr; }
  .split-panel { min-height: 300px; }

  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .guarantee-grid { grid-template-columns: 1fr; }
  .guarantee-divider { display: none; }

  .about-preview-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-inner { grid-template-columns: 1fr; }
  .service-expanded-card { grid-template-columns: 1fr; gap: 32px; }
  .service-expanded-card.reverse { direction: ltr; }
  .featured-article { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .equipment-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  .services-section,
  .process-section,
  .testimonials-section,
  .why-section,
  .guarantee-section,
  .about-preview-section,
  .cta-strip,
  .blog-preview-section,
  .map-section,
  .values-section,
  .team-section,
  .equipment-section,
  .about-story,
  .service-areas-section,
  .services-expanded,
  .faq-section,
  .contact-section,
  .services-why { padding: 64px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .announce-inner { justify-content: center; }
  .announce-left, .announce-right { display: none; }
  .chat-panel { width: calc(100vw - 24px); right: 12px; }
  .mob-bar { display: flex; }
  .mob-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    width: 100%;
  }
  .chat-fab { bottom: 78px; }
  .wa-float { bottom: 118px; }
  body { padding-bottom: 58px; }
  .newsletter-form { flex-direction: column; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .cta-strip-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-block { border-right: none !important; border-bottom: 1px solid var(--dark-border); }
  .stat-block:last-child { border-bottom: none; }
  .guarantee-col { padding: 28px 20px; }
  .booking-form { padding: 24px 18px; }
  .featured-article { padding: 24px 18px; }
  .map-wrap iframe { height: 280px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .areas-grid { grid-template-columns: 1fr 1fr; }
}
