/* ═══════════════════════════════════════════════════════════════════
   Ideal Landscape Services — Shared Stylesheet
   Color scheme: Slate gray background, white accents, green accent
   ═══════════════════════════════════════════════════════════════════ */

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── Design Tokens ──────────────────────────────────────────────── */
/*
 * Palette: Deep black + neutral gray (aesthetics v2)
 * Dark sections  → --slate-950 / --slate-900  (#0D0D0D / #111111)
 * Light sections → --slate-700                (#2e2e2e — neutral gray replaces white)
 * Cards / inputs → --slate-800                (#1e1e1e — inset on either surface)
 */
:root {
  --slate-950:    #0D0D0D;   /* deep black — navbar, footer */
  --slate-900:    #111111;   /* dark alternating sections */
  --slate-800:    #1e1e1e;   /* cards, inputs, drawers */
  --slate-700:    #4a5665;   /* cool slate blue-gray — "light" sections */
  --slate-600:    #4a5665;   /* same as 700 (process / area sections) */
  --slate-500:    #6a6a6a;
  --slate-400:    #6a6a6a;
  --slate-300:    #9ab0bc;
  --slate-200:    #c4d4dc;
  --slate-100:    #e6eef2;

  /* Whites */
  --white:        #ffffff;
  --text-white:   rgba(255, 255, 255, 0.88);
  --off-white:    #f2f7fa;

  /* Accent — CTA buttons, nav hover ONLY */
  --accent:       #3c6e47;
  --accent-dark:  #2f5538;
  --accent-light: #4d8a5a;

  /* Text */
  --text-primary:   rgba(255, 255, 255, 0.88);
  --text-secondary: rgba(255,255,255,0.75);
  --text-muted:     rgba(255,255,255,0.44);

  /* Glass (used sparingly per aesthetics spec) */
  --glass-nav:    rgba(0, 0, 0, 0.65);   /* navbar on scroll */
  --glass-card:   rgba(0, 0, 0, 0.55);   /* portfolio card label */

  /* Stars */
  --gold: #f5a623;

  /* Transitions */
  --ease-out:    cubic-bezier(0.0, 0.0, 0.25, 1.0);
  --ease-in-out: cubic-bezier(0.4, 0.0, 0.2, 1.0);
}

/* ── Base ───────────────────────────────────────────────────────── */
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--slate-700);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* ── Utilities ──────────────────────────────────────────────────── */
.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}
.eyebrow--gold { color: var(--gold); }

.section-heading { margin-bottom: 48px; }
.section-heading h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-white);
}
.section-heading .subhead {
  margin-top: 14px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 560px;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 2px;
  padding: 14px 28px;
  transition: background 220ms var(--ease-in-out),
              border-color 220ms var(--ease-in-out),
              transform 110ms;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--text-white);
  border: none;
}
.btn-primary:hover  { background: var(--accent-dark); }
.btn-primary:active { transform: translateY(1px); }
.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.55);
}
.btn-outline:hover  { border-color: var(--text-white); background: rgba(255,255,255,0.07); }
.btn-ghost {
  background: transparent;
  color: var(--accent-light);
  border: none;
  padding-left: 0;
  gap: 6px;
}
.btn-ghost:hover { color: var(--text-white); }

/* ── Scroll animations ──────────────────────────────────────────── */
.animate-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
}
.animate-in.visible { opacity: 1; transform: translateY(0); }
.stagger .animate-in:nth-child(1) { transition-delay:   0ms; }
.stagger .animate-in:nth-child(2) { transition-delay:  90ms; }
.stagger .animate-in:nth-child(3) { transition-delay: 180ms; }
.stagger .animate-in:nth-child(4) { transition-delay: 270ms; }
.stagger .animate-in:nth-child(5) { transition-delay: 360ms; }
.stagger .animate-in:nth-child(6) { transition-delay: 450ms; }

/* ════════════════════════════════════════════════════════════════
   PROMO BAR
   ════════════════════════════════════════════════════════════════ */
.promo-bar {
  background: var(--slate-950);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-white);
  position: relative;
  z-index: 200;
}
.promo-bar a { color: var(--text-white); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ════════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  height: 70px;
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 280ms var(--ease-in-out),
              border-bottom 280ms var(--ease-in-out),
              height 350ms var(--ease-in-out),
              top 200ms linear;
}
.navbar.scrolled {
  background: var(--glass-nav);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.nav-inner {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img {
  height: 60px;
  width: auto;
  transition: height 350ms var(--ease-in-out);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 140ms;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--accent-light);
  transform: scaleX(0);
  transition: transform 200ms var(--ease-out);
}
.nav-links a:hover { color: var(--text-white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--text-white); }
.plants-nav-link { display: none; }
.nav-pay-btn {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 140ms;
  position: relative;
  padding-bottom: 2px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav-pay-btn::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--accent-light);
  transform: scaleX(0);
  transition: transform 200ms var(--ease-out);
}
.nav-pay-btn:hover { color: var(--text-white); }
.nav-pay-btn:hover::after { transform: scaleX(1); }
.nav-cta { margin-left: 20px; padding: 10px 20px; font-size: 14px; }

