/* Virat Group — style4.css | index.html (production homepage) premium editorial stylesheet */

/* ═══════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--v4-ink);
    background: var(--v4-ivory);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; font-size: 16px; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--v4-gold); outline-offset: 2px; }

/* ═══════════════════════════════════════════════
   VARIABLES
═══════════════════════════════════════════════ */
:root {
    /* Navy scale — richer, deeper than flat brand navy */
    --v4-navy-950: #070d1b;
    --v4-navy-900: #0d1f3c;
    --v4-navy-800: #132a4e;
    --v4-navy-700: #1c3b68;
    --v4-navy-600: #2a4c82;

    /* Gold scale — warmer, more luminous */
    --v4-gold: #c9a15c;
    --v4-gold-light: #e8cd94;
    --v4-gold-dark: #9c7530;
    --v4-gold-soft: rgba(201, 161, 92, 0.14);

    /* Neutrals */
    --v4-ivory: #f8f5ee;
    --v4-off-white: #f2efe6;
    --v4-ink: #101826;
    --v4-ink-soft: #5b6478;
    --v4-line: rgba(201, 161, 92, 0.22);
    --v4-line-navy: rgba(255, 255, 255, 0.1);

    /* System */
    --v4-radius-lg: 22px;
    --v4-radius: 16px;
    --v4-radius-sm: 10px;
    --v4-shadow-lg: 0 40px 90px -24px rgba(7, 13, 27, 0.5);
    --v4-shadow-md: 0 20px 48px -16px rgba(7, 13, 27, 0.32);
    --v4-shadow-sm: 0 8px 24px -8px rgba(7, 13, 27, 0.2);
    --v4-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --v4-header-h: 104px;
}

/* ═══════════════════════════════════════════════
   LAYOUT / CONTAINER
═══════════════════════════════════════════════ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════ */
h1, h2, h3, h4, .section-title, .cs-title, .hv4-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.12;
    color: var(--v4-navy-900);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v4-gold-dark);
    margin-bottom: 14px;
}
.section-tag::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--v4-gold);
}

.section-title {
    font-size: clamp(30px, 3.6vw, 44px);
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 16.5px;
    color: var(--v4-ink-soft);
    max-width: 560px;
    line-height: 1.7;
}

.section-header.center {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}
.section-header.center .section-tag::before { display: none; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: transform 0.28s var(--v4-ease), box-shadow 0.28s var(--v4-ease), background 0.28s var(--v4-ease), color 0.28s var(--v4-ease), border-color 0.28s var(--v4-ease);
    cursor: pointer;
    min-height: 44px;
}
.btn-lg { padding: 17px 34px; font-size: 15.5px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-full { width: 100%; }

.btn-gold {
    background: linear-gradient(135deg, var(--v4-gold-light), var(--v4-gold) 60%, var(--v4-gold-dark));
    color: var(--v4-navy-950);
    box-shadow: 0 14px 32px -10px rgba(201, 161, 92, 0.55);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(201, 161, 92, 0.65); }

.btn-navy {
    background: var(--v4-navy-900);
    color: #fff;
    box-shadow: 0 14px 32px -10px rgba(13, 31, 60, 0.5);
}
.btn-navy:hover { background: var(--v4-navy-800); transform: translateY(-2px); }

.btn-outline {
    background: transparent;
    color: var(--v4-navy-900);
    border: 1.5px solid var(--v4-line);
}
.btn-outline:hover { border-color: var(--v4-gold); background: var(--v4-gold-soft); }

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
}
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 14px 32px -10px rgba(37, 211, 102, 0.5);
}
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-2px); }

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
.v4h { position: fixed; top: 0; left: 0; right: 0; z-index: 900; }

