/**
 * ============================================================================
 * ZYROVA DIGITAL : 8K LUXURY ARCHITECTURE (OLD MONEY THEME)
 * Project: Reach Forever - Master Stylesheet
 * Architecture: CSS Grid/Flexbox, True Glassmorphism, GPU-Accelerated Keyframes
 * Theme Injection: Gold (#D4AF37), Olive (#556B2F), Beige (#FDFDFB)
 * ============================================================================
 */

/* ==========================================================================
   1. GOD-TIER VARIABLES & COLOR THEORY
   ========================================================================== */
:root {
    --bg-base: #FDFDFB;       
    --bg-surface: #FFFFFF;    
    --bg-elevated: #F4F4F0;   
    --bg-dark: #0A0B0E;       
    
    --glass-nav: rgba(253, 253, 251, 0.85); 
    --glass-card: rgba(255, 255, 255, 0.65); 
    --glass-heavy: rgba(255, 255, 255, 0.95);
    --glass-dark: rgba(10, 11, 14, 0.85);
    
    --accent-olive: #556B2F;  
    --accent-gold: #D4AF37;   
    --accent-red: #8B0000;    
    
    --gradient-luxury: linear-gradient(135deg, var(--accent-olive) 0%, var(--accent-gold) 100%);
    
    --text-dark: #1A1C20;     
    --text-muted: #6B7280;    
    --text-light: #FFFFFF;    
    
    --border-soft: rgba(0, 0, 0, 0.05);
    --border-glass: rgba(255, 255, 255, 0.9); 
    --border-gold: rgba(212, 175, 55, 0.4);
    --border-dark: rgba(255, 255, 255, 0.1);
    
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.03);
    --shadow-glass: 0 20px 40px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    --shadow-heavy: 0 40px 80px rgba(0, 0, 0, 0.1);
    --shadow-glow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Outfit', sans-serif;
    
    --radius-pill: 100px; 
    --radius-lg: 40px; 
    --radius-md: 24px;
    
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    --z-bg: 0; --z-base: 10; --z-nav: 1000; --z-modal: 99999; --z-cursor: 999999;
}

/* ==========================================================================
   2. BARE METAL RESET & DOCUMENT SETUP
   ========================================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { width: 100%; overflow-x: hidden; background-color: var(--bg-base); scroll-behavior: auto; }
body { font-family: var(--font-sans); color: var(--text-dark); -webkit-font-smoothing: antialiased; line-height: 1.6; cursor: none; position: relative; }

::selection { background-color: var(--accent-gold); color: var(--text-light); }
::-webkit-scrollbar { width: 6px; } 
::-webkit-scrollbar-track { background: var(--bg-base); } 
::-webkit-scrollbar-thumb { background: var(--accent-gold); border-radius: 10px; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.05; letter-spacing: -0.01em; color: var(--text-dark); margin-bottom: 0.5em; }
p, a, span, button, input { font-family: var(--font-sans); }
.italic-serif { font-family: var(--font-serif); font-style: italic; color: var(--accent-olive); font-weight: 500;}
a { text-decoration: none; color: inherit; } ul { list-style: none; }

.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 5%; position: relative; z-index: var(--z-base); }

/* COMPACTED PADDING SO SECTIONS AREN'T TOO BIG */
.section-pad { padding: 4rem 0; position: relative; z-index: var(--z-base); overflow: hidden; }
.text-center { text-align: center; }

/* MEDIUM FIT TYPOGRAPHY FOR HERO */
.title-massive { font-size: clamp(3rem, 5.5vw, 5.5rem); margin-bottom: 15px; line-height: 1.05; font-weight: 700; color: var(--text-dark);}
.title-lg { font-size: clamp(2.5rem, 4.5vw, 4.5rem); margin-bottom: 20px; font-weight: 700;}
.tag-pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; background: var(--bg-surface); border: 1px solid var(--border-gold); border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-olive); box-shadow: var(--shadow-float); margin-bottom: 20px; }

/* ==========================================================================
   3. MAGNETIC CURSOR PHYSICS
   ========================================================================== */
#cursorDot { position: fixed; top: 0; left: 0; width: 10px; height: 10px; background: var(--accent-olive); border-radius: 50%; pointer-events: none; z-index: var(--z-cursor); transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, opacity 0.2s; box-shadow: 0 0 15px var(--accent-olive);}
#cursorRing { position: fixed; top: 0; left: 0; width: 50px; height: 50px; border: 1px solid var(--accent-olive); border-radius: 50%; pointer-events: none; z-index: calc(var(--z-cursor) - 1); transform: translate(-50%, -50%); transition: width 0.4s, height 0.4s, background 0.4s, border-color 0.4s, backdrop-filter 0.4s; display: flex; align-items: center; justify-content: center; overflow: hidden; }

