:root {
    /* === PRIMARY - Elegant Purple === */
    --primary: #9333ea;
    --primary-light: #a855f7;
    --primary-dark: #7e22ce;
    --primary-muted: rgba(147, 51, 234, 0.15);

    /* === ACCENT - Luxurious Gold (Use Sparingly) === */
    --gold: #d4a853;
    --gold-light: #e5c179;
    --gold-dark: #b8923d;
    --gold-muted: rgba(212, 168, 83, 0.12);

    /* === SECONDARY === */
    --secondary: #c4b5fd;
    --success: #22c55e;

    /* === BACKGROUNDS - Rich Blacks === */
    --dark: #0c0a14;
    --darker: #06050a;
    --card-bg: #13111d;
    --card-bg-hover: #1a1726;
    --surface: #1e1b2e;

    /* === TEXT & NEUTRALS === */
    --light: #faf9fc;
    --light-muted: #e8e6f0;
    --gray: #9896a8;
    --gray-dark: #6b6980;
    --light-gray: #d4d2e0;

    /* === BORDERS === */
    --border: rgba(148, 130, 180, 0.12);
    --border-gold: rgba(212, 168, 83, 0.3);
    --border-purple: rgba(147, 51, 234, 0.25);

    /* === GRADIENTS === */
    --gradient-primary: linear-gradient(135deg, #9333ea 0%, #7c3aed 50%, #6d28d9 100%);
    --gradient-gold: linear-gradient(135deg, #d4a853 0%, #c9a227 100%);
    --gradient-premium: linear-gradient(135deg, #9333ea 0%, #d4a853 100%);
    --gradient-dark: linear-gradient(180deg, #0c0a14 0%, #13111d 100%);

    /* === SHADOWS === */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow-purple: 0 0 30px rgba(147, 51, 234, 0.25);
    --shadow-glow-gold: 0 0 25px rgba(212, 168, 83, 0.2);
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:wght@300;400;500;600;700&display=swap');


.footer {
    background: var(--dark);
    padding: 60px 20px 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-family: "Outfit", sans-serif;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--gray);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--gold);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--gold-light);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.social-links a:hover {
    background: var(--gradient-primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-bottom span {
    color: var(--gold);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

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

    100% {
        background-position: 200% 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .cards {
        width: 100%;
        max-width: 320px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}