/* ============================================================
   OLYMPIA — TARGETED FIXES
   Controlled overrides only. No redesigns.
   ============================================================ */

/* ─── 1. HERO — MOBILE BALANCE ─── */
/* Tighter top padding so headline sits higher */
@media (max-width: 768px) {
  .hero-content {
    padding-top: calc(var(--nav-h) + 20px) !important;
    padding-bottom: 60px !important;
  }
  .hero-eyebrow { margin-bottom: 14px; }
  .hero-title { margin-bottom: 16px; }
  .hero-subtitle { margin-bottom: 28px; font-size: 0.88rem; line-height: 1.65; }
  .hero-subtitle br { display: none; }

  /* Smaller, more proportional hero buttons */
  .btn-hero-primary {
    padding: 10px 22px !important;
    font-size: 0.74rem !important;
    letter-spacing: 0.1em !important;
  }
  .btn-hero-secondary {
    padding: 9px 18px !important;
    font-size: 0.74rem !important;
    letter-spacing: 0.1em !important;
  }
  .hero-actions { gap: 8px; }
}
@media (max-width: 420px) {
  .hero-content { padding-top: calc(var(--nav-h) + 12px) !important; }
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .btn-hero-primary, .btn-hero-secondary { flex: 0 0 auto; }
}

/* ─── NAVBAR LOGO — LARGER ─── */
.nav-logo img {
  height: 56px !important;
  width: auto !important;
}
@media (max-width: 768px) {
  .nav-logo img { height: 48px !important; }
}

/* ─── 2. MOBILE NAV MENU — CONTRACTOR STYLE ─── */
/* Reduce link size — practical, not fashion */
.mobile-menu-nav a {
  font-size: clamp(1.4rem, 5.5vw, 1.9rem) !important;
  padding: 13px 0 !important;
  color: rgba(255,255,255,0.8) !important;
  letter-spacing: 0.01em !important;
}
.mobile-menu-nav a:hover { color: var(--white) !important; padding-left: 4px !important; }
.mobile-menu-nav { padding: 20px 32px 16px !important; gap: 0 !important; }

/* Reduce menu footer / CTA area */
.mobile-menu-footer {
  padding: 16px 32px 28px !important;
}
.mobile-menu-footer-cta {
  padding: 10px 22px !important;
  font-size: 0.72rem !important;
  margin-bottom: 12px !important;
  display: inline-flex !important;
}
.mobile-menu-footer-phone a {
  font-size: 0.88rem !important;
  color: rgba(255,255,255,0.55) !important;
}
.mobile-menu-header { padding: 16px 20px !important; }
.mobile-menu-logo { height: 44px !important; }

/* Corner accents — keep but subtle */
.mobile-menu-corner { opacity: 0.4; }

/* ─── 3. SERVICE CARDS — COMPACT ─── */
.service-card {
  padding: 28px 22px 26px !important;
}
.service-num {
  font-size: 2.4rem !important;
  margin-bottom: 12px !important;
}
.service-icon {
  width: 40px !important;
  height: 40px !important;
  font-size: 1.1rem !important;
  margin-bottom: 14px !important;
}
.service-card h3 {
  font-size: 1.1rem !important;
  margin-bottom: 8px !important;
}
.service-card p { font-size: 0.83rem !important; line-height: 1.6 !important; }
.service-card-link { margin-top: 14px !important; font-size: 0.68rem !important; }

/* Mobile: 2 columns instead of stacking */
@media (max-width: 768px) and (min-width: 440px) {
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .service-card { padding: 22px 18px 20px !important; }
  .service-num { font-size: 2rem !important; }
}
@media (max-width: 439px) {
  .services-grid { grid-template-columns: 1fr !important; }
  .service-card { padding: 22px 18px !important; }
}

/* ─── 4. STATS — HARDCODE FINAL VALUES (no animation dependency) ─── */
/* Show final values as fallback via CSS — counters are always readable */
[data-count="100"][data-suffix="+"]::after  { content: none; }
[data-count="5"][data-suffix="+"]::after    { content: none; }
[data-count="7"][data-suffix=" Days"]::after { content: none; }

/* ─── 5. VIDEO — HIDE ERROR TEXT, SHOW POSTER FALLBACK ─── */
/* If video fails to load, hide the error paragraph */
.video-wrapper video::after { display: none; }

/* Fix video aspect ratio — video is portrait (9:16) */
.video-wrapper {
  max-width: 420px !important;
  margin: 0 auto !important;
}
.video-wrapper video {
  aspect-ratio: 9 / 16 !important;
  max-height: 65vh !important;
  width: 100% !important;
}

/* Fallback image shown if video fails (handled by JS) */
.video-fallback {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.video-fallback-wrap {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.12);
  position: relative;
}
.video-fallback-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(9,9,9,0.7);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 2px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

/* ─── 6. CHAT WIDGET — COMPACT & CLEAN ─── */
.chat-popup { width: 280px !important; border-radius: 10px !important; }
.chat-popup-header { padding: 14px 14px 13px !important; gap: 10px !important; }
.chat-logo { width: 38px !important; height: 38px !important; }
.chat-header-info strong { font-size: 0.84rem !important; }
.chat-popup-body { padding: 12px !important; }
.chat-message {
  padding: 10px 12px !important;
  font-size: 0.82rem !important;
  margin-bottom: 10px !important;
}
.chat-btn {
  padding: 9px 12px !important;
  font-size: 0.8rem !important;
  gap: 8px !important;
  border-radius: 6px !important;
}
.chat-actions { gap: 6px !important; }
.chat-toggle {
  width: 50px !important;
  height: 50px !important;
  font-size: 1.1rem !important;
}

/* On mobile, push widget slightly inward */
@media (max-width: 480px) {
  .chat-widget { bottom: 14px !important; right: 12px !important; }
  .chat-popup { width: calc(100vw - 24px) !important; max-width: 300px !important; }
}

