:root {
    --primary-bg: #251739;
    --secondary-bg: #1c0e2d;
    --accent-orange: #f7931e;
    --accent-red: #ed1c24;
    --gold: #ffd700;
    --gradient-gold: linear-gradient(135deg, #f7931e 0%, #ffd700 100%);
    --gradient-fire: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-red) 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #d1c6df;
    --glow: 0 0 20px rgba(247, 147, 30, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6; /* More compact than 1.75 on mobile */
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

/* Base Styles */
h1, h2, h3, h4, .navbar-brand {
    font-weight: 800;
    letter-spacing: -0.04em;
}

p {
    font-family: 'Inter', sans-serif;
    max-width: 75ch; /* Elite reading aspect-ratio */
    margin-left: auto;
    margin-right: auto;
}

/* --- Navigation --- */
.navbar {
    background: rgba(37, 23, 57, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.brand-logo-nav {
    width: 180px; /* Reduced for professional balance */
    height: auto;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: white !important;
}

.nav-link:hover {
    color: var(--gold) !important;
}

/* --- Hero Section --- */
.hero-section {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 0; /* Tightened from 120px */
}
.banner-logo {
    width: 100%;
    position: relative;
    z-index: 1;
}
.brand-logo-hero {
    width: 50%;
    margin: 0px auto 20px;
}

.hero-headline {
    font-family: 'Marcellus SC', serif;
    font-size: clamp(2.5rem, 12vw, 7.5rem); 
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.hero-subheadline {
    font-size: clamp(1.3rem, 4vw, 3.5rem);
    font-weight: 200;
    margin-bottom: 30px;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hero-lead {
    font-size: 1rem;
    color: var(--text-main); /* Higher contrast for accessibility */
    max-width: 700px;
    margin: 0 auto 30px;
    font-weight: 400;
}

.highlight-badge {
    background: rgba(247, 147, 30, 0.1);
    border: 1px solid rgba(247, 147, 30, 0.6); /* More visible border */
    color: var(--gold);
    padding: 10px 30px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 30px;
}

/* --- Buttons --- */
.btn-primary-glow {
    background: var(--gradient-gold);
    color: var(--primary-bg);
    border: none;
    border-radius: 100px;
    padding: 20px 45px;
    font-weight: 800;
    font-size: 1.15rem;
    transition: none; /* No hover animation */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-glass-modern {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    padding: 20px 45px;
    border-radius: 100px;
    font-weight: 700;
}

.btn-gradient {
    background: var(--gradient-gold);
    color: var(--primary-bg) !important;
    font-weight: 800;
    border: none;
    transition: all 0.3s ease;
    border-radius: 100px;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(247, 147, 30, 0.4);
    color: var(--primary-bg) !important;
}

/* --- Premium Cards --- */
.glass-card-premium {
    background: var(--glass-bg);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 40px; /* Reduced from 60px */
    position: relative;
    overflow: hidden;
}

.icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.icon-wrap i {
    color: var(--gold);
    font-size: 2rem;
}

/* --- Form --- */
.form-label {
    font-weight: 700;
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    margin-left: 0px;
}

.form-control, .form-select {
    background: rgba(15, 10, 25, 0.95); /* Deep dark background */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important; /* Force white text */
    border-radius: 16px;
    padding: 14px 20px; /* Tightened from 18px 25px */
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background: #000000;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    color: #ffffff !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.expertise-options .btn-outline-orange {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white !important;
    border-radius: 50px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
}

.btn-check:checked + .btn-outline-orange {
    background: var(--gradient-gold) !important;
    color: var(--primary-bg) !important;
    border-color: transparent !important;
    box-shadow: 0 0 15px rgba(247, 147, 30, 0.3);
}

/* --- Accessibility & UX --- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.py-120 {
    padding: 40px 0; /* Compact global section padding */
}
.text-muted {
    color: #d5d5d5 !important;
}
.section-tagline {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

/* --- Policy Page Specific --- */
.policy-hero {
    padding: 180px 0 100px;
}

.policy-content {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 40px;
    padding: 60px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(40px);
}

.policy-content h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-top: 80px;
    margin-bottom: 30px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    color: white;
    font-size: 1.25rem;
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.policy-content p, .policy-content li {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 100%; /* Override for full-width cards */
}

.policy-content ul {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.policy-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-link {
    display: block;
    padding: 10px 0;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.sidebar-link:hover {
    color: var(--gold);
}

.hover-gold:hover {
    color: var(--gold) !important;
}

.extra-small {
    font-size: 0.75rem;
}

.footer-section-title {
    color: white;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 12px;
}

.footer-link:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* --- Responsive fixes --- */
@media (max-width: 992px) {
    .py-120 { padding: 40px 0; }
    .glass-card-premium { padding: 25px; border-radius: 28px; }
    .glass-card-premium.p-5 { padding: 25px !important; }
    .icon-wrap { width: 60px; height: 60px; margin-bottom: 20px; }
    .icon-wrap i { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .container { padding-left: 16px; padding-right: 16px; }
    
    /* Hero */
    .hero-section { padding: 50px 0 30px; }
    .brand-logo-hero { width: 70% !important; }
    .hero-subheadline { font-size: 1.3rem; margin-bottom: 15px; }
    .hero-lead { font-size: 0.85rem; margin-bottom: 20px; }
    .hero-btns { margin-top: 20px !important; }
    .hero-btns .btn { padding: 12px 24px; font-size: 0.85rem; }
    .highlight-badge { font-size: 0.6rem; padding: 8px 16px; margin-bottom: 15px; }
    
    /* Sections */
    .py-120 { padding: 30px 0; }
    .section-tagline { font-size: 0.75rem; margin-bottom: 10px !important; }
    .section-title { margin-bottom: 12px !important; }
    .section-subtitle { font-size: 0.9rem !important; margin-bottom: 20px !important; }
    
    /* Cards */
    .glass-card-premium { padding: 18px; border-radius: 20px; }
    .glass-card-premium.p-5 { padding: 18px !important; }
    .icon-wrap { width: 50px; height: 50px; margin-bottom: 15px; border-radius: 16px; }
    .icon-wrap i { font-size: 1.2rem; }
    
    /* Typography */
    h1, .h1 { font-size: 1.8rem !important; }
    h2, .h2 { font-size: 1.5rem !important; }
    h3, .h3 { font-size: 1.3rem !important; }
    h4 { font-size: 1.1rem !important; }
    h5 { font-size: 0.95rem !important; }
    p, .text-muted { font-size: 0.85rem; }
    .lead { font-size: 0.9rem !important; }
    
    /* Buttons */
    .btn-primary-glow, .btn-glass-modern { padding: 12px 24px; font-size: 0.85rem; }
    .btn-gradient.nav-btn { font-size: 0.8rem; padding: 8px 16px; }
    .btn-outline-light.nav-btn { font-size: 0.8rem; padding: 8px 16px; }
    
    /* Forms */
    .form-title { font-size: 1.3rem !important; }
    .form-control, .form-select { padding: 10px 14px; font-size: 0.85rem; }
    .form-label { font-size: 0.8rem; }
    
    /* Benefits */
    .benefit-list h5 { font-size: 0.9rem !important; }
    .benefit-list p { font-size: 0.75rem !important; }
    .benefit-list li { margin-bottom: 12px !important; }
    
    /* Footer */
    .footer-section { padding: 30px 0 !important; }
    .footer-section-title { font-size: 0.8rem; }
    .footer-link { font-size: 0.8rem; margin-bottom: 8px; }
    
    /* CTA */
    .final-cta { padding: 30px 0 !important; }
    .cta-title { font-size: 1.4rem !important; }
    .cta-subtitle { font-size: 0.85rem !important; }

    /* Row gaps */
    .row.g-5 { --bs-gutter-y: 1.5rem; --bs-gutter-x: 1rem; }
    .row.g-4 { --bs-gutter-y: 0.8rem; }
    .mb-5 { margin-bottom: 1.5rem !important; }
    .mb-4 { margin-bottom: 1rem !important; }
    .mt-5 { margin-top: 1.5rem !important; }
}

@media (max-width: 576px) {
    .py-120 { padding: 20px 0; }
    .hero-section { padding: 40px 0 20px; }
    .brand-logo-hero { width: 80% !important; }
    .hero-subheadline { font-size: 1.1rem; }
    .hero-lead { font-size: 0.8rem; }
    body { line-height: 1.5; }
    
    h1, .h1 { font-size: 1.5rem !important; }
    h2, .h2 { font-size: 1.3rem !important; }
    h3, .h3 { font-size: 1.15rem !important; }

    .glass-card-premium { padding: 15px; border-radius: 16px; }
    .glass-card-premium.p-5 { padding: 15px !important; }
    
    .btn-primary-glow, .btn-glass-modern { padding: 10px 20px; font-size: 0.8rem; }
    .form-title { font-size: 1.15rem !important; }
}