/* Call Today inline nav element */
.nav-call {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 140ms;
}
.nav-call svg { flex-shrink: 0; }
.nav-call:hover { color: var(--text-white); }
@media (max-width: 900px) { .nav-call { display: none; } }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: transform 280ms var(--ease-in-out), opacity 180ms;
}
.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 drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(300px, 100vw);
  background: var(--slate-950);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 110px 32px 48px;
  gap: 0;
  transform: translateX(100%);
  transition: transform 440ms var(--ease-in-out);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 140ms;
}
.mobile-drawer a:last-of-type { border-bottom: none; }
.mobile-drawer a:hover { color: var(--text-white); }
.mobile-pay-btn {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  width: 100%;
  display: block;
  transition: color 140ms;
}
.mobile-pay-btn:hover { color: var(--text-white); }
.mobile-drawer .btn-primary {
  margin-top: 28px;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  text-align: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 767px) {
  .nav-inner { padding: 0 20px; }
  .container  { padding: 0 20px; }
}

/* ════════════════════════════════════════════════════════════════
   GLASS NAVBAR — Universal (all pages)
   ════════════════════════════════════════════════════════════════ */

/* Hero flush with top so navbar overlays it */
.page-hero { margin-top: 0; }

/* Glass at all sizes when not scrolled */
.navbar:not(.scrolled) {
  background: var(--glass-nav);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

@media (min-width: 901px) {
  .navbar:not(.scrolled) {
    height: 110px;
  }
  .navbar:not(.scrolled) .logo img {
    height: 92px;
  }
}

/* Mobile drawer needs less top padding without the promo bar */
.page-home .mobile-drawer { padding-top: 82px; }

/* Phone sub-row — hidden everywhere except desktop homepage */
.nav-phone     { display: none; }
.nav-phone a   { color: inherit; }

@media (min-width: 901px) {
  /* Tall glass state when user is at top of page */
  .page-home .navbar:not(.scrolled) {
    height: 110px;
    background: var(--glass-nav);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }
  .page-home .navbar:not(.scrolled) .logo img {
    height: 92px;
  }

  /* Phone sub-row */
  .page-home .nav-phone {
    display: block;
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    white-space: nowrap;
    transition: opacity 280ms var(--ease-in-out),
                transform 280ms var(--ease-in-out);
  }
  .page-home .nav-phone a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 160ms;
  }
  .page-home .nav-phone a:hover { color: rgba(255, 255, 255, 0.85); }

  /* Phone fades out as navbar collapses */
  .page-home .navbar.scrolled .nav-phone {
    opacity: 0;
    transform: translateX(-50%) translateY(-5px);
    pointer-events: none;
  }
}

/* ════════════════════════════════════════════════════════════════
   HERO (standard full-bleed)
   ════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background-color: var(--slate-900);
  background-size: cover;
  background-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.06) 40%,
    rgba(0,0,0,0.68) 100%
  );
}
.hero-content {
  position: absolute;
  bottom: 14%;
  left: 0; right: 0;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}
.hero-content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 600ms var(--ease-out) forwards;
}
@keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }
.hero-content .eyebrow  { color: rgba(255,255,255,0.68); animation-delay: 200ms; }
.hero-content h1        { animation-delay: 380ms; }
.hero-content .hero-sub { animation-delay: 530ms; }
.hero-content .hero-ctas{ animation-delay: 680ms; }

.hero-content h1 {
  font-size: clamp(38px, 6.5vw, 76px);
  font-weight: 800;
  line-height: 1.035;
  color: var(--text-white);
  margin-bottom: 18px;
  max-width: 680px;
}
.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Page hero (shorter — for interior pages) */
.page-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: flex-end;
  background-color: var(--slate-900);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.70));
}
.page-hero-content {
  position: relative;
  padding: 0 40px 40px;
  max-width: 1340px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-content h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-white);
  margin-top: 10px;
}

@media (max-width: 767px) {
  .hero-content      { bottom: 10%; padding: 0 20px; }
  .page-hero         { height: 240px; }
  .page-hero-content { padding: 0 20px 28px; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
}

/* ════════════════════════════════════════════════════════════════
   TRUST STRIP
   ════════════════════════════════════════════════════════════════ */
.trust-strip { background: var(--slate-950); }
.trust-items { display: flex; align-items: stretch; }
.trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: none; }
.trust-stat {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}
.trust-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 7px;
  text-align: center;
}
@media (max-width: 580px) {
  .trust-items { flex-wrap: wrap; }
  .trust-item {
    flex: 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .trust-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.08); }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4)    { border-bottom: none; }
}

