/* ====================================================================
   VASQUEZ HANDYMAN — LEGENDARY SALES MACHINE v4.0
   Design System: Dark Premium Glassmorphism + Power Conversion UI
   ==================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- Design Tokens --- */
:root {
  --green-950: #0d1f10;
  --green-900: #1a3a1e;
  --green-800: #1E3F20;
  --green-600: #2a7a35;
  --green-400: #2DAA5E;
  --green-200: #a8e6c1;
  --gold:       #F5A623;
  --gold-light: #ffd27a;
  --white:      #FFFFFF;
  --off-white:  #F7F8FA;
  --gray-100:   #F0F2F5;
  --gray-200:   #E2E6EA;
  --gray-400:   #9CA3AF;
  --gray-700:   #374151;
  --dark:       #0D0F11;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-pill:100px;

  --shadow-xs:  0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm:  0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:  0 12px 40px rgba(0,0,0,0.12);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.18);
  --shadow-green: 0 8px 32px rgba(45,170,94,0.35);
  --shadow-gold:  0 8px 32px rgba(245,166,35,0.4);

  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); background: var(--white); color: var(--gray-700); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { font-family: var(--font-sans); }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* --- Typography --- */
h1,h2,h3,h4 { font-family: var(--font-serif); line-height: 1.1; color: var(--green-800); }
h1 { font-size: clamp(3rem, 5.5vw, 5rem); letter-spacing: -0.03em; font-weight: 900; }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); letter-spacing: -0.02em; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { line-height: 1.7; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; color: var(--green-400); margin-bottom: 16px; }
.eyebrow::before { content:''; width:24px; height:2px; background: var(--green-400); }
.lede { font-size: 1.15rem; color: var(--gray-400); max-width: 520px; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--font-sans); font-weight: 700; font-size: 0.95rem; padding: 14px 28px; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: var(--transition); text-decoration: none; position: relative; overflow: hidden; letter-spacing: 0.02em; }
.btn-primary { background: var(--green-800); color: var(--white); box-shadow: 0 4px 20px rgba(30,63,32,0.4); }
.btn-primary:hover { background: var(--green-600); transform: translateY(-3px); box-shadow: var(--shadow-green); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--green-950); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); color: var(--green-950); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.4); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); color: var(--white); }
.btn-lg { font-size: 1.1rem; padding: 20px 40px; letter-spacing: 0.04em; font-weight: 800; }
.btn-xl { font-size: 1.25rem; padding: 24px 56px; letter-spacing: 0.04em; font-weight: 900; text-transform: uppercase; }
.btn-full { width: 100%; }

/* Shimmer Effect */
.shimmer::after { content:''; position:absolute; top:0; left:-110%; width:60%; height:100%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent); transform: skewX(-20deg); animation: shimmer-loop 2.5s infinite; }
@keyframes shimmer-loop { to { left: 200%; } }

/* --- Lift Effect --- */
.lift { transition: var(--transition); }
.lift:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* ====================================================================
   TOP ANNOUNCEMENT BAR
   ==================================================================== */
.top-bar { background: var(--green-800); color: var(--white); text-align: center; padding: 10px 16px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em; }
.top-bar a { color: var(--gold); font-weight: 800; margin-left: 12px; }
.top-bar a:hover { text-decoration: underline; }

/* ====================================================================
   NAVBAR — ULTRA DARK GLASS
   ==================================================================== */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 999; transition: var(--transition); padding: 14px 0; background: rgba(0,0,0,0); }
.navbar.scrolled { background: rgba(13,15,17,0.94); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: 0 1px 0 rgba(255,255,255,0.07); padding: 10px 0; }
.navbar.nav-hidden { transform: translateY(-100%); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo-wrap { display: flex; align-items: center; }
.site-logo { height: 80px; width: auto; object-fit: contain; mix-blend-mode: lighten; transition: height 0.4s ease; }
.navbar.scrolled .site-logo { height: 55px; mix-blend-mode: lighten; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.9); transition: var(--transition); }
.nav-link:hover { color: var(--white); }
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--gold); font-size: 1rem; }
.nav-phone svg { flex-shrink: 0; }
.nav-cta { margin-left: 8px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); transition: 0.3s; }
.mobile-nav { position: fixed; right: -100%; top: 0; height: 100vh; width: 300px; background: rgba(13,15,17,0.98); backdrop-filter: blur(20px); padding: 80px 40px 40px; z-index: 1000; transition: right 0.4s cubic-bezier(0.16,1,0.3,1); display: flex; flex-direction: column; gap: 28px; }
.mobile-nav.open { right: 0; }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
.mobile-nav a { font-family: var(--font-serif); font-size: 1.6rem; color: var(--white); }

