/* ============================================================== */
/*  GLOBAL STYLES - Gold Rate Portal                              */
/*  ============================================================== */
/*  TABLE OF CONTENTS                                              */
/*  1. RESET & BASE STYLES                                        */
/*  2. TYPOGRAPHY                                                  */
/*  3. LAYOUT & CONTAINER                                         */
/*  4. HEADER & NAVIGATION                                        */
/*  5. HERO SECTION                                                */
/*  6. PRICE CARDS                                                 */
/*  7. TABLES                                                      */
/*  8. BUTTONS & BADGES                                           */
/*  9. FOOTER                                                      */
/*  10. RESPONSIVE                                                 */
/* ============================================================== */

/* ============================================================== */
/*  1. RESET & BASE STYLES                                        */
/* ============================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Roboto, system-ui, sans-serif;
    background: #0a0e1a;
    color: #e8edf5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

/* Premium Color Variables */
:root {
    --gold-primary: #ffd700;
    --gold-dark: #daa520;
    --gold-light: #f4e4a6;
    --gold-glow: rgba(255, 215, 0, 0.2);
    --gold-gradient: linear-gradient(135deg, #ffd700, #ffb347, #ff8c00);
    --bg-dark: #0a0e1a;
    --bg-card: #11161f;
    --bg-elevated: #1a1f2e;
    --silver-muted: #94a3b8;
    --success-green: #10b981;
    --danger-red: #ef4444;
    --border-glow: rgba(255, 215, 0, 0.15);
    --text-primary: #e8edf5;
    --text-secondary: #94a3b8;
    --text-muted: #6c7a91;
    --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.6);
    --shadow-light: 0 8px 30px rgba(0, 0, 0, 0.3);
    --radius-card: 28px;
    --radius-btn: 40px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================== */
/*  2. TYPOGRAPHY                                                  */
/* ============================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #e8edf5;
    margin-bottom: 0.5rem;
}

h1 { font-size: 2.8rem; font-weight: 800; }
h2 { font-size: 2.2rem; font-weight: 700; }
h3 { font-size: 1.6rem; font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 500; }
h6 { font-size: 0.85rem; font-weight: 500; }

p {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}

a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-light);
}

/* Text Utilities */
.gold-text { color: var(--gold-primary); }
.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-success { color: var(--success-green); }
.text-danger { color: var(--danger-red); }

/* ============================================================== */
/*  3. LAYOUT & CONTAINER                                         */
/* ============================================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.page-content {
    flex: 1;
    padding: 2rem 0 3rem;
}

.section-wrapper {
    margin-bottom: 2rem;
}

.section-header {
    text-align: center;
    padding: 24px 8px 16px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e8edf5;
    margin-bottom: 4px;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.15);
    color: var(--gold-primary);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 4px 16px;
    border-radius: var(--radius-btn);
    text-transform: uppercase;
}

/* ============================================================== */
/*  4. HEADER & NAVIGATION                                        */
/* ============================================================== */

/* Main Header */
.main-header {
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.12);
    padding: 0.7rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Logo Area */
.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: transform 0.2s;
}

.logo-area:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 40%, #ffd700 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-text .logo-tagline {
    font-size: 0.6rem;
    color: #ffd700cc;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    -webkit-text-fill-color: #ffd700cc;
}

/* ---------- Navigation Styles ---------- */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
    margin: 0;
    padding: 0;
}

.nav-links li a,
.nav-links li .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 8px 14px;
    border-radius: var(--radius-btn);
    transition: var(--transition);
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    position: relative;
}

.nav-links li a:hover,
.nav-links li .dropdown-toggle:hover {
    color: var(--gold-primary);
    background: rgba(255, 215, 0, 0.06);
}

.nav-links li a.active,
.nav-links li .dropdown-toggle.active {
    color: var(--gold-primary);
    background: rgba(255, 215, 0, 0.1);
    font-weight: 600;
}

.nav-links li a.active::after,
.nav-links li .dropdown-toggle.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold-primary);
    border-radius: 2px;
}

.nav-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.nav-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-text {
    display: inline-block;
}

/* ---------- Dropdown Arrow ---------- */
.dropdown-arrow {
    display: inline-flex;
    margin-left: 2px;
    transition: transform 0.3s ease;
}

