/* ============================================================
   PROPHUNT LLP — Global Stylesheet
   Brand: भूमिं मृगयध्वम् | Hunt the Land
   Colors: #C8362B (Vermillion) · #111111 (Black)
   ============================================================ */

/* ── Variables ── */
:root {
    --red:            #C8362B;
    --red-dark:       #A02A22;
    --red-deeper:     #7D1F18;
    --red-light:      #F9ECEB;
    --red-glow:       rgba(200, 54, 43, 0.18);
    --black:          #111111;
    --black-soft:     #1A1A1A;
    --black-muted:    #2D2D2D;
    --white:          #FFFFFF;
    --off-white:      #F5F0EB;
    --gray-100:       #F3F2F0;
    --gray-200:       #E8E4E0;
    --gray-400:       #A09C98;
    --gray-600:       #6E6A67;
    --gray-800:       #3D3A38;
    --gold:           #C9A96E;

    --font-head:      'Lora', Georgia, serif;
    --font-body:      'Inter', system-ui, sans-serif;

    --radius-sm:      6px;
    --radius-md:      12px;
    --radius-lg:      20px;

    --shadow-sm:      0 2px 8px rgba(0,0,0,.07);
    --shadow-md:      0 4px 24px rgba(0,0,0,.10);
    --shadow-lg:      0 12px 48px rgba(0,0,0,.14);
    --shadow-brand:   0 8px 32px rgba(200,54,43,.22);

    --ease:           cubic-bezier(.4,0,.2,1);
    --ease-spring:    cubic-bezier(.68,-.55,.265,1.55);

    --nav-h:          72px;
    --container:      1240px;
    --gap:            2rem;
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; -webkit-text-size-adjust:100%; }
body { font-family:var(--font-body); color:var(--black); background:var(--white); line-height:1.65; overflow-x:hidden; -webkit-font-smoothing:antialiased; }
img { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }
input, textarea, select { font-family:inherit; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family:var(--font-head); line-height:1.2; font-weight:700; color:var(--black); }
h1 { font-size:clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size:clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size:clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size:1.1rem; }
p { color:var(--gray-800); }

/* ── Layout ── */
.container { max-width:var(--container); margin:0 auto; padding:0 var(--gap); }
.section { padding:5rem 0; }
.section--dark { background:var(--black); }
.section--tinted { background:var(--off-white); }

/* ── Section Headers ── */
.section-label {
    display:inline-flex; align-items:center; gap:.5rem;
    font-size:.72rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
    color:var(--red); background:var(--red-light); border:1px solid rgba(200,54,43,.2);
    padding:.35rem .85rem; border-radius:99px; margin-bottom:1rem;
}
.section-title { margin-bottom:.75rem; }
.section-sub { color:var(--gray-600); font-size:1.05rem; max-width:580px; }
.section-header { margin-bottom:3rem; }
.section-header.centered { text-align:center; }
.section-header.centered .section-sub { margin:0 auto; }

/* ── Buttons ── */
.btn {
    display:inline-flex; align-items:center; gap:.5rem;
    font-size:.9rem; font-weight:600; letter-spacing:.02em;
    padding:.75rem 1.75rem; border-radius:var(--radius-sm);
    transition:all .28s var(--ease); white-space:nowrap; cursor:pointer;
    text-decoration:none;
}
.btn-primary {
    background:var(--red); color:var(--white);
    box-shadow:var(--shadow-brand);
}
.btn-primary:hover { background:var(--red-dark); transform:translateY(-2px); box-shadow:0 12px 36px rgba(200,54,43,.3); }
.btn-primary:active { transform:translateY(0); }
.btn-outline {
    background:transparent; color:var(--red);
    border:1.5px solid var(--red);
}
.btn-outline:hover { background:var(--red); color:var(--white); }
.btn-dark {
    background:var(--black); color:var(--white);
}
.btn-dark:hover { background:var(--black-muted); }
.btn-ghost {
    background:rgba(255,255,255,.1); color:var(--white);
    border:1.5px solid rgba(255,255,255,.25);
    backdrop-filter:blur(8px);
}
.btn-ghost:hover { background:rgba(255,255,255,.2); }
.btn-lg { padding:.95rem 2.25rem; font-size:1rem; }
.btn-sm { padding:.5rem 1.1rem; font-size:.82rem; }
.btn i { font-size:.9em; }