/* ════════════════════════════════════════════════════════════════
   SERVICES TILES
   ════════════════════════════════════════════════════════════════ */
.services-section {
  background: var(--slate-700);
  padding: 96px 0 0;
}
.service-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.service-tile {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.service-tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 380ms var(--ease-out);
}
.service-tile:hover .service-tile-bg { transform: scale(1.05); }
.service-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.05);
  transition: background 240ms;
}
.service-tile:hover .service-tile-overlay { background: rgba(0,0,0,0.15); }
.service-tile-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.service-tile-icon { width: 38px; height: 38px; color: var(--text-white); opacity: 0.90; }
.service-tile-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-white);
}
.service-tile-arrow {
  font-size: 18px;
  color: rgba(255,255,255,0.60);
  transition: transform 240ms, color 140ms;
}
.service-tile:hover .service-tile-arrow { transform: translateX(5px); color: var(--text-white); }

@media (max-width: 767px) {
  .service-tiles { grid-template-columns: repeat(2, 1fr); }
  .services-section { padding: 64px 0 0; }
}
@media (max-width: 440px) {
  .service-tiles { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   SERVICES GRID (overview page)
   ════════════════════════════════════════════════════════════════ */
.services-grid-section {
  background: var(--slate-700);
  padding: 80px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  background: var(--slate-800);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: border-color 240ms, transform 240ms;
  display: block;
  color: var(--text-primary);
}
.service-card:hover { border-color: rgba(255,255,255,0.22); transform: translateY(-3px); }
.service-card-image {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}
.service-card-body { padding: 24px; }
.service-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

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

/* ════════════════════════════════════════════════════════════════
   PORTFOLIO / PROJECTS
   ════════════════════════════════════════════════════════════════ */
.portfolio-section {
  background: var(--slate-900);
  padding: 96px 0;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.portfolio-card {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  display: block;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 240ms;
}
.portfolio-card:hover { border-color: rgba(255,255,255,0.28); }
.portfolio-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 380ms var(--ease-out);
}
.portfolio-card:hover .portfolio-card-bg { transform: scale(1.04); }
.portfolio-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  background: var(--glass-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms;
}
.portfolio-card:hover .portfolio-card-label { background: rgba(0, 0, 0, 0.80); }
.portfolio-card-title { font-size: 15px; font-weight: 600; color: var(--text-white); }
.portfolio-card-meta  { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.portfolio-cta { text-align: center; margin-top: 48px; }

@media (max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) {
  .portfolio-grid    { grid-template-columns: 1fr; gap: 10px; }
  .portfolio-section { padding: 64px 0; }
}

/* ════════════════════════════════════════════════════════════════
   BEFORE / AFTER
   ════════════════════════════════════════════════════════════════ */
.before-after-section {
  background: var(--slate-900);
  padding: 80px 0;
}
.ba-container {
  position: relative;
  max-width: 900px;
  margin: 48px auto 0;
  aspect-ratio: 3/2;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
}
.ba-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba-after { clip-path: inset(0 50% 0 0); }
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 2;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
  font-size: 16px;
  color: var(--slate-800);
  font-weight: 700;
}
.ba-label {
  position: absolute;
  top: 16px;
  padding: 5px 12px;
  background: rgba(0,0,0,0.54);
  color: var(--text-white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: 2px;
}
.ba-label.before { left: 16px; }
.ba-label.after  { right: 16px; }

/* ════════════════════════════════════════════════════════════════
   PROCESS
   ════════════════════════════════════════════════════════════════ */
.process-section { background: var(--slate-600); padding: 96px 0; }
.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 48px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 23px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 1px;
  background: rgba(255,255,255,0.18);
}
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 8px; }
.process-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  color: var(--accent-light);
  background: var(--slate-600);
  position: relative; z-index: 1;
  margin-bottom: 16px; flex-shrink: 0;
}
.process-label { font-size: 14px; font-weight: 600; color: var(--text-white); margin-bottom: 6px; }
.process-desc  { font-size: 12px; color: var(--text-secondary); line-height: 1.55; }

@media (max-width: 860px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px 16px; }
  .process-steps::before { display: none; }
  .process-section { padding: 64px 0; }
}
@media (max-width: 520px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }

/* ════════════════════════════════════════════════════════════════
   WHY US
   ════════════════════════════════════════════════════════════════ */