body.hover-magnetic #cursorRing { width: 90px; height: 90px; background: rgba(85, 107, 47, 0.05); border-color: transparent; backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);}
body.hover-magnetic #cursorDot { opacity: 0; }
body.hover-video #cursorRing { width: 100px; height: 100px; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border-color: transparent; box-shadow: var(--shadow-float); }
body.hover-video #cursorRing::after { content: 'PLAY'; font-family: var(--font-sans); font-size: 1rem; font-weight: 800; letter-spacing: 2px; color: var(--accent-olive); }
body.hover-video #cursorDot { opacity: 0; }
@media (max-width: 1024px) { #cursorDot, #cursorRing { display: none !important; } body, a, button { cursor: auto !important; } }

.magnetic-wrap { display: inline-block; position: relative; z-index: 10; cursor: none; padding: 10px; margin: -10px; }
.magnetic-inner { display: inline-block; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); pointer-events: auto; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 36px; font-size: 1rem; font-weight: 700; border-radius: var(--radius-pill); transition: var(--transition-bounce); border: none; cursor: pointer; outline: none; text-transform: uppercase; letter-spacing: 1px;}
.btn-olive { background: var(--accent-olive); color: var(--text-light); box-shadow: 0 10px 25px rgba(85, 107, 47, 0.25); }
.magnetic-wrap:hover .btn-olive { background: #3a4a1c; transform: translateY(-5px); box-shadow: 0 15px 35px rgba(85, 107, 47, 0.4); }
.btn-glass { background: var(--glass-heavy); backdrop-filter: blur(20px); color: var(--text-dark); border: 1px solid var(--border-gold); box-shadow: var(--shadow-float); }
.magnetic-wrap:hover .btn-glass { background: var(--accent-gold); color: var(--text-light); border-color: transparent;}

/* ==========================================================================
   4. SMART STICKY CTA
   ========================================================================== */
.sticky-cta { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px); opacity: 0; background: var(--glass-heavy); backdrop-filter: blur(20px); border: 1px solid var(--border-gold); padding: 8px 8px 8px 25px; border-radius: 100px; display: flex; align-items: center; gap: 20px; z-index: 99990; box-shadow: var(--shadow-heavy); transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1); pointer-events: none;}
.sticky-cta.visible { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto;}
.sc-text { font-weight: 700; color: var(--text-dark); font-size: 0.95rem;}
@media (max-width: 768px) { .sticky-cta { bottom: 90px; width: 90%; justify-content: space-between; padding: 10px; } .sc-text { font-size: 0.85rem; margin-left: 10px;} .btn { padding: 12px 20px; font-size: 0.85rem;} }

/* ==========================================================================
   5. PRELOADER (Instant Fade)
   ========================================================================== */
#preloader { position: fixed; inset: 0; background: var(--bg-base); z-index: var(--z-cursor); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.pl-logo { font-family: var(--font-serif); font-size: clamp(3rem, 6vw, 5rem); font-weight: 700; color: var(--text-dark); overflow: hidden; letter-spacing: -1px; }
.pl-logo span { display: inline-block; transform: translateY(100%); }
.pl-progress-box { width: 300px; height: 2px; background: var(--border-soft); margin-top: 40px; position: relative; overflow: hidden; }
#pl-bar { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: var(--accent-gold); }

/* ==========================================================================
   6. HEADER (GOLDEN GLOWING BORDER, NO TEXT LOGO)
   ========================================================================== */
.header-wrap { position: fixed; top: 15px; left: 0; width: 100%; z-index: var(--z-nav); display: flex; justify-content: center; transition: top 0.4s ease; pointer-events: none;}
.navbar { 
    pointer-events: auto; width: 92%; max-width: 1250px; height: 70px; 
    background: var(--glass-nav); 
    backdrop-filter: blur(35px) saturate(200%); -webkit-backdrop-filter: blur(35px) saturate(200%); 
    border-radius: var(--radius-pill); 
    /* GOLDEN GLOWING BORDER */
    border: 1px solid var(--accent-gold); 
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), inset 0 0 15px rgba(212, 175, 55, 0.1); 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 0 10px 0 25px; transition: var(--transition-smooth); 
}

.nav-brand { display: flex; align-items: center; height: 100%; pointer-events: auto; }
/* Logo strictly from Admin panel */
.nav-brand img { max-height: 45px; width: auto; object-fit: contain; }

.nav-links { display: flex; gap: 5px; list-style: none; }
.nav-pill { padding: 10px 24px; border-radius: var(--radius-pill); color: var(--text-dark); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; transition: 0.3s; background: transparent; border: 1px solid transparent; pointer-events: auto;}
.nav-pill:hover { color: var(--accent-olive); background: rgba(212, 175, 55, 0.1); border-color: var(--accent-gold); }

.nav-btn-wrap .btn { padding: 10px 24px; font-size: 0.85rem; }
@media (max-width: 1024px) { .nav-links, .nav-btn-wrap { display: none; } .navbar { justify-content: center; padding: 0 30px; height: 65px;} }