/* ─── GENERAL MOBILE SPACING ─── */
@media (max-width: 768px) {
  section { padding: 56px 0 !important; }
  .section-header { margin-bottom: 40px !important; }
  .section-header h2 { font-size: clamp(1.7rem, 6vw, 2.6rem) !important; }

  /* Prevent oversized trust grid on mobile */
  .trust-grid { grid-template-columns: 1fr !important; gap: 1px !important; }
  .trust-card { padding: 28px 24px !important; }
  .trust-card .icon-wrap { width: 48px !important; height: 48px !important; font-size: 1.3rem !important; }

  /* Process steps on mobile — single column, compact */
  .process-steps { grid-template-columns: 1fr !important; }
  .process-step { padding: 24px 20px !important; text-align: left !important; display: flex !important; gap: 16px !important; align-items: flex-start !important; }
  .process-step .step-number { font-size: 2rem !important; margin-bottom: 0 !important; flex-shrink: 0 !important; line-height: 1.1 !important; }
  .process-step .step-icon { margin-bottom: 0 !important; }

  /* Featured grid — 2 cols */
  .featured-grid { grid-template-columns: 1fr 1fr !important; gap: 6px !important; }
  .featured-item:nth-child(1) { grid-column: span 2 !important; }
  .featured-item:nth-child(n+2) { grid-column: span 1 !important; }
  .featured-img,
  .featured-item:nth-child(1) .featured-img { height: 220px !important; }
}

/* ─── FOOTER — MOBILE ─── */
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .footer-bottom { flex-direction: column !important; text-align: center !important; gap: 8px !important; }
}

/* ─── FIX HERO SCROLL INDICATOR POSITION ─── */
.hero-scroll { bottom: 24px !important; }

/* ─── FIX WHY SECTION IMAGE STACK ─── */
@media (min-width: 901px) {
  .why-image-stack { display: block !important; }
}

/* ============================================================
   MOBILE NAV FIX — final override
   ============================================================ */

/* ─── Desktop nav: show on wide, hide on mobile ─── */
@media (min-width: 769px) {
  .hamburger    { display: none !important; }
  .nav-links    { display: flex !important; }
  .nav-cta      { display: inline-flex !important; }
  .mobile-menu  { display: none !important; opacity: 0 !important; pointer-events: none !important; }
}

/* ─── Mobile nav: ONLY logo + hamburger in header ─── */
@media (max-width: 768px) {
  .nav-links    { display: none !important; }
  .nav-cta      { display: none !important; }
  .hamburger    { display: flex !important; }
}

/* ─── Mobile menu: hidden by default, shown when .open ─── */
.mobile-menu {
  display: flex !important;   /* keep in DOM for animation */
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease !important;
}
.mobile-menu.open {
  opacity: 1 !important;
  pointer-events: all !important;
  visibility: visible;
}

/* ─── Navbar base: always clean ─── */
.navbar {
  position: fixed !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  z-index: 1000 !important;
  width: 100% !important;
}
.nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  height: var(--nav-h) !important;
}

/* ─── Hamburger: clean right-aligned icon ─── */
.hamburger {
  flex-shrink: 0 !important;
  margin-left: auto !important;
  padding: 8px !important;
  cursor: pointer !important;
}

/* ─── Fix horizontal overflow ─── */
html, body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}
.container {
  max-width: 1180px !important;
  width: 100% !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box !important;
}
@media (max-width: 768px) {
  section, nav, footer, .hero, .page-hero {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  /* Hero actions: wrap cleanly, no overflow */
  .hero-actions {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    max-width: calc(50vw - 32px) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  /* Stats bar: 2x2 on mobile */
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
  /* Prevent any chat widget overflow */
  .chat-widget {
    max-width: calc(100vw - 24px) !important;
  }
}

/* ============================================================
   HERO PREMIUM UPGRADE + FLOATING PHONE BUTTON
   Surgical changes only.
   ============================================================ */

/* ─── HERO OVERLAY — deeper, more cinematic ─── */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* strong left fade for text readability */
    linear-gradient(100deg, rgba(5,5,5,0.96) 0%, rgba(5,5,5,0.82) 38%, rgba(5,5,5,0.45) 65%, rgba(5,5,5,0.3) 100%),
    /* bottom dark anchor */
    linear-gradient(to top, rgba(5,5,5,0.9) 0%, transparent 35%),
    /* top slight fade */
    linear-gradient(to bottom, rgba(5,5,5,0.5) 0%, transparent 20%);
}
/* Subtle warm gold glow near bottom-left (where text lives) */
.hero-overlay::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 55%; height: 55%;
  background: radial-gradient(ellipse at 20% 90%, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* ─── HERO BADGE — smaller, cleaner pill ─── */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px !important;
  opacity: 0;
  animation: heroSlideDown 0.8s cubic-bezier(0.16,1,0.3,1) 0.25s both;
}
.hero-eyebrow-line {
  flex: 0 0 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5));
}
.hero-eyebrow-line.right {
  background: linear-gradient(90deg, rgba(201,168,76,0.5), transparent);
  flex: 0 0 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 100px;
  padding: 5px 13px;
  backdrop-filter: blur(6px);
}
.hero-badge span {
  font-size: 0.65rem !important;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.9);
}
.hero-badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 5px var(--gold);
}

/* ─── HERO TITLE — stronger presence ─── */
.hero-title {
  margin-bottom: 20px !important;
  line-height: 1.1 !important;
}
.hero-title-line {
  display: block;
  font-family: var(--font-display) !important;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.95);
  opacity: 0;
  transform: translateY(50px);
  animation: heroLineUp 1s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-title-line:nth-child(1) {
  font-size: clamp(2rem, 5.5vw, 4rem) !important;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body) !important;
  font-size: clamp(0.75rem, 2vw, 1rem) !important;
  animation-delay: 0.4s;
}
.hero-title-line:nth-child(2) {
  font-size: clamp(3rem, 9vw, 7rem) !important;
  font-weight: 500;
  line-height: 0.95 !important;
  animation-delay: 0.56s;
}
.hero-title-line:nth-child(3) {
  font-size: clamp(2rem, 6vw, 4.5rem) !important;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  animation-delay: 0.72s;
}

/* "Professional" as small label above */
.hero-label-top {
  display: block;
  font-family: var(--font-body) !important;
  font-size: clamp(0.65rem, 1.8vw, 0.8rem) !important;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeRise 0.8s cubic-bezier(0.16,1,0.3,1) 0.38s both;
}

/* Gold word */
.hero-title .gold {
  color: var(--gold) !important;
  font-style: italic;
}