/* ====================================================================
   HERO — FULL SCREEN VIDEO POWERHOUSE
   ==================================================================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; }
.hero-video-wrap { position: absolute; inset: 0; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); }
.hero-video-wrap::after { content:''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(5,20,8,0.45) 0%, rgba(0,0,0,0.15) 100%); }
.hero-top-gradient { position: absolute; top: 0; left: 0; right: 0; height: 220px; background: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent); z-index: 1; }

/* Hero Logo Layer — sits between BG video (z-index:auto) and hero-content (z-index:2) */
.hero-logo-layer { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center; pointer-events: none; transform: translateY(-10%) translateX(20%); }
.hero-logo-bg { width: min(567px, 94.5vw); height: auto; object-fit: contain; user-select: none; }

.hero-content { position: relative; z-index: 2; padding-top: 100px; padding-bottom: 60px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.4); border-radius: var(--radius-pill); padding: 8px 20px; color: var(--gold); font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 28px; }
.hero-badge .dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse-dot 2s infinite; flex-shrink: 0; }
@keyframes pulse-dot { 0%,100%{ box-shadow: 0 0 0 0 rgba(245,166,35,0.7); } 50%{ box-shadow: 0 0 0 8px rgba(245,166,35,0); } }

.hero-h1 { color: var(--white); text-shadow: 0 8px 40px rgba(0,0,0,0.6); margin-bottom: 24px; max-width: 800px; }
.hero-h1 .accent { color: var(--gold); }
.hero-sub { font-size: 1.2rem; color: rgba(255,255,255,0.85); font-weight: 400; max-width: 560px; margin-bottom: 40px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); line-height: 1.6; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.trust-pill { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.9); text-shadow: 0 2px 6px rgba(0,0,0,0.5); }
.trust-pill .check { color: var(--green-400); font-size: 1rem; filter: drop-shadow(0 0 4px rgba(45,170,94,0.6)); }

/* Hero Stats - Frosted Glass Block */
.hero-stats { display: flex; gap: 0; background: rgba(10,20,12,0.75); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 28px 36px; max-width: 680px; margin-top: 56px; }
.hero-stat { flex: 1; text-align: center; position: relative; }
.hero-stat + .hero-stat::before { content:''; position: absolute; left: 0; top: 10%; height: 80%; width: 1px; background: rgba(255,255,255,0.12); }
.stat-num { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 900; color: var(--white); line-height: 1; }
.stat-num .suf { color: var(--green-400); }
.stat-desc { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.65); margin-top: 6px; }

/* ====================================================================
   SOCIAL PROOF STRIP
   ==================================================================== */
.proof-strip { background: var(--green-900); padding: 20px 0; }
.proof-strip-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 48px; }
.proof-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 600; }
.proof-item .icon { color: var(--gold); font-size: 1.2rem; }

/* ====================================================================
   SERVICES SECTION
   ==================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.service-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); transition: var(--transition); position: relative; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--green-400); }
.service-card:hover .service-img img { transform: scale(1.07); }
.service-img { height: 200px; overflow: hidden; position: relative; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-tag { position: absolute; top: 14px; right: 14px; background: var(--green-800); color: var(--white); font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; padding: 5px 12px; border-radius: var(--radius-pill); }
.service-body { padding: 28px; }
.service-body h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--green-800); }
.service-body p { font-size: 0.9rem; color: var(--gray-400); line-height: 1.65; margin-bottom: 20px; }
.service-link { font-size: 0.85rem; font-weight: 700; color: var(--green-400); display: flex; align-items: center; gap: 6px; }
.service-link span { transition: transform 0.3s; }
.service-card:hover .service-link span { transform: translateX(4px); }

/* ====================================================================
   WHY US — DOUBLE-COLUMN WITH TESTIMONIALS
   ==================================================================== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.feature-list { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.feature-item { display: flex; gap: 20px; }
.feature-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: rgba(45,170,94,0.1); color: var(--green-400); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.feature-item h4 { margin-bottom: 6px; font-size: 1.05rem; color: var(--green-800); }
.feature-item p { font-size: 0.9rem; color: var(--gray-400); line-height: 1.6; }

.reviews-col { display: flex; flex-direction: column; gap: 20px; padding-top: 16px; }
.review-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm); transition: var(--transition); border-left: 4px solid var(--green-400); }
.review-card:hover { box-shadow: var(--shadow-md); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-card blockquote { font-size: 0.95rem; color: var(--gray-700); font-style: italic; line-height: 1.65; margin-bottom: 16px; }
.reviewer { font-size: 0.82rem; font-weight: 800; color: var(--green-800); text-transform: uppercase; letter-spacing: 0.06em; }
.reviewer span { color: var(--gray-400); font-weight: 500; }
.rating-summary { background: var(--green-800); color: var(--white); border-radius: var(--radius-md); padding: 28px; text-align: center; }
.rating-number { font-family: var(--font-serif); font-size: 4rem; font-weight: 900; color: var(--gold); line-height: 1; }
.rating-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 8px; }

/* ====================================================================
   GALLERY SLIDER
   ==================================================================== */
