:root {
    --primary-gold: #FFC300;     /* Vibrant Sun Gold */
    --accent-aqua: #00F5FF;      /* Electric Cyan/Aqua */
    --deep-obsidian: #00040A;    /* Deep Space Black */
    --royal-navy: #001026;       /* Midnight Navy */
    --text-pure: #FFFFFF;
    --text-off: #D1D5DB;         /* Soft Gray */
    --text-gold: #FFD700;
    --glass-white: rgba(255, 255, 255, 0.05);
    --glass-stroke: rgba(255, 195, 0, 0.2);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--deep-obsidian); }
::-webkit-scrollbar-thumb { 
    background: linear-gradient(var(--primary-gold), #8B6508); 
    border-radius: 10px;
}

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

html, body {
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

body {
    background: var(--deep-obsidian);
    color: var(--text-off);
    line-height: 1.6;
}

/* Luxury Background */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg.png') no-repeat center center/cover;
    z-index: -1;
    filter: brightness(0.3) saturate(0.5); /* Darker & moodier */
}

.bg-radial {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 195, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 245, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
}

/* Luxury Header */
header {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 4, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--glass-stroke);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.logo img {
    height: 80px;
    filter: drop-shadow(0 0 15px rgba(255, 195, 0, 0.3));
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px var(--primary-gold));
}

/* Golden Tap Effect */
.logo img:active {
    transform: scale(0.92);
    filter: sepia(1) saturate(15) hue-rotate(-10deg) brightness(1.2) drop-shadow(0 0 30px var(--primary-gold));
    transition: 0.1s;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    color: var(--text-off);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

nav a:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 15px rgba(255, 195, 0, 0.5);
}

/* Hero Section Redesign */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 6rem;
    margin-bottom: 25px;
    background: linear-gradient(
        to bottom, 
        #FFFFFF 0%, 
        var(--primary-gold) 40%, 
        #B8860B 60%, 
        var(--primary-gold) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    filter: drop-shadow(0 0 20px rgba(255, 195, 0, 0.4));
    letter-spacing: 12px;
    line-height: 1;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-off);
    margin-bottom: 60px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 8px;
    font-weight: 400;
    opacity: 0.9;
    border-top: 1px solid var(--glass-stroke);
    border-bottom: 1px solid var(--glass-stroke);
    padding: 10px 30px;
    display: inline-block;
}

.usp-list {
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.usp-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid var(--glass-stroke);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.usp-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(255, 195, 0, 0.15);
    background: rgba(255, 195, 0, 0.05);
}

.usp-item span { 
    font-size: 2.5rem; 
    filter: drop-shadow(0 0 10px var(--primary-gold));
}

.usp-item h4 {
    color: var(--primary-gold);
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Stats Section Redesign */
.stats-section {
    padding: 100px 10%;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--glass-stroke);
    border-bottom: 1px solid var(--glass-stroke);
}

.stat-card {
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 250px;
}

.stat-card h2 {
    font-size: 4rem;
    color: var(--primary-gold);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 195, 0, 0.3);
}

.stat-card p {
    color: var(--text-off);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Partners Section Redesign */
.partners-section {
    padding: 120px 8%;
    text-align: center;
    background: linear-gradient(to bottom, transparent, rgba(255, 195, 0, 0.02), transparent);
}

.partners-section h2, 
.team-section h2, 
.form-container h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 10px;
    background: linear-gradient(135deg, #FFFFFF, var(--primary-gold), #8B6508);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 195, 0, 0.2));
}

.partners-subtitle {
    font-size: 1.1rem;
    color: var(--text-off);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 300;
}

.partners-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px; /* Increased gap for elegance */
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    border: 1px solid var(--glass-stroke);
    backdrop-filter: blur(10px);
}

.partner-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-stroke);
    border-radius: 15px;
    height: 120px;      
    padding: 15px;      /* Added padding to prevent logos from touching edges */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(255, 195, 0, 0.2);
    background: rgba(255, 195, 0, 0.05);
}

.partner-card img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to contain to prevent cropping */
    transition: var(--transition);
    filter: brightness(1.1) contrast(1.1);
}

.partner-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.partner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    z-index: 2;
    pointer-events: none;
    transition: var(--transition);
}

.partner-card:hover::before {
    background: linear-gradient(to top, rgba(255, 195, 0, 0.2), transparent);
}

@media (max-width: 768px) {
    .partners-subtitle { font-size: 1.6rem; }
}

/* Team Section Redesign */
.team-section {
    padding: 120px 8%;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto;
}

.team-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-stroke);
    padding: 40px;
    border-radius: 30px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.team-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 50px rgba(255, 195, 0, 0.1);
}

.team-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-gold);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.team-card p.role {
    color: #FFFFFF;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.contact-card-info {
    text-align: left;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-off);
}

