/* ============================================================
   MC Cleaning Company – Landing Page Styles
   Design tokens extracted from Figma (html.to.design)
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  --black:        #000000;
  --white:        #ffffff;
  --gold:         #D4A027;
  --athens-gray:  #F9FAFB;
  --river-bed:    #4A5565;
  --white-80:     rgba(255,255,255,0.80);
  --white-70:     rgba(255,255,255,0.70);
  --white-60:     rgba(255,255,255,0.60);
  --white-30:     rgba(255,255,255,0.30);
  --white-20:     rgba(255,255,255,0.20);
  --white-10:     rgba(255,255,255,0.10);
  --black-70:     rgba(0,0,0,0.70);
  --black-60:     rgba(0,0,0,0.60);
  --black-50:     rgba(0,0,0,0.50);
  --black-40:     rgba(0,0,0,0.40);
  --black-20:     rgba(0,0,0,0.20);
  --black-10:     rgba(0,0,0,0.10);
  --gold-shadow:  0px 10px 25px 0px rgba(212,160,39,0.25);
  --card-shadow:  0 4px 6px -4px rgba(0,0,0,0.1), 0 10px 15px -3px rgba(0,0,0,0.1);
  --radius-sm:    8.5px;
  --radius-md:    10.5px;
  --radius-lg:    14.5px;
  --radius-full:  9999px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Geist Mono', 'Courier New', monospace;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ---- UTILITIES ---- */
.text-gold { color: var(--gold); }

/* Services section uses slightly wider container (302px side padding on 1920) */
.container {
  max-width: 1316px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
}
/* About / Testimonials / Gallery / Contact use tighter container (400px side padding on 1920) */
.container-md {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 42px);
}

/* ---- BUTTONS ---- */
/* Base button used across the page */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Geist Mono', monospace;
  font-weight: 700;
  font-size: 15.75px;
  line-height: 1;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s, transform 0.15s;
  text-align: center;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Hero buttons are compact (Figma: height 35px) */
.btn-hero {
  padding: 8px 22px;
  height: 35px;
  font-size: 14px;
}
/* CTA buttons elsewhere are larger (Figma: padding 14px 28px) */
.btn-cta {
  padding: 14px 28px;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--gold-shadow);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white-60);
}
.btn-full { width: 100%; justify-content: center; }

/* ---- BADGES ---- */
/* Section header badges (About, Testimonials, Gallery) – ROK2AI: padding 10.5px 28px */
.badge-section {
  display: inline-block;
  font-family: 'Geist Mono', monospace;
  font-weight: 700;
  font-size: 12.3px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 10.5px 28px;
  border-radius: var(--radius-full);
}
/* Services section badge – HX73OG: padding 6px 21px 7.5px */
.badge-services {
  display: inline-block;
  font-family: 'Geist Mono', monospace;
  font-weight: 700;
  font-size: 17.5px;
  line-height: 24.5px;
  background: var(--gold);
  color: var(--black);
  padding: 6px 21px 7.5px;
  border-radius: var(--radius-full);
}
/* Service card "Explore Services" badge – CB7OMF: padding 7px 21px */
.badge-explore {
  display: inline-block;
  font-family: 'Geist Mono', monospace;
  font-weight: 700;
  font-size: 12.3px;
  letter-spacing: 0.03em;
  background: var(--gold);
  color: var(--black);
  padding: 7px 21px;
  border-radius: var(--radius-full);
}

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.15;
}
.section-title.white { color: var(--white); }
.section-desc {
  max-width: 588px;
  font-size: 14px;
  line-height: 22.75px;
  color: var(--river-bed);
  text-align: center;
}
.section-desc-lg {
  max-width: 588px;
  font-size: 17.5px;
  line-height: 28.44px;
  color: rgba(0,0,0,0.7);
  text-align: center;
}
.section-desc-lg.white-70 { color: var(--white-70); }

/* ============================================================
   NAVBAR
   ============================================================ */
/* ================================================================
   TWO-ROW HEADER  – exact match to Figma screenshot
   Row 1: near-black  |  Row 2: full-width solid gold
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  /* no background here – each row carries its own */
}
.navbar.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,0.55); }