.gallery-slider-wrap { position: relative; border-radius: var(--radius-md); overflow: hidden; height: 480px; box-shadow: var(--shadow-lg); }
.slider-track { position: relative; width: 100%; height: 100%; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s ease; pointer-events: none; }
.slide.active { opacity: 1; pointer-events: auto; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 48px 40px 32px; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent); color: var(--white); }
.slide-caption h3 { font-size: 1.8rem; color: var(--white); margin-bottom: 6px; }
.slide-caption p { font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%; background: rgba(0,0,0,0.55); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-size: 1.2rem; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.slider-btn:hover { background: var(--green-400); border-color: var(--green-400); transform: translateY(-50%) scale(1.1); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-dots { position: absolute; bottom: 20px; right: 24px; display: flex; gap: 8px; z-index: 10; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: 0.3s; }
.slider-dot.active { background: var(--white); width: 24px; border-radius: 4px; }

/* ====================================================================
   AREAS SERVED STRIP
   ==================================================================== */
.areas-strip { background: var(--gray-100); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.areas-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 0; }
.areas-label { font-weight: 800; font-size: 0.9rem; color: var(--green-800); text-transform: uppercase; letter-spacing: 0.1em; padding-right: 32px; border-right: 2px solid var(--gray-200); margin-right: 32px; }
.area-tag { font-size: 0.85rem; font-weight: 600; color: var(--gray-700); padding: 4px 16px 4px 0; }

/* ====================================================================
   CONTACT SECTION — DARK PREMIUM
   ==================================================================== */
.contact-section { background: var(--green-950); position: relative; overflow: hidden; }
.contact-section::before { content:''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(45,170,94,0.12) 0%, transparent 70%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

/* Contact Info Column */
.contact-info-col h2 { color: var(--white); margin-bottom: 16px; }
.contact-info-col .lede { color: rgba(255,255,255,0.65); margin-bottom: 48px; }
.contact-card { display: flex; align-items: center; gap: 20px; padding: 24px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); margin-bottom: 16px; transition: var(--transition); }
.contact-card:hover { background: rgba(255,255,255,0.09); border-color: var(--green-400); }
.contact-card-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--green-800); color: var(--green-400); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card-text .label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green-400); margin-bottom: 4px; }
.contact-card-text a, .contact-card-text p, .contact-card-text span { font-size: 1.1rem; font-weight: 700; color: var(--white); }

.map-embed { margin-top: 24px; border-radius: var(--radius-md); overflow: hidden; height: 220px; border: 1px solid rgba(255,255,255,0.1); }
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* Lead Form Column */
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-lg); }
.form-card .form-header { margin-bottom: 32px; }
.form-card .form-header h3 { font-size: 1.75rem; color: var(--green-800); margin-bottom: 8px; }
.form-card .form-header p { font-size: 0.9rem; color: var(--gray-400); }