.dropdown-arrow svg {
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* ---------- Dropdown Menu ---------- */
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    padding: 0.5rem 0;
    margin: 0;
    box-shadow: var(--shadow-heavy);
    z-index: 1000;
    list-style: none;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 215, 0, 0.1);
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 1.2rem;
    color: #cbd5e1;
    font-size: 0.82rem;
    font-weight: 400;
    border-radius: 0;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background: rgba(255, 215, 0, 0.06);
    color: var(--gold-primary);
    padding-left: 1.5rem;
}

.dropdown-menu li a .nav-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.dropdown-menu li a .nav-icon svg {
    stroke: currentColor;
}

.dropdown-menu li a.active {
    color: var(--gold-primary);
    background: rgba(255, 215, 0, 0.08);
    font-weight: 500;
}

.dropdown-menu li a.active::after {
    display: none;
}

/* ---------- Dropdown Divider ---------- */
.dropdown-divider {
    height: 1px;
    margin: 0.3rem 1rem;
    background: rgba(255, 255, 255, 0.06);
}

/* ---------- Header Actions ---------- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.12);
    padding: 6px 16px 6px 12px;
    border-radius: var(--radius-btn);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--success-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
    white-space: nowrap;
}

.live-indicator .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success-green);
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e8edf5;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================== */
/*  5. HERO SECTION                                                */
/* ============================================================== */
.hero-section {
    text-align: center;
    padding: 40px 20px 30px;
    background: var(--bg-card);
    border-radius: var(--radius-card);
    border-bottom: 3px solid var(--gold-primary);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.hero-badge {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gold-primary);
    background: rgba(36, 36, 36, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: inline-block;
    padding: 6px 20px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    color: #e8edf5;
    font-weight: 300;
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.08);
}

.hero-stat {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 8px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.08);
    transition: border-color 0.3s;
}

.hero-stat:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================== */
/*  6. PRICE CARDS                                                 */
/* ============================================================== */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0 2rem;
}

.price-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    padding: 1.8rem 1.5rem 1.5rem;
    position: relative;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid rgba(255, 215, 0, 0.15);
    text-align: center;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px -16px rgba(255, 215, 0, 0.15);
    border-color: var(--gold-primary);
}

.card-glow {
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 80%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.card-icon { margin-bottom: 0.5rem; }
.card-icon img { width: 40px; height: 40px; }

.card-badge {
    background: rgba(255, 215, 0, 0.08);
    color: var(--gold-primary);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: var(--radius-btn);
    display: inline-block;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.card-metal {
    font-size: 1.4rem;
    font-weight: 600;
    color: #e8edf5;
    margin-bottom: 0.3rem;
}

.card-rate {
    font-size: 2.6rem;
    font-weight: 700;
    color: #e8edf5;
    letter-spacing: -0.5px;
    margin: 0.5rem 0 0.2rem;
}

.currency {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gold-primary);
    margin-right: 4px;
}

.rate-value {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-unit {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1rem;
    font-size: 0.85rem;
}

.card-change {
    margin-top: 0.8rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.8rem;
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

.change-label {
    color: var(--text-muted);
}

.change-positive { color: var(--success-green); font-weight: 600; }
.change-negative { color: var(--danger-red); font-weight: 600; }
.change-neutral { color: var(--gold-primary); font-weight: 600; }

.trend {
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 30px;
}

.trend-up { color: var(--success-green); background: rgba(16, 185, 129, 0.12); }
.trend-down { color: var(--danger-red); background: rgba(239, 68, 68, 0.12); }
.trend.neutral { color: var(--gold-primary); background: rgba(255, 215, 0, 0.08); }

.international {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.8rem;
}

/* ============================================================== */
/*  7. TABLES                                                      */
/* ============================================================== */
.table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    background: var(--bg-card);
    padding: 0.2rem;
}

.premium-table-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    padding: 1.5rem 1.5rem 1rem;
    border: 1px solid rgba(255, 215, 0, 0.06);
    margin: 1.5rem 0;
    overflow-x: auto;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}

.table-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e8edf5;
    margin: 0;
}

.live-badge {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success-green);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: var(--radius-btn);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.premium-rates-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 600px;
}

.premium-rates-table th {
    text-align: left;
    padding: 0.8rem 0.6rem;
    font-weight: 600;
    color: var(--gold-primary);
    border-bottom: 2px solid rgba(255, 215, 0, 0.1);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.premium-rates-table td {
    padding: 0.8rem 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: #e8edf5;
}

.premium-rates-table tr:last-child td { border-bottom: none; }
.premium-rates-table tr:hover td { background: rgba(255, 215, 0, 0.03); }

.purity-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #0a0e1a;
}

