/* =============================================
   SUVZO - Main Stylesheet
   Dark Premium Design System
   Google Font: Inter
   ============================================= */

/* --- CSS Variables --- */
:root {
    --gold: #D4AF37;
    --gold-dark: #AA842A;
    --gold-glow: rgba(212, 175, 55, 0.25);
    --bg: #080808;
    --bg-2: #0f0f0f;
    --card: #111111;
    --card-2: #181818;
    --border: rgba(255,255,255,0.08);
    --text: #ffffff;
    --text-muted: #999999;
    --text-dim: #666666;
    --success: #22c55e;
    --warning: #f59e0b;
    --info: #3b82f6;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 32px rgba(0,0,0,0.4);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font: 'Outfit', sans-serif;
    --font-heading: 'Cormorant Garamond', serif;
    --font-accent: 'Cinzel', serif;
}

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

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { line-height: 1.1; font-weight: 600; font-family: var(--font-heading); }
h1 { font-family: var(--font-heading); letter-spacing: -1px; }
.section-label, .hero-label, .pricing-badge { font-family: var(--font-accent); letter-spacing: 4px; text-transform: uppercase; font-weight: 700; }
.logo-text { font-family: var(--font-accent); letter-spacing: 1px; }
h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
.text-center { text-align: center; }
.text-red { color: var(--gold); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 50px;
    font-weight: 600; font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap; cursor: pointer;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    box-shadow: 0 4px 20px var(--gold-glow);
    font-weight: 700;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--gold-glow);
    background: linear-gradient(135deg, #e4c45a, var(--gold));
    color: #000;
}
.btn-outline {
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--text);
    background: transparent;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), #a07830);
    color: #000;
    font-weight: 700;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,161,74,0.3); }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* --- Section Styles --- */
section { padding: 100px 0; }
.section-label {
    display: inline-block;
    background: var(--gold-glow);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto 56px; }

/* =======================================
   PROMO BAR
======================================= */
.promo-bar {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    z-index: 1001;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 10px 48px 10px 10px; /* Right padding ensures text doesn't hit close button */
}
.promo-marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.promo-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: promoMarquee 30s linear infinite;
}
.promo-text-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-right: 4rem; /* uniform spacing between items */
}
@keyframes promoMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.promo-icon { font-size: 1.1rem; }
.thunder-icon {
    display: inline-block;
    color: #fff;
    font-size: 1.1rem;
    animation: rotateThunder 6s linear infinite;
    transform-origin: center;
}
@keyframes rotateThunder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.promo-close {
    position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
    color: #fff; font-size: 1.2rem; opacity: 0.7; background: none; border: none;
    cursor: pointer; line-height: 1;
}
.promo-close:hover { opacity: 1; }

/* =======================================
   HEADER
======================================= */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: var(--transition);
    padding: 16px 0;
}
.site-header.scrolled {
    background: rgba(8,8,8,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}
.logo-img { height: 44px; width: auto; }
.logo-text {
    font-size: 1.5rem; font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 8px; }
.nav-link {
    padding: 8px 16px; border-radius: 8px;
    font-size: 0.95rem; font-weight: 500; color: var(--text-muted);
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active { background: rgba(255,255,255,0.08); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.hamburger {
    display: none; flex-direction: column; gap: 5px; padding: 8px;
    background: none; border: none; cursor: pointer;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =======================================
   MOBILE BOTTOM NAV (Hidden Top Level)
======================================= */
.mobile-bottom-nav { display: none; }

/* =======================================
   HERO SECTION
======================================= */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 140px 24px 100px;
    background: transparent;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.08) 0%, transparent 65%);
    pointer-events: none; z-index: 0;
}
.hero-label {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    padding: 8px 20px; border-radius: 50px;
    margin-bottom: 24px;
}
.hero-label .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.2)} }
.hero h1 {
    font-size: clamp(2.4rem, 6vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 24px;
}
.hero-gradient {
    background: linear-gradient(135deg, var(--text) 0%, var(--gold) 50%, var(--gold) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted); max-width: 560px; margin: 0 auto 40px;
}
.hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: flex; justify-content: center; gap: 48px;
    margin-top: 72px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
    background: linear-gradient(135deg, var(--text), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; display: block;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* =======================================
   WEBGL ANIMATED GRADIENT BACKGROUND
   ======================================= */
#aurora-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background: #080808; /* Fallback colour while WebGL loads */
}
#aurora-bg #gradient-canvas {
    display: block;
    width: 100%;
    height: 100%;
}
.gradient-noise-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* =======================================
   AS SEEN ON
