:root {
    --bg-color: #0A0A0A;
    --card-bg: rgba(255, 255, 255, 0.05);
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --white: #FFFFFF;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --transition: all 0.3s ease;
    --glass: rgba(10, 10, 10, 0.8);
    --nav-text: #FFFFFF;
}

body.light-theme {
    --bg-color: #F8F9FA;
    --card-bg: rgba(0, 0, 0, 0.03);
    --white: #FFFFFF;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --glass: rgba(255, 255, 255, 0.9);
    --nav-text: #1A1A1A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.5s ease, color 0.5s ease;
}

h1, h2, h3, h4, h5, .luxury-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Glassmorphism Utility */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

body.light-theme .glass {
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

/* Premium Banner */
.top-banner {
    background: var(--gold);
    color: #0A0A0A;
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1100;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-gold {
    background-color: var(--gold);
    color: #0A0A0A;
}

.btn-gold:hover {
    background-color: #f1c40f;
    box-shadow: 0 0 20px var(--gold-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: #0A0A0A;
}

/* Navigation */
header {
    position: fixed;
    top: 36px; /* Below banner */
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background: var(--glass);
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    top: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--nav-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

/* Theme Toggle */
.theme-toggle {
    background: var(--card-bg);
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--gold);
    color: #0A0A0A;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--text-main);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icons i {
    position: absolute;
    color: var(--gold);
    opacity: 0.2;
    font-size: 2rem;
}

.icon-1 { top: 20%; left: 10%; animation: float 6s infinite ease-in-out; }
.icon-2 { top: 60%; left: 5%; animation: float 8s infinite ease-in-out; }
.icon-3 { top: 30%; right: 10%; animation: float 7s infinite ease-in-out; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.badge {
    background: var(--gold-glow);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid var(--gold);
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(to right, var(--text-main) 20%, #D4AF37 40%, #D4AF37 60%, var(--text-main) 80%);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border: 8px solid #1a1a1a;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transform-style: preserve-3d;
}

.phone-mockup::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* App Showcase */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.screen-card {
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    perspective: 1500px;
}

.screen-card .phone-mockup {
    width: 260px;
    height: 520px;
    margin-bottom: 20px;
    border-width: 6px;
    border-radius: 35px;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

@media (max-width: 768px) {
    .screen-card {
        transition: none !important; /* Prevent conflict with GSAP/AOS */
    }
}

.screen-card p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 30px var(--gold-glow);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
}

/* Feature Banner */
.feature-banner {
    padding: 150px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
    position: relative;
}

.feature-banner h2 { font-size: 3.5rem; margin-bottom: 20px; z-index: 2; position: relative; }
.feature-banner p { font-size: 1.5rem; z-index: 2; position: relative; }

/* How It Works */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--gold);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    margin-bottom: 30px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-color);
    border: 4px solid var(--gold);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left { left: 0; text-align: right; }
.right { left: 50%; text-align: left; }

.right::after { left: -10px; }

.timeline-content {
    padding: 20px 30px;
    background: var(--card-bg);
    border-radius: 15px;
}

.timeline-content h3 {
    color: var(--gold);
    margin-bottom: 10px;
}

/* Security Section */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.security-card {
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    border: 1px solid rgba(255,255,255,0.1);
}

.security-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

/* Availability Section */
.availability-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.country-card {
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.country-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 30px var(--gold-glow);
    transform: scale(1.05);
}

.country-card h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.country-card ul {
    list-style: none;
}

.country-card li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-card li i {
    color: var(--gold);
}

.coming-soon {
    font-size: 0.8rem;
    background: var(--gold);
    color: var(--bg-color);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    border-radius: 15px;
    background: var(--card-bg);
    position: relative;
}

.testimonial-card i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-muted);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active i {
    transform: rotate(180deg);
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(10,10,10,0.8), rgba(10,10,10,0.8)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    text-align: center;
    padding: 120px 0;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Footer */
footer {
    padding: 80px 0 30px;
    background: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.footer-links h4 {
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--bg-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 20px;
    font-size: 0.8rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Navigation Drawer */
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--glass);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease-in-out;
        z-index: 999;
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--gold);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        position: relative;
    }

    .hero {
        height: auto;
        padding-top: 140px;
        padding-bottom: 80px;
        background: radial-gradient(circle at 50% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .hero h1 {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.9;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        gap: 15px;
    }

    .phone-mockup {
        width: 260px;
        height: 520px;
        box-shadow: 0 20px 80px rgba(212, 175, 55, 0.3);
        transform: translateY(0);
        animation: floatMobile 6s infinite ease-in-out;
    }

    @keyframes floatMobile {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
    }

    .floating-icons {
        display: none; /* Hide cluttered icons on mobile */
    }

    .availability-container {
        grid-template-columns: 1fr;
    }

    .country-card.featured {
        transform: scale(1);
    }

    .feature-banner {
        padding: 80px 0;
    }

    .feature-banner h2 {
        font-size: 2.2rem;
    }

    .feature-banner p {
        font-size: 1.1rem;
    }

    .cta h2 {
        font-size: 2.2rem;
    }

    .top-banner {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

/* App Showcase Responsive */
@media (max-width: 576px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .screen-card .phone-mockup {
        width: 220px;
        height: 440px;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Features Grid Responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

/* How It Works Responsive */
@media (max-width: 992px) {
    .timeline::after { left: 20px; }
    .timeline-item { width: 100%; padding-left: 50px; text-align: left; }
    .timeline-item::after { left: 10px; }
    .left, .right { left: 0; }
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .social-links { justify-content: center; }
}
