/* ========================================
   SportyJet - Main Stylesheet
   Modern, Luxury Aviation & Travel Platform
   ======================================== */

:root {
    --gold: #d4af37;
    --gold-dark: #b8960c;
    --gold-light: #f4e4a6;
    --navy: #0a0a1a;
    --navy-light: #1a1a2e;
    --navy-lighter: #2d2d44;
    --coral: #e94560;
    --coral-dark: #c73e54;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-logo-icon {
    font-size: 2rem;
}

.nav-logo-text {
    color: var(--white);
}

.nav-logo-text span {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.nav-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.nav-btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
}

.nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Navigation */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 24px;
        gap: 24px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .nav-btn {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .tagline {
    font-size: 1.6rem;
    max-width: 900px;
    margin: 0 auto 20px;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.5;
}

.hero .sub-tagline {
    font-size: 1.15rem;
    opacity: 0.75;
    margin-bottom: 56px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1.2rem;
    }

    .hero .sub-tagline {
        font-size: 1rem;
    }
}

/* ========================================
   SEARCH CONTAINER
   ======================================== */

.search-container {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    margin: 0 auto;
    max-width: 1000px;
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
}

.search-tabs {
    display: flex;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.search-tab {
    flex: 1;
    padding: 20px 24px;
    text-align: center;
    cursor: pointer;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.search-tab:hover {
    background: var(--white);
    color: var(--navy);
}

.search-tab.active {
    background: var(--white);
    color: var(--navy);
    border-bottom-color: var(--gold);
}

.search-tab-icon {
    font-size: 1.3rem;
}

.search-panel {
    display: none;
    padding: 32px 36px;
}

.search-panel.active {
    display: block;
}

.search-fields {
    display: flex;
    gap: 16px;
    align-items: flex-end;
}

.search-field {
    flex: 1;
    text-align: left;
}

.search-field label {
    display: block;
    color: var(--gray-700);
    font-size: 0.8rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--gray-900);
    transition: all 0.3s;
    font-family: inherit;
}

.search-field input:focus,
.search-field select:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .search-tabs {
        flex-wrap: wrap;
    }

    .search-tab {
        flex: 50%;
        font-size: 0.85rem;
        padding: 16px 12px;
    }

    .search-fields {
        flex-direction: column;
    }

    .search-btn {
        width: 100%;
    }
}

/* ========================================
   TRUST BAR
   ======================================== */

.trust-bar {
    background: var(--navy-light);
    padding: 24px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item .icon {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
    padding: 100px 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--navy);
    font-weight: 800;
    letter-spacing: -1px;
}

.section-header .subtitle {
    color: var(--gray-600);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    display: block;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--navy);
    font-weight: 700;
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.earn-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* ========================================
   EXPERIENCES SECTION
   ======================================== */

.experiences {
    padding: 100px 0;
    background: var(--white);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 900px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
}

.experience-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--gold);
}

.experience-image {
    height: 240px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--coral) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.experience-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.experience-content {
    padding: 28px;
}

.experience-tag {
    display: inline-block;
    background: var(--gray-100);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gray-700);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.experience-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--navy);
    font-weight: 700;
}

.experience-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.experience-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.experience-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
}

.experience-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-500);
}

.experience-points {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 0.95rem;
}

/* ========================================
   MEMBERSHIP SECTION
   ======================================== */

.membership {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.membership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(233, 69, 96, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.membership .section-header h2,
.membership .section-header .subtitle {
    color: var(--white);
}

.membership .section-header .subtitle {
    opacity: 0.85;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .tier-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tier-grid {
        grid-template-columns: 1fr;
    }
}

.tier-card {
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.tier-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.tier-card.featured {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    border-width: 3px;
    position: relative;
}

.tier-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.tier-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tier-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.tier-card .requirement {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 24px;
}

.tier-benefits {
    text-align: left;
    font-size: 0.9rem;
    list-style: none;
}

.tier-benefits li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.tier-benefits li:last-child {
    border: none;
}

.tier-benefits .check {
    color: var(--gold);
    font-size: 1.1rem;
}

/* ========================================
   EARNINGS SECTION
   ======================================== */

.earnings {
    padding: 100px 0;
    background: var(--gray-50);
}

.earnings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

@media (max-width: 900px) {
    .earnings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .earnings-grid {
        grid-template-columns: 1fr;
    }
}

.earning-card {
    text-align: center;
    padding: 36px 24px;
}

.earning-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.2rem;
    box-shadow: var(--shadow-lg);
}

.earning-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--navy);
    font-weight: 700;
}

.earning-rate {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.earning-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ========================================
   PARTNERS SECTION
   ======================================== */

.partners {
    padding: 72px 0;
    background: var(--white);
}

.partners h3 {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-weight: 600;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 72px;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gray-400);
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-logo:hover {
    opacity: 1;
    color: var(--gray-600);
}

/* ========================================
   PILOTS CTA SECTION
   ======================================== */

.pilots-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.pilots-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pilots-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .pilots-cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.pilots-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.pilots-cta p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 32px;
    line-height: 1.6;
}

.pilots-cta .btn {
    display: inline-block;
    background: var(--white);
    color: var(--coral);
    padding: 16px 40px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.05rem;
}

.pilots-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.pilot-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .pilot-stats {
        grid-template-columns: 1fr;
    }
}

.pilot-stat {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pilot-stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

.pilot-stat-label {
    font-size: 0.95rem;
    opacity: 0.85;
    font-weight: 500;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */

.final-cta {
    padding: 120px 0;
    text-align: center;
    background: var(--navy);
    color: var(--white);
}

.final-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.final-cta p {
    font-size: 1.25rem;
    opacity: 0.85;
    margin-bottom: 48px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    padding: 20px 48px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
}

.btn-outline-light {
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 18px 46px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--navy-light);
    color: rgba(255, 255, 255, 0.8);
    padding: 72px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
    }
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ========================================
   UTILITIES
   ======================================== */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */

.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    z-index: 999;
}

.scroll-to-top.visible {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