/* ==========================================================================
   7. HERO SECTION (MEDIUM FIT & FLOATING ICONS)
   ========================================================================== */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; padding-top: 100px; padding-bottom: 20px; z-index: 5; overflow: hidden;}

#particle-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.6; pointer-events: none;}

/* Floating Social Graphics (Not Photos) */
.hero-social-float {
    position: absolute; width: 60px; height: 60px; border-radius: 15px; 
    background: var(--glass-heavy); backdrop-filter: blur(15px); border: 1px solid var(--border-gold); 
    display: flex; justify-content: center; align-items: center; font-size: 2rem; 
    box-shadow: var(--shadow-float); z-index: 5;
}
.hsf-fb { top: 15%; left: 5%; color: #1877F2; }
.hsf-ig { bottom: 15%; right: 5%; color: #E4405F; }

.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; width: 100%; position: relative; z-index: 2; align-items: center;}
.hero-text { max-width: 100%; position: relative; z-index: 5;}

.hero-desc { font-size: clamp(1.05rem, 1.2vw, 1.2rem); color: var(--text-muted); line-height: 1.6; margin-bottom: 30px; font-weight: 400; max-width: 500px; border-left: 3px solid var(--accent-gold); padding-left: 20px;}
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }

/* Faster Text Rotator */
.text-rotator-wrap { display: inline-block; position: relative; height: 1.05em; vertical-align: bottom; overflow: hidden; padding-bottom: 5px;}
.text-rotator { display: inline-flex; flex-direction: column; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.tr-word { display: block; height: 1.05em; font-family: var(--font-serif); font-style: italic; font-weight: 600;}

/* HERO RIGHT: The Beautiful iPhone Review Player */
.hero-visuals { display: flex; justify-content: center; align-items: center; width: 100%; position: relative; perspective: 1500px; z-index: 10;}

.review-indicator { position: absolute; left: -60px; top: 15%; background: var(--glass-heavy); backdrop-filter: blur(10px); padding: 8px 15px; border-radius: 100px; border: 1px solid var(--border-gold); box-shadow: var(--shadow-float); display: flex; align-items: center; gap: 8px; z-index: 20; }
.ri-dot { width: 10px; height: 10px; background: var(--accent-olive); border-radius: 50%; animation: blink 1.5s infinite;}
.ri-text { font-family: var(--font-sans); font-size: 0.85rem; font-weight: 700; color: var(--text-dark);}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* iPhone acts like an Apple-style scroll model */
.iphone-mockup { position: relative; width: 280px; height: 560px; background: #111; border-radius: 45px; border: 10px solid #222; box-shadow: var(--shadow-heavy); overflow: hidden; transform: rotateY(-15deg) rotateX(5deg); transition: transform 0.5s var(--ease-smooth); z-index: 5; cursor: pointer;}
.iphone-mockup:hover { transform: rotateY(0deg) rotateX(0deg) scale(1.02); }
.iphone-mockup::before { content:''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 110px; height: 22px; background: #222; border-radius: 0 0 20px 20px; z-index: 20;}

/* Audio Toggle Badge */
.audio-indicator { position: absolute; top: 30px; right: 15px; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); color: #FFF; padding: 5px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; z-index: 20; display: flex; align-items: center; gap: 5px; border: 1px solid rgba(255,255,255,0.2); pointer-events: none;}

.iphone-screen { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;}

.iphone-ui { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 40%); z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 25px 20px; pointer-events: none;}
.iu-client { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: #FFF; margin-bottom: 5px;}
.iu-stars { color: var(--accent-gold); font-size: 1rem; margin-bottom: 10px;}

@media (max-width: 1024px) { 
    .hero { min-height: 100vh; padding-bottom: 60px; padding-top: 120px;}
    .hero-grid { grid-template-columns: 1fr; text-align: center; justify-content: center; gap: 40px;} 
    .hero-text { margin: 0 auto; display: flex; flex-direction: column; align-items: center;} 
    .hero-desc { border: none; padding: 0; }
    .hero-actions { justify-content: center; } 
    .hero-visuals { margin-top: 20px; perspective: none; height: auto; padding: 40px 0;}
    .iphone-mockup { transform: none !important; width: 260px; height: 520px;}
    .review-indicator { left: 50%; transform: translateX(-50%); top: -20px; animation: none;}
    .hero-social-float { display: none; }
}

/* ==========================================================================
   8. SECTION 2: SOCIAL ANIMATIONS & PURE CSS 3D CYLINDER
   ========================================================================== */
.section-2-wrapper {
    background: var(--bg-elevated); border-radius: 60px; margin: 0 2%; 
    padding: 6rem 5%; position: relative; border: 1px solid var(--border-soft); 
    box-shadow: var(--shadow-float); overflow: hidden; display: grid; 
    grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}

/* Left: Social Animations */
.s2-left { display: flex; flex-direction: column; justify-content: center; }
.s2-social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; }
.s2-social-card { background: var(--bg-surface); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 30px; display: flex; align-items: center; gap: 15px; box-shadow: var(--shadow-soft); transition: 0.3s; }
.s2-social-card:hover { transform: translateY(-5px); border-color: var(--accent-gold); box-shadow: var(--shadow-heavy); }
.s2-icon { font-size: 2.5rem; }

/* Right: Pure CSS 3D Rotating Cylinder */
.s2-right { display: flex; justify-content: center; align-items: center; height: 400px; perspective: 1200px; cursor: none;}

.cylinder-carousel { 
    width: 250px; height: 350px; position: relative; 
    transform-style: preserve-3d; 
    animation: rotateCyl 25s infinite linear; 
}
@keyframes rotateCyl { 
    0% { transform: rotateY(0deg); } 
    100% { transform: rotateY(-360deg); } 
}

.cylinder-face { position: absolute; width: 250px; height: 350px; left: 0; top: 0; border-radius: 20px; overflow: hidden; border: 2px solid var(--border-gold); box-shadow: var(--shadow-heavy); backface-visibility: hidden; background: #000; }
.cylinder-face img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8); transition: 0.3s;}
.cylinder-face:hover img { filter: brightness(1.1); transform: scale(1.05); }

.cylinder-face-ui { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); color: #FFF; font-family: var(--font-sans); font-weight: 700; font-size: 1.1rem; }

/* Exact Mathematical distribution for 6 faces */
.cf-1 { transform: rotateY(0deg) translateZ(240px); }
.cf-2 { transform: rotateY(60deg) translateZ(240px); }
.cf-3 { transform: rotateY(120deg) translateZ(240px); }
.cf-4 { transform: rotateY(180deg) translateZ(240px); }
.cf-5 { transform: rotateY(240deg) translateZ(240px); }
.cf-6 { transform: rotateY(300deg) translateZ(240px); }

@media (max-width: 1024px) {
    .section-2-wrapper { grid-template-columns: 1fr; text-align: center; }
    .s2-social-grid { justify-content: center; }
    .s2-right { margin-top: 40px; height: 350px; }
    .cylinder-carousel { width: 200px; height: 280px; }
    .cylinder-face { width: 200px; height: 280px; }
    .cf-1 { transform: rotateY(0deg) translateZ(180px); }
    .cf-2 { transform: rotateY(60deg) translateZ(180px); }
    .cf-3 { transform: rotateY(120deg) translateZ(180px); }
    .cf-4 { transform: rotateY(180deg) translateZ(180px); }
    .cf-5 { transform: rotateY(240deg) translateZ(180px); }
    .cf-6 { transform: rotateY(300deg) translateZ(180px); }
}

/* ==========================================================================
   9. APPLE SCROLLYTELLING TEXT REVEAL
   ========================================================================== */
.story-section { background: var(--bg-base); display: flex; align-items: center; justify-content: center; text-align: center; z-index: 5; position: relative; overflow: hidden; padding: 10rem 5%;}

.story-p { 
    font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 600; 
    line-height: 1.2; margin-bottom: 80px; max-width: 1000px; margin-inline: auto; position: relative; z-index: 2;
    /* Apple Scrubbing base CSS */
    background: linear-gradient(to right, var(--text-dark) 50%, rgba(0,0,0,0.1) 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    color: transparent;
    will-change: background-position;
}

/* ==========================================================================
   10. DIGITAL MARKETING & WEB DEV ARSENAL (COMPACT, GRAPHIC REVEALS)
   ========================================================================== */
.arsenal-section { background: var(--bg-elevated); border-radius: 60px; margin: 0 2%; padding: 6rem 5%; position: relative; border: 1px solid var(--border-soft); box-shadow: var(--shadow-float); overflow: hidden;}

/* 4 columns to perfectly fit Web Dev */
.ars-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1400px; margin: 0 auto; position: relative; z-index: 2;}

.ars-card { background: var(--bg-surface); padding: 40px; border-radius: var(--radius-lg); border: 1px solid var(--border-soft); box-shadow: var(--shadow-soft); display: flex; flex-direction: column; align-items: flex-start; transition: var(--transition-smooth); position: relative; overflow: hidden; min-height: 450px;}
.ars-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-heavy); border-color: var(--accent-gold); }