.why-us-section { background: var(--slate-900); padding: 96px 0; }
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}
.why-us-item { display: flex; flex-direction: column; gap: 14px; }
.why-us-icon { width: 44px; height: 44px; color: var(--accent-light); }
.why-us-title { font-size: 18px; font-weight: 700; color: var(--text-white); }
.why-us-body  { font-size: 15px; font-weight: 400; line-height: 1.65; color: var(--text-secondary); }

@media (max-width: 767px) {
  .why-us-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-us-section { padding: 64px 0; }
}

/* ════════════════════════════════════════════════════════════════
   CREDENTIALS
   ════════════════════════════════════════════════════════════════ */
.credentials-section { background: var(--slate-700); padding: 52px 0; }
.credentials-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  flex-wrap: wrap;
}
.credential-img {
  height: 56px; width: auto; max-width: 190px;
  object-fit: contain;
  filter: grayscale(1) brightness(2) opacity(0.45);
  transition: filter 280ms;
}
.credential-img:hover { filter: grayscale(0) brightness(1) opacity(1); }

/* ════════════════════════════════════════════════════════════════
   REVIEWS
   ════════════════════════════════════════════════════════════════ */
.reviews-section { background: var(--slate-900); padding: 96px 0; }
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.reviews-score { font-size: 20px; font-weight: 700; color: var(--text-white); }
.reviews-stars-row { font-size: 18px; color: var(--gold); letter-spacing: 1px; }
.reviews-count { font-size: 14px; color: var(--text-secondary); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  padding: 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.review-stars { font-size: 13px; color: var(--gold); letter-spacing: 1px; margin-bottom: 14px; }
.review-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-footer { display: flex; justify-content: space-between; align-items: flex-end; }
.review-author { font-size: 13px; font-weight: 600; color: var(--text-white); }
.review-date   { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.google-badge  { font-size: 11px; font-weight: 700; color: #5b9cf6; }

@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 580px; gap: 16px; }
  .reviews-section { padding: 64px 0; }
}

/* ════════════════════════════════════════════════════════════════
   SERVICE AREA
   ════════════════════════════════════════════════════════════════ */
.area-section { background: var(--slate-600); padding: 96px 0; }
.area-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.area-map { width: 100%; height: 400px; border: none; display: block; background: #111; }
.city-col-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.city-list { display: grid; grid-template-columns: 1fr 1fr; }
.city-link {
  font-size: 15px; font-weight: 500;
  color: var(--text-secondary);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 140ms;
}
.city-link:hover { color: var(--accent-light); }
.area-disclaimer {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  font-style: italic;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
}
.area-disclaimer a { color: rgba(255,255,255,0.5); text-decoration: underline; transition: color 140ms; }
.area-disclaimer a:hover { color: var(--accent-light); }

@media (max-width: 860px) {
  .area-layout { grid-template-columns: 1fr; gap: 32px; }
  .area-map    { height: 280px; }
  .area-section{ padding: 64px 0; }
}
.leaflet-control-attribution {
  background: rgba(0,0,0,0.55) !important;
  color: rgba(255,255,255,0.35) !important;
  font-size: 10px !important;
}
.leaflet-control-attribution a { color: rgba(255,255,255,0.35) !important; }
.leaflet-control-zoom a {
  background: #1e1e1e !important;
  color: rgba(255,255,255,0.7) !important;
  border-color: rgba(255,255,255,0.1) !important;
}
.leaflet-control-zoom a:hover { background: #2e2e2e !important; }

/* ════════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════════ */
.contact-section { background: var(--slate-700); padding: 96px 0; }

/* Quick-reach bar */
.contact-quick-reach {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.quick-reach-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--slate-800);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: border-color 180ms;
}
.quick-reach-item:hover { border-color: var(--accent-light); }
.quick-reach-item > svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-light);
}
.quick-reach-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.quick-reach-value {
  font-size: 15px; font-weight: 600;
  color: var(--text-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 7fr 4fr;
  gap: 56px;
  align-items: start;
}
.contact-detail { margin-bottom: 24px; }
.contact-detail-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-detail-value { font-size: 16px; font-weight: 500; color: var(--text-white); }
.contact-detail-value a { color: var(--text-white); transition: color 140ms; }
.contact-detail-value a:hover { color: var(--accent-light); }

.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: 13px; font-weight: 500; color: var(--text-secondary); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 0;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-white);
  background: var(--slate-800);
  outline: none;
  transition: border-color 180ms;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent-light); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--slate-800); }
.form-group textarea { min-height: 120px; resize: vertical; }
.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.checkbox-item input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-item span { font-size: 14px; color: var(--text-secondary); }
.contact-form .btn-primary { align-self: flex-start; padding: 15px 34px; }

/* Contact page form wrapper */
.contact-form-wrap { display: flex; flex-direction: column; gap: 0; }
.contact-form-title { font-size: clamp(22px, 3vw, 28px); font-weight: 700; color: var(--text-white); margin-bottom: 8px; }
.contact-form-sub { font-size: 15px; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.6; }