.floating-field { position: relative; margin-bottom: 28px; }
.floating-field input,
.floating-field select,
.floating-field textarea { width: 100%; padding: 18px 16px 8px; border: none; border-bottom: 2px solid var(--gray-200); background: transparent; font-family: var(--font-sans); font-size: 1rem; color: var(--gray-700); transition: 0.3s; outline: none; }
.floating-field input::placeholder,
.floating-field textarea::placeholder { color: transparent; }
.floating-field label { position: absolute; left: 0; top: 16px; font-size: 0.95rem; color: var(--gray-400); font-weight: 500; pointer-events: none; transition: 0.3s cubic-bezier(0.16,1,0.3,1); }
.floating-field input:focus ~ label,
.floating-field input:not(:placeholder-shown) ~ label,
.floating-field textarea:focus ~ label,
.floating-field textarea:not(:placeholder-shown) ~ label { top: 2px; font-size: 0.72rem; color: var(--green-400); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.floating-field .bar { position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--green-400); transition: 0.4s cubic-bezier(0.16,1,0.3,1); }
.floating-field input:focus ~ .bar,
.floating-field textarea:focus ~ .bar,
.floating-field select:focus ~ .bar { width: 100%; }
.floating-field select { padding-top: 14px; padding-right: 36px; color: var(--gray-400); cursor: pointer; appearance: none; -webkit-appearance: none; }
.floating-field select:valid { color: var(--gray-700); }
/* Custom dropdown arrow */
#svc-wrap::after { content: '▾'; position: absolute; right: 4px; top: 14px; font-size: 1rem; color: var(--gray-400); pointer-events: none; transition: 0.3s; }
/* Float label when a service has been selected (class added by JS) */
.floating-field.has-value select ~ label,
.floating-field select:focus ~ label { top: 2px; font-size: 0.72rem; color: var(--green-400); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.submit-wrap { margin-top: 8px; }
.form-guarantee { display: flex; justify-content: center; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--gray-400); font-weight: 600; margin-top: 16px; }
.form-guarantee svg { color: var(--green-400); flex-shrink: 0; }

/* ====================================================================
   FOOTER
   ==================================================================== */
footer { background: var(--dark); color: rgba(255,255,255,0.7); }
.footer-top { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; }
.footer-logo { height: 64px; width: auto; mix-blend-mode: lighten; margin-bottom: 20px; object-fit: contain; }
.footer-about { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; color: var(--white); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; transition: 0.2s; }
.footer-col a:hover { color: var(--green-400); padding-left: 4px; }
.footer-phone { font-size: 1.4rem; font-family: var(--font-serif); font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; }

/* ====================================================================
   WHATSAPP BUTTON
   ==================================================================== */
.wa-fab { position: fixed; bottom: 32px; right: 32px; width: 64px; height: 64px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 32px rgba(37,211,102,0.45); z-index: 9999; transition: var(--transition); }
.wa-fab:hover { transform: scale(1.1) rotate(-10deg); box-shadow: 0 12px 40px rgba(37,211,102,0.6); }
.wa-fab svg { color: var(--white); }
.wa-ring { position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: wa-ping 2.5s infinite; z-index:-1; }
@keyframes wa-ping { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.8); opacity: 0; } }

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { gap: 0; max-width: 100%; }
}
/* ── Mobile-only logo splash — hidden on desktop ───────── */
.hero-mobile-logo        { display: none; }
.hero-mobile-logo-scroll { display: none; }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { min-width: 45%; }
  .hero-stat + .hero-stat::before { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .proof-strip-inner { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .gallery-slider-wrap { height: 300px; }
  .areas-label { border-right: none; padding-right: 0; margin-right: 0; width: 100%; }
  /* Ensure credit is clearly visible on mobile */
  .footer-bottom { padding-bottom: 32px; }
  .footer-bottom a { color: var(--green-400) !important; font-weight: 700; }

  /* ── Mobile hero content — flex column, clears fixed navbar ── */
  .hero-content {
    padding-top: 80px;  /* clears the navbar */
    padding-bottom: 48px;
    display: flex;
    flex-direction: column;
  }

  /* Hide the decorative absolute background logo */
  .hero-logo-layer { display: none; }

  /* ── Mobile: skip video entirely, use static poster as BG ── */
  /* Video won't download/play — saves significant mobile data  */
  .hero-video-wrap video { display: none; }
  .hero-video-wrap {
    background: url('hero-poster.jpg') center center / cover no-repeat;
  }
  .hero-video-wrap::after {
    /* keep the same dark overlay that the video had */
    background: linear-gradient(135deg, rgba(5,20,8,0.55) 0%, rgba(0,0,0,0.25) 100%);
  }

  /* Trust badge sits flush after navbar */
  .hero-badge {
    align-self: flex-start;
    margin-bottom: 20px;
  }

  /* ── Logo block — natural fit, no giant whitespace ──────── */
  .hero-mobile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 0 16px;  /* minimal top/bottom breathing room */
    margin-bottom: 28px;  /* gap before the headline */
  }

  .hero-mobile-logo img {
    width: 78vw;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    display: block;
    /* gold glow + depth shadow so logo pops over video */
    filter:
      drop-shadow(0 0 28px rgba(245,166,35,0.65))
      drop-shadow(0 0 8px  rgba(245,166,35,0.3))
      drop-shadow(0 6px 20px rgba(0,0,0,0.75));
  }
}