.v4h-strip { background: var(--v4-navy-950); border-bottom: 1px solid var(--v4-line-navy); }
.v4h-strip-inner {
    max-width: 1280px; margin: 0 auto; padding: 8px 32px;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 12.5px; color: rgba(255, 255, 255, 0.62);
}
.v4h-strip-left { display: flex; align-items: center; gap: 10px; }
.v4h-strip-left i { color: var(--v4-gold); margin-right: 4px; }
.v4h-dot { color: rgba(255, 255, 255, 0.3); }
.v4h-strip-right { display: flex; align-items: center; gap: 22px; }
.v4h-strip-right a { transition: color 0.2s; }
.v4h-strip-right a:hover { color: var(--v4-gold-light); }
.v4h-strip-right i { color: var(--v4-gold); margin-right: 5px; }
.v4h-strip-wa {
    display: flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 999px;
    background: rgba(37, 211, 102, 0.14); color: #4ade80; font-weight: 600;
}
.v4h-strip-wa i { color: #4ade80; margin-right: 0; font-size: 13px; }
.v4h-strip-wa:hover { background: rgba(37, 211, 102, 0.24); color: #4ade80; }

.v4h-nav {
    position: relative;
    background: rgba(7, 13, 27, 0.72);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: background 0.35s var(--v4-ease), border-color 0.35s var(--v4-ease), box-shadow 0.35s var(--v4-ease);
}
.v4h.scrolled .v4h-strip { margin-top: -40px; }
.v4h.scrolled .v4h-nav {
    background: rgba(7, 13, 27, 0.94);
    border-bottom-color: var(--v4-line);
    box-shadow: var(--v4-shadow-sm);
}

.v4h-nav-inner {
    max-width: 1280px; margin: 0 auto; padding: 16px 32px;
    display: flex; align-items: center; justify-content: space-between; gap: 28px;
}

.v4h-logo img { height: 48px; width: auto; }

.v4h-links { display: flex; align-items: center; gap: 30px; flex: 1; margin-left: 40px; }
.v4h-link {
    position: relative;
    font-size: 14.5px; font-weight: 500; color: rgba(255, 255, 255, 0.82);
    display: flex; align-items: center; gap: 6px;
    padding: 6px 0; transition: color 0.22s;
}
.v4h-link::after {
    content: ''; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
    background: var(--v4-gold); transition: width 0.3s var(--v4-ease);
}
.v4h-link:hover, .v4h-link.is-active { color: #fff; }
.v4h-link:hover::after, .v4h-link.is-active::after { width: 100%; }
.v4h-link-btn { font: inherit; }

.v4h-badge {
    background: var(--v4-gold); color: var(--v4-navy-950);
    font-size: 9.5px; font-weight: 800; letter-spacing: 0.05em;
    padding: 2px 6px; border-radius: 5px; text-transform: uppercase;
}

.v4h-item { position: relative; }
.v4h-chev { font-size: 10px; transition: transform 0.25s; }
.v4h-item:hover .v4h-chev { transform: rotate(180deg); }

.v4h-drop {
    position: absolute; top: calc(100% + 16px); left: 0;
    background: var(--v4-navy-900); border: 1px solid var(--v4-line);
    border-radius: var(--v4-radius); box-shadow: var(--v4-shadow-lg);
    min-width: 290px; padding: 10px;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity 0.25s var(--v4-ease), transform 0.25s var(--v4-ease), visibility 0.25s;
}
.v4h-item:hover .v4h-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.v4h-drop-link {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 14px; border-radius: 10px;
    color: rgba(255, 255, 255, 0.78); transition: background 0.2s, color 0.2s;
}
.v4h-drop-link i {
    color: var(--v4-gold); width: 32px; height: 32px; flex-shrink: 0; font-size: 13px;
    border-radius: 8px; background: rgba(201, 161, 92, 0.12);
    display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.v4h-drop-link span { display: flex; flex-direction: column; gap: 3px; }
.v4h-drop-link strong { font-size: 13.5px; font-weight: 600; color: #fff; }
.v4h-drop-link small { font-size: 12px; color: rgba(255, 255, 255, 0.5); line-height: 1.4; }
.v4h-drop-link:hover { background: rgba(201, 161, 92, 0.12); }

.v4h-mobile-phone { display: none; color: #fff; font-size: 18px; }
.v4h-cta {
    background: linear-gradient(135deg, var(--v4-gold-light), var(--v4-gold) 65%, var(--v4-gold-dark));
    color: var(--v4-navy-950); font-weight: 700; font-size: 13.5px;
    padding: 12px 24px; border-radius: 999px;
    box-shadow: 0 10px 26px -8px rgba(201, 161, 92, 0.55);
    transition: transform 0.25s var(--v4-ease), box-shadow 0.25s var(--v4-ease);
    white-space: nowrap;
}
.v4h-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -8px rgba(201, 161, 92, 0.65); }

.v4h-burger {
    display: none; flex-direction: column; gap: 5px; width: 26px; position: relative; z-index: 1;
}
.v4h-burger span {
    display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px;
    transition: transform 0.3s var(--v4-ease), opacity 0.3s var(--v4-ease);
    transform-origin: center;
}
.v4h-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v4h-burger.is-open span:nth-child(2) { opacity: 0; }
.v4h-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Scroll-progress hairline — fills gold as the page scrolls */
.v4h-progress {
    position: absolute; left: 0; bottom: -1px; height: 2px; width: 0%;
    background: linear-gradient(90deg, var(--v4-gold-dark), var(--v4-gold-light));
    transition: width 0.1s linear;
}

/* Mobile drawer */
.v4h-overlay {
    position: fixed; inset: 0; background: rgba(7, 13, 27, 0.7); backdrop-filter: blur(4px);
    z-index: 950; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.v4h-overlay.active { opacity: 1; pointer-events: auto; }

.v4h-drawer {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(88vw, 380px);
    background: var(--v4-navy-950); z-index: 960;
    transform: translateX(100%); transition: transform 0.4s var(--v4-ease);
    display: flex; flex-direction: column; padding: 26px 24px;
    overflow-y: auto; border-left: 1px solid var(--v4-line);
}
.v4h-drawer.open { transform: translateX(0); }

.v4h-drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.v4h-drawer-logo { height: 42px; }
.v4h-drawer-close {
    width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--v4-line);
    color: #fff; font-size: 22px; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}
.v4h-drawer-close:hover { background: var(--v4-gold-soft); border-color: var(--v4-gold); }

.v4h-drawer-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.v4h-dlink {
    position: relative;
    padding: 11px 10px; font-size: 15px; font-weight: 500; color: rgba(255, 255, 255, 0.8);
    border-radius: 10px; display: flex; align-items: center; gap: 12px;
    transition: background 0.2s, color 0.2s, transform 0.2s, padding-left 0.2s;
}
.v4h-dlink i {
    width: 18px; flex-shrink: 0; text-align: center; font-size: 14px;
    color: var(--v4-gold); opacity: 0.75; transition: color 0.2s, opacity 0.2s;
}
.v4h-dlink:hover { background: rgba(201, 161, 92, 0.1); color: #fff; padding-left: 14px; }
.v4h-dlink:hover i { opacity: 1; }
.v4h-dlink.is-active { background: linear-gradient(90deg, rgba(201, 161, 92, 0.16), rgba(201, 161, 92, 0.03)); color: #fff; }
.v4h-dlink.is-active i { color: var(--v4-gold-light); opacity: 1; }
.v4h-dlink.is-active::before {
    content: ''; position: absolute; left: -24px; top: 50%; transform: translateY(-50%);
    width: 3px; height: 18px; border-radius: 0 3px 3px 0;
    background: linear-gradient(180deg, var(--v4-gold-light), var(--v4-gold-dark));
}
.v4h-dlink-sub { font-size: 13.5px; padding-left: 20px; color: rgba(255, 255, 255, 0.6); }
.v4h-dlink-sub i { font-size: 12px; opacity: 0.6; }

.v4h-drawer-divider { height: 1px; background: var(--v4-line); margin: 10px 0; }
.v4h-drawer-section-label {
    display: flex; align-items: center; gap: 7px;
    font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--v4-gold); padding: 4px 10px 8px; font-weight: 700;
}
.v4h-drawer-section-label i { font-size: 10px; opacity: 0.85; }

.v4h-drawer-foot { display: flex; flex-direction: column; gap: 8px; margin: 18px 0; }
.v4h-drawer-foot a {
    display: flex; align-items: center; gap: 10px; padding: 12px 14px;
    border: 1px solid var(--v4-line); border-radius: 10px; color: rgba(255, 255, 255, 0.8); font-size: 14px;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.v4h-drawer-foot a i { color: var(--v4-gold); width: 16px; }
.v4h-drawer-foot a:hover { background: rgba(201, 161, 92, 0.1); border-color: var(--v4-gold); color: #fff; }

.v4h-drawer-cta {
    text-align: center; padding: 15px; border-radius: 999px; font-weight: 700; font-size: 14.5px;
    background: linear-gradient(135deg, var(--v4-gold-light), var(--v4-gold) 65%, var(--v4-gold-dark));
    color: var(--v4-navy-950);
}

/* ═══════════════════════════════════════════════
   HERO — asymmetric split-screen
═══════════════════════════════════════════════ */
.hero-v4 { position: relative; height: 100vh; min-height: 680px; overflow: hidden; background: var(--v4-navy-950); }
.hv4-grain {
    position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0.05; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hv4-split { position: relative; height: 100%; display: grid; grid-template-columns: 1.15fr 1fr; }

.hv4-panel-text {
    position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center;
    padding: calc(var(--v4-header-h) + 24px) clamp(32px, 5vw, 80px) 32px;
    background-image: radial-gradient(circle at 20% 30%, rgba(201, 161, 92, 0.09), transparent 55%);
}

.hv4-eyebrow {
    display: flex; align-items: center; gap: 12px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--v4-gold-light); margin-bottom: 26px;
}
.hv4-eyebrow-line { width: 40px; height: 1px; background: var(--v4-gold); }

.hv4-title {
    font-size: clamp(38px, 5vw, 68px); color: #fff; margin-bottom: 26px; perspective: 400px;
}
.hv4-title em { color: var(--v4-gold-light); font-style: italic; }
.hv4-title .kw {
    display: inline-block; will-change: transform, opacity;
}

.hv4-sub {
    font-size: 17.5px; color: rgba(255, 255, 255, 0.75); max-width: 460px; margin-bottom: 36px; line-height: 1.7;
}

.hv4-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 40px; }

.hv4-tagline {
    font-family: 'Playfair Display', serif; font-style: italic; font-size: 15px;
    color: rgba(255, 255, 255, 0.35); border-top: 1px solid var(--v4-line-navy); padding-top: 24px; max-width: 380px;
}

.hv4-panel-media { position: relative; overflow: hidden; clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%); }
.hv4-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); }
.hv4-media-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(7, 13, 27, 0.5) 0%, transparent 30%, rgba(7, 13, 27, 0.4) 100%);
}
.hv4-media-frame { position: absolute; inset: 18px; border: 1px solid rgba(255, 255, 255, 0.18); pointer-events: none; }

.hv4-media-tag {
    position: absolute; top: calc(var(--v4-header-h) + 24px); right: 40px; z-index: 2;
    display: flex; align-items: center; gap: 8px;
    background: rgba(7, 13, 27, 0.55); backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 999px;
    padding: 9px 18px; font-size: 12.5px; font-weight: 500; color: rgba(255, 255, 255, 0.85);
}
.hv4-media-tag i { color: var(--v4-gold-light); }

.hv4-trust-card {
    position: absolute; left: 40px; bottom: 100px; z-index: 2;
    display: flex; align-items: center; gap: 18px;
    background: rgba(7, 13, 27, 0.72); backdrop-filter: blur(10px);
    border: 1px solid var(--v4-line); border-radius: var(--v4-radius); box-shadow: var(--v4-shadow-md);
    padding: 18px 24px;
}
.hv4-trust-item { text-align: center; }
.hv4-trust-item strong { display: block; font-family: 'Playfair Display', serif; font-size: 19px; color: var(--v4-gold-light); }
.hv4-trust-item span { display: block; font-size: 10.5px; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }
.hv4-trust-divider { width: 1px; height: 28px; background: var(--v4-line-navy); }

.hv4-bottom {
    position: absolute; bottom: 34px; left: 0; right: 0; display: flex; justify-content: center; z-index: 4;
}
.hv4-scroll-cue {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: rgba(255, 255, 255, 0.68); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    transition: opacity 0.3s;
}
.hv4-scroll-cue-line { width: 1px; height: 34px; background: linear-gradient(to bottom, var(--v4-gold), transparent); animation: v4ScrollLine 1.8s ease-in-out infinite; }
@keyframes v4ScrollLine { 0%, 100% { transform: scaleY(0.4); opacity: 0.5; } 50% { transform: scaleY(1); opacity: 1; } }

/* ═══════════════════════════════════════════════
   HERO STAT BAR
═══════════════════════════════════════════════ */
.hero-stat-bar {
    position: relative; z-index: 3; margin-top: -68px;
    background: var(--v4-navy-950); border-top: 1px solid var(--v4-line);
    box-shadow: var(--v4-shadow-lg);
}
.hsb-inner {
    max-width: 1200px; margin: 0 auto; padding: 30px 32px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.hsb-item { text-align: center; border-right: 1px solid var(--v4-line-navy); }
.hsb-item:last-child { border-right: none; }
.hsb-num {
    font-family: 'Playfair Display', serif; font-weight: 700; font-size: 34px; color: var(--v4-gold-light);
    display: flex; justify-content: center; gap: 2px;
}
.hsb-label { font-size: 12.5px; color: rgba(255, 255, 255, 0.6); margin-top: 6px; letter-spacing: 0.03em; }

/* ═══════════════════════════════════════════════
   INSTAGRAM REELS
═══════════════════════════════════════════════ */
.ig-section { position: relative; background: var(--v4-off-white); padding: 56px 0; overflow: hidden; }
.ig-top-bar, .ig-bottom-bar {
    height: 3px; background: linear-gradient(90deg, transparent, var(--v4-gold) 50%, transparent);
}
.ig-top-bar { margin-bottom: 44px; }
.ig-bottom-bar { margin-top: 44px; }
.ig-inner { max-width: 100%; }

.ig-reel-wrap { position: relative; }
.ig-reel-track {
    display: flex; justify-content: center; flex-wrap: nowrap;
    gap: var(--ig-gap); padding: 0 var(--ig-pad);
    --ig-n: 6; --ig-gap: 18px; --ig-pad: 24px;
}
/* Item width is derived from the viewport so exactly --ig-n reels always
   fit on one row — never wraps to a second row. --ig-n/gap/pad are
   overridden per breakpoint below, matching igReelCount() in home4.js
   exactly so the JS-picked count and the CSS layout math always agree. */
.ig-item {
    position: relative; overflow: hidden; cursor: pointer;
    width: calc((100vw - 2 * var(--ig-pad) - (var(--ig-n) - 1) * var(--ig-gap)) / var(--ig-n));
    aspect-ratio: 210 / 373;
    border-radius: 16px;
    border: 2px solid var(--v4-gold); flex-shrink: 0; background: var(--v4-navy-950);
    box-shadow: var(--v4-shadow-sm);
}
.ig-item img, .ig-item video { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.ig-item video::-webkit-media-controls { display: none !important; }
.ig-item-overlay {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: linear-gradient(180deg, transparent 60%, rgba(7, 13, 27, 0.65) 100%);
}
.ig-play {
    position: absolute; z-index: 2; bottom: 14px; left: 14px; width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.16); backdrop-filter: blur(6px); border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px;
}

@media (max-width: 1399px) { .ig-reel-track { --ig-n: 5; --ig-gap: 16px; } }
@media (max-width: 1079px) { .ig-reel-track { --ig-n: 4; --ig-gap: 14px; --ig-pad: 20px; } }
@media (max-width: 639px)  {
    .ig-reel-track { --ig-n: 3; --ig-gap: 8px; --ig-pad: 14px; }
    .ig-play { width: 24px; height: 24px; bottom: 8px; left: 8px; font-size: 9px; }
}

/* ═══════════════════════════════════════════════
   VIDEO TESTIMONIALS MODAL — triggered by the "Watch
   Video Stories" button inside the text testimonials
   section; cycles through clips with prev/next arrows
═══════════════════════════════════════════════ */
.testi-video-btn { margin-top: 26px; }
.tv-modal-nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.1); border: 1px solid var(--v4-line-navy); color: #fff; font-size: 16px;
    display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.tv-modal-nav:hover { background: var(--v4-gold); color: var(--v4-navy-950); }
.tv-modal-prev { left: clamp(12px, 4vw, 60px); }
.tv-modal-next { right: clamp(12px, 4vw, 60px); }

/* ═══════════════════════════════════════════════
   GENIE PROMO
═══════════════════════════════════════════════ */
.genie-promo { background: var(--v4-off-white); padding: 60px 0; }
.genie-promo-inner { display: flex; align-items: center; gap: 60px; }
.genie-promo-avatar {
    flex-shrink: 0; width: 220px; height: 220px; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--v4-gold-light), var(--v4-gold) 55%, var(--v4-gold-dark));
    display: flex; align-items: center; justify-content: center; box-shadow: var(--v4-shadow-md);
    padding: 20px;
}
.genie-promo-avatar img { width: 100%; height: 100%; object-fit: contain; }
.genie-promo-text { flex: 1; }
.genie-promo-chips { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 30px; }
.genie-promo-chips span {
    display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500;
    padding: 9px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--v4-line); color: var(--v4-ink-soft);
}
.genie-promo-chips i { color: var(--v4-gold-dark); }