#contact-form { display: flex; flex-direction: column; gap: 16px; }

.req { color: var(--accent-light); }

/* 3-column address row */
.form-row--3 { grid-template-columns: 3fr 2fr 1fr; }
.form-group--grow { flex: 1; }
.form-group--zip { min-width: 80px; }

/* Fieldset checkboxes */
.form-fieldset {
  border: 1px solid rgba(255,255,255,0.14);
  padding: 16px 20px 20px;
  background: var(--slate-800);
}
.form-fieldset legend {
  font-size: 13px; font-weight: 500;
  color: var(--text-secondary);
  padding: 0 6px;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-top: 12px;
}
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
  user-select: none;
}
.checkbox-option input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}
.checkbox-option:hover span { color: var(--text-white); }

/* Form status message */
.form-status {
  font-size: 14px;
  font-weight: 500;
  padding: 14px 18px;
  border-left: 3px solid transparent;
  display: none;
}
.form-status:not(:empty) { display: block; }
.form-status.success {
  color: #6fcf8f;
  background: rgba(60, 110, 71, 0.2);
  border-color: var(--accent);
}
.form-status.error {
  color: #f28b82;
  background: rgba(242, 139, 130, 0.1);
  border-color: #f28b82;
}

.btn-submit { align-self: flex-start; padding: 15px 40px; margin-top: 8px; }

/* Contact sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--slate-800);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
}
.sidebar-card h3 {
  font-size: 16px; font-weight: 700;
  color: var(--text-white);
  margin-bottom: 14px;
}
.sidebar-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.sidebar-card--accent { border-color: rgba(60,110,71,0.5); }
.expect-list {
  list-style: none;
  counter-reset: expect;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.expect-list li {
  counter-increment: expect;
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.expect-list li::before {
  content: counter(expect);
  min-width: 22px; height: 22px;
  background: var(--accent);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.sidebar-badges {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.sidebar-badges img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.85);
}
.sidebar-social { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 150ms;
}
.social-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-link:hover { color: var(--accent-light); }

@media (max-width: 960px) {
  .contact-quick-reach { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row--3 { grid-template-columns: 1fr 1fr; }
  .contact-section { padding: 64px 0; }
}
@media (max-width: 600px) {
  .contact-quick-reach { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-row--3 { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .btn-submit { width: 100%; text-align: center; }
}

/* ════════════════════════════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--slate-900);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.68));
}
.cta-banner-content {
  position: relative;
  text-align: center;
  padding: 0 40px;
  max-width: 700px;
}
.cta-banner-content h2 {
  font-size: clamp(22px, 3.2vw, 38px);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.18;
  margin-bottom: 32px;
  margin-top: 12px;
}
@media (max-width: 580px) { .cta-banner { height: 320px; } }

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.footer { background: var(--slate-950); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.8fr;
  gap: 48px;
}
.footer-logo { height: 70px; margin-bottom: 16px; }
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 240px;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(255,255,255,0.45); transition: color 140ms; }
.footer-social a:hover { color: var(--accent-light); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col-title {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 140ms; }
.footer-links a:hover { color: var(--text-white); }
.footer-contact-item {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color 140ms; }
.footer-contact-item a:hover { color: var(--text-white); }
.footer-pay-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-light);
  padding: 0;
  transition: color 140ms;
}
.footer-pay-btn:hover { color: var(--text-white); }
.AuthorizeNetSeal { line-height: 0; }
.AuthorizeNetSeal img { display: block; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 56px;
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.26);
}
.footer-bottom a { color: inherit; transition: color 140ms; }
.footer-bottom a:hover { color: rgba(255,255,255,0.55); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding-top: 48px; }
}

/* ════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════════════════════ */
.about-section { background: var(--slate-700); padding: 80px 0; }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-body { display: flex; flex-direction: column; gap: 20px; }
.about-body p { font-size: 16px; line-height: 1.75; color: var(--text-secondary); }