/* ── Cards (shared base) ── */
.card {
    background:var(--white); border-radius:var(--radius-md);
    border:1px solid var(--gray-200);
    transition:transform .3s var(--ease), box-shadow .3s var(--ease);
    overflow:hidden;
}
.card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }

/* ── Badges ── */
.badge {
    display:inline-block; font-size:.72rem; font-weight:700;
    letter-spacing:.06em; text-transform:uppercase;
    padding:.28rem .75rem; border-radius:99px;
}
.badge-red { background:var(--red); color:#fff; }
.badge-black { background:var(--black); color:#fff; }
.badge-outline { border:1px solid var(--gray-200); color:var(--gray-600); }

/* ── Divider ── */
.divider { border:none; border-top:1px solid var(--gray-200); margin:0; }

/* ── Utility ── */
.text-red { color:var(--red); }
.text-muted { color:var(--gray-600); }
.text-white { color:var(--white); }
.fw-600 { font-weight:600; }
.fw-700 { font-weight:700; }
.mt-1 { margin-top:.5rem; }
.mt-2 { margin-top:1rem; }
.mt-3 { margin-top:1.5rem; }
.mt-4 { margin-top:2rem; }
.hidden { display:none !important; }

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.navbar {
    position:fixed; top:0; left:0; right:0; z-index:1000;
    height:var(--nav-h);
    background:var(--white);
    border-bottom:1px solid var(--gray-200);
    box-shadow:0 1px 8px rgba(0,0,0,.06);
    transition:box-shadow .35s var(--ease);
}
.navbar.scrolled {
    box-shadow:0 2px 16px rgba(0,0,0,.10);
}
.navbar.scrolled .nav-link { color:var(--black); }
.navbar.scrolled .nav-link:hover { color:var(--red); }
.navbar.scrolled .logo-light { display:none; }
.navbar.scrolled .logo-dark { display:block; }
.navbar.nav-white .nav-link { color:var(--black); }
.navbar.nav-white { background:var(--white); box-shadow:0 1px 0 var(--gray-200); }
.navbar.nav-white .logo-light { display:none; }
.navbar.nav-white .logo-dark { display:block; }

.nav-container {
    max-width:var(--container); margin:0 auto; padding:0 var(--gap);
    height:100%; display:flex; align-items:center;
}
.nav-logo { display:flex; align-items:center; flex-shrink:0; margin-right:auto; }
.nav-logo img { height:52px; width:auto; max-width:200px; object-fit:contain; }
.logo-dark { display:block; }
.logo-light { display:none; }
.logo-black { display:block; }

.nav-links {
    display:flex; align-items:center; gap:.25rem;
    position:absolute; left:50%; transform:translateX(-50%);
}
.nav-item { position:relative; }
.nav-link {
    display:flex; align-items:center; gap:.3rem;
    font-size:.875rem; font-weight:500; color:var(--black);
    padding:.5rem .75rem; border-radius:var(--radius-sm);
    transition:color .22s var(--ease), background .22s var(--ease);
    white-space:nowrap;
}
.nav-link:hover, .nav-link.active { color:var(--red); background:var(--red-light); }
.nav-link .chevron { font-size:.65rem; margin-top:1px; transition:transform .22s var(--ease); }
.nav-item:hover .chevron { transform:rotate(180deg); }

/* Dropdown */
.dropdown {
    position:absolute; top:calc(100% + .5rem); left:50%; transform:translateX(-50%);
    background:var(--white); border:1px solid var(--gray-200);
    border-radius:var(--radius-md); box-shadow:var(--shadow-lg);
    min-width:220px; padding:.5rem;
    opacity:0; visibility:hidden; pointer-events:none;
    transform:translateX(-50%) translateY(-6px);
    transition:opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
    opacity:1; visibility:visible; pointer-events:all;
    transform:translateX(-50%) translateY(0);
}
.dropdown-link {
    display:flex; align-items:center; gap:.75rem;
    padding:.65rem .85rem; border-radius:var(--radius-sm);
    font-size:.875rem; color:var(--gray-800);
    transition:background .18s var(--ease), color .18s var(--ease);
}
.dropdown-link i { width:16px; color:var(--red); font-size:.85rem; }
.dropdown-link:hover { background:var(--red-light); color:var(--red); }
.dropdown-divider { border:none; border-top:1px solid var(--gray-200); margin:.4rem 0; }

/* Nav right actions */
.nav-actions { display:flex; align-items:center; gap:.75rem; margin-left:auto; flex-shrink:0; }
.nav-phone {
    display:none; /* hidden on desktop — phone in mobile menu only */
}
.nav-phone:hover { color:var(--red); }
.nav-phone i { font-size:.8rem; }

/* Hamburger */
.hamburger {
    display:none; flex-direction:column; justify-content:center;
    gap:5px; width:40px; height:40px; padding:8px; border-radius:var(--radius-sm);
    transition:background .2s;
}
.hamburger:hover { background:var(--red-light); }
.hamburger span {
    display:block; width:22px; height:2px;
    background:var(--black); border-radius:2px;
    transition:all .3s var(--ease);
}
.navbar.scrolled .hamburger span,
.navbar.nav-white .hamburger span { background:var(--black); }
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display:none; position:fixed; inset:0; z-index:999;
    background:var(--black); padding:var(--nav-h) 0 2rem;
    overflow-y:auto;
    opacity:0; transform:translateX(100%);
    transition:opacity .35s var(--ease), transform .35s var(--ease);
}
.mobile-menu.open { opacity:1; transform:translateX(0); }
.mobile-menu-inner { padding:2rem var(--gap); }
.mobile-nav-links { display:flex; flex-direction:column; gap:.25rem; }
.mobile-nav-link {
    display:block; font-size:1.15rem; font-weight:600;
    color:rgba(255,255,255,.85); padding:.85rem 1rem;
    border-radius:var(--radius-sm); border-bottom:1px solid rgba(255,255,255,.06);
    transition:color .2s, background .2s;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color:var(--red); background:rgba(200,54,43,.08); }
.mobile-sub { padding-left:1.5rem; margin-top:.25rem; display:flex; flex-direction:column; gap:.1rem; }
.mobile-sub-link {
    display:block; font-size:.95rem; color:var(--gray-400);
    padding:.5rem .75rem; border-radius:var(--radius-sm);
    transition:color .2s;
}
.mobile-sub-link:hover { color:var(--red); }
.mobile-menu-footer { margin-top:2.5rem; padding-top:2rem; border-top:1px solid rgba(255,255,255,.08); }
.mobile-menu-footer .btn { width:100%; justify-content:center; margin-bottom:.75rem; }
.mobile-contact-info { margin-top:1.5rem; display:flex; flex-direction:column; gap:.6rem; }
.mobile-contact-info a { color:var(--gray-400); font-size:.875rem; display:flex; align-items:center; gap:.5rem; }
.mobile-contact-info a:hover { color:var(--white); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer { background:var(--black-soft); color:rgba(255,255,255,.75); padding:5rem 0 0; }
.footer-grid {
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.6fr;
    gap:3rem;
    padding-bottom:3.5rem;
}
.footer-logo img { height:34px; width:auto; margin-bottom:1.25rem; filter:brightness(0) invert(1); }
.footer-tagline { margin-bottom:1rem; }
.footer-tagline .sanskrit { display:block; font-family:var(--font-head); font-size:1rem; color:var(--white); letter-spacing:.05em; }
.footer-tagline .translation { font-size:.8rem; color:var(--gray-400); letter-spacing:.1em; text-transform:uppercase; }
.footer-about-text { font-size:.875rem; line-height:1.7; color:var(--gray-400); margin-bottom:1.5rem; }
.footer-social { display:flex; gap:.6rem; }
.footer-social a {
    width:36px; height:36px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    background:rgba(255,255,255,.07); color:rgba(255,255,255,.6);
    font-size:.875rem; transition:background .22s, color .22s;
}
.footer-social a:hover { background:var(--red); color:var(--white); }

.footer-col h5 { font-size:.8rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--white); margin-bottom:1.25rem; font-family:var(--font-body); }
.footer-links { display:flex; flex-direction:column; gap:.6rem; }
.footer-links a { font-size:.875rem; color:var(--gray-400); transition:color .2s; display:flex; align-items:center; gap:.4rem; }
.footer-links a:hover { color:var(--white); }
.footer-links a i { font-size:.7rem; color:var(--red); }

.footer-newsletter p { font-size:.875rem; color:var(--gray-400); margin-bottom:1rem; line-height:1.6; }
.newsletter-form { display:flex; gap:.5rem; }
.newsletter-form input {
    flex:1; padding:.65rem 1rem; border-radius:var(--radius-sm);
    border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.06);
    color:var(--white); font-size:.875rem; outline:none;
    transition:border-color .2s;
}
.newsletter-form input::placeholder { color:var(--gray-600); }
.newsletter-form input:focus { border-color:var(--red); }
.newsletter-form button {
    padding:.65rem 1rem; background:var(--red); color:var(--white);
    border-radius:var(--radius-sm); font-size:.9rem;
    transition:background .22s; flex-shrink:0;
}
.newsletter-form button:hover { background:var(--red-dark); }

