/* ======= CSS RESET & VARIABLES ======= */
:root {
    --bg-color: #000;
    --text-primary: #fff;
    --text-sec: #aaa;
    --font-main: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    user-select: none; /* Security constraint */
    -webkit-user-select: none;
}

img {
    -webkit-user-drag: none;
}

/* ======= HEADER ======= */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 80px;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(0,0,0,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.header-logo h2 { font-size: 1.5rem; font-weight: 500; letter-spacing: -1px; }
.header-links a { color: var(--text-primary); text-decoration: none; margin: 0 15px; font-size: 0.95rem; opacity: 0.8; }
.header-social { display: flex; gap: 10px; }
.small-btn { padding: 8px 16px !important; font-size: 0.85rem !important; display: inline-flex; align-items: center; gap: 6px; }


/* ======= HERO SECTION ======= */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #111 0%, #000 100%);
}
.hero-section::before, .hero-section::after {
    content: ''; 
    position: absolute; 
    left: 0; right: 0; 
    height: 30vh; 
    z-index: 2; 
    pointer-events: none;
}
.hero-section::before { 
    top: 0; 
    background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); 
}
.hero-section::after { 
    bottom: 0; 
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); 
}

.hero-bg-grid {
    position: absolute;
    inset: -10vw; /* bleed out to avoid edges during rotation */
    z-index: 1;
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 15px;
    opacity: 0.4; /* Center shows bright clear videos */
    transform: perspective(1000px) rotateX(15deg) rotateY(-5deg) scale(1.2);
}

.popup-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    transform: scale(0.5); /* initial for intro animation */
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
}

.yt-bg { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; pointer-events: none; border: none; }

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.anim-wordmark {
    font-size: 10vw;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    padding: 0;
}

.anim-wordmark .letter { display: inline-block; filter: blur(40px); transform: scale(1.5); opacity: 0; }

.anim-wordmark .letter-inner { display: inline-block; }

.hero-subtext { pointer-events: all; }
.hero-subtext p.fade-up-text { font-size: 1.5rem; font-weight: 300; color: var(--text-sec); margin-bottom: 30px; opacity: 0; }

.btn-primary { background: #fff; color: #000; padding: 12px 30px; border-radius: 100px; text-decoration: none; font-weight: 500; font-size: 1rem; display: inline-block; }
.btn-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); padding: 12px 30px; border-radius: 100px; text-decoration: none; font-weight: 500; font-size: 1rem; display: inline-block; }

/* ======= SPACER SECTION ======= */
.spacer-section { padding: 150px 20px; text-align: center; max-width: 800px; margin: 0 auto; }
.spacer-title h2 { font-size: 3rem; font-weight: 400; margin-bottom: 20px; letter-spacing: -1px; }
.spacer-copy p { font-size: 1.2rem; color: var(--text-sec); }