.team-section { background: var(--slate-800); padding: 80px 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  background: var(--slate-700);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.team-photo { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: top; }
.team-info { padding: 20px; }
.team-name { font-size: 17px; font-weight: 700; color: var(--text-white); }
.team-role { font-size: 12px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: var(--accent-light); margin-top: 4px; }
.team-bio  { font-size: 14px; line-height: 1.65; color: var(--text-secondary); margin-top: 12px; }

@media (max-width: 860px) { .about-layout { grid-template-columns: 1fr; } .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .team-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════
   GALLERY / PROJECTS PAGE
   ════════════════════════════════════════════════════════════════ */
.gallery-section { background: var(--slate-700); padding: 64px 0; }
.gallery-search {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  max-width: 520px;
}
.gallery-search input {
  flex: 1;
  padding: 13px 18px;
  background: var(--slate-800);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text-white);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 180ms;
  border-radius: 0;
}
.gallery-search input:focus { border-color: var(--accent-light); }
.gallery-search input::placeholder { color: var(--text-muted); }
.gallery-search button {
  padding: 0 24px;
  background: var(--accent);
  color: var(--text-white);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: background 200ms;
  white-space: nowrap;
}
.gallery-search button:hover { background: var(--accent-dark); }
.gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  background: var(--slate-800);
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.10);
  cursor: pointer;
  transition: background 160ms, color 160ms, border-color 160ms;
  border-radius: 2px;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: var(--text-white);
  border-color: var(--accent);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--slate-600);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 380ms var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,30,40,0);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  transition: background 240ms;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(20,30,40,0.60); }
.gallery-item-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  opacity: 0;
  transition: opacity 220ms;
}
.gallery-item:hover .gallery-item-tags { opacity: 1; }
.gallery-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  background: rgba(0,0,0,0.55);
  color: var(--text-white);
  border-radius: 1px;
}
.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
  font-size: 16px;
}

@media (max-width: 900px) { .gallery-masonry { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-masonry { grid-template-columns: repeat(2, 1fr); } }

/* ════════════════════════════════════════════════════════════════
   BLOG PAGE
   ════════════════════════════════════════════════════════════════ */
.blog-section { background: var(--slate-700); padding: 64px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  background: var(--slate-800);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: border-color 220ms, transform 220ms;
  display: block;
  color: var(--text-primary);
}
.blog-card:hover { border-color: rgba(255,255,255,0.22); transform: translateY(-3px); }
.blog-card-image {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}
.blog-card-body { padding: 22px; }
.blog-card-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.blog-card-title { font-size: 17px; font-weight: 700; color: var(--text-white); line-height: 1.35; margin-bottom: 10px; }
.blog-card-excerpt { font-size: 14px; line-height: 1.65; color: var(--text-secondary); }

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

/* ── Blog Reader Modal ─────────────────────────────────────────── */
.blog-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px 16px;
  opacity: 0;
  transition: opacity 300ms var(--ease-out);
}
.blog-modal-overlay.hidden { display: none; }
.blog-modal-overlay.open { opacity: 1; }
.blog-modal {
  background: var(--slate-800);
  border-radius: 12px;
  width: 100%; max-width: 760px; max-height: 85vh;
  display: flex; flex-direction: column;
  transform: translateY(24px);
  transition: transform 300ms var(--ease-out);
  overflow: hidden;
}
.blog-modal-overlay.open .blog-modal { transform: translateY(0); }
.blog-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px 0; flex-shrink: 0;
}
.blog-modal-meta-tag {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
}
.blog-modal-close {
  background: rgba(255,255,255,0.07); border: none;
  width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  transition: background 140ms, color 140ms; flex-shrink: 0;
}
.blog-modal-close:hover { background: rgba(255,255,255,0.14); color: var(--text-white); }
.blog-modal-title {
  font-size: clamp(20px, 3vw, 26px); font-weight: 700;
  color: var(--text-white);
  padding: 12px 28px 0; flex-shrink: 0; line-height: 1.25;
}
.blog-modal-divider {
  height: 1px; background: rgba(255,255,255,0.08);
  margin: 16px 28px; flex-shrink: 0;
}
.blog-modal-body {
  overflow-y: auto; padding: 0 28px 24px; flex: 1;
  color: var(--text-secondary); font-size: 15px; line-height: 1.8;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.blog-modal-body::-webkit-scrollbar { width: 5px; }
.blog-modal-body::-webkit-scrollbar-track { background: transparent; }
.blog-modal-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }
.blog-modal-body p { margin-bottom: 16px; }
.blog-modal-body h3 {
  font-size: 16px; font-weight: 700; color: var(--text-white);
  margin: 24px 0 8px;
}
.blog-modal-body ul, .blog-modal-body ol { margin: 0 0 16px 20px; }
.blog-modal-body li { margin-bottom: 8px; }
.blog-modal-featured-img {
  width: 100%; height: auto; display: block;
  border-radius: 6px; margin-bottom: 22px; object-fit: contain;
}
.blog-modal-body a { color: var(--accent-light); transition: color 140ms; }
.blog-modal-body a:hover { color: var(--text-white); }
.blog-modal-body strong { color: var(--text-white); font-weight: 600; }