.footer-bottom {
    border-top:1px solid rgba(255,255,255,.08);
    padding:1.5rem 0;
    display:flex; align-items:center; justify-content:space-between; gap:1rem;
    font-size:.8rem; color:var(--gray-600);
    flex-wrap:wrap;
}
.footer-bottom-links { display:flex; gap:1.5rem; }
.footer-bottom-links a { color:var(--gray-600); transition:color .2s; }
.footer-bottom-links a:hover { color:var(--white); }

/* ═══════════════════════════════════════════════
   PAGE HERO (inner pages — not home scroll hero)
═══════════════════════════════════════════════ */
.page-hero {
    background:var(--black); color:var(--white);
    padding:calc(var(--nav-h) + 4rem) 0 4rem;
    position:relative; overflow:hidden;
}
.page-hero::before {
    content:''; position:absolute; inset:0;
    background:linear-gradient(135deg, rgba(200,54,43,.15) 0%, transparent 60%);
    pointer-events:none;
}
.page-hero-inner { position:relative; }
.page-hero .section-label { background:rgba(200,54,43,.15); border-color:rgba(200,54,43,.3); }
.page-hero h1 { color:var(--white); margin-bottom:.75rem; }
.page-hero p { color:rgba(255,255,255,.7); font-size:1.1rem; max-width:580px; }
.breadcrumb { display:flex; align-items:center; gap:.4rem; font-size:.8rem; color:rgba(255,255,255,.45); margin-bottom:1.5rem; flex-wrap:wrap; }
.breadcrumb a { color:rgba(255,255,255,.45); transition:color .2s; }
.breadcrumb a:hover { color:var(--white); }
.breadcrumb-sep { font-size:.6rem; }