======================================= */
.seen-on {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-2);
}
.seen-on-label { text-align: center; font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 32px; }
.seen-on-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.media-logo {
    color: var(--text-muted); font-size: 1.1rem; font-weight: 700; letter-spacing: 1px;
    opacity: 0.5; transition: var(--transition);
    display: flex; align-items: center; gap: 8px;
}
.media-logo:hover { opacity: 1; }
.shark-tank {
    background: linear-gradient(135deg, var(--gold), #8a6820);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; opacity: 0.8; font-size: 1.2rem;
}

/* =======================================
   FEATURES
======================================= */
.features { background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}
.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--gold-glow);
}
.feature-icon {
    width: 64px; height: 64px; border-radius: 16px;
    background: var(--gold-glow); border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin: 0 auto 20px;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* =======================================
   PRICING
======================================= */
.pricing { background: var(--bg-2); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative; transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pricing-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 40px var(--gold-glow);
    background: linear-gradient(160deg, #1a0000, var(--card));
}
.pricing-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; padding: 4px 16px; border-radius: 50px;
    white-space: nowrap;
}
.pricing-name { font-size: 1rem; color: var(--text-muted); margin-bottom: 8px; }
.pricing-price {
    font-size: 2.8rem; font-weight: 900; line-height: 1;
    background: linear-gradient(135deg, var(--text), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pricing-price sup { font-size: 1.2rem; vertical-align: top; padding-top: 8px; }
.pricing-duration { color: var(--text-muted); font-size: 0.85rem; margin: 8px 0 28px; }
.pricing-features { list-style: none; padding: 0; margin-bottom: 32px; }
.pricing-features li {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 0; border-bottom: 1px solid var(--border);
    font-size: 0.9rem; color: var(--text-muted);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* =======================================
   GALLERY
======================================= */
.gallery-section { background: var(--bg); }

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover { border-color: var(--gold); color: var(--text); background: var(--gold-glow); }

.gallery-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(21, 21, 21, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-arrow:hover {
    background: var(--gold);
    color: #151515;
    border-color: var(--gold);
    box-shadow: 0 0 20px var(--gold-glow);
}

.gallery-arrow.prev { left: -24px; }
.gallery-arrow.next { right: -24px; }

@media (max-width: 1200px) {
    .gallery-arrow.prev { left: 10px; }
    .gallery-arrow.next { right: 10px; }
}
@media (max-width: 768px) {
    .gallery-arrow { width: 40px; height: 40px; font-size: 0.8rem; }
}
.gallery-grid {
    display: flex; gap: 24px; overflow-x: auto; 
    padding-bottom: 32px; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide for Firefox */
    -ms-overflow-style: none; /* Hide for IE/Edge */
}
.gallery-grid::-webkit-scrollbar { display: none; }

/* Interactive Hand-Scroll Mode */
.gallery-grid:not(.looping) {
    scroll-snap-type: x mandatory;
}

/* Automatic Circular Marquee Mode */
.gallery-grid.looping {
    overflow-x: hidden;
    width: max-content;
    animation: marquee var(--marquee-duration, 50s) linear infinite;
    transform-style: preserve-3d;
    will-change: transform;
}
.gallery-grid.looping.is-paused {
    animation-play-state: paused;
}
.gallery-grid.looping:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0) rotateY(0deg); }
    100% { transform: translate3d(var(--marquee-loop-pos, -50%), 0, 0) rotateY(0.001deg); }
}

.gallery-section { 
    position: relative; overflow: hidden; 
    perspective: 2000px;
} 

/* Edge Fading for Looping Mode */
.gallery-section.is-looping::before, .gallery-section.is-looping::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 150px; z-index: 10; pointer-events: none;
}
.gallery-section.is-looping::before { left: 0; background: linear-gradient(to right, var(--bg) 0%, transparent 100%); }
.gallery-section.is-looping::after { right: 0; background: linear-gradient(to left, var(--bg) 0%, transparent 100%); }


.gallery-item {
    position: relative; border-radius: var(--radius); overflow: hidden;
    flex: 0 0 300px; aspect-ratio: 9/16; max-height: 520px; background: var(--card);
    border: 1px solid var(--border); cursor: pointer; flex-shrink: 0;
    scroll-snap-align: center;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}
.gallery-item:active {
    transform: scale(0.96) translateY(2px);
    transition: transform 0.1s ease;
}
/* Glass Reflection Overlay */
.gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 40%, rgba(0,0,0,0.2) 100%);
    pointer-events: none; z-index: 3;
}