/* ─── GOLD ACCENT LINE under title ─── */
.hero-accent-line {
  display: block;
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 22px;
  opacity: 0;
  animation: heroFadeRise 0.7s ease 0.9s both;
}

/* ─── HERO SUBTITLE — refined ─── */
.hero-subtitle {
  font-size: 0.95rem !important;
  color: rgba(255,255,255,0.6) !important;
  max-width: 440px !important;
  line-height: 1.75 !important;
  margin-bottom: 40px !important;
  font-weight: 300;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: heroFadeRise 0.9s cubic-bezier(0.16,1,0.3,1) 1.0s both !important;
}

/* ─── HERO BUTTONS — premium, proportional ─── */
.hero-actions {
  opacity: 0;
  animation: heroFadeRise 0.9s cubic-bezier(0.16,1,0.3,1) 1.18s both !important;
  gap: 10px !important;
  align-items: center !important;
}
.btn-hero-primary {
  padding: 12px 28px !important;
  font-size: 0.76rem !important;
  letter-spacing: 0.13em !important;
  font-weight: 700 !important;
  border-radius: 2px !important;
  background: linear-gradient(135deg, #b8922e 0%, #e2c46e 50%, #c9a84c 100%) !important;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35), inset 0 1px 0 rgba(255,255,255,0.15) !important;
}
.btn-hero-primary:hover {
  box-shadow: 0 6px 28px rgba(201,168,76,0.55) !important;
  transform: translateY(-2px) !important;
}
.btn-hero-secondary {
  padding: 11px 20px !important;
  font-size: 0.76rem !important;
  letter-spacing: 0.1em !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: rgba(255,255,255,0.75) !important;
  background: transparent !important;
  border-radius: 2px !important;
  backdrop-filter: blur(4px) !important;
}
.btn-hero-secondary:hover {
  border-color: rgba(201,168,76,0.5) !important;
  color: var(--gold) !important;
  background: rgba(201,168,76,0.05) !important;
  transform: translateY(-1px) !important;
}

/* Mobile hero adjustments */
@media (max-width: 768px) {
  .hero-title-line:nth-child(2) { font-size: clamp(2.8rem, 12vw, 5rem) !important; }
  .hero-title-line:nth-child(3) { font-size: clamp(1.8rem, 7vw, 3rem) !important; }
  .hero-subtitle { font-size: 0.88rem !important; max-width: 100% !important; }
  .btn-hero-primary { padding: 11px 22px !important; }
  .btn-hero-secondary { padding: 10px 16px !important; }
}

/* ─── FLOATING PHONE BUTTON ─── */
.float-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.1);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}
.float-phone-btn:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.7);
  box-shadow: 0 6px 24px rgba(0,0,0,0.5), 0 0 16px rgba(201,168,76,0.2);
  transform: translateY(-2px);
  color: var(--gold);
}
/* Tooltip label */
.float-phone-btn::before {
  content: 'Call Us';
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.float-phone-btn:hover::before { opacity: 1; }

/* Chat toggle also 50px to match */
.chat-toggle {
  width: 50px !important;
  height: 50px !important;
  font-size: 1.1rem !important;
}

/* Stack: phone top, chat bottom */
.chat-widget {
  gap: 10px !important;
  bottom: 24px !important;
  right: 20px !important;
}

@media (max-width: 768px) {
  .float-phone-btn { width: 46px !important; height: 46px !important; font-size: 1rem !important; }
  .float-phone-btn::before { display: none; }
  .chat-toggle { width: 46px !important; height: 46px !important; }
  .chat-widget { bottom: 16px !important; right: 14px !important; gap: 8px !important; }
}

/* ─── FLOATING BUTTONS — fix layout ─── */
/* Make chat-popup absolutely positioned so it doesn't affect flex flow */
.chat-widget {
  position: fixed !important;
  bottom: 24px !important;
  right: 20px !important;
  z-index: 9000 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 10px !important;
  /* Only the phone btn + chat toggle are in flow; popup is absolute */
}
.chat-popup {
  position: absolute !important;
  bottom: 64px !important;  /* above toggle */
  right: 0 !important;
  /* width/opacity/transform from premium.css still apply */
}
.float-phone-btn {
  order: 1;         /* above chat toggle */
  flex-shrink: 0;
}
/* Chat toggle at bottom */
.chat-toggle { order: 2; flex-shrink: 0; }

@media (max-width: 480px) {
  .chat-widget { bottom: 16px !important; right: 14px !important; }
  .chat-popup  { bottom: 60px !important; }
}

/* ─── HERO BUTTONS — explicit width fix ─── */
.hero-actions {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px !important;
}
.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex !important;
  width: auto !important;
  flex: 0 0 auto !important;
  white-space: nowrap !important;
}
@media (max-width: 420px) {
  .btn-hero-primary  { padding: 11px 20px !important; font-size: 0.72rem !important; }
  .btn-hero-secondary{ padding: 10px 16px !important; font-size: 0.72rem !important; }
}

/* ─── PHOTO SERVICE CARDS ─── */
.svc-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.svc-photo-card {
  background: var(--dark2);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.08);
  transition: border-color 0.35s ease, transform 0.35s ease;
  display: flex;
  flex-direction: column;
}
.svc-photo-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.svc-photo-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.svc-photo-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), filter 0.4s ease;
  filter: brightness(0.82);
}
.svc-photo-card:hover .svc-photo-img-wrap img {
  transform: scale(1.06);
  filter: brightness(0.92);
}
.svc-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.7) 0%, transparent 55%);
}
.svc-num {
  position: absolute;
  top: 10px; left: 12px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(201,168,76,0.4);
  line-height: 1;
  pointer-events: none;
}
.svc-photo-body {
  padding: 18px 18px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-photo-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 7px;
  line-height: 1.2;
}
.svc-photo-body p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 12px;
}
.svc-learn-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.55);
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}
.svc-photo-card:hover .svc-learn-link { color: var(--gold); gap: 8px; }