/* ═══════════════════════════════════════════════
   PROPERTY CARD
═══════════════════════════════════════════════ */
.prop-card { background:var(--white); border-radius:var(--radius-md); border:1px solid var(--gray-200); overflow:hidden; transition:transform .3s var(--ease), box-shadow .3s var(--ease); display:flex; flex-direction:column; }
.prop-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.prop-card-img { position:relative; padding-top:62%; overflow:hidden; background:var(--gray-100); }
.prop-card-img > div { position:absolute; inset:0; background-size:cover; background-position:center; transition:transform .5s var(--ease); }
.prop-card:hover .prop-card-img > div { transform:scale(1.05); }
.prop-card-badge { position:absolute; top:.75rem; left:.75rem; }
.prop-card-price { position:absolute; bottom:.75rem; right:.75rem; background:var(--black); color:var(--white); font-size:.8rem; font-weight:700; padding:.3rem .75rem; border-radius:var(--radius-sm); }
.prop-card-actions { position:absolute; top:.75rem; right:.75rem; display:flex; gap:.4rem; }
.prop-action-btn { width:32px; height:32px; border-radius:50%; background:rgba(255,255,255,.9); backdrop-filter:blur(4px); color:var(--gray-800); font-size:.75rem; display:flex; align-items:center; justify-content:center; transition:background .2s, color .2s; }
.prop-action-btn:hover, .prop-action-btn.active { background:var(--red); color:var(--white); }
.prop-card-body { padding:1.25rem; flex:1; display:flex; flex-direction:column; }
.prop-card-dev { font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--red); margin-bottom:.35rem; }
.prop-card-title { font-size:1.05rem; font-weight:700; font-family:var(--font-head); color:var(--black); margin-bottom:.35rem; }
.prop-card-loc { font-size:.82rem; color:var(--gray-600); display:flex; align-items:center; gap:.35rem; margin-bottom:.85rem; }
.prop-card-loc i { color:var(--red); font-size:.75rem; }
.prop-card-specs { display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:1rem; }
.prop-card-specs span { font-size:.8rem; color:var(--gray-600); display:flex; align-items:center; gap:.3rem; }
.prop-card-specs i { color:var(--gray-400); font-size:.75rem; }
.prop-card-footer { margin-top:auto; padding-top:1rem; border-top:1px solid var(--gray-200); display:flex; align-items:center; justify-content:space-between; }
.prop-card-status { font-size:.75rem; font-weight:600; color:var(--gray-600); display:flex; align-items:center; gap:.35rem; }
.prop-card-status::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--red); display:inline-block; }
.prop-card-link { font-size:.82rem; font-weight:700; color:var(--red); display:flex; align-items:center; gap:.35rem; transition:gap .2s; }
.prop-card-link:hover { gap:.6rem; }