/* ═══════════════════════════════════════════════
   PROJECTS
═══════════════════════════════════════════════ */
.projects-v4 { background: var(--v4-ivory); padding: 100px 0; }
.projects-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }
.filter-tabs { display: flex; gap: 8px; background: #fff; padding: 6px; border-radius: 999px; border: 1px solid var(--v4-line); }
.filter-tab {
    padding: 10px 20px; border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--v4-ink-soft);
    transition: background 0.25s, color 0.25s;
}
.filter-tab.active { background: var(--v4-navy-900); color: #fff; }
.filter-tab:not(.active):hover { color: var(--v4-navy-900); }

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.prop-card {
    background: #fff; border-radius: var(--v4-radius-lg); overflow: hidden; display: flex; flex-direction: column;
    border: 1px solid var(--v4-line); box-shadow: var(--v4-shadow-sm);
    transition: transform 0.35s var(--v4-ease), box-shadow 0.35s var(--v4-ease);
}
.prop-card:hover { transform: translateY(-8px); box-shadow: var(--v4-shadow-lg); }
.card-img-wrap { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--v4-ease); }
.prop-card:hover .card-img-wrap img { transform: scale(1.06); }
.card-status {
    position: absolute; top: 16px; left: 16px; font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
    padding: 6px 13px; border-radius: 999px; color: #fff; text-transform: uppercase;
}
.status-ready { background: #2e9e5b; }
.status-ongoing { background: var(--v4-gold-dark); }
.status-completed { background: var(--v4-ink-soft); }
.card-type {
    position: absolute; top: 16px; right: 16px; font-size: 11.5px; font-weight: 600;
    padding: 6px 13px; border-radius: 999px; background: rgba(7, 13, 27, 0.65); color: #fff;
    backdrop-filter: blur(6px); display: flex; align-items: center; gap: 6px;
}
.card-save {
    position: absolute; bottom: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%;
    background: rgba(7, 13, 27, 0.55); backdrop-filter: blur(6px); color: #fff; font-size: 15px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s, color 0.25s, transform 0.25s;
}
.card-save:hover { background: var(--v4-gold); color: var(--v4-navy-950); transform: scale(1.08); }
.card-save.is-saved { background: var(--v4-gold); color: var(--v4-navy-950); }
.card-save.is-saved i { font-weight: 900; }
.card-body { padding: 26px 24px 20px; flex: 1; }
.card-name { font-size: 21px; margin-bottom: 8px; }
.card-loc { font-size: 13px; color: var(--v4-ink-soft); display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.card-loc i { color: var(--v4-gold-dark); }
.card-desc { font-size: 14px; color: var(--v4-ink-soft); line-height: 1.65; margin-bottom: 18px; }
.card-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
    font-size: 11.5px; font-weight: 500; color: var(--v4-navy-800); background: var(--v4-off-white);
    border: 1px solid var(--v4-line); padding: 6px 11px; border-radius: 999px; display: flex; align-items: center; gap: 5px;
}
.chip i { color: var(--v4-gold-dark); }
.card-footer {
    display: flex; align-items: center; justify-content: space-between; padding: 18px 24px;
    border-top: 1px solid var(--v4-line);
}
.card-price { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px; color: var(--v4-navy-900); }
.card-price span { display: block; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 11px; color: var(--v4-ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }
.projects-view-all { text-align: center; margin-top: 52px; }

/* ═══════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════ */
.process-section { background: #fff; padding: 100px 0; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.process-step { position: relative; padding: 8px; }
.process-num {
    font-family: 'Playfair Display', serif; font-size: 60px; font-weight: 700;
    color: var(--v4-off-white); -webkit-text-stroke: 1.5px var(--v4-gold-dark); display: block; margin-bottom: 8px;
}
.process-icon {
    width: 56px; height: 56px; border-radius: 14px; background: var(--v4-navy-900); color: var(--v4-gold-light);
    display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px;
}
.process-title { font-size: 20px; margin-bottom: 10px; }
.process-desc { font-size: 14.5px; color: var(--v4-ink-soft); line-height: 1.7; }

/* ═══════════════════════════════════════════════
   WHY CHOOSE US — asymmetric bento grid
═══════════════════════════════════════════════ */
.why-v4 { background: var(--v4-off-white); padding: 100px 0; }
.why-v4-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.why-v4-head .section-tag::before { display: none; }

.bento-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 20px;
}
.bento-tile {
    position: relative; border-radius: var(--v4-radius-lg); overflow: hidden;
    transition: transform 0.35s var(--v4-ease), box-shadow 0.35s var(--v4-ease), border-color 0.35s var(--v4-ease);
}

.bento-image { grid-column: span 2; grid-row: span 2; box-shadow: var(--v4-shadow-md); }
.bento-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--v4-ease); }
.bento-image:hover img { transform: scale(1.06); }
.bento-image-badge {
    position: absolute; bottom: 20px; left: 20px; background: rgba(7, 13, 27, 0.88); backdrop-filter: blur(8px);
    border: 1px solid var(--v4-line); border-radius: var(--v4-radius); padding: 14px 20px; color: #fff;
}
.bento-image-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 26px; color: var(--v4-gold-light); }
.bento-image-badge span { font-size: 11.5px; color: rgba(255, 255, 255, 0.7); letter-spacing: 0.03em; }