/* ── Row 1: GOLD (same colour as row 2) ── */
.nav-top {
  background: #D4A027;
}
.nav-top-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo + name + phone */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-logo-link {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}
.nav-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: #000000;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-name {
  font-family: 'Geist Mono', monospace;
  font-weight: 700;
  font-size: 36px;
  color: #000000;
  line-height: 1.15;
  white-space: nowrap;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Geist Mono', monospace;
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.nav-phone:hover { opacity: 0.7; }
.nav-phone svg { flex-shrink: 0; }

/* "Get Quote" – darker olive-gold so it stands out against the gold header */
.nav-cta {
  background: #8B7522 !important;
  color: #000000 !important;
  box-shadow: none !important;
  border: none !important;
  padding: 16px 36px;
  font-family: 'Geist Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  border-radius: 8px;
  white-space: nowrap;
}
.nav-cta:hover { background: #7A6618 !important; opacity: 1; transform: translateY(-1px); }

/* Hamburger – dark bars on gold background */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #000000;
  border-radius: 2px;
  transition: 0.3s;
}

/* ── Row 2: GOLD nav bar (continuous with row 1) ── */
.nav-bottom {
  background: #D4A027;
  width: 100%;
  display: block;
}
.nav-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex;
  justify-content: center;
}
.nav-links {
  display: flex;
  margin: 0;
  padding: 0;
}
.nav-links li { list-style: none; }
.nav-links a {
  display: block;
  padding: 16px 36px;
  font-family: 'Geist Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  transition: background 0.18s;
}
.nav-links a:hover { background: rgba(0,0,0,0.12); }

/* ── Mobile dropdown ── */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px clamp(20px, 4vw, 60px) 24px;
  background: #D4A027;
  border-top: 1px solid rgba(0,0,0,0.15);
}
.nav-mobile.open { display: flex; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 12px; padding: 0; margin: 0; }
.nav-mobile li { list-style: none; }
.nav-mobile a {
  color: #000000;
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.nav-mobile a:hover { opacity: 0.7; }

/* ============================================================
   HERO  (layout_HP21NI: padding 481px top, 299px bottom on 1920×1200)
   ============================================================ */
.hero {
  position: relative;
  background: var(--black);
  min-height: 100vh;
  padding-top: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(100px, 12vw, 140px) 20px clamp(80px, 8vw, 100px);
  overflow: hidden;
}

/* Hero background star/particle pattern via CSS */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.55) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,0.35) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(255,255,255,0.2) 0.8px, transparent 0.8px);
  background-size: 180px 180px, 260px 260px, 120px 120px;
  background-position: 0 0, 90px 90px, 45px 45px;
  pointer-events: none;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,160,39,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 740px;
  margin-top: 60px;
}
.hero-heading {
  font-size: clamp(38px, 5.5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-heading .text-gold { display: block; }
.hero-sub {
  font-size: clamp(15px, 2vw, 17.5px);
  font-weight: 400;
  line-height: 1.625;
  color: var(--white-80);
  margin-bottom: 36px;
  max-width: 540px;
  margin-inline: auto;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 56px;
}
.hero-stat {
  padding: 0 28px;
  text-align: center;
}
.hero-stat-value {
  font-size: 26.3px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.hero-stat-label {
  font-size: 12.3px;
  font-weight: 400;
  color: var(--white-60);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}
.scroll-line {
  width: 3.5px;
  height: 35px;
  background: var(--white-30);
  border-radius: 2px;
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.6); }
}

/* ============================================================
   SERVICES  (layout_Q85CWN: padding 70px 302px → 1316px content)
   ============================================================ */
.section-services {
  background: var(--athens-gray);
  padding: 70px 0;
}
/* Services section header – badge uses HX73OG: 6px 21px 7.5px */
.services-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}
.service-card { display: flex; }
.service-card-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover .service-card-inner {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}
/* Figma image container: layout_WS0QKB height 336px */
.service-card-img-wrap {
  position: relative;
  height: 336px;
  overflow: hidden;
}
.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: var(--black-40);
}
/* Icon badge: layout_F4UWDU padding 10.5px, positioned 14px from left/top */
.service-icon-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-body {
  padding: 21px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.service-card-title {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
}
.service-card-desc {
  font-size: 14px;
  line-height: 22.75px;
  color: var(--river-bed);
  flex: 1;
}
.service-card-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.service-arrow { font-size: 22px; color: var(--gold); }

/* ============================================================
   ABOUT  (layout_6TGUAN: padding 70px 400px 126px → 1120px content)
   ============================================================ */
.section-about {
  background: var(--white);
  padding: 70px 0 126px;
}
/* Stats row: layout_ASU62G 588×175, 2 side-by-side stat cards */
.about-stats {
  display: flex;
  justify-content: center;
  gap: 21px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  padding: 28px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  border: 1px solid rgba(0,0,0,0.06);
}
.stat-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-value {
  font-size: 35px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--black-60);
  text-align: center;
}