/* ── Gallery pagination ──────────────────────────────────────── */
.gallery-pagination {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 36px; flex-wrap: wrap;
}
.gallery-page-btn {
  min-width: 38px; height: 38px; padding: 0 10px;
  background: var(--slate-800); border: 1px solid rgba(255,255,255,0.10);
  color: var(--text-secondary); font-size: 14px; font-weight: 500;
  border-radius: 4px; cursor: pointer;
  transition: border-color 160ms, color 160ms;
}
.gallery-page-btn:hover { border-color: rgba(255,255,255,0.30); color: var(--text-white); }
.gallery-page-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.blog-side-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 56px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  font-size: 26px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  transition: background 150ms, color 150ms, opacity 250ms;
  user-select: none;
}
.blog-side-btn:hover { background: rgba(255,255,255,0.14); color: var(--text-white); }
.blog-side-btn:disabled { opacity: 0; pointer-events: none; }
.blog-side-prev { left: 16px; }
.blog-side-next { right: 16px; }
@media (max-width: 600px) {
  .blog-modal-overlay { align-items: flex-end; padding: 0; }
  .blog-modal { max-height: 92vh; border-radius: 12px 12px 0 0; }
  .blog-modal-header { padding-left: 20px; padding-right: 20px; }
  .blog-modal-title { padding-left: 20px; padding-right: 20px; }
  .blog-modal-body { padding-left: 20px; padding-right: 20px; }
  .blog-side-btn { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   PAY ONLINE PAGE
   ════════════════════════════════════════════════════════════════ */
.pay-section {
  background: var(--slate-700);
  padding: 80px 0 120px;
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
}
.pay-card {
  max-width: 580px;
  margin: 0 auto;
  background: var(--slate-800);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 48px;
}
.pay-card h2 { font-size: 26px; font-weight: 700; color: var(--text-white); margin-bottom: 8px; }
.pay-card .pay-sub { font-size: 15px; color: var(--text-secondary); margin-bottom: 32px; line-height: 1.6; }
.pay-form { display: flex; flex-direction: column; gap: 20px; }
.payment-methods {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pay-method {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer;
  background: var(--slate-700);
  transition: border-color 160ms, background 160ms;
  border-radius: 2px;
}
.pay-method:hover { border-color: rgba(255,255,255,0.30); }
.pay-method.selected { border-color: var(--accent-light); background: rgba(77,138,90,0.12); }
.pay-method input { display: none; }
.pay-method span { font-size: 14px; font-weight: 600; color: var(--text-secondary); }
.pay-method.selected span { color: var(--text-white); }
.pay-method-icon { font-size: 20px; }
.pay-total {
  background: var(--slate-900);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pay-total-label { font-size: 14px; color: var(--text-secondary); }
.pay-total-amount { font-size: 24px; font-weight: 700; color: var(--text-white); }
.pay-secure {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 640px) { .pay-card { padding: 32px 24px; } }

/* ════════════════════════════════════════════════════════════════
   TESTIMONIALS — standalone quote style
   ════════════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--slate-800); padding: 80px 0; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--slate-700);
  border-left: 3px solid var(--accent);
  padding: 28px 28px 28px 26px;
}
.testimonial-text { font-size: 15px; line-height: 1.75; color: var(--text-secondary); font-style: italic; }
.testimonial-author { margin-top: 18px; font-size: 13px; font-weight: 700; color: var(--accent-light); }

@media (max-width: 700px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════
   SERVICE DETAIL PAGE
   ════════════════════════════════════════════════════════════════ */
.service-detail-section { background: var(--slate-700); padding: 80px 0; }
.service-detail-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}
.service-detail-body { display: flex; flex-direction: column; gap: 20px; }
.service-detail-body p { font-size: 16px; line-height: 1.75; color: var(--text-secondary); }
.service-detail-body ul { padding-left: 0; display: flex; flex-direction: column; gap: 8px; }
.service-detail-body li {
  font-size: 15px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.service-detail-body li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-light);
  font-size: 13px;
}
.service-sidebar {
  background: var(--slate-800);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 130px;
}
.service-sidebar h3 { font-size: 16px; font-weight: 700; color: var(--text-white); margin-bottom: 4px; }
.related-services { display: flex; flex-direction: column; gap: 6px; }
.related-service-link {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 140ms;
  display: flex;
  align-items: center;
  gap: 6px;
}
.related-service-link:last-child { border-bottom: none; }
.related-service-link:hover { color: var(--accent-light); }
.service-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 64px;
}
.service-gallery-item { aspect-ratio: 4/3; object-fit: cover; width: 100%; display: block; }

@media (max-width: 860px) {
  .service-detail-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .service-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════════
   MISC UTILITIES
   ════════════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   LIGHTBOX
   ════════════════════════════════════════════════════════════════ */
#lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}
#lb-overlay.lb-open {
  opacity: 1;
  pointer-events: all;
}
.lb-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(94vw, 1400px);
  max-height: 88vh;
}
.lb-img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  transition: opacity 180ms ease;
  user-select: none;
  -webkit-user-drag: none;
}
.lb-img.lb-loading { opacity: 0; }
.lb-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text-white);
  font-size: 19px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms;
  z-index: 9001;
  line-height: 1;
}
.lb-close:hover { background: rgba(255,255,255,0.22); }
.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text-white);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms;
  z-index: 9001;
  user-select: none;
  line-height: 1;
}
.lb-prev { left: 12px; }
.lb-next { right: 12px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.20); }
.lb-nav-hidden { opacity: 0 !important; pointer-events: none !important; }
.lb-footer {
  position: fixed;
  bottom: 18px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  pointer-events: none;
}
.lb-caption {
  font-size: 13px;
  color: rgba(255,255,255,0.48);
  text-align: center;
  max-width: 640px;
}
.lb-counter {
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

/* ── Hover-wrap: applied by JS around gallery images ─────────── */
.lb-wrap {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: zoom-in;
}

/* Service gallery cells */
.service-gallery .lb-wrap          { aspect-ratio: 4/3; }
.service-gallery .lb-wrap > img    { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease-out); }
.service-gallery .lb-wrap:hover > img { transform: scale(1.06); }