.play-icon-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    opacity: 0;
    z-index: 5;
    transition: all 0.4s ease;
}

.play-icon-overlay i {
    font-size: 3rem;
    color: var(--gold);
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.5));
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover .play-icon-overlay {
    opacity: 1;
    background: rgba(0,0,0,0.4);
}

.gallery-item:hover .play-icon-overlay i {
    transform: scale(1);
}
@media (max-width: 768px) {
    .gallery-item { flex: 0 0 85vw; }
}
.gallery-item:hover {
    transform: translateY(-8px) scale(1.05) rotateY(-5deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px var(--gold-glow);
    z-index: 20;
}
.gallery-item img, .gallery-video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img, .gallery-item:hover .gallery-video { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex; align-items: flex-end; padding: 20px;
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-title { font-size: 0.95rem; font-weight: 600; }
.gallery-overlay-cat { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.play-btn {
    position: absolute; top: 50%; left:50%; transform: translate(-50%,-50%);
    width: 68px; height: 68px; border-radius: 50%;
    background: rgba(212,175,55,0.95); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; opacity: 0; transition: var(--transition);
    z-index: 10; cursor: pointer;
    box-shadow: 0 0 20px rgba(212,175,55,0.4);
}
.gallery-item:hover .play-btn { opacity: 1; transform: translate(-50%,-50%) scale(1.1); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 20px;
    opacity: 0; transition: var(--transition);
    z-index: 5;
}

/* =======================================
   TESTIMONIALS
======================================= */
.testimonials { background: var(--bg-2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px 28px;
    transition: var(--transition); position: relative;
}
.testimonial-card:hover { border-color: var(--border); transform: translateY(-4px); }
.testimonial-quote {
    font-size: 3rem; color: var(--gold); opacity: 0.4;
    position: absolute; top: 16px; right: 20px; line-height: 1;
}
.testimonial-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem; flex-shrink: 0; overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-title { color: var(--text-muted); font-size: 0.8rem; margin-top: 2px; }

/* =======================================
   FAQ
======================================= */
.faq-section { background: var(--bg); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
}
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 1rem;
    transition: var(--transition); gap: 16px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { font-size: 1.2rem; transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--gold); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-muted); line-height: 1.7; }

/* =======================================
   APP DOWNLOAD CTA
======================================= */
.app-cta {
    background: var(--bg-2);
    padding: 100px 0;
}
.app-cta-inner {
    background: linear-gradient(135deg, var(--card), #1a0005);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 64px 48px;
    text-align: center;
}
.app-cta h2 { margin-bottom: 16px; }
.app-cta p { color: var(--text-muted); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.app-store-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.store-btn {
    display: flex; align-items: center; gap: 12px;
    background: var(--card-2); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 14px 28px;
    transition: var(--transition);
}
.store-btn:hover { border-color: var(--gold); transform: translateY(-3px); }
.store-btn i { font-size: 1.8rem; }
.store-btn-text { text-align: left; }
.store-btn-text small { display: block; font-size: 0.7rem; color: var(--text-muted); }
.store-btn-text span { display: block; font-weight: 700; font-size: 1rem; }

/* =======================================
   PARTNER PAGE
======================================= */
.partner-hero { padding: 160px 0 80px; background: transparent; text-align: center; }
.partner-benefits { background: var(--bg); }
.partner-steps { background: var(--bg-2); }
.step-timeline { display: flex; flex-direction: column; gap: 0; max-width: 680px; margin: 0 auto; position: relative; }
.step-timeline::before {
    content: ''; position: absolute; left: 28px; top: 32px; bottom: 32px; width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}
.step-item {
    display: flex; align-items: flex-start; gap: 24px; padding: 24px 0;
    position: relative;
}
.step-num {
    width: 58px; height: 58px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem; z-index: 1;
}
.step-content h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step-content p { color: var(--text-muted); font-size: 0.9rem; }

/* =======================================
   JOURNEY / ABOUT PAGE
======================================= */
.journey-hero { padding: 160px 0 80px; background: transparent; text-align: center; }

.team-wrapper {
    position: relative;
    width: 100%;
    margin: 40px auto 0;
}

.team-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(21, 21, 21, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.team-arrow:hover {
    background: var(--gold);
    color: #151515;
    box-shadow: 0 0 20px var(--gold-glow);
}

.team-arrow.prev { left: -24px; }
.team-arrow.next { right: -24px; }

@media (max-width: 1200px) {
    .team-arrow.prev { left: 10px; }
    .team-arrow.next { right: 10px; }
}

.team-grid {
    display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 24px; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.team-grid::-webkit-scrollbar { display: none; }

.team-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
    transition: var(--transition); flex: 0 0 280px; scroll-snap-align: center;
}
@media (max-width: 768px) {
    .team-card { flex: 0 0 75vw; }
}
.team-card:hover { border-color: var(--gold); transform: translateY(-4px); }

/* =======================================
   FOUNDER HIGHLIGHT CARD
======================================= */
.founder-spotlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 48px;
}

.founder-card {
    position: relative;
    background: linear-gradient(145deg, var(--card), #1a1005);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 0 40px var(--gold-glow), 0 20px 60px rgba(0,0,0,0.4);
    animation: luxuryGlow 4s infinite alternate;
}

.founder-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.founder-avatar {
    width: 120px; height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--gold);
    overflow: hidden;
    box-shadow: 0 0 20px var(--gold-glow);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; font-weight: 700; color: var(--gold);
    background: var(--bg-2);
}
.founder-avatar img { width: 100%; height: 100%; object-fit: cover; }

.founder-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}
.founder-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.founder-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Reveal Button */
.reveal-team-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    letter-spacing: 0.5px;
}
.reveal-team-btn:hover {
    background: var(--gold);
    color: #151515;
    box-shadow: 0 0 20px var(--gold-glow);
}
.reveal-team-btn .fa-chevron-down {
    transition: transform 0.4s ease;
}
.reveal-team-btn.is-open .fa-chevron-down {
    transform: rotate(180deg);
}

/* Smooth Reveal Section */
.team-reveal-section {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
    opacity: 0;
}
.team-reveal-section.is-open {
    max-height: 2000px;
    opacity: 1;
}
.team-avatar {
    width: 90px; height: 90px; border-radius: 50%;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; font-weight: 700; overflow: hidden;
    border: 3px solid var(--border);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.team-role { color: var(--gold); font-size: 0.85rem; font-weight: 500; margin-bottom: 12px; }
.team-bio { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; }
.team-social { display: flex; justify-content: center; gap: 12px; margin-top: 16px; }
.team-social a { color: var(--text-muted); font-size: 1rem; transition: var(--transition); }
.team-social a:hover { color: var(--gold); }

/* =======================================
   CONTACT PAGE
======================================= */
.contact-hero { padding: 160px 0 60px; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--gold-glow); border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--gold); font-size: 1.1rem;
}
.contact-info-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: var(--text-muted); font-size: 0.9rem; }
.contact-info-item a:hover { color: var(--gold); }
.contact-form-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 40px;
}
.map-container { margin-top: 60px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); height: 350px; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* =======================================
   FORMS