.bento-intro {
    grid-column: span 2; background: var(--v4-navy-900); color: #fff; padding: 28px;
    display: flex; flex-direction: column; justify-content: space-between;
}
.bento-intro p { font-size: 15px; line-height: 1.7; color: rgba(255, 255, 255, 0.75); }

.bento-feat {
    background: #fff; border: 1px solid var(--v4-line); padding: 24px;
    display: flex; flex-direction: column; justify-content: center; gap: 8px;
}
.bento-feat i { color: var(--v4-gold-dark); font-size: 22px; margin-bottom: 4px; }
.bento-feat strong { font-size: 14.5px; color: var(--v4-navy-900); }
.bento-feat span { font-size: 12.5px; color: var(--v4-ink-soft); line-height: 1.5; }
.bento-intro:hover { transform: translateY(-4px); }
.bento-feat:hover, .bento-image:hover, .bento-intro:hover {
    border-color: var(--v4-gold); box-shadow: var(--v4-shadow-md);
}
.bento-feat:hover i { color: var(--v4-gold); }

/* ═══════════════════════════════════════════════
   CINEMATIC STATEMENT
═══════════════════════════════════════════════ */
.cinematic-statement { position: relative; height: 62vh; min-height: 460px; overflow: hidden; }
.cs-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.08); transition: transform 6s var(--v4-ease); }
.cinematic-statement.cs-in-view .cs-bg { transform: scale(1); }
.cs-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,13,27,0.55), rgba(7,13,27,0.82)); }
.cs-inner { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; }
.cs-eyebrow { color: var(--v4-gold-light); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; display: block; }
.cs-title { font-size: clamp(30px, 4.6vw, 56px); color: #fff; margin-bottom: 32px; }
.cs-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════ */
.gallery-v4 { background: var(--v4-off-white); padding: 100px 0 0; }
.gallery-v4 .container { margin-bottom: 48px; }
.gallery-scroll-row {
    overflow: hidden; cursor: grab; padding: 10px 0 100px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.gallery-scroll-row:active { cursor: grabbing; }
.gallery-track { display: flex; align-items: center; gap: 22px; width: max-content; padding: 0 32px; }
.gs-item {
    position: relative; width: 340px; height: 240px; border-radius: var(--v4-radius-lg); overflow: hidden; flex-shrink: 0;
    border: 1px solid var(--v4-line); box-shadow: var(--v4-shadow-sm);
    transition: transform 0.4s var(--v4-ease), box-shadow 0.4s var(--v4-ease), border-color 0.4s var(--v4-ease);
}
.gs-item:hover { transform: translateY(-6px); box-shadow: var(--v4-shadow-lg); border-color: var(--v4-gold); }
.gs-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--v4-ease); }
.gs-item:hover img { transform: scale(1.08); }
.gs-caption {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 18px 16px;
    background: linear-gradient(to top, rgba(7, 13, 27, 0.88), transparent);
    color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
}
.gs-caption::before { content: ''; display: block; width: 22px; height: 2px; background: var(--v4-gold); margin-bottom: 8px; }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testi-v4-section { background: var(--v4-navy-950); padding: 100px 0; position: relative; overflow: hidden; }
.testi-v4-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(201,161,92,0.08), transparent 45%);
}
.testi-title { color: #fff; }
.testi-subtitle { color: rgba(255, 255, 255, 0.55); }
.testi-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card {
    background: rgba(255, 255, 255, 0.04); border: 1px solid var(--v4-line-navy); border-radius: var(--v4-radius-lg);
    padding: 32px 28px; position: relative; transition: transform 0.3s var(--v4-ease), border-color 0.3s;
}
.testi-card:hover { transform: translateY(-6px); border-color: var(--v4-line); }
.testi-quote-mark { color: var(--v4-gold); opacity: 0.35; font-size: 26px; margin-bottom: 14px; }
.testi-stars { color: var(--v4-gold-light); font-size: 13px; display: flex; gap: 3px; margin-bottom: 16px; }
.testi-card blockquote { font-size: 15px; color: rgba(255, 255, 255, 0.82); line-height: 1.75; margin-bottom: 26px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--v4-gold-light), var(--v4-gold-dark));
    color: var(--v4-navy-950); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px;
}
.testi-name { font-size: 14.5px; font-weight: 600; color: #fff; }
.testi-role { font-size: 12px; color: rgba(255, 255, 255, 0.5); margin-top: 2px; }

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
.faq-v4-section { background: var(--v4-ivory); padding: 100px 0; }
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; }
.faq-heading h2 { font-size: clamp(28px, 3.2vw, 36px); margin-bottom: 16px; }
.faq-heading p { font-size: 15px; color: var(--v4-ink-soft); margin-bottom: 28px; max-width: 380px; }
.faq-call-btn { display: inline-flex; }