/* ═══════════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════════ */
.stats-strip { background:var(--black); padding:3rem 0; }
.stats-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:0; align-items:center; }
.stat-item { text-align:center; min-width:0; padding:0 1.5rem; border-left:1px solid rgba(255,255,255,.12); }
.stat-item:first-child { border-left:0; }
.stat-number { display:block; font-family:var(--font-head); font-size:clamp(2rem, 4vw, 3rem); font-weight:700; color:var(--white); line-height:1; margin-bottom:.35rem; }
.stat-number span { color:var(--red); }
.stat-label { font-size:.8rem; color:var(--gray-400); text-transform:uppercase; letter-spacing:.1em; font-weight:600; }
.stat-divider { display:none; }

/* ═══════════════════════════════════════════════
   DEVELOPER LOGO LOOP
═══════════════════════════════════════════════ */
.dev-loop { overflow:hidden; white-space:nowrap; padding:1.5rem 0; position:relative; }
.dev-loop::before, .dev-loop::after {
    content:''; position:absolute; top:0; bottom:0; width:120px; z-index:2; pointer-events:none;
}
.dev-loop::before { left:0; background:linear-gradient(to right, var(--white), transparent); }
.dev-loop::after  { right:0; background:linear-gradient(to left, var(--white), transparent); }
.dev-loop-track { display:inline-flex; gap:3.5rem; animation:devScroll 28s linear infinite; }
.dev-loop-track:hover { animation-play-state:paused; }
@keyframes devScroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }
.dev-logo-item { display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }
.dev-logo-item img { height:36px; width:auto; filter:grayscale(1) opacity(.55); transition:filter .3s; }
.dev-logo-item img:hover { filter:grayscale(0) opacity(1); }