======================================= */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 8px; color: #ffffff; }
.form-control {
    width: 100%;
    padding: 14px 18px;
    background: #151515; border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius); color: var(--text); font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}
.form-control:hover {
    border-color: rgba(255,255,255,0.2);
}
.form-control:focus {
    border-color: var(--gold);
    background: #1a1a1a;
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-control::placeholder { color: #888888; opacity: 0.8; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-select {
    width: 100%; padding: 14px 18px;
    background: #151515; border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius); color: var(--text); font-size: 0.95rem;
    cursor: pointer; outline: none; transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}
.form-select:hover {
    border-color: rgba(255,255,255,0.2);
}
.form-select:focus {
    border-color: var(--gold);
    background: #1a1a1a;
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-select option { background: var(--bg-2); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-error { color: var(--gold); font-size: 0.8rem; margin-top: 4px; display: none; }

/* Highlighted Date Input */
#event_date {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.05);
}
#event_date::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
}
#event_date::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    transform: scale(1.1);
}


/* =======================================
   ENQUIRY / BOOKING (Multi-step)
======================================= */
.enquiry-section { padding: 160px 0 100px; background: var(--bg); }
.steps-indicator { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 48px; }
.step-dot {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--card); border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 700; transition: var(--transition);
    position: relative; z-index: 1;
}
.step-dot.active { background: var(--gold); border-color: var(--gold); }
.step-dot.done { background: var(--success); border-color: var(--success); }
.step-connector { width: 80px; height: 2px; background: var(--border); }
.step-connector.done { background: var(--gold); }
.enquiry-card {
    max-width: 680px; margin: 0 auto;
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 48px;
}
.booking-step { display: none; }
.booking-step.active { display: block; }
.event-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.event-type-btn {
    padding: 16px 12px; border-radius: var(--radius); border: 2px solid var(--border);
    background: var(--bg-2); color: var(--text-muted); font-size: 0.85rem; font-weight: 500;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    cursor: pointer; transition: var(--transition); text-align: center;
}
.event-type-btn i { font-size: 1.4rem; color: #ffffff; margin-bottom: 4px; }
.event-type-btn.selected, .event-type-btn:hover { border-color: var(--gold); color: var(--text); background: var(--gold-glow); }
.step-nav { display: flex; justify-content: space-between; margin-top: 32px; gap: 12px; }

/* =======================================
   THANK YOU PAGE
======================================= */
.thankyou { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 140px 24px; }
.thankyou-card {
    max-width: 560px; text-align: center; padding: 60px 40px;
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.thankyou-icon { font-size: 4rem; margin-bottom: 24px; }
.thankyou-card h1 { margin-bottom: 16px; }
.thankyou-card p { color: var(--text-muted); margin-bottom: 32px; }

/* =======================================
   DISCOVER PAGE
======================================= */
.discover-hero { padding: 160px 0 60px; background: var(--bg); text-align: center; }

/* =======================================
   ALERT MESSAGES
======================================= */
.alert { padding: 14px 20px; border-radius: var(--radius); font-size: 0.9rem; margin-bottom: 20px; }
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: var(--success); }
.alert-error { background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3); color: var(--gold); }