.faq-item { border-bottom: 1px solid var(--v4-line); }
.faq-item:first-child { border-top: 1px solid var(--v4-line); }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 22px 4px; text-align: left; font-size: 15.5px; font-weight: 600; color: var(--v4-navy-900);
}
.faq-item.active .faq-question { color: var(--v4-gold-dark); }
.faq-icon {
    flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--v4-line);
    display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--v4-navy-900);
    transition: transform 0.3s var(--v4-ease), background 0.3s, border-color 0.3s, color 0.3s;
}
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--v4-navy-900); border-color: var(--v4-navy-900); color: var(--v4-gold-light); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--v4-ease); }
.faq-answer-inner { padding: 0 4px 22px; font-size: 14.5px; color: var(--v4-ink-soft); line-height: 1.75; }

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-v4-section { background: #fff; padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
.contact-desc { font-size: 15.5px; color: var(--v4-ink-soft); margin: 16px 0 34px; max-width: 440px; }
.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
    width: 46px; height: 46px; border-radius: 12px; background: var(--v4-navy-900); color: var(--v4-gold-light);
    display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0;
}
.ci-text h4 { font-family: 'Inter', sans-serif; font-size: 14.5px; font-weight: 600; color: var(--v4-navy-900); margin-bottom: 3px; }
.ci-text p { font-size: 13.5px; color: var(--v4-ink-soft); line-height: 1.6; }