.gold-bg { background: var(--gold-primary); }
.rose-bg { background: #f4e4a6; }
.orange-bg { background: #f3d06a; }
.silver-bg { background: #c0c0c0; }
.platinum-bg { background: #e5e4e2; color: #0a0e1a; }
.palladium-bg { background: #d4d4d4; color: #0a0e1a; }

.trend-up-text { color: var(--success-green); font-weight: 600; }
.trend-down-text { color: var(--danger-red); font-weight: 600; }

.best-for {
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: inline-block;
    color: #e8edf5;
}

/* ============================================================== */
/*  8. BUTTONS & BADGES                                           */
/* ============================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.8rem;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    text-decoration: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #0a0e1a;
}

.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    color: #0a0e1a;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: #0a0e1a;
}

/* ============================================================== */
/*  9. FOOTER                                                      */
/* ============================================================== */
.main-footer {
    background: #06090f;
    border-top: 1px solid rgba(255, 215, 0, 0.06);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e8edf5;
}

.brand-gold { color: var(--gold-primary); }

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 350px;
    margin: 0.5rem 0 1rem;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #e8edf5;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links li a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--gold-primary);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.15);
    color: var(--gold-primary);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold-primary);
    color: #0a0e1a;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--gold-primary);
    font-weight: 500;
}

/* ============================================================== */
/*  10. RESPONSIVE                                                 */
/* ============================================================== */

@media (max-width: 992px) {
    .nav-links li a,
    .nav-links li .dropdown-toggle {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .nav-text { font-size: 0.8rem; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .header-inner { flex-wrap: wrap; }
    .menu-toggle { display: flex; }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.2rem;
        padding: 0.5rem 0;
        display: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-links.open { display: flex; }
    
    .nav-links li a,
    .nav-links li .dropdown-toggle {
        padding: 10px 14px;
        border-radius: 12px;
        justify-content: flex-start;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .nav-links li a.active::after,
    .nav-links li .dropdown-toggle.active::after { display: none; }
    
    .dropdown-menu {
        position: static;
        transform: none;
        background: rgba(255, 255, 255, 0.03);
        border: none;
        border-radius: 0;
        padding: 0 0 0 1.5rem;
        margin: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        display: none;
        width: 100%;
    }
    
    .dropdown-menu::before { display: none; }
    .dropdown.open .dropdown-menu { display: block; }
    
    .dropdown-menu li a {
        padding: 8px 12px;
        border-radius: 8px;
        white-space: normal;
    }
    
    .dropdown-menu li a:hover { padding-left: 16px; }
    .dropdown-arrow { margin-left: auto; }
    .dropdown-divider { margin: 0.2rem 0.5rem; }
    
    .header-actions { margin-left: auto; }
    .live-indicator .live-text { display: none; }
    .container { padding: 0 20px; }
    .hero-title { font-size: 2rem; }
    .hero-stats { gap: 1rem; }
    .stat-number { font-size: 1.2rem; }
    .price-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section-title { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .nav-links li a,
    .nav-links li .dropdown-toggle {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .nav-icon { width: 16px; height: 16px; }
    
    .logo-text h1 { font-size: 1.1rem; }
    .logo-icon { width: 36px; height: 36px; }
    .logo-text .logo-tagline {
        font-size: 0.5rem;
        letter-spacing: 1.5px;
    }
    
    .live-indicator {
        padding: 4px 12px 4px 8px;
        font-size: 0.6rem;
    }
    
    .live-indicator .pulse-dot { width: 6px; height: 6px; }
    .container { padding: 0 14px; }
    .hero-title { font-size: 1.6rem; }
    .hero-section { padding: 24px 16px 20px; }
    .price-grid { grid-template-columns: 1fr; }
    .card-rate { font-size: 2rem; }
    .currency { font-size: 1.3rem; }
    .section-title { font-size: 1.2rem; }
    .premium-rates-table { font-size: 0.7rem; min-width: 500px; }
    .premium-rates-table th,
    .premium-rates-table td { padding: 0.4rem; }
    .stat-number { font-size: 1rem; }
    .hero-stat { padding: 4px 12px; }
}

/* ---------- Scrollbar Styling ---------- */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0a0e1a; }
::-webkit-scrollbar-thumb { background: var(--gold-primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* Selection */
::selection { background: var(--gold-primary); color: #0a0e1a; }

/* Utility Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}