/* Two-column grid: layout_QM8982 (fill width, height 452px) */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 72px;
}
.about-text { display: flex; flex-direction: column; gap: 16px; }
.about-subheading {
  font-size: 26.3px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--black);
}
.about-body {
  font-size: 16px;
  line-height: 26px;
  color: rgba(0,0,0,0.7);
}
.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(0,0,0,0.8);
}
.check-icon {
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.about-image-wrap {
  position: relative;
  border-radius: 14px;
  overflow: visible;
}
.about-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  display: block;
}
/* Eco badge: layout_OSV77G – white rounded card positioned bottom-left of image */
.about-badge-eco {
  position: absolute;
  bottom: -20px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 110px;
  z-index: 2;
}
.about-badge-value { font-size: 24px; font-weight: 700; color: var(--gold); }
.about-badge-label { font-size: 11px; color: rgba(0,0,0,0.7); text-align: center; line-height: 1.4; }

/* Journey Timeline: layout_FC1VWF gap 42px, layout_0346CE gap 42px */
.journey-section { margin-top: 16px; }
.journey-title {
  font-size: 26.3px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}
.timeline {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--black-20);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
}
.timeline-item.timeline-left  .timeline-card { grid-column: 1; text-align: right; padding-right: 28px; }
.timeline-item.timeline-right .timeline-card { grid-column: 3; text-align: left;  padding-left: 28px; }
.timeline-item.timeline-left  .timeline-dot  { grid-column: 2; grid-row: 1; }
.timeline-item.timeline-right .timeline-dot  { grid-column: 2; grid-row: 1; }
.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: var(--radius-full);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
  justify-self: center;
  z-index: 1;
  position: relative;
}
.timeline-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,0.06);
}
.timeline-label {
  font-size: 12.3px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.timeline-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.timeline-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(0,0,0,0.7);
}

/* ============================================================
   TESTIMONIALS  (layout_HTG6W3: padding 70px 400px → 1120px)
   ============================================================ */
.section-testimonials {
  background: var(--white);
  padding: 70px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Google rating pill: layout_0VOLK4 row, padding, rounded */
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--black-10);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.google-stars { color: #FBBC05; font-size: 14px; letter-spacing: 1px; }
.google-score { font-size: 13px; font-weight: 500; }

/* Slider: layout_OGMAX0 padding 14px 147px 0 */
.testimonials-slider {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  overflow: hidden;
  padding: 0 10px;
}
.testimonials-track {
  display: flex;
  transition: transform 0.4s ease;
}
/* Testimonial card: layout_3N1I35 padding 0 0 21px; effect_WZ5XKH shadow; radius 14.5px */
.testimonial-card {
  min-width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 28px 21px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Quote SVG placeholder (frame 4:327 IMAGE-SVG quote icon) */
.testimonial-quote-icon {
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  font-family: Georgia, serif;
  margin-bottom: 4px;
}
/* Star rating IMAGE-SVG (4:332) */
.testimonial-stars { color: #FBBC05; font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-quote {
  font-size: 15.75px;
  line-height: 1.75;
  color: var(--black);
  font-style: normal;
  flex: 1;
  margin-bottom: 20px;
}
/* Footer with border top: strokes Black 20% at 1px top */
.testimonial-footer {
  border-top: 1px solid var(--black-20);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 3.5px;
}
.testimonial-author { font-size: 15px; font-weight: 700; color: var(--black); }
.testimonial-role   { font-size: 13px; color: var(--black-60); }
.testimonial-company { font-size: 14px; font-weight: 500; color: var(--gold); }
.testimonial-source {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 12.3px;
  color: var(--black-50);
}

/* Slider prev/next buttons (4:367, 4:371 – rounded pill, white bg, Black 20% border) */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--black-20);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: background 0.2s;
  z-index: 2;
}
.slider-btn:hover { background: var(--athens-gray); }
.slider-prev { left: -24px; }
.slider-next { right: -24px; }