/* Stagger for photo cards */
.stagger-children .svc-photo-card {
  opacity: 0;
  transform: translateY(24px);
}
.stagger-children.visible .svc-photo-card:nth-child(1) { animation: cardIn 0.55s cubic-bezier(0.22,1,0.36,1) 0.04s both; }
.stagger-children.visible .svc-photo-card:nth-child(2) { animation: cardIn 0.55s cubic-bezier(0.22,1,0.36,1) 0.10s both; }
.stagger-children.visible .svc-photo-card:nth-child(3) { animation: cardIn 0.55s cubic-bezier(0.22,1,0.36,1) 0.16s both; }
.stagger-children.visible .svc-photo-card:nth-child(4) { animation: cardIn 0.55s cubic-bezier(0.22,1,0.36,1) 0.22s both; }
.stagger-children.visible .svc-photo-card:nth-child(5) { animation: cardIn 0.55s cubic-bezier(0.22,1,0.36,1) 0.28s both; }
.stagger-children.visible .svc-photo-card:nth-child(6) { animation: cardIn 0.55s cubic-bezier(0.22,1,0.36,1) 0.34s both; }
.stagger-children.visible .svc-photo-card:nth-child(7) { animation: cardIn 0.55s cubic-bezier(0.22,1,0.36,1) 0.40s both; }
.stagger-children.visible .svc-photo-card:nth-child(8) { animation: cardIn 0.55s cubic-bezier(0.22,1,0.36,1) 0.46s both; }

@media (max-width: 1024px) {
  .svc-photo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width: 480px) {
  .svc-photo-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .svc-photo-body { padding: 12px 12px 10px; }
  .svc-photo-body h3 { font-size: 0.95rem; }
  .svc-photo-body p { display: none; } /* hide desc on very small screens */
  .svc-learn-link { font-size: 0.62rem; }
  .svc-num { font-size: 1.4rem; }
}

/* ─── VIDEO — native controls fix ─── */
/* Remove play overlay blocking after first play */
.video-play-overlay.hidden {
  display: none !important; /* fully remove, not just opacity:0 */
}
.video-wrapper video {
  /* Ensure controls are accessible */
  position: relative;
  z-index: 1;
}
.video-play-overlay {
  z-index: 2; /* above video but removed when hidden */
}

/* ─── FLOATING PHONE BUTTON — standalone fixed, no flex dependency ─── */
.float-phone-btn {
  position: fixed !important;
  bottom: 88px !important;   /* sits right above chat toggle (50px + 24px bottom + 14px gap) */
  right: 20px !important;
  z-index: 9001 !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  background: var(--dark2) !important;
  border: 1px solid rgba(201,168,76,0.35) !important;
  color: var(--gold) !important;
  font-size: 1.1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
  transition: all 0.3s ease !important;
  order: unset !important; /* remove any flex order */
}
.float-phone-btn:hover {
  background: rgba(201,168,76,0.12) !important;
  border-color: rgba(201,168,76,0.7) !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5), 0 0 16px rgba(201,168,76,0.2) !important;
  transform: translateY(-2px) !important;
}

/* Chat widget: only contains popup + toggle, popup is absolute */
.chat-widget {
  position: fixed !important;
  bottom: 24px !important;
  right: 20px !important;
  z-index: 9000 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 0 !important;      /* no gap — popup is absolute so only toggle matters */
  width: 54px !important; /* just the toggle width */
}
.chat-popup {
  position: absolute !important;
  bottom: 64px !important;
  right: 0 !important;
  width: 300px !important;
  /* popup pops up from above the toggle */
}
.chat-toggle {
  position: relative !important;
  z-index: 1 !important;
  flex-shrink: 0 !important;
  order: unset !important;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .float-phone-btn {
    bottom: 80px !important;
    right: 14px !important;
    width: 46px !important;
    height: 46px !important;
    font-size: 1rem !important;
  }
  .chat-widget {
    bottom: 16px !important;
    right: 14px !important;
  }
  .chat-popup {
    width: calc(100vw - 28px) !important;
    max-width: 300px !important;
    bottom: 60px !important;
    right: 0 !important;
  }
}

/* ─── SERVICE PHOTO CARDS — refined grid ─── */
.svc-photo-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
}
/* Image: 16/9 ratio — wide, not too tall */
.svc-photo-img-wrap {
  aspect-ratio: 16 / 9 !important;
}
/* Card body: tighter */
.svc-photo-body {
  padding: 14px 16px 14px !important;
}
.svc-photo-body h3 {
  font-size: 1.05rem !important;
  margin-bottom: 5px !important;
}
.svc-photo-body p {
  font-size: 0.8rem !important;
  margin-bottom: 10px !important;
  display: block !important;
}

/* Tablet: 2 per row */
@media (max-width: 900px) {
  .svc-photo-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
}

/* Mobile: 2 per row, compact */
@media (max-width: 600px) {
  .svc-photo-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
  .svc-photo-img-wrap { aspect-ratio: 4 / 3 !important; }
  .svc-photo-body { padding: 10px 12px 10px !important; }
  .svc-photo-body h3 { font-size: 0.9rem !important; }
  .svc-photo-body p { font-size: 0.75rem !important; line-height: 1.5 !important; }
}

/* Very small: still 2 col but minimal */
@media (max-width: 360px) {
  .svc-photo-grid { grid-template-columns: 1fr 1fr !important; gap: 6px !important; }
  .svc-photo-body p { display: none !important; }
}

/* ─── SERVICE CARDS — PREMIUM REDESIGN ─── */
.svc-photo-card {
  background: #111 !important;
  border: none !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  position: relative !important;
  transform: translateY(0) !important;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4) !important;
}
.svc-photo-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 36px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.25) !important;
}
.svc-photo-card:active { transform: scale(0.98) !important; }

/* Image */
.svc-photo-img-wrap {
  aspect-ratio: 16/9 !important;
  position: relative !important;
  overflow: hidden !important;
}
.svc-photo-img-wrap img {
  width: 100% !important; height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  filter: brightness(0.75) saturate(0.9) !important;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), filter 0.4s ease !important;
}
.svc-photo-card:hover .svc-photo-img-wrap img {
  transform: scale(1.07) !important;
  filter: brightness(0.88) saturate(1.05) !important;
}

/* Gradient overlay on image — gold tint at bottom */
.svc-photo-overlay {
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.3) 45%, rgba(8,8,8,0.1) 100%) !important;
}

/* Number badge */
.svc-num {
  position: absolute !important;
  top: 8px !important;
  left: 10px !important;
  font-family: var(--font-display) !important;
  font-size: 1.2rem !important;
  font-weight: 300 !important;
  color: rgba(201,168,76,0.55) !important;
  line-height: 1 !important;
  z-index: 2 !important;
}

