:root {
    --primary: #0F172A;
    /* Navy */
    --gold: #D4AF37;
    /* Metallic Gold */
    --gold-light: #F3E5AB;
    --text: #334155;
    --light-bg: #F8FAFC;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-3d: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    color: var(--text);
    background-color: var(--light-bg);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-weight: 700;
    color: var(--primary);
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* 3D Glass Header */
.header {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn {
    background: var(--gold);
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* Cinematic Hero */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
    color: white;
    text-align: center;
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

/* Animated Background Gradient */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* 3D Cards */
.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-3d);
}

.card h3,
.card h4 {
    margin-top: 0;
    color: var(--primary);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Warning Box 3D */
.warning-box {
    background: #FFFBEB;
    border-left: 5px solid #F59E0B;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Sticky Pulse Button */
.sticky-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gold);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer {
    background: var(--primary);
    color: #94a3b8;
    padding: 3rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer a {
    color: #fff;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
        /* Smaller for mobile to prevent overflow */
        padding: 0 10px;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        /* Tighter gap */
    }

    .sticky-btn {
        width: 90%;
        text-align: center;
        justify-content: center;
        left: 5%;
        right: 5%;
        bottom: 1.5rem;
        /* Higher to clear iOS bar */
        font-size: 1rem;
        padding: 1rem;
        /* Easier touch target */
    }

    .container {
        padding: 0 1rem;
        /* More breathing room */
    }

    /* Optimize Table/Cards for Mobile */
    .card {
        padding: 1.5rem;
    }
}

/* --- New Global Navigation & Mobile Header --- */

/* 1. Desktop Navigation (In Header) */
.desktop-nav a {
    color: #cbd5e1;
    margin-left: 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

.desktop-nav a:hover {
    color: var(--gold);
}

.desktop-nav a.active {
    color: var(--white);
    border-bottom: 2px solid var(--gold);
}

.nav-left {
    display: flex;
    align-items: center;
}

/* 2. Mobile Phone Icon (Hidden on Desktop) */
.mobile-phone-icon {
    display: none;
}

/* 3. Mobile Bottom Tabs (Hidden on Desktop) */
.mobile-bottom-nav {
    display: none;
}

/* --- Mobile Queries --- */
@media (max-width: 768px) {

    /* Hide specific desktop elements */
    .desktop-phone,
    .desktop-nav {
        display: none !important;
    }

    /* Header Adjustments */
    .nav {
        padding: 0.5rem 0;
        /* Slimmer header */
    }

    .logo img {
        height: 40px !important;
        /* Smaller logo */
    }

    /* Mobile Pulse Icon */
    .mobile-phone-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gold);
        color: var(--primary);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        text-decoration: none;
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
        animation: pulse-gold 1.5s infinite;
        font-weight: 800;
        font-size: 1.2rem;
    }

    .mobile-phone-icon i {
        margin-right: 2px;
    }

    /* Pulsing Animation */
    @keyframes pulse-gold {
        0% {
            box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
        }

        70% {
            box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
        }
    }

    /* Mobile Bottom Sticky Tabs */
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 10px 0;
        z-index: 2000;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .mobile-bottom-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #94a3b8;
        font-size: 0.75rem;
        text-decoration: none;
    }

    .mobile-bottom-nav a i {
        font-size: 1.2rem;
        margin-bottom: 4px;
        color: var(--gold);
        /* Icons strictly gold */
    }

    .mobile-bottom-nav a.active {
        color: var(--white);
    }

    /* Adjust body padding so content isn't hidden behind bottom nav */
    body {
        padding-bottom: 80px;
    }

    /* Expert Table Fix: Prevent Horizontal Scroll Breakage */
    table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        /* Prevents ugly wrapping in tight cells */
    }

    .sticky-btn {
        bottom: 90px;
    }
}@import 'brands.css';