.contact-card-info p {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-card-info i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

/* KYC Requirements Box Redesign */
.kyc-requirements-section {
    padding: 100px 8%;
    display: flex;
    justify-content: center;
}

.kyc-box {
    max-width: 850px;
    width: 95%;
    background: rgba(0, 16, 38, 0.9);
    border: 2px solid var(--glass-stroke);
    border-radius: 30px;
    padding: 35px 30px;
    backdrop-filter: blur(30px);
    position: relative;
    text-align: center;
    border-top: 5px solid var(--primary-gold);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 30px rgba(255, 195, 0, 0.1);
    transition: var(--transition);
}

.kyc-box h2 {
    color: var(--primary-gold);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
}

.kyc-box .kyc-header {
    margin-bottom: 25px;
}

.kyc-box .kyc-header h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.kyc-box .kyc-subtitle {
    font-size: 0.95rem;
    color: var(--text-off);
    opacity: 0.8;
}

.kyc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.kyc-item {
    background: rgba(255, 255, 255, 0.04);
    padding: 20px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 195, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.kyc-item i {
    color: var(--primary-gold);
    font-size: 2rem;
    filter: drop-shadow(0 0 8px rgba(255, 195, 0, 0.4));
}

.kyc-item span {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.kyc-instructions {
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.kyc-instructions h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kyc-instructions ul {
    list-style: none;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.4;
}

.kyc-instructions ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.kyc-instructions ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

.kyc-note {
    background: rgba(255, 195, 0, 0.05);
    padding: 15px 20px;
    color: var(--primary-gold);
    font-weight: 700;
    border-radius: 15px;
    border: 1px dashed rgba(255, 195, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .kyc-box { padding: 30px 15px; }
    .kyc-box h2 { font-size: 1.4rem; }
    .kyc-grid { grid-template-columns: 1fr; }
}

/* Form Section Redesign */
.form-section {
    padding: 120px 8%;
    background: radial-gradient(circle at center, rgba(255, 195, 0, 0.05) 0%, transparent 70%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(0, 4, 10, 0.8);
    padding: 50px;
    border-radius: 40px;
    border: 1px solid var(--glass-stroke);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--primary-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-stroke);
    border-radius: 12px;
    color: white;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-gold);
    background: rgba(255, 195, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 195, 0, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-gold), #B8860B);
    color: #000;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 3px;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 195, 0, 0.4);
    filter: brightness(1.1);
}

/* WhatsApp Floating */
.whatsapp-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25D366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 2000;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Footer Redesign */
footer {
    padding: 60px 8%;
    text-align: center;
    background: #00040A;
    border-top: 1px solid var(--glass-stroke);
}

footer p {
    letter-spacing: 1px;
    font-weight: 500;
}

/* Mobile Menu Toggle Styling */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-gold);
    cursor: pointer;
    transition: var(--transition);
}

/* --- FULL RESPONSIVE SYSTEM --- */

@media (max-width: 1024px) {
    header { padding: 0 5%; }
    .hero-content h1 { font-size: 4.5rem; }
    .stat-card h2 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    /* Mobile Menu Implementation */
    .menu-toggle { 
        display: block; 
        position: relative;
        z-index: 10001; 
    }
    
    #nav-menu {
        position: fixed;
        right: -300px; /* Hidden off-screen to the right */
        top: 0;
        width: 280px;
        height: 100vh;
        background: rgba(0, 4, 10, 0.98);
        backdrop-filter: blur(25px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 10000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        border-left: 1px solid var(--glass-stroke);
    }

    #nav-menu.active { 
        right: 0; /* Slide in from the right */
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
    }

    nav a { font-size: 1.5rem; letter-spacing: 5px; }

    /* Hero Responsive */
    .hero { min-height: 80vh; padding-top: 100px; }
    .hero-content h1 { 
        font-size: min(3rem, 10vw); 
        letter-spacing: 5px; 
        line-height: 1.2;
    }
    .hero-subtitle { font-size: 0.9rem; letter-spacing: 4px; padding: 10px 15px; }

    /* Grids & Cards */
    .usp-list { grid-template-columns: 1fr; padding: 0 10px; }
    
    .stats-section { 
        padding: 60px 5%; 
        gap: 40px; 
        flex-direction: column; /* Stack vertically on mobile */
        align-items: center;
    }
    
    .stat-card { 
        width: 100%; 
        min-width: 0; 
        border-bottom: 1px solid var(--glass-stroke); 
        padding: 30px 10px;
        margin: 0;
    }
    
    .stat-card:last-child { border-bottom: none; }
    
    .stat-card h2 { 
        font-size: 2.8rem; /* Re-balanced smaller size for mobile */
        margin-bottom: 10px;
        text-shadow: 0 0 15px rgba(255, 195, 0, 0.4);
    }
    
    .stat-card p {
        font-size: 0.75rem; 
        letter-spacing: 2px;
    }

    .partners-grid-alt { 
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); 
        gap: 15px; 
        padding: 15px;
    }
    .partner-card { height: 90px; padding: 10px; }

    .team-grid { grid-template-columns: 1fr; padding: 0 10px; }
    .team-card { padding: 30px 20px; }

    .form-container { width: 100%; padding: 30px 20px; border-radius: 20px; }
    .form-container h2 { font-size: 2rem; letter-spacing: 4px; }

    /* Buttons & Floating */
    .whatsapp-btn { width: 55px; height: 55px; bottom: 20px; right: 20px; }
    .whatsapp-btn i { font-size: 25px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.5rem; }
    .partners-grid-alt { grid-template-columns: repeat(2, 1fr); }
    header { height: 80px; }
    .logo img { height: 60px; }
}

/* Forced Desktop View Compatibility */
@media (min-width: 1200px) {
    body { overflow-x: hidden; }
    .container { max-width: 1200px; margin: 0 auto; }
}