.ars-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 20px; box-shadow: var(--shadow-soft); background: var(--bg-surface); z-index: 2; position: relative;}
.icon-fb { color: #0055FF; border: 1px solid rgba(0,85,255,0.2);}
.icon-ig { color: var(--accent-gold); border: 1px solid var(--border-gold);}
.icon-seo { color: var(--accent-red); border: 1px solid rgba(139,26,26,0.3);}
.icon-web { color: var(--text-dark); border: 1px solid var(--border-soft);}

.ars-title { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 10px; line-height: 1.1; z-index: 2; position: relative;}
.ars-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; z-index: 2; position: relative; margin-bottom: 30px;}

/* Rich 8K Image Containers - Always visible, animates in on scroll via GSAP */
.ars-img-wrap { width: 100%; height: 200px; border-radius: 16px; overflow: hidden; margin-top: auto; position: relative; z-index: 1; box-shadow: var(--shadow-float); border: 1px solid var(--border-soft);}
.ars-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease;}
.ars-card:hover .ars-img-wrap img { transform: scale(1.08); }

@media (max-width: 1024px) { .ars-container { grid-template-columns: 1fr; } .ars-card { min-height: 400px; } }

/* ==========================================================================
   11. APPLE ANIMATED PARALLAX STATS
   ========================================================================== */