/* Gold accent bar — bottom of image */
.svc-photo-img-wrap::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0; left: 0 !important;
  width: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, var(--gold), var(--gold-light)) !important;
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1) !important;
  z-index: 3 !important;
}
.svc-photo-card:hover .svc-photo-img-wrap::after { width: 100% !important; }

/* Card body */
.svc-photo-body {
  padding: 14px 16px 15px !important;
  background: linear-gradient(180deg, #111 0%, #0e0e0e 100%) !important;
  border-top: 1px solid rgba(255,255,255,0.04) !important;
}
.svc-photo-body h3 {
  font-family: var(--font-display) !important;
  font-size: 1.05rem !important;
  font-weight: 500 !important;
  color: #fff !important;
  margin-bottom: 5px !important;
  letter-spacing: 0.01em !important;
  line-height: 1.2 !important;
}
.svc-photo-body p {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.4) !important;
  line-height: 1.55 !important;
  margin-bottom: 10px !important;
}
.svc-learn-link {
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: rgba(201,168,76,0.5) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  transition: color 0.3s ease, gap 0.3s ease !important;
}
.svc-photo-card:hover .svc-learn-link {
  color: var(--gold) !important;
  gap: 8px !important;
}

/* ── MOBILE PREMIUM ── */
@media (max-width: 600px) {
  .svc-photo-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .svc-photo-img-wrap { aspect-ratio: 3/2 !important; }
  .svc-photo-body { padding: 10px 11px 12px !important; }
  .svc-photo-body h3 { font-size: 0.88rem !important; }
  .svc-photo-body p { display: none !important; }
  .svc-learn-link { font-size: 0.6rem !important; }
  .svc-num { font-size: 1rem !important; }
  /* Tap glow on mobile */
  .svc-photo-card:active {
    box-shadow: 0 0 0 1px rgba(201,168,76,0.4), 0 4px 20px rgba(0,0,0,0.5) !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION — MOBILE PREMIUM FIX
   1 card per row · bigger · more alive
   ═══════════════════════════════════════════════════════════ */

/* Section background — more alive */
.services-overview {
  background:
    radial-gradient(ellipse at 50% 110%, rgba(201,168,76,0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 15% 50%,  rgba(201,168,76,0.05) 0%, transparent 40%),
    radial-gradient(ellipse at 85% 20%,  rgba(201,168,76,0.04) 0%, transparent 35%),
    linear-gradient(180deg, #0f0f0f 0%, #0c0c0c 100%) !important;
}

/* Section header — more presence */
.services-overview .section-header h2 {
  font-size: clamp(2.2rem, 6vw, 3.5rem) !important;
  letter-spacing: -0.01em !important;
}
.services-overview .section-header p {
  font-size: 1rem !important;
  color: rgba(255,255,255,0.5) !important;
  max-width: 480px !important;
}

/* CARD BASE — richer everywhere */
.svc-photo-card {
  border-radius: 8px !important;
  background:
    linear-gradient(#111111, #0d0d0d) padding-box,
    linear-gradient(135deg, rgba(201,168,76,0.5), rgba(201,168,76,0.08), rgba(201,168,76,0.35)) border-box !important;
  border: 1px solid transparent !important;
  box-shadow:
    0 4px 28px rgba(0,0,0,0.6),
    0 1px 0 rgba(255,255,255,0.04) inset !important;
}
.svc-photo-card:hover {
  box-shadow:
    0 16px 52px rgba(0,0,0,0.7),
    0 0 36px rgba(201,168,76,0.1),
    0 0 0 1px rgba(201,168,76,0.3) !important;
}

/* Image overlay — more cinematic, less dark */
.svc-photo-overlay {
  background:
    linear-gradient(to top,
      rgba(6,6,6,0.9)  0%,
      rgba(6,6,6,0.35) 50%,
      rgba(6,6,6,0.08) 100%) !important;
}
.svc-photo-img-wrap img {
  filter: brightness(0.8) saturate(0.95) !important;
}
.svc-photo-card:hover .svc-photo-img-wrap img {
  filter: brightness(0.92) saturate(1.1) !important;
}

/* Card body — stronger hierarchy */
.svc-photo-body h3 {
  font-size: 1.15rem !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.95) !important;
  letter-spacing: 0.01em !important;
  margin-bottom: 6px !important;
}
.svc-photo-body p {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.38) !important;
  line-height: 1.6 !important;
  margin-bottom: 14px !important;
}
.svc-learn-link {
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  color: rgba(201,168,76,0.65) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  border-bottom: 1px solid rgba(201,168,76,0.2) !important;
  padding-bottom: 1px !important;
  transition: color 0.3s ease, gap 0.3s ease, border-color 0.3s ease !important;
}
.svc-photo-card:hover .svc-learn-link,
.svc-photo-card:active .svc-learn-link {
  color: var(--gold) !important;
  gap: 10px !important;
  border-color: rgba(201,168,76,0.5) !important;
}

/* ── MOBILE: 1 card per row, big and premium ── */
@media (max-width: 768px) {
  .svc-photo-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .svc-photo-img-wrap {
    aspect-ratio: 16 / 9 !important;
  }
  .svc-photo-body {
    padding: 16px 18px 18px !important;
    display: block !important;
  }
  .svc-photo-body p {
    display: block !important;  /* show description on mobile */
    font-size: 0.8rem !important;
  }
  .svc-photo-body h3 {
    font-size: 1.1rem !important;
  }
  /* Tap feedback */
  .svc-photo-card:active {
    transform: scale(0.985) !important;
    box-shadow:
      0 0 0 1px rgba(201,168,76,0.45),
      0 8px 24px rgba(0,0,0,0.5) !important;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .svc-photo-grid { max-width: 100% !important; gap: 10px !important; }
}

/* Desktop stays 3-col */
@media (min-width: 769px) {
  .svc-photo-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: none !important;
  }
  .svc-photo-img-wrap { aspect-ratio: 16/9 !important; }
}

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US — PREMIUM UPGRADE
   Cards · Icon · Button · Motion
   ═══════════════════════════════════════════════════════════ */

/* ── Keyframes ── */
@keyframes iconGoldPulse {
  0%,100% {
    box-shadow: 0 0 0 0 rgba(201,168,76,0);
    border-color: rgba(201,168,76,0.25);
    background: rgba(201,168,76,0.06);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(201,168,76,0.08);
    border-color: rgba(201,168,76,0.55);
    background: rgba(201,168,76,0.12);
  }
}
@keyframes btnFloat {
  0%,100% { transform: translateY(0); box-shadow: 0 4px 20px rgba(201,168,76,0.3); }
  50%      { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(201,168,76,0.5); }
}
@keyframes whyPointSlide {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Section background — more depth ── */
.why-section {
  background:
    radial-gradient(ellipse at 5%  40%, rgba(201,168,76,0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 95% 70%, rgba(201,168,76,0.04) 0%, transparent 40%),
    linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 50%, #0a0a0a 100%) !important;
}

/* ── Why-point card — richer ── */
.why-point {
  background:
    radial-gradient(ellipse at 0% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 6px !important;
  padding: 18px 20px !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04) !important;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              border-color 0.3s ease,
              background 0.3s ease,
              box-shadow 0.35s ease !important;
}
.why-point:hover,
.why-point:active {
  transform: translateX(8px) !important;
  border-color: rgba(201,168,76,0.25) !important;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(201,168,76,0.1) 0%, transparent 60%),
    rgba(201,168,76,0.03) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 16px rgba(201,168,76,0.06) !important;
}

/* ── Check icon — animated gold pulse ── */
.why-point-icon {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(201,168,76,0.25) !important;
  background: rgba(201,168,76,0.06) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--gold) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  flex-shrink: 0 !important;
  animation: iconGoldPulse 3.5s ease-in-out infinite !important;
}
/* Stagger icon pulses so they don't all pulse together */
.why-point:nth-child(1) .why-point-icon { animation-delay: 0.0s; }
.why-point:nth-child(2) .why-point-icon { animation-delay: 0.7s; }
.why-point:nth-child(3) .why-point-icon { animation-delay: 1.4s; }
.why-point:nth-child(4) .why-point-icon { animation-delay: 2.1s; }
.why-point:nth-child(5) .why-point-icon { animation-delay: 2.8s; }

/* ── Card text hierarchy ── */
.why-point-text h4 {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.92) !important;
  margin-bottom: 3px !important;
  letter-spacing: 0.01em !important;
}
.why-point-text p {
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.38) !important;
  line-height: 1.55 !important;
}

/* ── Staggered card entrance ── */
.why-section.animated .why-point:nth-child(1) {
  animation: whyPointSlide 0.6s cubic-bezier(0.22,1,0.36,1) 0.06s both !important;
}
.why-section.animated .why-point:nth-child(2) {
  animation: whyPointSlide 0.6s cubic-bezier(0.22,1,0.36,1) 0.14s both !important;
}
.why-section.animated .why-point:nth-child(3) {
  animation: whyPointSlide 0.6s cubic-bezier(0.22,1,0.36,1) 0.22s both !important;
}
.why-section.animated .why-point:nth-child(4) {
  animation: whyPointSlide 0.6s cubic-bezier(0.22,1,0.36,1) 0.30s both !important;
}
.why-section.animated .why-point:nth-child(5) {
  animation: whyPointSlide 0.6s cubic-bezier(0.22,1,0.36,1) 0.38s both !important;
}

/* ── Request Estimate button — floating CTA ── */
.why-section .btn-gold,
.why-section [href="contact.html"].btn {
  animation: btnFloat 3.2s ease-in-out 1.5s infinite !important;
  position: relative !important;
  overflow: hidden !important;
}
/* Stop float on hover — user controls */
.why-section .btn-gold:hover,
.why-section [href="contact.html"].btn:hover {
  animation: none !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 36px rgba(201,168,76,0.55) !important;
}
.why-section .btn-gold:active {
  transform: scale(0.97) translateY(0) !important;
  animation: none !important;
}
/* Shine sweep on hover */
.why-section .btn-gold::after {
  content: '' !important;
  position: absolute !important;
  top: 0; bottom: 0; left: -80px;
  width: 60px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent) !important;
  transform: skewX(-12deg) !important;
  transition: none !important;
  pointer-events: none !important;
}
.why-section .btn-gold:hover::after {
  animation: shineSweep 0.55s ease forwards !important;
}