/* Team photos */
.team-card .lb-wrap              { aspect-ratio: 1; }
.team-card .lb-wrap > img        { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 400ms var(--ease-out); }
.team-card .lb-wrap:hover > img  { transform: scale(1.05); }

/* About photo */
.about-layout .lb-wrap > img        { transition: transform 400ms var(--ease-out); }
.about-layout .lb-wrap:hover > img  { transform: scale(1.03); }

/* Expand hint icon */
.lb-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255,255,255,0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.80);
  transition: opacity 220ms, transform 220ms;
  pointer-events: none;
  z-index: 2;
}
.lb-hint svg { width: 14px; height: 14px; }
.lb-wrap:hover .lb-hint { opacity: 1; transform: scale(1); }

/* Gallery-item images also get zoom-in cursor */
.gallery-item img { cursor: zoom-in; }

@media (max-width: 640px) {
  .lb-prev { left: 4px; }
  .lb-next { right: 4px; }
}

/* ════════════════════════════════════════════════════════════════
   GALLERY EXPAND / COLLAPSE
   ════════════════════════════════════════════════════════════════ */

/* Hide overflow photos until the gallery is expanded.
   :has() targets the .lb-wrap wrapper after JS runs;
   direct-child selector catches the bare <img> before JS wraps it. */
.service-gallery:not(.gallery-expanded) > img.gallery-overflow,
.service-gallery:not(.gallery-expanded) .lb-wrap:has(img.gallery-overflow) { display: none; }

.gallery-expand-btn {
  display: block;
  margin: 20px auto 0;
  padding: 10px 32px;
  background: none;
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--text-secondary);
  font-size: 11px;
  font-family: inherit;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 220ms, color 220ms;
  border-radius: 2px;
}
.gallery-expand-btn:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
}

/* ════════════════════════════════════════════════════════════════
   ANNOUNCEMENT BANNER
   Bottom-pinned. Frosted dark glass. Elegant ticker scroll.
   Only rendered on homepage when siteConfig/banner.active = true.
   ════════════════════════════════════════════════════════════════ */
#announcement-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 68px;
  z-index: 300;
  display: flex;
  align-items: center;
  background: rgba(8, 8, 8, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;

  /* slide up on entry */
  transform: translateY(100%);
  transition: transform 600ms cubic-bezier(0.0, 0.0, 0.25, 1.0);
}
#announcement-banner.visible {
  transform: translateY(0);
}

/* Left accent stroke — like a gallery label divider */
#announcement-banner::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 3px;
  height: 28px;
  background: var(--accent-light);
  margin: 0 22px 0 26px;
  opacity: 0.85;
}

/* Scrolling ticker track */
.banner-track {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

/* The moving text — duplicated in JS so it loops seamlessly */
.banner-text {
  display: inline-flex;
  white-space: nowrap;
  animation: banner-scroll 60s linear infinite;
  will-change: transform;
}
.banner-text span {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.88);
  padding-right: 100px; /* gap between repetitions */
}
/* separator diamond between message repetitions */
.banner-text span::after {
  content: '◆';
  font-size: 7px;
  color: var(--accent-light);
  margin-left: 90px;
  vertical-align: 1px;
  opacity: 0.7;
}

@keyframes banner-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Dismiss button */
.banner-dismiss {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 68px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.38);
  transition: color 180ms;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.banner-dismiss:hover { color: rgba(255, 255, 255, 0.82); }

/* Push body content up so footer isn't hidden behind the banner */
body.banner-open { padding-bottom: 68px; }