.parallax-break { position: relative; width: 96%; max-width: 1600px; margin: 6rem auto; height: 50vh; border-radius: 60px; overflow: hidden; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-heavy); z-index: 5;}
.px-img { position: absolute; inset: 0; width: 100%; height: 130%; object-fit: cover; filter: brightness(0.4) saturate(1.2); transform: scale(1.1); z-index: 1;}
.px-content { position: relative; z-index: 2; text-align: center; color: #FFF; padding: 0 20px; opacity: 0; transform: translateY(50px); transition: all 1s ease;}
.px-content.apple-fade { opacity: 1; transform: translateY(0); }
.px-content h2 { font-family: var(--font-serif); font-size: clamp(3.5rem, 7vw, 7rem); color: #FFF; line-height: 1; margin-bottom: 10px; text-shadow: 0 20px 40px rgba(0,0,0,0.8);}
.px-content p { font-size: 1.2rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--accent-gold); text-shadow: 0 10px 20px rgba(0,0,0,0.8);}
@media (max-width: 768px) { .parallax-break { height: 40vh; border-radius: 30px; margin: 4rem 2%; width: 96%; } }

/* ==========================================================================
   12. COMPACT PURE CODE INDIA MAP (NO PHOTOS)
   ========================================================================== */
.map-section { background: var(--bg-surface); padding: 4rem 0; position: relative; z-index: 5; border-radius: 60px; margin: 0 2%; border: 1px solid var(--border-soft); box-shadow: var(--shadow-soft); overflow: hidden;}

.india-map-wrapper { position: relative; width: 100%; max-width: 400px; aspect-ratio: 1; margin: 0 auto; display: flex; align-items: center; justify-content: center;}

/* Pure CSS Silhouette Outline */
.india-silhouette { position: absolute; width: 100%; height: 100%; background: url('https://upload.wikimedia.org/wikipedia/commons/b/b3/Outline_map_of_India.svg') no-repeat center center; background-size: contain; opacity: 0.15; filter: invert(1) sepia(1) saturate(5) hue-rotate(45deg); z-index: 1;}

/* Glowing Pins */
.map-node { position: absolute; width: 15px; height: 15px; background: var(--accent-gold); border-radius: 50%; box-shadow: 0 0 20px var(--accent-gold); transform: translate(-50%, -50%); z-index: 10; cursor: pointer;}
.map-node::before { content: ''; position: absolute; inset: -10px; border-radius: 50%; border: 2px solid var(--accent-gold); animation: pulseGlobe 2s infinite; }
@keyframes pulseGlobe { 0% { transform: scale(0.5); opacity: 1; } 100% { transform: scale(2.5); opacity: 0; } }

.node-card { position: absolute; top: -50px; left: 50%; transform: translateX(-50%); background: var(--glass-heavy); backdrop-filter: blur(15px); padding: 8px 12px; border-radius: 10px; border: 1px solid var(--border-gold); font-size: 0.8rem; font-weight: 700; white-space: nowrap; box-shadow: var(--shadow-float); opacity: 0; transition: 0.3s; pointer-events: none; color: var(--text-dark);}
.map-node:hover .node-card { opacity: 1; top: -40px; }

/* ==========================================================================
   13. COMPACT BENTO BOX (Replaces "Why We Win")
   ========================================================================== */
.apple-bento-section { padding: 4rem 0; position: relative; z-index: 5; background: var(--bg-base);}
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 250px; gap: 20px; margin-top: 30px; }

.bento-item { position: relative; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--border-soft); transition: var(--transition-smooth); cursor: none;}
.bento-item:hover { transform: translateY(-10px); box-shadow: var(--shadow-heavy); border-color: var(--accent-gold);}
.bento-large { grid-column: span 2; grid-row: span 2; }

.bento-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); transition: transform 0.8s ease;}
.bento-item:hover .bento-bg { transform: scale(1.05); filter: brightness(0.5);}

.bento-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); color: #FFF; display: flex; flex-direction: column; justify-content: flex-end;}
.bento-content h3 { font-family: var(--font-serif); font-size: 2rem; color: #FFF; margin-bottom: 5px; line-height: 1.1;}
.bento-large .bento-content h3 { font-size: 3.5rem; color: var(--accent-gold);}
.bento-content p { font-size: 1rem; color: rgba(255,255,255,0.9); line-height: 1.5; font-weight: 400;}

@media (max-width: 1024px) { .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 300px;} .bento-large { grid-column: span 1; grid-row: span 1; } }