/* ── Section title animation ── */
.why-section .section-label {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}
.why-section h2 {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.25s both;
}
.why-section > .container > .why-grid > div > p {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.38s both;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .why-point { padding: 15px 16px !important; }
  .why-point-icon { width: 34px !important; height: 34px !important; font-size: 0.75rem !important; }
  .why-point-text h4 { font-size: 0.88rem !important; }
  /* Tap feedback */
  .why-point:active {
    transform: scale(0.98) !important;
    border-color: rgba(201,168,76,0.3) !important;
  }
  /* Float animation smaller on mobile */
  @keyframes btnFloat {
    0%,100% { transform: translateY(0); box-shadow: 0 4px 18px rgba(201,168,76,0.28); }
    50%      { transform: translateY(-3px); box-shadow: 0 8px 26px rgba(201,168,76,0.44); }
  }
}

/* ── Reduce motion preference ── */
@media (prefers-reduced-motion: reduce) {
  .why-point-icon { animation: none !important; }
  .why-section .btn-gold { animation: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   VIDEO PREVIEW CARD + MODAL
   ═══════════════════════════════════════════════════════════ */

@keyframes playRingPulse {
  0%,100% { transform: scale(1);   opacity: 0.5; }
  50%      { transform: scale(1.5); opacity: 0;   }
}
@keyframes vidModalIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Preview card ── */
.vid-preview {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #0d0d0d;
  box-shadow:
    0 8px 40px rgba(0,0,0,0.65),
    0 0 0 1px rgba(201,168,76,0.15);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.4s ease;
}
.vid-preview:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 20px 56px rgba(0,0,0,0.7),
    0 0 0 1px rgba(201,168,76,0.35),
    0 0 40px rgba(201,168,76,0.08);
}
.vid-preview:active { transform: scale(0.98); }

/* Thumbnail */
.vid-preview-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.vid-preview-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) saturate(0.85);
  transition: filter 0.4s ease, transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.vid-preview:hover .vid-preview-thumb img {
  filter: brightness(0.82) saturate(1);
  transform: scale(1.04);
}
.vid-preview-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(6,6,6,0.85) 0%, rgba(6,6,6,0.1) 50%, transparent 100%);
}

