:root {
    --primary-color: #d4af37;
    --primary-dark: #b8960c;
    --primary-light: #f0cd5a;
    --secondary-color: #1a1a2e;
    --accent-color: #16213e;
    --purple-color: #7c3aed;
    --purple-light: #a78bfa;
    --success-color: #00ff88;
    --danger-color: #ff3366;
    --warning-color: #ffaa00;
    --dark-bg: #0a0a14;
    --card-bg: #1a1a2e;
    --card-border: rgba(212, 175, 55, 0.25);
    --glow-gold: rgba(212, 175, 55, 0.3);
    --glow-purple: rgba(124, 58, 237, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--secondary-color); }
::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }
::selection { background: rgba(212, 175, 55, 0.3); color: #ffffff; }

/* ===================== NAVBAR ===================== */
.navbar {
    background: rgba(10, 10, 20, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    transition: all 0.3s ease;
    padding: 12px 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary-color) !important;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.navbar-brand:hover { transform: scale(1.03); }
.navbar-brand .brand-icon { color: var(--primary-color); }

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 14px !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.nav-link.active { color: var(--primary-color) !important; }

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-color);
}

/* ===================== BUTTONS ===================== */
.btn-primary {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    border: none;
    border-radius: 30px;
    padding: 11px 28px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
    color: #000 !important;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    border-radius: 30px;
    padding: 9px 28px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: transparent;
    text-transform: uppercase;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #000 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-success {
    background: linear-gradient(45deg, #00cc66, var(--success-color));
    border: none;
    border-radius: 30px;
    color: #000 !important;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.35);
}

.btn-danger {
    background: linear-gradient(45deg, #cc0044, var(--danger-color));
    border: none;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.35);
}

.btn-purple {
    background: linear-gradient(45deg, var(--purple-color), var(--purple-light));
    border: none;
    border-radius: 30px;
    padding: 11px 28px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: #fff !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--glow-purple);
    text-transform: uppercase;
}

.btn-purple:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
}

/* ===================== HERO SECTION ===================== */
.hero-section {
    padding: 130px 0 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, rgba(124, 58, 237, 0.06) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(212,175,55,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    animation: gridMove 20s linear infinite;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-main {
    background: rgba(26, 26, 46, 0.85);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 40px rgba(212,175,55,0.1);
    animation: float 6s ease-in-out infinite;
    min-width: 340px;
}

.hero-card-floating {
    position: absolute;
    background: rgba(26, 26, 46, 0.9);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 14px 20px;
    backdrop-filter: blur(20px);
    font-size: 0.85rem;
    white-space: nowrap;
}

.hero-card-floating.top-right {
    top: -20px; right: -40px;
    animation: float 5s ease-in-out infinite 1s;
}

.hero-card-floating.bottom-left {
    bottom: -10px; left: -40px;
    animation: float 7s ease-in-out infinite 0.5s;
}

/* ===================== TICKER / STATS BAR ===================== */
.stats-ticker-bar {
    background: rgba(26, 26, 46, 0.85);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 14px 0;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.ticker-inner {
    display: flex;
    align-items: center;
    animation: ticker 35s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 40px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 20px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.ticker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);
}

/* ===================== SECTION COMMON ===================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 12px;
    position: relative;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '—';
    margin: 0 10px;
    opacity: 0.5;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title .gold { color: var(--primary-color); }
.section-title .purple { color: var(--purple-light); }

.section-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================== FEATURE / INVESTMENT CARDS ===================== */
.feature-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.06), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.feature-card:hover::before { animation: shine 0.9s ease-in-out; }

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
}

.feature-card.purple-card {
    border-color: rgba(124, 58, 237, 0.3);
}

.feature-card.purple-card:hover {
    border-color: var(--purple-light);
    box-shadow: 0 25px 50px rgba(124, 58, 237, 0.2);
}

/* ===================== INVESTMENT PLAN CARDS ===================== */
.plan-card {
    background: rgba(26, 26, 46, 0.85);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.plan-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.15), 0 25px 50px rgba(0,0,0,0.3);
}

.plan-card.featured::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: 20px; right: -32px;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 50px;
    transform: rotate(45deg);
}

.plan-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.25);
}

.plan-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.plan-yield {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
}

.plan-yield small {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.5);
}

.plan-period {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.plan-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.plan-min {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

.plan-min span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.plan-features li:last-child { border-bottom: none; }
.plan-features li .check { color: var(--success-color); font-weight: 700; }

/* ===================== ELITE TIER CARDS ===================== */
.tier-card {
    background: rgba(26, 26, 46, 0.85);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-color), var(--primary-light));
}

.tier-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
}

.tier-number {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    color: #000;
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(212,175,55,0.4);
}

.tier-return {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
}

