/* ================================================
   LUXURY MLM WEBSITE - PREMIUM DARK THEME
   Dark Backgrounds | Gold Accents | Elite Design
   ================================================ */

/* ============================================
   CSS VARIABLES - LUXURY COLOR PALETTE
   ============================================ */
:root {
    /* Primary Colors - Dark & Luxury */
    --color-dark: #0a0a0a;
    --color-charcoal: #1a1a1a;
    --color-dark-gray: #2a2a2a;
    --color-medium-gray: #3a3a3a;
    
    /* Gold Accents - Multiple Shades */
    --color-gold: #D4AF37;
    --color-gold-light: #F4D03F;
    --color-gold-dark: #B8860B;
    --color-gold-pale: #FFD700;
    
    /* Gradients - Luxury */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    --gradient-gold-dark: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #2a2a2a 100%);
    --gradient-charcoal: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    
    /* Text Colors */
    --color-text-primary: #ffffff;
    --color-text-secondary: #cccccc;
    --color-text-muted: #999999;
    
    /* Borders */
    --border-gold: 1px solid rgba(212, 175, 55, 0.3);
    --border-gold-light: 1px solid rgba(244, 208, 63, 0.2);
    
    /* Shadows - Luxury */
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-gold-lg: 0 10px 40px rgba(212, 175, 55, 0.4);
    --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.5);
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-serif-alt: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 20px;
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-dark);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
    background: var(--color-gold);
    color: var(--color-dark);
}

/* ============================================
   PRELOADER - LUXURY SPINNER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.luxury-spinner {
    width: 80px;
    height: 80px;
    position: relative;
    margin: 0 auto 30px;
}

.gold-circle {
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--color-gold);
    border-right-color: var(--color-gold);
    border-radius: 50%;
    animation: luxurySpin 1.5s linear infinite;
}

.inner-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid transparent;
    border-bottom-color: var(--color-gold-light);
    border-left-color: var(--color-gold-light);
    border-radius: 50%;
    animation: luxurySpin 1s linear infinite reverse;
}

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

.loading-text {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--color-gold);
    letter-spacing: 2px;
    font-weight: 600;
}

/* ============================================
   LUXURY NAVIGATION BAR
   ============================================ */
.luxury-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: var(--border-gold);
    z-index: 9999;
    transition: all 0.3s ease;
}

.luxury-navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-dark);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.luxury-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.luxury-logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-dark);
    box-shadow: var(--shadow-gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-gold);
    letter-spacing: 3px;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 4px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 60px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-luxury {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: var(--gradient-gold);
    color: var(--color-dark);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-luxury:hover::before {
    left: 100%;
}

.btn-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-luxury i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-luxury:hover i {
    transform: translateX(5px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10000;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--color-gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-border {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
}

/* ============================================
   HERO SECTION - LUXURY STYLE
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 90px;
}

.hero-slider {
    height: calc(100vh - 90px);
}

.hero-slide {
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.75) 100%);
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(212, 175, 55, 0.03) 2px,
        rgba(212, 175, 55, 0.03) 4px
    );
    z-index: 2;
}

.hero-slide .container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.hero-subtitle {
    font-family: var(--font-serif-alt);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text-primary);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
}

.hero-title .gold-text {
    color: var(--color-gold);
    display: block;
}

.hero-description {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.7s;
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.9s;
}

.btn-primary-luxury {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--gradient-gold);
    color: var(--color-dark);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.btn-primary-luxury:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-outline-luxury {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--color-gold);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-luxury:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--color-text-muted);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--color-gold);
    opacity: 1;
    width: 40px;
    border-radius: 6px;
}

/* ============================================
   SECTION DECORATORS
   ============================================ */
.section-decorator {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    font-family: var(--font-serif-alt);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: var(--color-gold);
}

.section-label::before {
    right: calc(100% + 20px);
}

.section-label::after {
    left: calc(100% + 20px);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 300;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.gold-text {
    color: var(--color-gold);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: var(--section-padding);
    background: var(--gradient-charcoal);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(26, 26, 26, 0.6);
    border: var(--border-gold);
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--color-dark);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 15px;
}

.feature-description {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    padding: var(--section-padding);
    background: var(--color-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: var(--gradient-charcoal);
    border: var(--border-gold-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-content {
    padding: 30px;
}

.product-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-gold);
    color: var(--color-dark);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 15px;
}

.product-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

.product-description {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-price {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.product-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-muted);
}

.btn-product {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: transparent;
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--color-gold);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-product:hover {
    background: var(--color-gold);
    color: var(--color-dark);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: var(--section-padding);
    background: var(--gradient-gold);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(0,0,0,0.1)" stroke-width="0.5"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    position: relative;
    z-index: 2;
}

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

.stat-number {
    font-family: var(--font-serif);
    font-size: 64px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    color: rgba(10, 10, 10, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--color-charcoal);
}

.testimonials-slider {
    margin-top: 60px;
    padding: 40px 0;
}

.testimonial-card {
    background: rgba(26, 26, 26, 0.6);
    border: var(--border-gold);
    border-radius: 20px;
    padding: 50px;
    position: relative;
}

.quote-icon {
    font-size: 60px;
    color: var(--color-gold);
    opacity: 0.2;
    position: absolute;
    top: 30px;
    left: 40px;
}

.testimonial-text {
    font-family: var(--font-serif-alt);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-primary);
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--color-gold);
    object-fit: cover;
}

.author-info h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 5px;
}

.author-info p {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--color-gold);
    letter-spacing: 1px;
}

.testimonial-rating {
    margin-top: 15px;
}

.testimonial-rating i {
    color: var(--color-gold);
    font-size: 16px;
    margin-right: 5px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 30px;
    line-height: 1.2;
}

.cta-description {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 300;
    color: var(--color-text-secondary);
    margin-bottom: 50px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER - LUXURY DARK
   ============================================ */
.luxury-footer {
    background: var(--color-dark);
    color: var(--color-text-secondary);
}

.footer-border-top {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
}

.footer-content {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--color-text-muted);
}

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

.social-link {
    width: 45px;
    height: 45px;
    border: var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-gold);
}

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

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

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 10px;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

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

.footer-links a:hover i {
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--color-text-muted);
    font-size: 14px;
}

.footer-contact i {
    color: var(--color-gold);
    font-size: 16px;
    margin-top: 2px;
}

.footer-bottom {
    border-top: var(--border-gold);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.made-with {
    display: flex;
    align-items: center;
    gap: 8px;
}

.made-with i {
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.bg-dark { background: var(--color-dark); }
.bg-charcoal { background: var(--color-charcoal); }
.mt-60 { margin-top: 60px; }
.mb-60 { margin-bottom: 60px; }
.pt-120 { padding-top: 120px; }
.pb-120 { padding-bottom: 120px; }