/* ======= OVERVIEW / SHOWREEL ======= */
.overview-section { position: relative; width: 100%; min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.overview-bg-container { position: absolute; inset: 0; z-index: 0; overflow: hidden; opacity: 0.5; }
.overview-yt-bg { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; pointer-events: none; }

.video-container { position: relative; z-index: 10; width: 80%; max-width: 1200px; border-radius: 26px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.8); transition: transform 0.3s; cursor: pointer; }
.video-container:hover { transform: scale(1.02); }
.video-wrapper { position: relative; border-radius: 24px; background: #000; overflow: hidden; z-index: 10;  }

.animated-border-loop { position: relative; padding: 4px; background: transparent; overflow: hidden; }
.animated-border-loop::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(from 0deg, transparent 75%, rgba(168, 199, 250, 1) 85%, rgba(168, 85, 247, 1) 95%, transparent 100%); animation: rotateLoop 8s linear infinite; z-index: 0; }
@keyframes rotateLoop { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.poster-img { width: 100%; display: block; }

/* ======= GALLERY SECTION ======= */
.gallery-section { position: relative; padding: 100px 0; background: #000; overflow: hidden; height: 150vh; }
.gallery-title-wrapper { position: absolute; top: 100px; left: 10vw; z-index: 20; }
.gallery-title-wrapper h2 { font-size: 3rem; font-weight: 400; }
.gallery-items-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; height: 100%; transform: rotate(5deg) scale(1.2); padding: 0 5vw; }
.gallery-column { height: 250vh; }
.gallery-column-inner { display: flex; flex-direction: column; gap: 30px; }
.gallery-item { width: 100%; border-radius: 16px; overflow: hidden; position: relative; display: block; cursor: pointer; }
.gallery-item img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; filter: brightness(0.7); transition: filter 0.4s, transform 0.4s; }
.gallery-item:hover img { filter: brightness(1.1); transform: scale(1.05); }
.play-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .play-overlay { opacity: 1; }
.gallery-item span { position: absolute; bottom: 20px; left: 20px; color: #fff; font-size: 0.9rem; font-weight: 500; text-transform: uppercase; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }

/* ======= PRICING ======= */
.pricing-section { padding: 150px 5vw; background: #050505; }
.pricing-headline { text-align: center; margin-bottom: 80px; }
.pricing-headline h2 { font-size: 3rem; font-weight: 400; margin-bottom: 10px;}
.pricing-headline p { color: var(--text-sec); font-size: 1.1rem; }
.pricing-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.pricing-card { background: #111; border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 30px 20px; text-align: center; transition: transform 0.3s; }
.pricing-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-5px); }
.pricing-card.popular { background: radial-gradient(circle at 50% 0, #1a1a2e 0%, #111 100%); border-color: rgba(168, 199, 250, 0.4); transform: scale(1.05); }
.pricing-card.popular:hover { transform: scale(1.05) translateY(-5px); }
.pricing-card h3 { font-size: 1.2rem; font-weight: 400; margin-bottom: 20px; }
.pricing-card .price { font-size: 2.5rem; font-weight: 300; margin-bottom: 10px; }
.tier-desc { font-size: 0.9rem; color: var(--text-sec); margin-bottom: 30px; min-height: 40px;}
.pricing-card ul { list-style: none; margin-bottom: 30px; text-align: left; padding: 0 10px; }
.pricing-card ul li { font-size: 0.85rem; color: #ccc; margin-bottom: 12px; border-bottom: 1px solid #222; padding-bottom: 8px; }

/* ======= NEW FOOTER ======= */
.site-footer { background: #000; padding-top: 80px; font-family: var(--font-main); }
.footer-top { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; max-width: 1400px; margin: 0 auto; padding: 0 5vw 80px; }
.footer-col h4 { color: #fff; font-size: 1.3rem; font-weight: 600; margin-bottom: 30px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 15px; }
.footer-col li, .footer-col a, .contact-info-list span { color: #999; font-size: 0.95rem; text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 10px; }
.footer-col a:hover { color: #fff; }
.contact-info-list i { font-size: 1.2rem; color: #ccc; flex-shrink: 0; }
.address-li { align-items: flex-start !important; }
.support-col { display: flex; flex-direction: column; gap: 15px; }
.footer-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 16px; border-radius: 50px; font-weight: 500; text-decoration: none; font-size: 0.95rem; transition: transform 0.2s, opacity 0.2s; }
.footer-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-wa { background: #0ea62f; color: #fff; border: none; cursor: pointer; }
.btn-wa i { font-size: 1.3rem; }
.btn-em { background: #fff; color: #000; border: none; cursor: pointer; }
.btn-em i { font-size: 1.3rem; }

.footer-bottom-purple { background: #8b3dff; padding: 25px 5vw; }
.fb-inner { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.brand-box { display: flex; align-items: center; gap: 10px; color: #fff; }
.brand-box i { font-size: 2rem; color: #ffcc00; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 1.2rem; font-weight: 600; }
.brand-text span { font-size: 0.8rem; font-weight: 400; letter-spacing: 1px; }
.fb-links { display: flex; gap: 25px; }
.fb-links a { color: #fff; text-decoration: none; font-size: 0.9rem; font-weight: 500; }
.fb-social { display: flex; gap: 15px; }
.fb-social a { color: #fff; font-size: 1.2rem; transition: transform 0.2s; background: transparent; text-decoration: none; }
.fb-social a:hover { transform: scale(1.2); }

/* ======= MODALS (VIDEO & FORM) ======= */
.video-modal-overlay, .form-modal-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.95); backdrop-filter: blur(20px); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.video-modal-overlay.active, .form-modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-close { position: absolute; top: 30px; right: 40px; color: #fff; font-size: 1.2rem; cursor: pointer; font-weight: 500; letter-spacing: 2px; }
.modal-close-form { position: absolute; top: 20px; right: 20px; color: #fff; font-size: 1.5rem; cursor: pointer; z-index: 20;}
.modal-content { width: 90%; max-width: 1400px; aspect-ratio: 16 / 9; background: #000; border-radius: 12px; overflow: hidden; position: relative; box-shadow: 0 0 100px rgba(0,0,0,0.8); transform: scale(0.9); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.video-modal-overlay.active .modal-content { transform: scale(1); }
.modal-content iframe { width: 100%; height: 100%; }
.video-click-overlay { position: absolute; inset: 0; z-index: 10; cursor: pointer; }

.form-modal-content { width: 90%; max-width: 500px; border-radius: 24px; transform: scale(0.9); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.form-modal-overlay.active .form-modal-content { transform: scale(1); }

.project-form { display: flex; flex-direction: column; gap: 20px; }
.input-group { display: flex; flex-direction: column; gap: 8px; }
.input-group label { color: #fff; font-size: 0.9rem; font-weight: 500; }
.input-group input, .input-group select, .input-group textarea { background: #111; border: 1px solid #333; padding: 15px; border-radius: 12px; color: #fff; font-family: var(--font-main); font-size: 1rem; outline: none; transition: border-color 0.3s; }
.input-group input:focus, .input-group select:focus, .input-group textarea:focus { border-color: rgba(168, 199, 250, 1); }

.submit-action-btns { display: flex; gap: 15px; margin-top: 10px; }
.btn-wa-submit, .btn-em-submit { flex: 1; padding: 15px; border-radius: 50px; border: none; font-weight: 600; font-size: 0.9rem; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: opacity 0.3s; }
.btn-wa-submit { background: #0ea62f; color: #fff; }
.btn-em-submit { background: #fff; color: #000; }
.btn-wa-submit:hover, .btn-em-submit:hover { opacity: 0.8; }

/* ======= AI CHATBOT ======== */
.chatbot-float-btn { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #101010, #202020); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 24px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 1000; box-shadow: 0 10px 30px rgba(0,0,0,0.5); transition: transform 0.3s; }
.chatbot-float-btn:hover { transform: scale(1.1); }
.chatbot-container { position: fixed; bottom: 100px; right: 30px; width: 350px; height: 450px; background: rgba(15,15,15,0.95); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; display: flex; flex-direction: column; z-index: 999; box-shadow: 0 20px 40px rgba(0,0,0,0.8); opacity: 0; pointer-events: none; transform: translateY(20px); transition: opacity 0.3s, transform 0.3s; }
.chatbot-container.active { opacity: 1; pointer-events: all; transform: translateY(0); }
.chatbot-header { padding: 15px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 10px; }
.bot-avatar { width: 40px; height: 40px; border-radius: 50%; background: #fff; color: #000; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.bot-info h4 { font-size: 1rem; font-weight: 500; }
.bot-info span { font-size: 0.75rem; color: #4caf50; }
.chat-toggle-btn { margin-left: auto; background: none; border: none; color: #fff; font-size: 20px; cursor: pointer; }
.chatbot-messages { flex: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; }
.chatbot-messages::-webkit-scrollbar { width: 5px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: #333; border-radius: 5px; }
.message { display: flex; max-width: 80%; }
.message.bot { align-self: flex-start; }
.message.user { align-self: flex-end; }
.msg-bubble { padding: 12px 16px; border-radius: 16px; font-size: 0.9rem; line-height: 1.4; }
.message.bot .msg-bubble { background: #222; color: #eee; border-bottom-left-radius: 4px; }
.message.user .msg-bubble { background: #a8c7fa; color: #000; border-bottom-right-radius: 4px; }
.chatbot-input { padding: 15px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; gap: 10px; }
.chatbot-input input { flex: 1; background: #222; border: 1px solid #333; padding: 10px 15px; border-radius: 20px; color: #fff; font-size: 0.9rem; outline: none; }
.chatbot-input button { background: #fff; color: #000; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; }

/* ======= FIX: Reset button styles for semantic <button> elements ======= */
/* Gallery items & showreel trigger are now <button>s for accessibility. */
/* These rules strip default button chrome so they look exactly like before. */
.gallery-item,
.inline-player-trigger,
.modal-close,
.modal-close-form {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.gallery-item { display: block; width: 100%; text-align: left; }
.inline-player-trigger { display: block; width: 100%; position: relative; }

/* Visible focus ring for keyboard users (accessibility) */
.gallery-item:focus-visible,
.inline-player-trigger:focus-visible,
.modal-close:focus-visible,
.modal-close-form:focus-visible,
button:focus-visible,
a:focus-visible {
    outline: 2px solid #a8c7fa;
    outline-offset: 3px;
}

/* Hero bg grid items should fill their tile even when containing an iframe or img */
.popup-item > iframe,
.popup-item > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
}

/* ======= FIX: Ensure all links (especially footer social icons) are clickable ======= */
/* Icons inside anchor tags sometimes block clicks — this makes them pass through */
a i, button i {
    pointer-events: none;
}
a {
    cursor: pointer;
}
/* Footer social icons explicit clickable area */
.fb-social a,
.footer-btn,
.contact-info-list a,
.footer-links a {
    cursor: pointer;
    position: relative;
    z-index: 5;
}

/* ============================================================
   ============ V2.0 NEW FEATURES STYLING =====================
   ============================================================ */

/* ======= LIVE AVAILABILITY BADGE ======= */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 200, 100, 0.1);
    border: 1px solid rgba(0, 200, 100, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    color: #4ade80;
    margin-right: 15px;
}
.availability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* ======= STATS COUNTER ======= */
.stats-section {
    padding: 100px 5vw;
    background: linear-gradient(180deg, #000 0%, #0a0a15 50%, #000 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.stat-item { padding: 20px; }
.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    background: linear-gradient(180deg, #fff 40%, rgba(168,199,250,0.6));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
    margin-bottom: 10px;
    line-height: 1;
}
.stat-label {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ======= CLIENT LOGOS STRIP ======= */
.logos-section {
    padding: 60px 5vw;
    background: #000;
    overflow: hidden;
}
.logos-title {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}
.logos-track {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}
.logos-track:hover { animation-play-state: paused; }
.logo-item {
    color: rgba(255,255,255,0.3);
    font-size: 1.5rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-item:hover { color: rgba(255,255,255,0.8); }
.logo-item i { font-size: 1.8rem; }
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ======= BEFORE/AFTER SLIDER ======= */
.ba-section {
    padding: 120px 5vw;
    background: #050505;
    text-align: center;
}
.ba-headline {
    margin-bottom: 60px;
}
.ba-headline h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 15px;
}
.ba-headline p {
    color: #888;
    font-size: 1.05rem;
}
.ba-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    user-select: none;
    cursor: ew-resize;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.ba-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ba-after-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    width: 50%;
}
.ba-after-wrapper .ba-image {
    width: 200%;
    max-width: none;
}
.ba-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #fff;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 5;
}
.ba-slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.ba-slider::after {
    content: '⇔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 20px;
    font-weight: 700;
    z-index: 6;
}
.ba-label {
    position: absolute;
    top: 20px;
    padding: 6px 14px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 4;
}
.ba-label.before { left: 20px; }
.ba-label.after { right: 20px; }

/* ======= PROCESS / HOW IT WORKS ======= */
.process-section {
    padding: 120px 5vw;
    background: #000;
    text-align: center;
}
.process-headline h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 15px;
}
.process-headline p {
    color: #888;
    font-size: 1.05rem;
    margin-bottom: 70px;
}
.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168,199,250,0.3), transparent);
    z-index: 0;
}
.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}
.process-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #111;
    border: 1px solid rgba(168,199,250,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #a8c7fa;
    transition: transform 0.3s, border-color 0.3s;
}
.process-step:hover .process-icon-wrap {
    transform: translateY(-5px);
    border-color: #a8c7fa;
}
.process-step h4 {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 8px;
}
.process-step p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.5;
}
.process-number {
    font-size: 0.75rem;
    color: #a8c7fa;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

/* ======= TESTIMONIALS ======= */
.testimonials-section {
    padding: 120px 5vw;
    background: linear-gradient(180deg, #000, #0a0a15);
    position: relative;
}
.testi-headline {
    text-align: center;
    margin-bottom: 60px;
}
.testi-headline h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: -1px;
}
.testi-headline p {
    color: #888;
    margin-top: 10px;
}
.testi-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.testi-card {
    background: #0f0f1a;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s, border-color 0.3s;
}
.testi-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168,199,250,0.3);
}
.testi-stars {
    color: #fbbf24;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.testi-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.testi-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a8c7fa, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #fff;
    font-size: 0.9rem;
}
.testi-info strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.testi-info span { color: #888; font-size: 0.8rem; }

/* ======= GALLERY FILTERS ======= */
.gallery-filters {
    position: absolute;
    top: 100px;
    right: 5vw;
    z-index: 25;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 50%;
    justify-content: flex-end;
}
.filter-btn {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    color: #aaa;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 18px;
    border-radius: 100px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    transition: all 0.3s;
}
.filter-btn:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.filter-btn.active { background: #fff; color: #000; border-color: #fff; }

/* ======= FAQ ACCORDION ======= */
.faq-section {
    padding: 120px 5vw;
    background: #050505;
}
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.faq-headline {
    text-align: center;
    margin-bottom: 60px;
}
.faq-headline h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: -1px;
}
.faq-headline p { color: #888; margin-top: 10px; }
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    padding: 24px 0;
    text-align: left;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.3s;
}
.faq-question:hover { color: #a8c7fa; }
.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
    font-size: 0.9rem;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: #a8c7fa;
    color: #000;
    border-color: #a8c7fa;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #aaa;
    line-height: 1.7;
    font-size: 0.95rem;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 0 24px 0;
}

/* ======= CUSTOM CURSOR ======= */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease, background 0.3s, width 0.3s, height 0.3s;
    mix-blend-mode: difference;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.custom-cursor.visible { transform: translate(-50%, -50%) scale(1); }
.custom-cursor.hover-video {
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
}
@media (hover: none) { .custom-cursor { display: none; } }

/* ======= SOCIAL PROOF NOTIFICATION ======= */
.social-proof {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    z-index: 500;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.social-proof.show { transform: translateX(0); }
.sp-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a8c7fa, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}
.sp-text { font-size: 0.85rem; line-height: 1.4; }
.sp-text strong { color: #fff; }
.sp-text span { color: #888; display: block; font-size: 0.75rem; margin-top: 2px; }

/* ======= EXIT INTENT POPUP ======= */
.exit-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    padding: 20px;
}
.exit-popup-overlay.show { opacity: 1; visibility: visible; }
.exit-popup {
    background: linear-gradient(135deg, #0f0f1a, #0a0a15);
    border: 1px solid rgba(168, 199, 250, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.exit-popup-overlay.show .exit-popup { transform: scale(1); }
.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background 0.3s;
}
.exit-popup-close:hover { background: rgba(255,255,255,0.08); color: #fff; }
.exit-popup-emoji { font-size: 3.5rem; margin-bottom: 15px; }
.exit-popup h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.exit-popup p {
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.6;
}
.exit-popup-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: transform 0.2s;
}
.exit-popup-btn:hover { transform: scale(1.05); }

/* ======= SCROLL REVEAL ======= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======= RESPONSIVE (Mobile) ======= */
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .testi-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; gap: 40px; }
    .process-grid::before { display: none; }
    .gallery-filters { position: static; max-width: 100%; margin: 20px 5vw; justify-content: center; }
    .availability-badge { display: none; }
    .social-proof { left: 15px; right: 15px; max-width: none; bottom: 80px; }
    .custom-cursor { display: none; }
    .ba-container { aspect-ratio: 4/3; }
}

/* ======= HERO VIDEO THUMBNAIL LOADING ======= */
/* Thumbnail dikhti hai pehle, phir iframe load hone par fade-out */
.popup-item > .yt-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.8s ease;
    pointer-events: none;
}
.popup-item > .yt-thumb.thumb-hidden {
    opacity: 0;
}
.popup-item > iframe.yt-bg {
    z-index: 1;
}