.tier-return-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-min {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.tier-min-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* ===================== RETURNS/BENEFIT ICON CARDS ===================== */
.benefit-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.benefit-icon {
    width: 70px; height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.benefit-icon.gold-bg { background: rgba(212, 175, 55, 0.15); color: var(--primary-color); }
.benefit-icon.green-bg { background: rgba(0, 255, 136, 0.1); color: var(--success-color); }
.benefit-icon.purple-bg { background: rgba(124, 58, 237, 0.15); color: var(--purple-light); }
.benefit-icon.blue-bg { background: rgba(0, 212, 255, 0.1); color: #00d4ff; }

/* ===================== VERIFICATION / KYC SECTION ===================== */
.kyc-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.kyc-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    padding: 20px 24px;
    background: rgba(26, 26, 46, 0.7);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.kyc-step:hover {
    border-color: var(--primary-color);
    transform: translateX(6px);
}

.kyc-step-num {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kyc-step-content h6 {
    font-weight: 700;
    margin-bottom: 4px;
}

.kyc-step-content p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* ===================== DASHBOARD PREVIEW ===================== */
.dashboard-preview-card {
    background: rgba(26, 26, 46, 0.9);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(212,175,55,0.08);
    animation: float 7s ease-in-out infinite;
}

.mock-chart {
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    padding: 20px;
    height: 160px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    overflow: hidden;
}

.chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(to top, var(--primary-dark), var(--primary-color));
    animation: barGrow 1.5s ease-out;
    transition: all 0.3s ease;
}

.chart-bar:hover { opacity: 0.8; }

@keyframes barGrow {
    from { height: 0; }
    to { height: var(--h, 50%); }
}

/* ===================== STATS CARD (DASHBOARD) ===================== */
.stats-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
    transition: all 0.5s ease;
}

.stats-card:hover::before { left: 100%; }
.stats-card:hover { transform: translateY(-5px); border-color: var(--primary-color); box-shadow: 0 15px 35px rgba(212,175,55,0.15); }

/* ===================== WITHDRAWAL SECTION ===================== */
.withdraw-card {
    background: rgba(26, 26, 46, 0.85);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.withdraw-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
}

.withdraw-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    background: linear-gradient(45deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
    border: 2px solid rgba(212,175,55,0.25);
    box-shadow: 0 0 30px rgba(212,175,55,0.15);
}

/* ===================== ASSET ALLOCATION SECTION ===================== */
.allocation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    margin: 10px 0;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.allocation-item:hover {
    background: rgba(212,175,55,0.06);
    border-color: rgba(212,175,55,0.2);
    transform: translateX(4px);
}

.allocation-bar {
    height: 6px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
    margin-top: 8px;
    box-shadow: 0 0 10px rgba(212,175,55,0.3);
}

/* ===================== WHY CHOOSE SECTION ===================== */
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.why-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(45deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
    border: 1px solid rgba(212,175,55,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-item:hover .why-icon {
    background: rgba(212,175,55,0.2);
    box-shadow: 0 0 20px rgba(212,175,55,0.2);
}

.why-content h5 { font-weight: 700; margin-bottom: 6px; }
.why-content p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin: 0; }

/* ===================== FAQ SECTION ===================== */
.faq-section { padding: 80px 0; }

.faq-item {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover { border-color: rgba(212,175,55,0.4); }
.faq-item.open { border-color: var(--primary-color); }

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    padding: 20px 24px;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.faq-question:hover { color: var(--primary-color); }
.faq-question .faq-icon { transition: transform 0.3s ease; color: var(--primary-color); font-size: 0.8rem; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

.faq-answer.open {
    max-height: 300px;
    padding: 0 24px 20px;
}

/* ===================== CONTACT SECTION ===================== */
.contact-card {
    background: rgba(26, 26, 46, 0.85);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(212,175,55,0.15);
}

.contact-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: linear-gradient(45deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
    border: 1px solid rgba(212,175,55,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: rgba(212,175,55,0.2);
    box-shadow: 0 0 20px rgba(212,175,55,0.25);
}

/* ===================== FOOTER ===================== */
footer {
    background: rgba(5, 5, 14, 0.97);
    border-top: 1px solid var(--card-border);
    padding: 60px 0 30px;
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.footer-links a:hover { color: var(--primary-color); padding-left: 4px; }

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

.social-link {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(212,175,55,0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255,255,255,0.07);
    margin: 30px 0 20px;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ===================== TRUST BADGES ===================== */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(26,26,46,0.7);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.trust-badge:hover { border-color: var(--primary-color); }
.trust-badge i { color: var(--primary-color); font-size: 1rem; }

/* ===================== SECTION BG VARIATION ===================== */
.bg-section-alt {
    background: rgba(16, 10, 35, 0.5);
    position: relative;
}

.bg-section-purple {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(212, 175, 55, 0.04) 100%);
}

/* ===================== DASHBOARD SIDEBAR STYLES ===================== */
.dashboard-sidebar {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 20px;
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 80px;
    border: 1px solid var(--card-border);
}

.dashboard-content {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 20px;
    padding: 32px;
    margin-left: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
}

.dashboard-section { display: none; }
.dashboard-section.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.sidebar-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 4px;
    cursor: pointer;
}

.sidebar-nav-link:hover, .sidebar-nav-link.active {
    background: rgba(212,175,55,0.1);
    color: var(--primary-color);
    border: 1px solid rgba(212,175,55,0.2);
}

.sidebar-nav-link i { width: 18px; text-align: center; }

/* ===================== FORM STYLES ===================== */
.form-control {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: #ffffff;
    transition: all 0.3s ease;
    padding: 12px 16px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    color: #ffffff;
}

.form-control::placeholder { color: rgba(255, 255, 255, 0.4); }
.form-label { color: rgba(255,255,255,0.85); font-weight: 600; margin-bottom: 8px; font-size: 0.88rem; }

.input-group-text {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--primary-color);
    border-radius: 12px 0 0 12px;
}

.form-select {
    background-color: rgba(26, 26, 46, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #fff;
    border-radius: 12px;
    padding: 12px 16px;
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

/* ===================== MODAL ===================== */
.modal-content {
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    border-radius: 24px;
    backdrop-filter: blur(20px);
}

.modal-header {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 24px 28px 16px;
}

.modal-footer {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 16px 28px 24px;
}

.modal-body { padding: 20px 28px; }

/* ===================== TABLE ===================== */
.table-dark {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: rgba(212, 175, 55, 0.04);
    --bs-table-hover-bg: rgba(212, 175, 55, 0.08);
}

.table th { border-color: rgba(212, 175, 55, 0.2); font-weight: 700; color: var(--primary-color); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; }
.table td { border-color: rgba(212, 175, 55, 0.1); font-size: 0.9rem; }

/* ===================== BADGES ===================== */
.badge { padding: 5px 12px; border-radius: 20px; font-weight: 600; font-size: 0.75rem; }

/* ===================== ALERTS ===================== */
.alert { border-radius: 14px; border: none; backdrop-filter: blur(10px); }
.alert-success { background: rgba(0,255,136,0.08); border: 1px solid rgba(0,255,136,0.25); color: var(--success-color); }
.alert-danger { background: rgba(255,51,102,0.08); border: 1px solid rgba(255,51,102,0.25); color: var(--danger-color); }
.alert-warning { background: rgba(255,170,0,0.08); border: 1px solid rgba(255,170,0,0.25); color: var(--warning-color); }
.alert-info { background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.25); color: var(--primary-color); }

/* ===================== PROGRESS BARS ===================== */
.progress { background: rgba(255,255,255,0.08); border-radius: 10px; }
.progress-bar { border-radius: 10px; background: linear-gradient(90deg, var(--primary-dark), var(--primary-color)); transition: all 0.6s ease; }

/* ===================== DROPDOWN ===================== */
.dropdown-menu {
    background: var(--card-bg);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    padding: 8px;
}

.dropdown-item { color: rgba(255,255,255,0.8); border-radius: 10px; padding: 10px 16px; font-size: 0.88rem; transition: all 0.2s ease; }
.dropdown-item:hover { background: rgba(212,175,55,0.1); color: var(--primary-color); }
.dropdown-divider { border-color: rgba(255,255,255,0.08); }

/* ===================== LOADING ===================== */
.loading {
    display: inline-block;
    width: 18px; height: 18px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 0.8s ease-in-out infinite;
}

/* ===================== UTILITY CLASSES ===================== */
.text-gold { color: var(--primary-color) !important; }
.text-purple { color: var(--purple-light) !important; }
.text-glow { text-shadow: 0 0 20px rgba(212,175,55,0.5); }
.border-gold { border: 1px solid var(--primary-color) !important; }
.bg-card { background: rgba(26, 26, 46, 0.8) !important; }
.gold-gradient { background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.divider-gold { border-color: rgba(212,175,55,0.2) !important; }

/* ===================== STATUS BADGES ===================== */
.status-active { color: var(--success-color); }
.status-pending { color: var(--warning-color); }
.status-completed { color: var(--primary-color); }
.status-rejected { color: var(--danger-color); }

/* ===================== SCROLLING SECTION ANIMATIONS ===================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== KEYFRAME ANIMATIONS ===================== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
}

@keyframes ticker {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

@keyframes gridMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-10px) translateY(-10px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shine {
    0% { opacity: 0; transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes pulse {
    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); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.pulse { animation: pulse 2s infinite; }
.floating { animation: float 6s ease-in-out infinite; }

/* ===================== PRINT STYLES ===================== */
@media print {
    .navbar, .btn, .modal { display: none !important; }
    body { background: white !important; color: black !important; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
    .dashboard-content { margin-left: 0; margin-top: 20px; }
    .hero-card-floating { display: none; }
}

@media (max-width: 768px) {
    .hero-section { padding: 100px 0 60px; }
    .hero-stats { gap: 20px; }
    .plan-card, .tier-card { margin-bottom: 24px; }
    .dashboard-sidebar { position: relative; top: auto; }
    .hero-card-main { min-width: auto; }
}

@media (max-width: 576px) {
    .btn { padding: 9px 18px; font-size: 0.82rem; }
    .plan-yield { font-size: 2.8rem; }
    .tier-return { font-size: 2.4rem; }
    .section-title { font-size: 1.7rem; }
    .navbar-brand { font-size: 1.3rem; }
    .hero-title { letter-spacing: -0.5px; }
}