/* Dots: 4:375 IMAGE-SVG div.flex */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.dot-btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--black-20);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.dot-btn.active { background: var(--gold); transform: scale(1.2); }

/* Testimonial CTA section (4:389 div.text-center layout_ANEQD1 gap 14px pad 14 0 0) */
.testimonial-cta {
  text-align: center;
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.testimonial-cta-title {
  font-size: 26.3px;
  font-weight: 700;
  color: var(--black);
}
.testimonial-cta-desc {
  font-size: 14px;
  color: var(--black-60);
  max-width: 520px;
  line-height: 22.75px;
}

/* ============================================================
   GALLERY  (layout_2SM73W gap 56px; layout_7USGEV: 4 col grid 1099px×1078px)
   Items: layout_P77UEH height 253.75px; columns at 274.75px intervals; gap 21px
   ============================================================ */
.section-gallery {
  background: var(--white);
  padding: 70px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 254px;
  gap: 21px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  cursor: pointer;
  background: var(--black-20);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
/* Gradient overlay: fill_LIWH96 linear-gradient(0deg, black 0%, black 50% 50%, transparent 100%) opacity 0.6 */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0) 100%);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 3.5px;
}
/* Text at bottom: layout_XDOVZF at y:194.25 of 253.75 item */
.gallery-tag {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.gallery-caption {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}

/* ============================================================
   CONTACT  (layout_04CWHA: padding 69px 400px 70px → 1120px)
   ============================================================ */
.section-contact {
  position: relative;
  background: var(--black);
  padding: 70px 0;
  overflow: hidden;
}
/* Background SVG and radial gradient (fill_6LI2GW) */
.section-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(212,160,39,0.08) 0%, rgba(212,160,39,0) 50%),
    radial-gradient(circle at 85% 10%, rgba(255,255,255,0.02) 0%, transparent 40%),
    radial-gradient(circle at 15% 90%, rgba(255,255,255,0.02) 0%, transparent 40%);
  pointer-events: none;
}
.contact-inner { position: relative; z-index: 2; }

/* Contact header: "GET IN TOUCH" is span.text-yellow-400 layout_O24ZKV (plain text, no pill) */
.contact-eyebrow {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
  margin-top: 0;
}

/* Contact form card (4:615 White 10% bg, White 20% border, radius 14.5px) */
.contact-form-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--white-20);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 8px 32px rgba(255,255,255,0.04);
}
.contact-form-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.contact-form-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--white-20);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-60); }
.form-group select option { background: #222; color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: none; }

/* Contact left column (form + service areas) */
.contact-left { display: flex; flex-direction: column; gap: 20px; }

/* Contact info panel */
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--white-20);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.contact-info-card p  { font-size: 13px; color: var(--white-70); line-height: 1.5; word-break: break-all; }
.contact-info-sub { font-size: 12px !important; color: var(--white-60) !important; }

.service-areas-card,
.why-choose-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--white-20);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.service-areas-card h4,
.why-choose-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.service-areas-desc { font-size: 13px; color: var(--white-70); margin-bottom: 14px; line-height: 1.5; }
.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.service-areas-grid span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--white-70);
}
.service-areas-grid span::before {
  content: '';
  display: inline-flex;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/65% no-repeat;
  border-radius: 50%;
}
.service-areas-note { font-size: 11px; color: var(--white-60); margin-top: 12px; font-style: italic; }
.why-list { display: flex; flex-direction: column; gap: 9px; margin-top: 8px; list-style: none; padding: 0; }
.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--white-70);
}
.why-list li::before {
  content: '';
  display: inline-flex;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/65% no-repeat;
  border-radius: 50%;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--white-20);
  padding-top: 56px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-logo {
  width: 49px;
  height: 49px;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  object-fit: cover;
}
.footer-brand-name    { font-size: 16px; font-weight: 700; color: var(--white); }
.footer-brand-tagline { font-size: 14px; font-weight: 500; color: var(--white-70); }
.footer-desc {
  font-size: 14px;
  line-height: 22px;
  color: var(--white-60);
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social-link {
  width: 38px;
  height: 38px;
  background: var(--white-10);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-80);
  border: 1px solid var(--white-20);
  transition: background 0.2s, color 0.2s;
}
.footer-social-link:hover { background: var(--gold); color: var(--black); }