.contact-form-card {
    background: var(--v4-off-white); border: 1px solid var(--v4-line); border-radius: var(--v4-radius-lg);
    padding: 40px; position: relative;
}
.form-title { font-size: 22px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--v4-navy-900); margin-bottom: 8px; }
.req { color: #c0392b; }
.form-field input, .form-field select, .form-field textarea {
    width: 100%; padding: 13px 16px; border: 1.5px solid var(--v4-line); border-radius: var(--v4-radius-sm);
    background: #fff; font-size: 14.5px; color: var(--v4-ink); transition: border-color 0.25s, box-shadow 0.25s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none; border-color: var(--v4-gold); box-shadow: 0 0 0 3px var(--v4-gold-soft);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.err-msg { display: none; font-size: 12px; color: #c0392b; margin-top: 6px; }
.form-field.invalid input, .form-field.invalid select { border-color: #c0392b; }
.form-field.invalid .err-msg { display: block; }

.form-success {
    position: absolute; inset: 0; background: var(--v4-off-white); border-radius: var(--v4-radius-lg);
    display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px;
    opacity: 0; pointer-events: none; transform: scale(0.95); transition: opacity 0.3s, transform 0.3s;
}
.form-success.show { opacity: 1; pointer-events: auto; transform: scale(1); }
.success-icon { font-size: 52px; color: #2e9e5b; margin-bottom: 18px; }
.form-success h3 { font-size: 22px; margin-bottom: 10px; }
.form-success p { font-size: 14px; color: var(--v4-ink-soft); margin-bottom: 24px; max-width: 320px; }

/* ═══════════════════════════════════════════════
   NEWSLETTER BAND
═══════════════════════════════════════════════ */
.newsletter-band {
    background: var(--v4-navy-900);
    background-image: radial-gradient(circle at 85% 50%, rgba(201, 161, 92, 0.14), transparent 55%);
    border-top: 1px solid var(--v4-gold);
    border-bottom: 1px solid var(--v4-line-navy);
    padding: 56px 0;
}
.nb-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.nb-tag { margin-bottom: 10px; }
.nb-tag::before { background: var(--v4-gold-light); }
.nb-text h2 { font-size: clamp(22px, 2.4vw, 30px); color: #fff; margin-bottom: 10px; }
.nb-text p { font-size: 14.5px; color: rgba(255, 255, 255, 0.6); max-width: 440px; }
.nb-form { display: flex; gap: 10px; flex-shrink: 0; width: 420px; }
.nb-input {
    flex: 1; padding: 15px 20px; border-radius: 999px; border: 1.5px solid var(--v4-line-navy);
    background: rgba(255, 255, 255, 0.06); color: #fff; font-size: 14px;
}
.nb-input::placeholder { color: rgba(255, 255, 255, 0.42); }
.nb-input:focus { outline: none; border-color: var(--v4-gold); box-shadow: 0 0 0 3px rgba(201, 161, 92, 0.15); }
.nb-btn {
    display: flex; align-items: center; gap: 8px; padding: 15px 26px; border-radius: 999px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--v4-gold-light), var(--v4-gold) 65%, var(--v4-gold-dark));
    color: var(--v4-navy-950); font-weight: 700; font-size: 13.5px; white-space: nowrap;
    transition: transform 0.25s var(--v4-ease), box-shadow 0.25s var(--v4-ease);
}
.nb-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(201, 161, 92, 0.5); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.v4-footer { position: relative; background: var(--v4-navy-950); color: rgba(255, 255, 255, 0.7); overflow: hidden; }
.v4-footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 480px; pointer-events: none;
    background: radial-gradient(ellipse at 12% 0%, rgba(201, 161, 92, 0.12), transparent 55%);
}
.v4-footer::after {
    content: ''; position: absolute; bottom: 0; right: 0; width: 50%; height: 320px; pointer-events: none;
    background: radial-gradient(ellipse at 100% 100%, rgba(201, 161, 92, 0.06), transparent 60%);
}
.v4-footer-main { position: relative; padding: 84px 0 54px; }
.v4-footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 50px; }

.v4-footer-brand { padding-right: 20px; }
.v4-footer-logo { height: 44px; margin-bottom: 22px; filter: brightness(0) invert(1); }
.v4-footer-desc { font-size: 13.5px; line-height: 1.75; margin-bottom: 26px; max-width: 300px; color: rgba(255, 255, 255, 0.55); }

.v4-footer-social { display: flex; gap: 10px; margin-bottom: 28px; }
.v4-footer-social a {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--v4-line-navy);
    display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255, 255, 255, 0.75);
    transition: background 0.3s var(--v4-ease), border-color 0.3s var(--v4-ease), color 0.3s var(--v4-ease), transform 0.3s var(--v4-ease), box-shadow 0.3s var(--v4-ease);
}
.v4-footer-social a:hover {
    background: linear-gradient(135deg, var(--v4-gold-light), var(--v4-gold) 65%, var(--v4-gold-dark));
    border-color: transparent; color: var(--v4-navy-950); transform: translateY(-3px);
    box-shadow: 0 10px 22px -8px rgba(201, 161, 92, 0.55);
}