/* ==========================================================================
   14. BEFORE VS AFTER SLIDER (FLAWLESS CLIP-PATH & SEPARATE IMAGES)
   ========================================================================== */
.xray-section { background: var(--bg-base); z-index: 5; position: relative;}
.ba-container { position: relative; width: 100%; max-width: 1000px; margin: 0 auto; height: 450px; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-surface); cursor: col-resize; box-shadow: var(--shadow-heavy); border: 1px solid var(--border-soft); touch-action: pan-y; }

/* Flawless Image Stacking (One old, One new) */
.ba-img-after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;}
.ba-img-before { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; clip-path: inset(0 50% 0 0); /* JS manipulates this */ }

.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: #FFF; z-index: 3; transform: translateX(-50%); pointer-events: none; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 15px rgba(0,0,0,0.2);}
.ba-handle-btn { width: 60px; height: 60px; background: #FFF; border: 1px solid var(--border-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent-olive); font-size: 1.8rem; box-shadow: 0 10px 30px rgba(0,0,0,0.15); backdrop-filter: blur(10px);}

.ba-labels { position: absolute; bottom: 30px; left: 30px; right: 30px; display: flex; justify-content: space-between; z-index: 4; pointer-events: none; }
.ba-label { background: rgba(255,255,255,0.95); padding: 12px 25px; border-radius: var(--radius-pill); font-family: var(--font-sans); font-size: 0.95rem; font-weight: 700; color: var(--text-dark); box-shadow: var(--shadow-float); border: 1px solid var(--border-soft); transition: 0.3s;}
.ba-label.after { background: var(--accent-olive); color: var(--text-light); border-color: var(--accent-olive); }
@media (max-width: 768px) { .ba-container { height: 350px; border-radius: 30px;} .ba-labels { bottom: 15px; left: 10px; right: 10px; } .ba-label { padding: 8px 12px; font-size: 0.8rem; } .ba-handle-btn { width: 45px; height: 45px; font-size: 1.2rem; } }

/* ==========================================================================
   15. REELIFY TESTIMONIAL SWIPER (UNBLURRED, FULL VISIBILITY)
   ========================================================================== */
.reels-section { background: var(--bg-elevated); padding: 6rem 0; position: relative; z-index: 5; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft);}

.reviews-label { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 40px; font-family: var(--font-serif); font-size: 2.5rem; font-style: italic; color: var(--accent-olive); font-weight: 600;}
.rl-dot { width: 15px; height: 15px; border-radius: 50%; background: var(--accent-olive); animation: rlaPulse 2s infinite;}
@keyframes rlaPulse { 0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(74, 93, 35, 0.7); } 70% { transform: scale(1.1); opacity: 0.5; box-shadow: 0 0 0 15px rgba(74, 93, 35, 0); } 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(74, 93, 35, 0); } }

.swiper-container-reels { width: 100%; max-width: 1400px; margin: 0 auto; overflow: visible; padding: 20px 0;}

/* Fully visible, bright videos */
.swiper-slide-reel { width: 320px; height: 580px; border-radius: 30px; overflow: hidden; border: 1px solid var(--border-soft); background: #000; position: relative; cursor: none; box-shadow: var(--shadow-float); transition: 0.5s; transform: scale(0.95); opacity: 1; }
.swiper-slide-active { transform: scale(1.05); border-color: var(--accent-gold); box-shadow: var(--shadow-heavy); z-index: 10; }

.reel-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }

.reel-ui { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 40%); padding: 30px 20px; display: flex; flex-direction: column; justify-content: flex-end; pointer-events: none; }
.reel-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.reel-avatar { width: 45px; height: 45px; border-radius: 50%; border: 2px solid var(--accent-gold); object-fit: cover; }
.reel-username { font-family: var(--font-serif); font-size: 1.3rem; color: #FFF; font-weight: 600; text-shadow: 0 2px 4px rgba(0,0,0,0.5);}
.reel-caption { font-size: 0.95rem; color: rgba(255,255,255,0.95); line-height: 1.5; font-weight: 400; text-shadow: 0 2px 4px rgba(0,0,0,0.5);}
@media (max-width: 768px) { .swiper-slide-reel { width: 80vw; height: 500px; } }

/* ==========================================================================
   16. FULLSCREEN REELS MODAL (TIKTOK STYLE)
   ========================================================================== */
.reels-modal { position: fixed; inset: 0; background: #000; z-index: var(--z-modal); display: flex; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.reels-modal.open { opacity: 1; pointer-events: auto; }

.rm-close { position: absolute; top: 30px; right: 30px; width: 50px; height: 50px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #FFF; font-size: 1.5rem; cursor: pointer; border: 1px solid rgba(255,255,255,0.2); z-index: 10; transition: 0.3s;}
.rm-close:hover { background: rgba(255,255,255,0.3); transform: rotate(90deg); }

.rm-container { width: 100%; max-width: 450px; height: 100vh; overflow-y: scroll; scroll-snap-type: y mandatory; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; }
.rm-container::-webkit-scrollbar { display: none; }

.rm-slide { width: 100%; height: 100vh; scroll-snap-align: start; position: relative; background: #111; }
.rm-video { width: 100%; height: 100%; object-fit: cover; }

.rm-ui { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 40%); padding: 30px 20px; display: flex; flex-direction: column; justify-content: flex-end; pointer-events: none;}
.rm-author { display: flex; align-items: center; gap: 12px; margin-bottom: 15px;}
.rm-avatar { width: 55px; height: 55px; border-radius: 50%; border: 3px solid var(--accent-gold); object-fit: cover;}
.rm-details { display: flex; flex-direction: column;}
.rm-name { font-family: var(--font-serif); font-size: 1.6rem; color: #FFF; font-weight: 700;}
.rm-niche { font-size: 0.85rem; color: var(--accent-gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px;}
.rm-caption { font-size: 1rem; color: rgba(255,255,255,0.95); line-height: 1.5; font-weight: 400;}

/* ==========================================================================
   17. NEW "RUSH" MASSIVE SECTION (SLEEK & COMPACT - 50vh)
   ========================================================================== */
.rush-section { background: var(--bg-dark); color: var(--text-light); padding: 6rem 5%; height: 50vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; z-index: 5; border-radius: 60px; margin: 0 2%; border: 1px solid rgba(255,255,255,0.1); box-shadow: var(--shadow-heavy);}
.rush-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15), transparent 70%); pointer-events: none; z-index: 0; }

.rush-container { position: relative; z-index: 2; }
.rush-title { font-family: var(--font-serif); font-size: clamp(3rem, 6vw, 6.5rem); line-height: 1.1; margin-bottom: 15px; background: var(--gradient-luxury); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.rush-desc { font-family: var(--font-sans); font-size: clamp(1rem, 1.5vw, 1.2rem); color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; line-height: 1.6;}

/* ==========================================================================
   18. ABSOLUTE Z-INDEX SHIELDED FOOTER
   ========================================================================== */
.main-wrapper { position: relative; z-index: 2; background-color: var(--bg-base); border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; box-shadow: 0 40px 100px rgba(0,0,0,0.3); margin-bottom: 85vh; }
.footer-fixed { position: fixed; bottom: 0; left: 0; width: 100%; height: 85vh; background: var(--bg-dark); color: var(--text-light); z-index: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 5%; overflow: hidden;}

.footer-fixed::before { content:''; position:absolute; top:-20%; left:-10%; width: 500px; height: 500px; background: rgba(212, 175, 55, 0.15); border-radius: 50%; filter: blur(80px); pointer-events: none;}

.f-cta { max-width: 1000px; margin: 0 auto; position: relative; z-index: 2;}
.f-cta h2 { font-family: var(--font-serif); font-size: clamp(3.5rem, 8vw, 7rem); margin-bottom: 20px; line-height: 1; color: var(--text-light);}
.f-cta p { font-size: 1.2rem; color: #A0A0A0; margin-bottom: 40px; max-width: 600px; margin-inline: auto; font-weight: 400; }

.f-bottom { position: absolute; bottom: 30px; left: 5%; right: 5%; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 0.9rem; color: #A0A0A0; flex-wrap: wrap; gap: 20px; font-weight: 500; z-index: 2;}

/* FOOTER LOGO */
.f-brand { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--text-light); display: flex; align-items: center; gap: 10px; }

.f-designer a { color: var(--accent-gold); font-weight: 700; text-decoration: none;}
@media (max-width: 768px) { .main-wrapper { border-radius: 0; margin-bottom: 85vh; } .f-bottom { flex-direction: column; gap: 15px; } }

/* ==========================================================================
   19. AURA 13.0 (LUXURY AI CONCIERGE)
   ========================================================================== */
.ai-fab-wrap { position: fixed; bottom: 40px; right: 40px; z-index: 10000; cursor: none; pointer-events: auto; }
.ai-fab { width: 65px; height: 65px; border-radius: 50%; background: var(--bg-surface); border: 1px solid var(--border-gold); box-shadow: var(--shadow-card); display: flex; align-items: center; justify-content: center; transition: var(--transition-smooth); position: relative; }
.ai-fab::before { content:''; position:absolute; inset: -8px; border-radius: 50%; background: linear-gradient(135deg, rgba(212,175,55,0.4), rgba(74,93,35,0.4)); filter: blur(15px); opacity: 0.6; z-index: -1; animation: breatheAura 3s infinite alternate ease-in-out; }
@keyframes breatheAura { 0% { transform: scale(0.9); opacity: 0.3; } 100% { transform: scale(1.15); opacity: 0.7; } }
.hover-magnetic .ai-fab { transform: scale(1.1); box-shadow: var(--shadow-glow-gold); }
.ai-fab i { font-size: 2.2rem; color: var(--accent-olive); }

.chat-panel { position: fixed; bottom: 130px; right: 40px; width: 420px; background: var(--glass-dark); backdrop-filter: blur(40px); border-radius: 32px; border: 1px solid var(--border-dark); box-shadow: var(--shadow-heavy); z-index: 10001; overflow: hidden; transform: translateY(40px) scale(0.95); opacity: 0; pointer-events: none; transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1); display: flex; flex-direction: column; }
.chat-panel.active-chat { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }

.cp-header { padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; background: var(--bg-surface); border-bottom: 1px solid var(--border-soft); position: relative;}
.cp-avatar { width: 45px; height: 45px; border-radius: 50%; background: rgba(85, 107, 47, 0.1); border: 1px solid var(--accent-olive); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--accent-olive); }
.cp-text h4 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 2px; color: var(--text-dark);}
.cp-text span { font-size: 0.75rem; color: #10B981; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; display: flex; align-items: center; gap: 6px; }
.cp-text span::before { content:''; width:8px; height:8px; background: #10B981; border-radius:50%; animation: blink 1.5s infinite; }
.cp-close { font-size: 2rem; color: var(--text-muted); cursor: pointer; pointer-events: auto; transition: 0.3s; z-index: 10002;}
.cp-close:hover { color: var(--text-dark); transform: rotate(90deg); }

.cp-body { height: 400px; padding: 25px; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; background: var(--bg-base); }
.msg { padding: 15px 20px; border-radius: 20px; font-size: 0.95rem; line-height: 1.5; max-width: 85%; font-weight: 500; }
.msg.ai { background: var(--bg-surface); border: 1px solid var(--border-soft); color: var(--text-dark); border-bottom-left-radius: 4px; box-shadow: var(--shadow-soft); align-self: flex-start; }
.msg.user { background: var(--accent-olive); color: #FFF; border-bottom-right-radius: 4px; align-self: flex-end; }

.typing-ind { display: none; align-items: center; gap: 6px; padding: 15px 20px; background: var(--bg-surface); border: 1px solid var(--border-soft); border-radius: 20px; border-bottom-left-radius: 4px; width: fit-content; box-shadow: var(--shadow-soft); }
.t-dot { width: 6px; height: 6px; background: var(--accent-olive); border-radius: 50%; animation: tBounce 1.4s infinite ease-in-out both; }
.t-dot:nth-child(1) { animation-delay: -0.32s; } .t-dot:nth-child(2) { animation-delay: -0.16s; }

.cp-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 15px; }
.chip { padding: 10px 16px; background: var(--bg-surface); border: 1px solid var(--accent-gold); border-radius: 100px; font-size: 0.85rem; font-weight: 600; color: var(--accent-olive); cursor: pointer; transition: 0.3s; pointer-events: auto;}
.chip:hover { background: var(--accent-olive); color: #FFF; box-shadow: 0 5px 15px rgba(85,107,47,0.2); }

.cp-input { padding: 20px; background: var(--bg-surface); border-top: 1px solid var(--border-soft); display: flex; gap: 15px; align-items: center;}
.cp-input input { flex: 1; border: 1px solid var(--border-soft); background: var(--bg-elevated); padding: 15px 20px; border-radius: 50px; font-size: 0.95rem; color: var(--text-dark); outline: none; transition: 0.3s; pointer-events: auto; }
.cp-input input:focus { border-color: var(--accent-olive); background: var(--bg-surface);}
.cp-input button { width: 50px; height: 50px; border-radius: 50%; border: none; background: var(--text-dark); color: #FFF; font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.3s; pointer-events: auto; }
.cp-input button:hover { background: var(--accent-olive); transform: scale(1.05); }

@media (max-width: 768px) { .ai-fab-wrap { bottom: 90px; right: 20px; } .chat-panel { bottom: 180px; right: 15px; left: 15px; width: auto; } }

/* MOBILE APP BOTTOM NAV */
.mobile-nav { display: none; }
@media (max-width: 1024px) {
    .mobile-nav { display: flex; position: fixed; bottom: 20px; left: 5%; right: 5%; width: 90%; background: var(--glass-dark); backdrop-filter: blur(30px); border: 1px solid var(--border-dark); border-radius: 100px; justify-content: space-around; padding: 15px 5px; z-index: 10000; box-shadow: var(--shadow-heavy); }
    .m-nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-muted); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
    .m-nav-item i { font-size: 1.6rem; transition: 0.3s; }
    .m-nav-item.active { color: var(--accent-gold); }
    .m-nav-item.active i { transform: translateY(-4px); }
    .footer-fixed { padding-bottom: 120px; }
}