/* Play button */
.vid-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
}
.vid-play-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--black);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
  padding-left: 4px; /* optical center for play icon */
  position: relative; z-index: 2;
}
.vid-preview:hover .vid-play-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 44px rgba(201,168,76,0.65);
}
/* Pulsing ring */
.vid-play-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.5);
  animation: playRingPulse 2.2s ease-out infinite;
}

/* Meta label at bottom */
.vid-preview-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}
.vid-preview-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.vid-preview-sub {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(201,168,76,0.7);
  font-weight: 500;
}
/* Gold border frame */
.vid-preview-border {
  position: absolute; inset: 0;
  border-radius: 10px;
  border: 1px solid rgba(201,168,76,0.18);
  pointer-events: none;
  z-index: 4;
  transition: border-color 0.3s ease;
}
.vid-preview:hover .vid-preview-border { border-color: rgba(201,168,76,0.4); }

/* ── Video modal ── */
.vid-modal {
  position: fixed; inset: 0;
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.vid-modal.open { opacity: 1; pointer-events: all; }

.vid-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.vid-modal-wrap {
  position: relative;
  z-index: 2;
  width: 90vw;
  max-width: 420px; /* portrait video width */
  animation: vidModalIn 0.4s cubic-bezier(0.22,1,0.36,1) both;
}

.vid-modal-close {
  position: absolute;
  top: -44px; right: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.vid-modal-close:hover { background: rgba(201,168,76,0.2); border-color: rgba(201,168,76,0.4); color: var(--gold); }

.vid-modal-player {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.85), 0 0 0 1px rgba(201,168,76,0.15);
}
.vid-modal-player video {
  width: 100%;
  display: block;
  aspect-ratio: 9/16; /* portrait */
  max-height: 80vh;
  object-fit: cover;
  background: #000;
}

/* Mobile */
@media (max-width: 480px) {
  .vid-preview { max-width: 100%; border-radius: 8px; }
  .vid-play-icon { width: 56px; height: 56px; font-size: 1.1rem; }
  .vid-modal-wrap { width: 94vw; max-width: 380px; }
  .vid-modal-close { top: -40px; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICE AREAS — PREMIUM UPGRADE
   ═══════════════════════════════════════════════════════════ */

@keyframes pinPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1);   opacity: 0.6; }
  50%      { transform: translate(-50%,-50%) scale(1.7); opacity: 0;   }
}
@keyframes dotBlink {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 0.9; transform: scale(1.3); }
}

/* Section background with subtle map-grid texture */
.areas-section {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.07) 0%, transparent 55%),
    linear-gradient(180deg, #0c0c0c 0%, #0f0f0f 100%) !important;
}

/* CSS map-grid background */
.areas-map-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 60% 50%, rgba(0,0,0,0.6) 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 50%, rgba(0,0,0,0.6) 0%, transparent 65%);
}

/* Ensure content is above bg */
.areas-section .container { position: relative; z-index: 1; }

/* Description */
.areas-desc {
  margin: 20px 0 24px !important;
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.95rem !important;
  line-height: 1.75 !important;
}

/* Coverage badge */
.areas-coverage-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  padding: 10px 16px;
  margin-bottom: 24px;
}
.areas-coverage-icon { font-size: 1.2rem; }
.areas-coverage-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}
.areas-coverage-sub {
  font-size: 0.7rem;
  color: rgba(201,168,76,0.65);
  letter-spacing: 0.08em;
  margin-top: 1px;
}

/* City tags — premium */
.areas-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 0 !important;
}
.area-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 7px 14px !important;
  background: rgba(255,255,255,0.025) !important;
  border: 1px solid rgba(201,168,76,0.15) !important;
  border-radius: 4px !important;
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.7) !important;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1) !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3) !important;
  cursor: default !important;
}
.area-tag:hover {
  background: rgba(201,168,76,0.08) !important;
  border-color: rgba(201,168,76,0.45) !important;
  color: rgba(255,255,255,0.95) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 14px rgba(201,168,76,0.15), 0 0 0 1px rgba(201,168,76,0.2) !important;
}
/* Pin dot inside tag */
.area-pin {
  color: rgba(201,168,76,0.6);
  font-size: 0.9rem;
  line-height: 1;
}

/* Map visual (right side) */
.areas-map-visual {
  display: block !important;
}
.areas-map-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow:
    0 12px 48px rgba(0,0,0,0.6),
    0 0 0 1px rgba(201,168,76,0.14);
}
.areas-map-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.35) saturate(0.3);
}
.areas-map-card-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(201,168,76,0.1) 0%, transparent 55%),
    linear-gradient(180deg, rgba(6,6,6,0.4) 0%, rgba(6,6,6,0.6) 100%);
}

/* Center pin — main location */
.map-pin-center {
  position: absolute;
  top: 45%; left: 50%;
  z-index: 3;
}
.map-pin-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201,168,76,0.8);
  z-index: 2;
}
.map-pin-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.5);
  animation: pinPulse 2.4s ease-out infinite;
}
.map-pin-ring.delay { animation-delay: 1.2s; }

/* Smaller dots for other cities */
.map-dot {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(201,168,76,0.55);
  box-shadow: 0 0 6px rgba(201,168,76,0.4);
  transform: translate(-50%,-50%);
  animation: dotBlink 3s ease-in-out infinite;
}
.map-dot:nth-child(3)  { animation-delay: 0.4s; }
.map-dot:nth-child(4)  { animation-delay: 0.8s; }
.map-dot:nth-child(5)  { animation-delay: 1.2s; }
.map-dot:nth-child(6)  { animation-delay: 1.6s; }
.map-dot:nth-child(7)  { animation-delay: 2.0s; }

/* Map label */
.areas-map-card-label {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(6,6,6,0.7);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  backdrop-filter: blur(6px);
  z-index: 3;
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .areas-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .areas-map-visual {
    max-width: 420px !important;
    margin: 0 auto !important;
    width: 100% !important;
  }
}
@media (max-width: 480px) {
  .area-tag { font-size: 0.75rem !important; padding: 6px 11px !important; }
  .areas-map-visual { max-width: 100% !important; }
  .areas-map-card { aspect-ratio: 16/9 !important; }
  .areas-coverage-badge { padding: 8px 12px !important; }
}