.v4-rera-badge {
    display: flex; align-items: center; gap: 14px; padding: 14px 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
    border: 1px solid var(--v4-line); border-radius: var(--v4-radius); width: fit-content;
}
.v4-rera-badge i {
    color: var(--v4-gold); font-size: 16px; width: 34px; height: 34px; flex-shrink: 0;
    border-radius: 50%; background: rgba(201, 161, 92, 0.12);
    display: flex; align-items: center; justify-content: center;
}
.v4-rera-badge span { display: block; font-size: 12.5px; font-weight: 600; color: #fff; }
.v4-rera-badge small { font-size: 11px; color: rgba(255, 255, 255, 0.5); letter-spacing: 0.02em; }

.v4-footer-col h4 {
    font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; color: #fff;
    margin-bottom: 22px; letter-spacing: 0.08em; text-transform: uppercase;
    position: relative; padding-top: 16px;
}
.v4-footer-col h4::before { content: ''; position: absolute; top: 0; left: 0; width: 24px; height: 2px; background: var(--v4-gold); }
.v4-footer-subhead { margin-top: 32px; }

.v4-footer-col a {
    position: relative; display: block; width: fit-content; font-size: 13.5px; padding: 7px 0;
    color: rgba(255, 255, 255, 0.62); transition: color 0.25s;
}
.v4-footer-col a::after {
    content: ''; position: absolute; left: 0; bottom: 4px; width: 0; height: 1px;
    background: var(--v4-gold); transition: width 0.3s var(--v4-ease);
}
.v4-footer-col a:hover { color: #fff; }
.v4-footer-col a:hover::after { width: 100%; }

.v4-footer-contact-links { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.v4-footer-contact-links a {
    display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: rgba(255, 255, 255, 0.75);
    transition: color 0.25s, transform 0.25s;
}
.v4-footer-contact-links a:hover { color: #fff; transform: translateX(3px); }
.v4-footer-contact-links i {
    color: var(--v4-gold); width: 32px; height: 32px; flex-shrink: 0; font-size: 13px;
    border-radius: 9px; background: rgba(201, 161, 92, 0.12);
    display: flex; align-items: center; justify-content: center;
}
.v4-footer-office {
    font-size: 12.5px; color: rgba(255, 255, 255, 0.45); line-height: 1.7;
    padding-top: 16px; border-top: 1px solid var(--v4-line-navy);
}

.v4-footer-bottom {
    position: relative;
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--v4-line-navy) 15%, var(--v4-line-navy) 85%, transparent) 1;
    padding: 24px 0;
}
.v4-footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.v4-footer-bottom-inner p { font-size: 12.5px; color: rgba(255, 255, 255, 0.4); }
.v4-footer-legal { display: flex; gap: 26px; }
.v4-footer-legal a { font-size: 12.5px; color: rgba(255, 255, 255, 0.4); transition: color 0.2s; }
.v4-footer-legal a:hover { color: var(--v4-gold-light); }

/* ═══════════════════════════════════════════════
   REEL MODAL
═══════════════════════════════════════════════ */
.ig-modal {
    position: fixed; inset: 0; background: rgba(7, 13, 27, 0.94); z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.ig-modal.open { opacity: 1; pointer-events: auto; }
.ig-modal-content { width: min(420px, 90vw); max-height: 88vh; border-radius: var(--v4-radius); overflow: hidden; }
.ig-modal-content video { width: 100%; height: 100%; max-height: 88vh; object-fit: contain; background: #000; }
.ig-modal-close {
    position: absolute; top: 24px; right: 28px; width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.1); border: 1px solid var(--v4-line-navy); color: #fff; font-size: 20px;
    display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.ig-modal-close:hover { background: var(--v4-gold); color: var(--v4-navy-950); }

/* ═══════════════════════════════════════════════
   BACK TO TOP / GENIE LAUNCHER
═══════════════════════════════════════════════ */
.back-top {
    position: fixed; bottom: 28px; right: 28px; width: 48px; height: 48px; border-radius: 50%;
    background: var(--v4-navy-900); color: var(--v4-gold-light); display: flex; align-items: center; justify-content: center;
    box-shadow: var(--v4-shadow-md); z-index: 500; opacity: 0; transform: translateY(10px); pointer-events: none;
    transition: opacity 0.3s, transform 0.3s, background 0.25s;
}
.back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-top:hover { background: var(--v4-gold); color: var(--v4-navy-950); }

.genie-launcher {
    position: fixed; bottom: 28px; left: 28px; z-index: 500;
    display: flex; align-items: center; gap: 10px; background: var(--v4-navy-950); border: 1px solid var(--v4-line);
    border-radius: 999px; padding: 10px 18px 10px 10px; box-shadow: var(--v4-shadow-md);
    transition: transform 0.25s var(--v4-ease), box-shadow 0.25s;
}
.genie-launcher:hover { transform: translateY(-3px); box-shadow: var(--v4-shadow-lg); }
.genie-launcher .genie-mark { width: 32px; height: 32px; border-radius: 50%; }
.genie-launcher span { font-size: 13px; font-weight: 600; color: #fff; }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL (GSAP-driven, CSS fallback state)
═══════════════════════════════════════════════ */
[data-reveal], [data-reveal-text] { opacity: 1; }
.js-reveal-ready [data-reveal] { opacity: 0; transform: translateY(16px); }
.js-reveal-ready [data-reveal-stagger] > * { opacity: 0; transform: translateY(16px); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .js-reveal-ready [data-reveal] { opacity: 1; transform: none; }
    .js-reveal-ready [data-reveal-stagger] > * { opacity: 1; transform: none; }
    .cs-bg { transition: none; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */

/* Short viewports (small laptop windows, browser chrome eating vertical
   space): compact the hero's vertical rhythm so nothing needs to render
   above the top padding line and get clipped by .hero-v4's overflow:hidden. */
@media (min-width: 981px) and (max-height: 760px) {
    .hero-v4 { min-height: 560px; }
    .hv4-panel-text { padding-top: calc(var(--v4-header-h) + 12px); padding-bottom: 20px; }
    .hv4-eyebrow { margin-bottom: 14px; }
    .hv4-title { font-size: clamp(32px, 4.4vw, 52px); margin-bottom: 16px; }
    .hv4-sub { margin-bottom: 20px; font-size: 15.5px; }
    .hv4-actions { margin-bottom: 20px; }
    .hv4-tagline { display: none; }
    .hv4-trust-card { bottom: 90px; padding: 12px 18px; gap: 12px; }
    .hv4-trust-item strong { font-size: 16px; }
}

@media (max-width: 1080px) {
    .faq-layout, .contact-grid { grid-template-columns: 1fr; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
    .bento-image { grid-column: span 2; grid-row: span 2; }
    .bento-intro { grid-column: span 2; grid-row: span 1; }
    .v4-footer-inner { grid-template-columns: 1fr 1fr; }
    .nb-inner { flex-direction: column; align-items: flex-start; }
    .nb-form { width: 100%; }
}

@media (max-width: 980px) {
    .v4h-links, .v4h-cta { display: none; }
    .v4h-burger { display: flex; }
    .v4h-mobile-phone { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; }

    /* Call icon left, logo dead-center, burger right — a 3-col grid
       centers the logo exactly regardless of how wide the icons are,
       which plain flex space-between can't guarantee. */
    .v4h-nav-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; column-gap: 12px; }
    .v4h-mobile-phone { order: 1; justify-self: start; }
    .v4h-logo { order: 2; justify-self: center; }
    .v4h-burger { order: 3; justify-self: end; }
    .v4h-strip-left span:last-child { display: none; }
    .v4h-strip-wa { display: none; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: 1fr; gap: 32px; }
    .testi-grid { grid-template-columns: 1fr; }

    /* Hero: split-screen collapses to a stacked text-over-media layout */
    .hv4-split { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
    .hv4-panel-text { padding: 120px 24px 40px; order: 1; }
    .hv4-panel-media { clip-path: none; order: 2; min-height: 320px; }
    .hero-v4 { height: auto; min-height: 100vh; }
    .hv4-tagline { display: none; }
    .hv4-media-tag { top: 20px; right: 20px; font-size: 11.5px; padding: 7px 14px; }
    .hv4-trust-card { left: 20px; right: 20px; bottom: 70px; padding: 14px; gap: 10px; }
    .hv4-trust-item strong { font-size: 16px; }
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }

    /* Header: drop the info strip entirely so it can't wrap to
       multiple lines and inflate the fixed header's height over
       the hero heading — nav row alone stays compact on mobile. */
    .v4h-strip { display: none; }
    .v4h.scrolled .v4h-strip { margin-top: 0; }
    .v4h-nav { background: rgba(7, 13, 27, 0.88); }
    .v4h-nav-inner { padding: 13px 20px; }
    .v4h-logo img { height: 38px; }

    .hero-stat-bar { margin-top: -44px; }
    .hsb-inner { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; padding: 24px 20px; }
    .hsb-item:nth-child(2n) { border-right: none; }
    .hsb-item:nth-child(-n+2) { border-bottom: 1px solid var(--v4-line-navy); padding-bottom: 14px; }
    .projects-grid { grid-template-columns: 1fr; }
    .projects-header { flex-direction: column; align-items: flex-start; }
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .bento-image { grid-column: span 1; grid-row: span 1; }
    .bento-image img { height: 280px; }
    .bento-intro { grid-column: span 1; }
    .bento-feat { padding: 20px; }
    .v4-footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .genie-promo-inner { flex-direction: column; text-align: center; gap: 32px; }
    .genie-promo-chips { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .nb-form { flex-direction: column; }
    .nb-btn { justify-content: center; }
    .genie-launcher span { display: none; }
    .genie-launcher { padding: 10px; }
    .hv4-actions { flex-direction: column; width: 100%; }
    .hv4-actions .btn { width: 100%; }
}