.footer-newsletter h4 {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-newsletter p {
  font-size: 13px;
  color: var(--white-60);
  line-height: 1.6;
  margin-bottom: 16px;
}
.newsletter-form {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 180px;
  background: var(--white-10);
  border: 1px solid var(--white-20);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 14px;
  padding: 11.5px 14px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: var(--white-60); }
.newsletter-form input:focus { border-color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--white-20);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--white-60); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 13px; color: var(--white-60); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .about-grid    { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr; gap: 32px; }
  .timeline-line { display: none; }
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-item.timeline-left  .timeline-card,
  .timeline-item.timeline-right .timeline-card {
    grid-column: 1;
    text-align: left;
    padding: 0;
  }
  .timeline-dot  { display: none; }
  .timeline { gap: 20px; }
  .gallery-grid  { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
}

@media (max-width: 768px) {
  .nav-bottom    { display: none; }
  .nav-cta       { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo      { width: 44px; height: 44px; }
  .nav-name      { font-size: 20px; }
  .nav-phone     { font-size: 15px; }
  .nav-top-inner { padding: 10px 16px; gap: 10px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .about-stats   { gap: 12px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .slider-prev   { left: -10px; }
  .slider-next   { right: -10px; }
  .service-card-img-wrap { height: 240px; }
}

@media (max-width: 520px) {
  .gallery-grid  { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .hero-stats    { flex-direction: column; gap: 16px; }
  .service-areas-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid  { grid-template-columns: 1fr; }
}

/* ============================================================
   CERTIFICATIONS & CREDENTIALS
   ============================================================ */
.section-certs {
  background: #fff;
  padding: 80px 0 70px;
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 40px;
}
.cert-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.cert-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.cert-icon-wrap {
  width: 56px;
  height: 56px;
  background: #D4A027;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cert-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}
.cert-desc {
  font-size: 13px;
  color: var(--river-bed);
  line-height: 1.6;
  flex: 1;
}
.cert-badge-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 14px;
  margin-top: 4px;
}
.cert-badge-img {
  max-width: 130px;
  max-height: 85px;
  object-fit: contain;
}
.certs-footnote {
  font-size: 13px;
  color: var(--river-bed);
  text-align: center;
  line-height: 1.6;
  margin-top: 8px;
}
@media (max-width: 960px) {
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .certs-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GET QUOTE MODAL
   ============================================================ */
.quote-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.quote-overlay.open {
  display: flex;
}
.quote-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
}

/* Gold header */
.quote-modal-header {
  background: #D4A027;
  border-radius: 16px 16px 0 0;
  padding: 28px 28px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
}
.quote-modal-title {
  font-family: 'Geist Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 8px;
}
.quote-modal-sub {
  font-family: 'Geist Mono', monospace;
  font-size: 14px;
  color: #111;
  line-height: 1.5;
}
.quote-close {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  min-width: 36px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: background 0.2s;
  flex-shrink: 0;
}
.quote-close:hover { background: #f0f0f0; }

/* Form */
.quote-form {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quote-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.quote-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quote-field label {
  font-family: 'Geist Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  color: #111;
}
.req { color: #e53e3e; }
.quote-field input,
.quote-field select,
.quote-field textarea {
  font-family: 'Geist Mono', monospace;
  font-size: 14px;
  color: #333;
  background: #f5f5f5;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  resize: vertical;
}
.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  border-color: #D4A027;
  background: #fff;
}
.quote-field select { appearance: auto; }

/* Submit button */
.quote-submit {
  width: 100%;
  background: #D4A027;
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 16px;
  font-family: 'Geist Mono', monospace;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}
.quote-submit:hover { background: #c49020; transform: translateY(-1px); }

@media (max-width: 560px) {
  .quote-row { grid-template-columns: 1fr; }
  .quote-modal-title { font-size: 22px; }
}