/* ═══════════════════════════════════════════════════════════
   WHO WE ARE — EXPERT SECTION UPGRADE
   ═══════════════════════════════════════════════════════════ */

@keyframes expertCardIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}
@keyframes cardIconFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Section background */
.experts-section {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 20% 20%, rgba(201,168,76,0.04) 0%, transparent 40%),
    var(--black) !important;
}

/* 3 cards grid — trigger stagger via JS visible class */
.expert-cards-grid { position: relative; }

/* Mini card — gold-warm depth */
.expert-mini-card {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 65%),
    linear-gradient(160deg, #1a1a0e 0%, #111 100%) !important;
  border: 1px solid rgba(201,168,76,0.2) !important;
  border-radius: 8px !important;
  box-shadow:
    0 4px 20px rgba(0,0,0,0.45),
    0 0 0 0 rgba(201,168,76,0),
    inset 0 1px 0 rgba(255,255,255,0.04) !important;
  transition:
    transform 0.35s cubic-bezier(0.22,1,0.36,1),
    border-color 0.3s ease,
    box-shadow 0.35s ease !important;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
}
/* Trigger animation when section is in view — use JS .visible on parent */
.experts-section .fade-left.visible ~ * .expert-mini-card,
.expert-mini-card.visible {
  animation: expertCardIn 0.6s cubic-bezier(0.22,1,0.36,1) both;
  opacity: 1; transform: none;
}
/* Manual stagger via nth-child */
.expert-cards-grid .expert-mini-card:nth-child(1) { animation-delay: 0.05s; }
.expert-cards-grid .expert-mini-card:nth-child(2) { animation-delay: 0.16s; }
.expert-cards-grid .expert-mini-card:nth-child(3) { animation-delay: 0.27s; }

/* Hover / tap */
.expert-mini-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(201,168,76,0.5) !important;
  box-shadow:
    0 12px 36px rgba(0,0,0,0.55),
    0 0 24px rgba(201,168,76,0.12),
    inset 0 1px 0 rgba(255,255,255,0.05) !important;
}
.expert-mini-card:active { transform: scale(0.97) !important; }

/* Icon float on hover */
.expert-mini-card:hover > div:first-child {
  animation: cardIconFloat 1.2s ease-in-out infinite !important;
}

/* Icon emoji size */
.expert-mini-card > div:first-child {
  font-size: 1.8rem !important;
  margin-bottom: 12px !important;
  display: block;
  transition: transform 0.3s ease;
}
/* Label */
.expert-mini-card > div:last-child {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.88) !important;
  letter-spacing: 0.04em !important;
  line-height: 1.4 !important;
}

/* Mobile */
@media (max-width: 600px) {
  .expert-mini-card { padding: 16px 10px !important; }
  .expert-mini-card > div:first-child { font-size: 1.5rem !important; }
  .expert-mini-card > div:last-child { font-size: 0.72rem !important; }
}

/* ═══════════════════════════════════════════════════════════
   SCOPE OF WORK — STAGGERED LIST + CTA
   ═══════════════════════════════════════════════════════════ */

@keyframes scopeItemIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scopeBtnFloat {
  0%,100% { transform: translateY(0);    box-shadow: 0 4px 20px rgba(201,168,76,0.3); }
  50%      { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(201,168,76,0.48); }
}

/* Section bg */
.scope-section {
  background:
    radial-gradient(ellipse at 100% 30%, rgba(201,168,76,0.06) 0%, transparent 40%),
    linear-gradient(180deg, #111 0%, #0e0e0e 100%) !important;
}

/* List items — stagger */
.scope-item {
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity 0.55s cubic-bezier(0.22,1,0.36,1),
    transform 0.55s cubic-bezier(0.22,1,0.36,1),
    background 0.3s ease !important;
  border-left: 2px solid transparent !important;
}
/* Revealed */
.scope-section.animated .scope-item,
.scope-item.visible {
  opacity: 1;
  transform: none;
}
/* Stagger delays */
.scope-section.animated .scope-item:nth-child(1),
.scope-item:nth-child(1).visible { transition-delay: 0.05s; }
.scope-section.animated .scope-item:nth-child(2),
.scope-item:nth-child(2).visible { transition-delay: 0.13s; }
.scope-section.animated .scope-item:nth-child(3),
.scope-item:nth-child(3).visible { transition-delay: 0.21s; }
.scope-section.animated .scope-item:nth-child(4),
.scope-item:nth-child(4).visible { transition-delay: 0.29s; }
.scope-section.animated .scope-item:nth-child(5),
.scope-item:nth-child(5).visible { transition-delay: 0.37s; }
.scope-section.animated .scope-item:nth-child(6),
.scope-item:nth-child(6).visible { transition-delay: 0.45s; }
.scope-section.animated .scope-item:nth-child(7),
.scope-item:nth-child(7).visible { transition-delay: 0.53s; }

/* Item hover */
.scope-item:hover {
  background: rgba(201,168,76,0.05) !important;
  border-left-color: rgba(201,168,76,0.4) !important;
}
/* Arrow icon premium */
.scope-item span[style*="color: var(--gold)"] {
  font-size: 1rem !important;
  font-weight: 700 !important;
  transition: transform 0.3s ease !important;
}
.scope-item:hover span[style*="color: var(--gold)"] {
  transform: translateX(4px) !important;
}
/* Row text */
.scope-item span:last-child {
  font-size: 0.9rem !important;
  color: rgba(255,255,255,0.72) !important;
  transition: color 0.3s ease !important;
}
.scope-item:hover span:last-child { color: rgba(255,255,255,0.9) !important; }

/* CTA button — float */
.scope-cta-btn {
  animation: scopeBtnFloat 3s ease-in-out 1s infinite !important;
  display: inline-flex !important;
  width: auto !important;
}
.scope-cta-btn:hover {
  animation: none !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 36px rgba(201,168,76,0.55) !important;
}
.scope-cta-btn:active { animation: none !important; transform: scale(0.97) !important; }

/* Mobile */
@media (max-width: 768px) {
  .scope-item { padding: 14px 18px !important; }
  .scope-item span:last-child { font-size: 0.85rem !important; line-height: 1.5 !important; }
  @keyframes scopeBtnFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
  }
}