/* =======================================
   FOOTER
======================================= */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); }
.footer-top { padding: 80px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-logo {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 16px; text-decoration: none;
}
.footer-logo img { height: 40px; }
.footer-logo span {
    font-size: 1.4rem; font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-tagline { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 10px;
    background: var(--card); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; color: var(--text-muted); transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-2px); }
.footer-heading { font-size: 0.95rem; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-muted); font-size: 0.875rem; }
.footer-contact i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact a:hover { color: var(--gold); }
.footer-apps p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.app-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.app-btn {
    display: flex; align-items: center; gap: 8px;
    background: var(--card); border: 1px solid var(--border);
    border-radius: 10px; padding: 8px 16px; font-size: 0.8rem;
    font-weight: 600; transition: var(--transition);
}
.app-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--border); padding: 24px 0;
}
.footer-bottom-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.875rem; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-muted); font-size: 0.8rem; transition: var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* =======================================
   ANIMATIONS / SCROLL REVEAL
======================================= */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* =======================================
   UTILITY
======================================= */
.d-none { display: none !important; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.separator { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* =======================================
   RESPONSIVE — Mobile First
======================================= */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    section { padding: 70px 0; }
    body { padding-bottom: 80px; } /* Space for bottom nav */
    .hamburger { display: none; }
    .main-nav { display: none !important; }
    .header-actions { display: none; }
    .header-inner { justify-content: center; } /* Centre logo on mobile */
    .hero h1 { letter-spacing: -1px; }
    .hero-stats { gap: 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .event-type-grid { grid-template-columns: repeat(2, 1fr); }
    .enquiry-card { padding: 28px 20px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .step-connector { width: 40px; }
    .app-cta-inner { padding: 40px 24px; }

    /* Mobile Bottom Nav Styles */
    .mobile-bottom-nav {
        display: block;
        position: fixed;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        background: rgba(40, 30, 25, 0.6); /* brownish-dark tint */
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 20px;
        z-index: 1000;
        box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    }
    .nav-icons-container {
        display: flex;
        align-items: center;
        padding: 8px 16px;
        gap: 12px;
    }
    .nav-icon-link {
        color: var(--text-muted);
        font-size: 1.35rem;
        padding: 12px 14px;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav-icon-link:hover, .nav-icon-link.active {
        color: var(--gold);
        transform: scale(1.1);
    }
    .nav-divider {
        width: 1px;
        height: 18px;
        background: rgba(255,255,255,0.1);
    }
}
@media (max-width: 480px) {
    h1 { font-size: 2rem; } h2 { font-size: 1.6rem; }
    .btn { padding: 11px 22px; font-size: 0.9rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .event-type-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
}

/* =======================================
   VIDEO MODAL
======================================= */
.video-modal {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(15px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.video-modal.open { opacity: 1; visibility: visible; }
.video-modal-content {
    position: relative; width: 100%; max-width: 900px;
    padding: 20px; border-radius: var(--radius-lg);
    transform: scale(0.8) translateY(40px); opacity: 0;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.video-modal.open .video-modal-content { transform: scale(1) translateY(0); opacity: 1; }
.close-modal {
    position: absolute; top: -30px; right: 20px;
    color: #fff; font-size: 2rem; cursor: pointer;
    line-height: 1; opacity: 0.8; transition: var(--transition);
}
.close-modal:hover { opacity: 1; color: var(--gold); }
.iframe-container {
    position: relative; width: 100%; padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000; border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5); border: 1px solid var(--border);
}
.iframe-container iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}


/* =======================================
   LUXURY ENTRY ANIMATIONS
======================================= */
@keyframes luxuryReveal {
    0% { opacity: 0; transform: translateY(40px) scale(0.98); filter: blur(4px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes luxuryGlow {
    0% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.1); }
    50% { box-shadow: 0 0 35px rgba(212, 175, 55, 0.4); }
    100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.1); }
}

.hero h1 { opacity: 0; animation: luxuryReveal 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards; }
.hero p { opacity: 0; animation: luxuryReveal 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards; }
.hero-actions { opacity: 0; animation: luxuryReveal 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards; }
.hero-stats { opacity: 0; animation: luxuryReveal 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 1.1s forwards; }

.btn-primary, .btn-gold {
    animation: luxuryGlow 3s infinite alternate;
}
.btn-primary:hover, .btn-gold:hover {
    animation: none;
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 12px 40px var(--gold-glow) !important;
}