/* ═══════════════════════════════════════════════
   TESTIMONIAL CARD
═══════════════════════════════════════════════ */
.testi-card {
    background:var(--white); border:1px solid var(--gray-200);
    border-radius:var(--radius-md); padding:2rem;
}
.testi-stars { display:flex; gap:.2rem; color:#F59E0B; font-size:.85rem; margin-bottom:1rem; }
.testi-text { font-size:.95rem; line-height:1.75; color:var(--gray-800); margin-bottom:1.5rem; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:.85rem; }
.testi-avatar { width:44px; height:44px; border-radius:50%; background:var(--red); color:var(--white); font-size:.9rem; font-weight:700; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.testi-name { font-size:.9rem; font-weight:700; color:var(--black); }
.testi-role { font-size:.78rem; color:var(--gray-600); margin-top:.1rem; }

/* ═══════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════ */
.form-group { margin-bottom:1.25rem; }
.form-label { display:block; font-size:.82rem; font-weight:600; color:var(--gray-800); margin-bottom:.4rem; }
.form-control {
    width:100%; padding:.75rem 1rem; border-radius:var(--radius-sm);
    border:1.5px solid var(--gray-200); background:var(--white);
    font-size:.9rem; color:var(--black); outline:none;
    transition:border-color .22s, box-shadow .22s;
}
.form-control:focus { border-color:var(--red); box-shadow:0 0 0 3px var(--red-glow); }
.form-control::placeholder { color:var(--gray-400); }
textarea.form-control { resize:vertical; min-height:120px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-error { font-size:.78rem; color:var(--red); margin-top:.3rem; }

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
[data-reveal] { opacity:0; transform:translateY(24px); transition:opacity .65s var(--ease), transform .65s var(--ease); }
[data-reveal].revealed { opacity:1; transform:none; }
[data-reveal="left"] { transform:translateX(-30px); }
[data-reveal="left"].revealed { transform:none; }
[data-reveal="right"] { transform:translateX(30px); }
[data-reveal="right"].revealed { transform:none; }
[data-reveal-delay="100"] { transition-delay:.1s; }
[data-reveal-delay="200"] { transition-delay:.2s; }
[data-reveal-delay="300"] { transition-delay:.3s; }
[data-reveal-delay="400"] { transition-delay:.4s; }
[data-reveal-delay="500"] { transition-delay:.5s; }

/* ═══════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════ */
.back-to-top {
    position:fixed; bottom:2rem; right:2rem; z-index:500;
    width:44px; height:44px; border-radius:50%;
    background:var(--red); color:var(--white);
    box-shadow:var(--shadow-brand);
    display:flex; align-items:center; justify-content:center;
    font-size:.9rem;
    opacity:0; visibility:hidden; transform:translateY(10px);
    transition:opacity .3s, visibility .3s, transform .3s, background .2s;
}
.back-to-top.visible { opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover { background:var(--red-dark); }

/* WhatsApp Float */
.wa-float {
    position:fixed; bottom:5.5rem; left:2rem; right:auto; z-index:500;
    width:48px; height:48px; border-radius:50%;
    background:#25D366; color:#fff;
    display:flex; align-items:center; justify-content:center;
    font-size:1.4rem; box-shadow:0 4px 20px rgba(37,211,102,.4);
    transition:transform .25s var(--ease), box-shadow .25s;
}
.wa-float:hover { transform:scale(1.1); box-shadow:0 6px 28px rgba(37,211,102,.55); }

/* ═══════════════════════════════════════════════
   SKELETON LOADER
═══════════════════════════════════════════════ */
@keyframes shimmer { from { background-position:-400px 0; } to { background-position:400px 0; } }
.skeleton {
    background:linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size:800px 100%; animation:shimmer 1.4s infinite;
    border-radius:var(--radius-sm);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width:1024px) {
    .nav-links { display:none; }
    .nav-phone { display:none; }
    .hamburger { display:flex; }
    .mobile-menu { display:block; }
    .footer-grid { grid-template-columns:1fr 1fr; }
    .stats-grid { grid-template-columns:repeat(2,minmax(0,1fr)); row-gap:2rem; }
    .stat-item:nth-of-type(5) { border-left:0; }
}
@media (max-width:768px) {
    :root { --gap:1.25rem; --nav-h:60px; }
    .section { padding:3.5rem 0; }
    .footer-grid { grid-template-columns:1fr; gap:2rem; }
    .form-row { grid-template-columns:1fr; }
    .footer-bottom { flex-direction:column; align-items:flex-start; gap:.5rem; }

    /* Navbar — tighter on mobile */
    .navbar { height:var(--nav-h); }
    .nav-logo img { height:40px; max-width:140px; }
    .btn-sm { padding:.42rem .85rem; font-size:.78rem; }
    .nav-actions { gap:.5rem; }

    /* Stats — prevent label wrapping */
    .stat-label { font-size:.62rem; letter-spacing:.08em; }
    .stat-number { font-size:clamp(1.6rem, 6vw, 2.5rem); }
    .stat-item { padding:0 .75rem; }
}
@media (max-width:480px) {
    .stats-grid { grid-template-columns:1fr 1fr; row-gap:1.5rem; }
    .stat-label { font-size:.6rem; letter-spacing:.05em; }
}
