/**
 * Alaska Virtual Airlines - Main Stylesheet
 * Modern, premium airline-inspired design
 * Color Palette: Alaska Blue (#01426A), Seafoam Green (#00A67E), White, Cool Grays
 */

/* ============================================
   CSS VARIABLES & ROOT STYLES
   ============================================ */
:root {
    /* Alaska Airlines Brand Colors */
    --alaska-blue: #01426A;
    --alaska-blue-dark: #012F4D;
    --alaska-blue-light: #0563A0;
    --seafoam-green: #00A67E;
    --seafoam-light: #00C89B;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E8EAED;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --black: #1A1A1A;
    
    /* Accent Colors */
    --accent-orange: #FF6B35;
    --accent-yellow: #FFB81C;
    --success-green: #28A745;
    --error-red: #DC3545;
    --warning-orange: #FFC107;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--alaska-blue-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--alaska-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--alaska-blue-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.alaska-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.alaska-nav.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: var(--spacing-md);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--alaska-blue);
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 200px;
}

.logo-text {
    font-family: var(--font-heading);
    display: none;
}

/* Desktop Menu */
.nav-menu {
    display: none;
    align-items: center;
    gap: var(--spacing-sm);
    margin-left: auto;
    margin-right: auto;
}

.nav-link {
    padding: 0.5rem 1rem;
    color: var(--dark-gray);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.nav-link i {
    margin-right: 0.375rem;
    font-size: 0.875rem;
}

.nav-link:hover,
.nav-link.active {
    background: var(--light-gray);
    color: var(--alaska-blue);
}

/* User Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* Buttons */
.btn-login,
.btn-join {
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-login {
    background: transparent;
    color: var(--alaska-blue);
    border: 2px solid var(--alaska-blue);
}

.btn-login:hover {
    background: var(--alaska-blue);
    color: var(--white);
}

.btn-join {
    background: linear-gradient(135deg, var(--alaska-blue) 0%, var(--alaska-blue-light) 100%);
    color: var(--white);
}

.btn-join:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--off-white);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    color: var(--alaska-blue);
    transition: var(--transition-fast);
}

.user-btn:hover {
    background: var(--light-gray);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    overflow: hidden;
}

.user-dropdown:hover .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: var(--dark-gray);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--off-white);
    color: var(--alaska-blue);
}

.dropdown-divider {
    height: 1px;
    background: var(--light-gray);
    margin: 0.5rem 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--alaska-blue);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    transition: var(--transition-normal);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.mobile-menu-header img {
    height: 40px;
    width: auto;
    max-width: 180px;
}

.mobile-menu-close {
    padding: 0.5rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
}

.mobile-menu-content {
    padding: 1rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    margin-bottom: 0.5rem;
}

.mobile-nav-link:hover {
    background: var(--off-white);
    color: var(--alaska-blue);
}

.mobile-menu-divider {
    height: 2px;
    background: var(--light-gray);
    margin: 1rem 0;
}

/* ============================================
   SCROLL OFFSET FOR FIXED NAVIGATION
   ============================================ */
section[id],
.features-section,
.stats-section,
.cta-section {
    scroll-margin-top: 90px;
}

.fleet-section {
    scroll-margin-top: 110px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -72px;
    padding-top: 72px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video,
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* YouTube hero video container - shown until video ends, then fallback image shows */
.hero-youtube-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-youtube-wrap #hero-youtube-player,
.hero-youtube-wrap iframe {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.78vh;
}

.hero-video-click-blocker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: auto;
}

.hero-image-fallback {
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.hero-section.hero-video-ended .hero-youtube-wrap {
    display: none;
}

.hero-section.hero-video-ended .hero-image-fallback {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(135deg, 
        rgba(1, 66, 106, 0.85) 0%, 
        rgba(1, 47, 77, 0.75) 50%,
        rgba(0, 166, 126, 0.65) 100%
    );
}

/* Subtle overlay for KPI-only hero - lets the plane show through */
.hero-overlay-subtle {
    background: linear-gradient(180deg, 
        rgba(1, 66, 106, 0.3) 0%, 
        rgba(1, 47, 77, 0.2) 40%,
        rgba(1, 47, 77, 0.5) 70%,
        rgba(1, 47, 77, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: var(--spacing-xl) var(--spacing-md);
    animation: fadeInUp 1s ease;
}

/* KPI-only hero layout */
.hero-kpi-only {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-kpi-only .hero-content {
    display: none;
}

.hero-kpi-bar {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 var(--spacing-md);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-kpi-bar .hero-stats {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(1, 47, 77, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-kpi-bar .stat-number {
    color: var(--seafoam-light);
    text-shadow: 0 2px 8px rgba(0, 166, 126, 0.3);
}

.hero-kpi-bar .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
}

.hero-title {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.125rem;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--seafoam-green) 0%, var(--seafoam-light) 100%);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 166, 126, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 166, 126, 0.5);
    color: var(--white);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: var(--white);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Extended stats bar with more KPIs */
.hero-stats-extended {
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
}

.hero-stats-extended .stat-item {
    min-width: 80px;
}

.hero-stats-extended .stat-number {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.hero-stats-extended .stat-label {
    font-size: 0.75rem;
}

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

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--seafoam-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Suffix for stats like "K" for thousands */
.stat-suffix {
    font-size: 0.6em;
    font-weight: 600;
    opacity: 0.9;
}

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

.stat-divider {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 20;
    opacity: 0.9;
    transition: var(--transition-fast);
}

/* Move scroll indicator below KPI bar for KPI-only hero */
.hero-kpi-only .scroll-indicator {
    bottom: 1rem;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    font-size: 1.375rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.scroll-indicator span {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
}

.fleet-section {
    background: var(--white);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.fleet-section .section-title {
    margin-top: 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--alaska-blue-dark);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
    border: 1px solid var(--light-gray);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--seafoam-green);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--alaska-blue) 0%, var(--alaska-blue-light) 100%);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.feature-card h4 {
    color: var(--alaska-blue-dark);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--alaska-blue) 0%, var(--alaska-blue-dark) 100%);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.stats-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--seafoam-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--seafoam-green) 0%, var(--alaska-blue) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   MODERN LOGIN MODAL
   ============================================ */
.modern-login-modal {
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    max-width: 900px;
}

.modern-login-modal .modal-content {
    border: none;
    border-radius: 0;
    overflow: hidden;
}

.login-modal-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

/* Close Button */
.btn-close-modern {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.btn-close-modern:hover {
    background: var(--white);
    transform: rotate(90deg);
    color: var(--alaska-blue);
}

/* Left Side - Branding */
.login-branding {
    background: linear-gradient(135deg, var(--alaska-blue) 0%, var(--alaska-blue-dark) 100%);
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-branding::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.branding-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.brand-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.brand-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.brand-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.brand-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    opacity: 0.95;
}

.feature-item i {
    color: var(--seafoam-light);
    font-size: 1.125rem;
}

/* Right Side - Form */
.login-form-section {
    background: var(--white);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--alaska-blue-dark);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--medium-gray);
    font-size: 0.9375rem;
}

.login-content {
    width: 100%;
}

/* VATSIM Button */
.vatsim-login-wrapper {
    margin-bottom: 1.5rem;
}

.btn-vatsim-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.125rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
}

.btn-vatsim-modern:hover {
    border-color: var(--alaska-blue);
    background: rgba(1, 66, 106, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 66, 106, 0.1);
}

.btn-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.btn-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}

.btn-title {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 1rem;
}

.btn-subtitle {
    font-size: 0.8125rem;
    color: var(--medium-gray);
}

.btn-arrow {
    color: var(--medium-gray);
    font-size: 1.125rem;
    transition: var(--transition-fast);
}

.btn-vatsim-modern:hover .btn-arrow {
    color: var(--alaska-blue);
    transform: translateX(4px);
}

/* Divider */
.divider-modern {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--light-gray);
}

.divider-modern span {
    position: relative;
    display: inline-block;
    padding: 0 1rem;
    background: var(--white);
    color: var(--medium-gray);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Form Fields */
.modern-login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-field-modern {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.9375rem;
}

.field-label i {
    color: var(--alaska-blue);
    font-size: 0.875rem;
}

.input-wrapper-modern {
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    background: var(--white);
    transition: var(--transition-fast);
}

.input-wrapper-modern:focus-within {
    border-color: var(--alaska-blue);
    box-shadow: 0 0 0 3px rgba(1, 66, 106, 0.08);
}

.input-prefix {
    padding: 0.875rem 1rem;
    background: var(--off-white);
    border-right: 2px solid var(--light-gray);
    font-weight: 600;
    color: var(--alaska-blue);
    font-size: 0.9375rem;
    border-radius: 10px 0 0 10px;
}

.input-wrapper-modern:focus-within .input-prefix {
    border-color: var(--alaska-blue);
    background: rgba(1, 66, 106, 0.03);
}

.input-modern {
    flex: 1;
    border: none;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    background: transparent;
    color: var(--dark-gray);
    outline: none;
    min-width: 0;
}

.input-modern::placeholder {
    color: var(--medium-gray);
}

.password-toggle {
    border: none;
    background: transparent;
    padding: 0.875rem 1rem;
    color: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition-fast);
    border-left: 2px solid var(--light-gray);
    border-radius: 0 10px 10px 0;
}

.password-toggle:hover {
    color: var(--alaska-blue);
}

.input-wrapper-modern:focus-within .password-toggle {
    border-color: var(--alaska-blue);
}

/* Error Message */
.error-message-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    color: #991b1b;
    font-size: 0.9375rem;
}

.error-message-modern i {
    color: #dc2626;
    font-size: 1.125rem;
}

/* Submit Button */
.btn-submit-modern {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--alaska-blue) 0%, var(--alaska-blue-light) 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 4px 12px rgba(1, 66, 106, 0.2);
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 66, 106, 0.3);
}

.btn-submit-modern:active {
    transform: translateY(0);
}

.btn-submit-modern i {
    transition: var(--transition-fast);
}

.btn-submit-modern:hover i {
    transform: translateX(4px);
}

/* Footer Links */
.login-footer-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
    font-size: 0.875rem;
}

.footer-link {
    color: var(--medium-gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
    font-weight: 500;
}

.footer-link:hover {
    color: var(--alaska-blue);
}

.footer-link i {
    font-size: 0.8125rem;
}

.footer-separator {
    color: var(--light-gray);
}

/* Responsive */
@media (max-width: 992px) {
    .login-modal-wrapper {
        grid-template-columns: 1fr;
    }
    
    .login-branding {
        padding: 2rem 1.5rem;
        min-height: 300px;
    }
    
    .brand-title {
        font-size: 2rem;
    }
    
    .brand-features {
        display: none;
    }
    
    .login-form-section {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.alaska-footer {
    background: var(--alaska-blue-dark);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-logo {
    height: 50px;
    margin-bottom: var(--spacing-md);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--seafoam-light);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--seafoam-light);
    padding-left: 0.5rem;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

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

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: var(--spacing-md);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--seafoam-green);
    transform: translateY(-3px);
}

.partner-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Partner Section */
.partner-logos {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.partner-link {
    display: inline-block;
    transition: var(--transition-fast);
    opacity: 0.85;
}

.partner-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.partner-logo-lg {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.footer-bottom {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--seafoam-light);
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   LEGAL MODALS (Privacy Policy & TOS)
   ============================================ */
.legal-modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.legal-modal-header {
    background: linear-gradient(135deg, var(--alaska-blue) 0%, var(--alaska-blue-dark) 100%);
    color: #fff;
    padding: 1.5rem 2rem;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.legal-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.legal-modal-header .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.legal-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0.25rem 0 0 0;
}

.legal-modal-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

.legal-section {
    margin-bottom: 1.75rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h6 {
    color: var(--alaska-blue);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-section h6 i {
    color: var(--seafoam-green);
}

.legal-section p {
    color: #5d6b82;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-section ul {
    color: #5d6b82;
    line-height: 1.7;
    padding-left: 1.25rem;
    margin: 0;
}

.legal-section li {
    margin-bottom: 0.4rem;
}

.legal-modal-footer {
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    padding: 1rem 2rem;
}

.btn-legal-close {
    background: var(--alaska-blue);
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-legal-close:hover {
    background: var(--alaska-blue-dark);
    color: #fff;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav-menu {
        display: flex;
    }
    
    .nav-wrapper {
        gap: var(--spacing-lg);
    }
}

@media (max-width: 991px) {
    .hero-stats-extended {
        gap: var(--spacing-sm);
    }
    
    .hero-stats-extended .stat-item {
        min-width: 70px;
    }
    
    .hero-stats-extended .stat-number {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
    
    .hero-stats-extended .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-kpi-bar {
        bottom: 60px;
    }
}

@media (max-width: 767px) {
    :root {
        --spacing-xl: 2.5rem;
        --spacing-lg: 1.75rem;
    }
    
    .hero-stats {
        gap: var(--spacing-md);
    }
    
    .hero-stats-extended {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
    }
    
    .hero-stats-extended .stat-item {
        min-width: unset;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-kpi-bar {
        bottom: 50px;
        padding: 0 var(--spacing-sm);
    }
    
    .hero-kpi-bar .hero-stats {
        padding: var(--spacing-sm);
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .footer-legal .separator {
        display: none;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-alaska-blue { color: var(--alaska-blue); }
.text-seafoam { color: var(--seafoam-green); }
.bg-alaska-blue { background-color: var(--alaska-blue); }
.bg-seafoam { background-color: var(--seafoam-green); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.w-100 { width: 100%; }

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* ============================================
   ROUTE MAP
   ============================================ */
.route-map-container {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
}

.route-map {
    height: 600px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #1a1a2e;
}

/* MapLibre route map overrides */
.route-map-container .route-map .maplibregl-canvas-container { border-radius: var(--radius-xl); }
.route-map-container .maplibregl-ctrl-attrib { display: none !important; }
.route-map-container .maplibregl-popup-content {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 8px;
    padding: 10px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-family: 'Inter', sans-serif;
}
.route-map-container .maplibregl-popup-close-button { color: #6C757D; font-size: 18px; padding: 4px 8px; }
.route-map-popup { min-width: 140px; }

.map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--dark-gray);
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.legend-line {
    width: 30px;
    height: 3px;
    background: var(--seafoam-green);
    border-radius: 2px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .route-map {
        height: 400px;
    }
    
    .map-legend {
        bottom: 10px;
        right: 10px;
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
    }
}

/* ============================================
   RULES MODAL (Styled like Login Modal)
   ============================================ */
.rules-modal-content {
    border: none !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15) !important;
    max-width: 1100px !important;
    position: relative;
    display: block !important;
}

.rules-modal-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    max-height: 90vh;
}

/* Left Side - Branding (Same as login modal) */
.rules-branding {
    background: linear-gradient(135deg, var(--alaska-blue) 0%, var(--alaska-blue-dark) 100%);
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.rules-branding::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.rules-updated-badge {
    margin-top: 2rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
}

.rules-updated-badge i {
    color: var(--seafoam-light);
}

/* Right Side - Rules Content */
.rules-content-section {
    background: var(--white);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.rules-content-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.rules-content-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--alaska-blue-dark);
    margin-bottom: 0.5rem;
}

.rules-content-subtitle {
    color: var(--medium-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.rules-scrollable-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
    margin-bottom: 1.5rem;
}


.rules-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.rules-section:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.rules-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--alaska-blue-dark);
    margin-bottom: 1rem;
}

.rules-section-title i {
    color: var(--seafoam-green);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rules-list li {
    padding: 0.625rem 0 0.625rem 2rem;
    position: relative;
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.rules-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--seafoam-green);
    font-size: 0.75rem;
}

.rules-documents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.document-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.document-list div {
    padding: 0.625rem 0.875rem;
    background: var(--off-white);
    border-radius: 8px;
    color: var(--dark-gray);
    font-size: 0.875rem;
    border-left: 3px solid var(--alaska-blue);
}

/* Agreement Section */
.rules-agreement-wrapper {
    padding: 1.25rem 1.5rem;
    background: var(--off-white);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.rules-agreement-wrapper:has(input:checked) {
    border-color: var(--seafoam-green);
    background: rgba(0, 166, 126, 0.03);
}

.rules-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    margin: 0;
    user-select: none;
}

.rules-checkbox {
    width: 22px;
    height: 22px;
    cursor: pointer;
    margin: 0;
    margin-top: 2px;
    accent-color: var(--seafoam-green);
    flex-shrink: 0;
}

.checkbox-text {
    color: var(--dark-gray);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.checkbox-text strong {
    color: var(--alaska-blue-dark);
}

/* Action Buttons */
.rules-action-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cancel-modern {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-cancel-modern:hover {
    background: var(--off-white);
    border-color: var(--medium-gray);
    transform: translateY(-2px);
}

.rules-action-buttons .btn-submit-modern {
    flex: 2;
}

.rules-action-buttons .btn-submit-modern:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Scrollbar styling for rules modal */
.rules-scrollable-content::-webkit-scrollbar {
    width: 8px;
}

.rules-scrollable-content::-webkit-scrollbar-track {
    background: var(--off-white);
    border-radius: 4px;
}

.rules-scrollable-content::-webkit-scrollbar-thumb {
    background: var(--medium-gray);
    border-radius: 4px;
}

.rules-scrollable-content::-webkit-scrollbar-thumb:hover {
    background: var(--alaska-blue);
}

/* Responsive */
@media (max-width: 992px) {
    .rules-modal-wrapper {
        grid-template-columns: 1fr;
        max-height: 90vh;
    }
    
    .rules-branding {
        padding: 2rem 1.5rem;
        min-height: 300px;
    }
    
    .brand-title {
        font-size: 2rem;
    }
    
    .rules-content-section {
        padding: 2rem 1.5rem;
        max-height: none;
    }
    
    .rules-scrollable-content {
        max-height: 400px;
    }
    
    .rules-documents {
        grid-template-columns: 1fr;
    }
    
    .rules-action-buttons {
        flex-direction: column;
    }
    
    .rules-action-buttons .btn-cancel-modern,
    .rules-action-buttons .btn-submit-modern {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .rules-content-title {
        font-size: 1.5rem;
    }
    
    .rules-section-title {
        font-size: 1rem;
    }
    
    .rules-list li {
        font-size: 0.875rem;
        padding-left: 1.75rem;
    }
    
    .rules-documents {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   REGISTRATION MODAL (3-Step Process)
   ============================================ */
.registration-modal-content {
    border: none !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15) !important;
    max-width: 1100px !important;
    position: relative;
    display: block !important;
}

.registration-modal-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    max-height: 90vh;
}

/* Left Side - Branding */
.registration-branding {
    background: linear-gradient(135deg, var(--alaska-blue) 0%, var(--alaska-blue-dark) 100%);
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.registration-branding::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

/* Step Indicator */
.registration-steps-indicator {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.6;
    transition: var(--transition-normal);
}

.step-item.active {
    opacity: 1;
}

.step-item.completed {
    opacity: 1;
}

.step-number {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.step-item.active .step-number {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--seafoam-light);
    box-shadow: 0 0 0 4px rgba(0, 166, 126, 0.2);
}

.step-item.completed .step-number {
    background: var(--seafoam-green);
    border-color: var(--seafoam-green);
}

.step-label {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9375rem;
}

.step-connector {
    width: 2px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    margin-left: 17px;
    transition: var(--transition-normal);
}

.step-connector.completed {
    background: var(--seafoam-green);
}

/* Right Side - Registration Content */
.registration-content-section {
    background: var(--white);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
}

.step-content-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--alaska-blue-dark);
    margin-bottom: 0.5rem;
}

.step-subtitle {
    color: var(--medium-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.step-content-body {
    flex: 1;
    margin-bottom: 2rem;
}

/* VATSIM Verification Section */
.vatsim-verification-section {
    text-align: center;
}

.verification-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--seafoam-green);
}

.verification-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--alaska-blue-dark);
    margin-bottom: 1rem;
}

.verification-description {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.requirements-box {
    background: var(--off-white);
    border-left: 4px solid var(--seafoam-green);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.requirements-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--alaska-blue-dark);
    margin-bottom: 1rem;
}

.requirements-title i {
    color: var(--seafoam-green);
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--dark-gray);
    line-height: 1.7;
}

.requirements-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.6rem;
    color: var(--seafoam-green);
    font-size: 0.75rem;
}

/* Verify VATSIM Button */
.btn-verify-vatsim {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.125rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
    margin-bottom: 2rem;
}

.btn-verify-vatsim:hover {
    border-color: var(--alaska-blue);
    background: rgba(1, 66, 106, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 66, 106, 0.1);
}

.btn-verify-vatsim .btn-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.btn-verify-vatsim .btn-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}

.btn-verify-vatsim .btn-title {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 1rem;
}

.btn-verify-vatsim .btn-subtitle {
    font-size: 0.8125rem;
    color: var(--medium-gray);
}

.btn-verify-vatsim .btn-arrow {
    color: var(--medium-gray);
    font-size: 1.125rem;
    transition: var(--transition-fast);
}

.btn-verify-vatsim:hover .btn-arrow {
    color: var(--alaska-blue);
    transform: translateX(4px);
}

/* Verification Info */
.verification-info {
    display: flex;
    gap: 1rem;
    background: #E3F2FD;
    border-left: 4px solid var(--alaska-blue);
    border-radius: 10px;
    padding: 1.25rem;
    text-align: left;
}

.info-icon {
    color: var(--alaska-blue);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h6 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--alaska-blue-dark);
    margin-bottom: 0.5rem;
}

.info-content p {
    font-size: 0.875rem;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

/* Step Placeholder */
.step-placeholder {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--medium-gray);
}

.step-placeholder i {
    font-size: 3rem;
    color: var(--light-gray);
    margin-bottom: 1rem;
}

/* Step Actions */
.step-actions {
    display: flex;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.btn-step-prev,
.btn-step-next,
.btn-step-submit {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition-normal);
    border: 2px solid;
    cursor: pointer;
}

.btn-step-prev {
    background: var(--white);
    border-color: var(--light-gray);
    color: var(--dark-gray);
}

.btn-step-prev:hover {
    background: var(--off-white);
    border-color: var(--medium-gray);
    transform: translateY(-2px);
}

.btn-step-next,
.btn-step-submit {
    background: linear-gradient(135deg, var(--alaska-blue) 0%, var(--alaska-blue-light) 100%);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(1, 66, 106, 0.2);
}

.btn-step-next:hover,
.btn-step-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 66, 106, 0.3);
}

/* Scrollbar styling */
.registration-content-section::-webkit-scrollbar {
    width: 8px;
}

.registration-content-section::-webkit-scrollbar-track {
    background: var(--off-white);
    border-radius: 4px;
}

.registration-content-section::-webkit-scrollbar-thumb {
    background: var(--medium-gray);
    border-radius: 4px;
}

.registration-content-section::-webkit-scrollbar-thumb:hover {
    background: var(--alaska-blue);
}

/* Responsive */
@media (max-width: 992px) {
    .registration-modal-wrapper {
        grid-template-columns: 1fr;
        max-height: 90vh;
    }
    
    .registration-branding {
        padding: 2rem 1.5rem;
        min-height: 300px;
    }
    
    .brand-title {
        font-size: 2rem;
    }
    
    .registration-steps-indicator {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }
    
    .step-connector {
        width: 30px;
        height: 2px;
        margin: 0;
        margin-top: 17px;
    }
    
    .registration-content-section {
        padding: 2rem 1.5rem;
        max-height: none;
    }
    
    .step-actions {
        flex-direction: column;
    }
    
    .btn-step-prev,
    .btn-step-next,
    .btn-step-submit {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .step-title {
        font-size: 1.5rem;
    }
    
    .verification-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .verification-title {
        font-size: 1.25rem;
    }
}

/* Step 2: Pilot Details Styling */
.vatsim-success-banner {
    display: flex;
    gap: 1rem;
    background: #E8F5E9;
    border-left: 4px solid var(--seafoam-green);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.success-icon {
    color: var(--seafoam-green);
    font-size: 1.75rem;
    flex-shrink: 0;
}

.success-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--alaska-blue-dark);
    margin-bottom: 0.25rem;
}

.success-content p {
    font-size: 0.875rem;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

.pilot-details-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.details-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--alaska-blue-dark);
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-gray);
}

.section-title i {
    color: var(--seafoam-green);
}

.field-badge {
    padding: 0.25rem 0.75rem;
    background: var(--seafoam-green);
    color: var(--white);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.field-badge i {
    font-size: 0.625rem;
}

/* Ensure input wrapper accommodates badge */
.input-wrapper-modern:has(.field-badge) {
    padding-right: 0.5rem;
}

.field-edit-btn {
    border: none;
    background: transparent;
    color: var(--medium-gray);
    padding: 0.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border-left: 2px solid var(--light-gray);
    border-radius: 0 10px 10px 0;
}

.field-edit-btn:hover {
    color: var(--alaska-blue);
}

.input-wrapper-modern:has(input:not([readonly])) .field-edit-btn {
    color: var(--seafoam-green);
}

.field-help {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--medium-gray);
    font-size: 0.8125rem;
    margin-top: 0.5rem;
}

.field-help i {
    color: var(--seafoam-green);
}

/* Readonly field styling */
.input-wrapper-modern:has(input[readonly]) {
    background: var(--off-white);
    border-color: var(--light-gray);
}

.input-wrapper-modern:has(input[readonly]) .input-modern {
    background: transparent;
    color: var(--dark-gray);
    cursor: not-allowed;
}

.input-wrapper-modern:has(input:not([readonly])) {
    background: var(--white);
}

/* VATSIM Info Card */
.vatsim-info-card {
    background: linear-gradient(135deg, var(--off-white) 0%, #F5F5F5 100%);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.vatsim-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.info-card-header i {
    color: var(--alaska-blue);
    font-size: 1.5rem;
}

.info-card-header h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--alaska-blue-dark);
    margin: 0;
}

.info-item {
    margin-bottom: 1.25rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-label i {
    color: var(--seafoam-green);
    font-size: 0.875rem;
}

.info-value {
    font-size: 1rem;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    word-break: break-word;
}

.info-value .rating-text {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.rating-badge.pilot-rating {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: var(--white);
}

.rating-badge.controller-rating {
    background: linear-gradient(135deg, var(--seafoam-green) 0%, var(--seafoam-light) 100%);
    color: var(--white);
}

.rating-text {
    color: var(--medium-gray);
    font-size: 0.875rem;
}

.hours-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--alaska-blue);
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    border: 2px solid var(--light-gray);
    display: inline-block;
}

/* Responsive adjustments for Step 2 */
@media (max-width: 768px) {
    .vatsim-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .vatsim-success-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .hours-display {
        font-size: 1.25rem;
        padding: 0.5rem 1rem;
    }
}

/* Step 3: Hub Selection */
.hub-selection-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.hub-subtext {
    margin: 0.25rem 0 0 0;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.hub-icon {
    width: 48px;
    height: 48px;
    background: var(--off-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--alaska-blue);
    font-size: 1.25rem;
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.hub-card {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 1rem;
    text-align: left;
    background: #fff;
    cursor: pointer;
    transition: var(--transition-normal);
    color: var(--dark-gray);
}

.hub-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: var(--alaska-blue);
}

.hub-card.selected {
    border-color: var(--seafoam-green);
    box-shadow: 0 4px 12px rgba(0,166,126,0.15);
}

.hub-icao {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--alaska-blue);
}

.hub-name {
    font-weight: 700;
    margin-top: 0.25rem;
}

.hub-desc {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.selected-hub-display {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--off-white);
    border-left: 4px solid var(--seafoam-green);
    border-radius: 8px;
}

.selected-hub-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--seafoam-green);
    box-shadow: 0 0 0 6px rgba(0,166,126,0.1);
}

.selected-hub-title {
    font-weight: 700;
    color: var(--alaska-blue);
    font-size: 0.95rem;
}

.selected-hub-name {
    font-weight: 700;
    color: var(--dark-gray);
}

.selected-hub-desc {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Step 4: Agreements & Signature */
.agreement-card, .signature-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
}

.agreement-card h5, .signature-card h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem 0;
    color: var(--alaska-blue-dark);
}

.agreement-card i, .signature-card i {
    color: var(--seafoam-green);
}

.legal-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legal-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.legal-item input {
    margin-top: 0.25rem;
}

.signature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.signature-subtext {
    margin: 0.25rem 0 0 0;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.signature-meta {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 600;
}

.signature-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1rem;
}

.signature-type-input {
    flex: 1;
    min-width: 240px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.btn-generate-signature,
.btn-clear-signature {
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    border: 2px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-generate-signature {
    background: linear-gradient(135deg, var(--alaska-blue) 0%, var(--alaska-blue-light) 100%);
    color: var(--white);
}

.btn-generate-signature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1,66,106,0.25);
}

.btn-clear-signature {
    background: var(--white);
    border-color: var(--light-gray);
    color: var(--dark-gray);
}

.btn-clear-signature:hover {
    background: var(--off-white);
}

.signature-pad-wrap {
    position: relative;
    border: 2px dashed var(--light-gray);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.signature-pad {
    width: 100%;
    display: block;
    background: #fff;
}

.signature-watermark {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.85rem;
    color: rgba(0,0,0,0.25);
    pointer-events: none;
}

@media (max-width: 768px) {
    .signature-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .signature-type-input {
        width: 100%;
    }
}

/* ============================================
   NEW YEAR THEME 2026
   Elegant & Sophisticated Design
   Active until January 2nd, 2026
   ============================================ */

/* ===== ELEGANT CELEBRATION BANNER ===== */
.new-year-banner {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, 
        #0f1628 0%, 
        #1a2744 50%,
        #0f1628 100%
    );
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Subtle shimmer effect */
.new-year-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.08) 50%,
        transparent 100%
    );
    animation: nyShimmer 4s ease-in-out infinite;
}

@keyframes nyShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.new-year-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

/* Large elegant year number - Merger Theme: Hawaiian Purple #8b2a6b + Alaska Aurora #00c4b4 */
.new-year-year {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #8b2a6b 0%, #00c4b4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -2px;
    line-height: 1;
    text-shadow: 0 2px 20px rgba(0, 196, 180, 0.3);
}

.new-year-text {
    text-align: left;
    border-left: 2px solid rgba(0, 196, 180, 0.5);
    padding-left: 2rem;
}

.new-year-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem 0;
    letter-spacing: 1px;
}

.new-year-subtitle {
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* ===== MERGER THEME STATS - Hawaiian Purple #8b2a6b + Alaska Aurora #00c4b4 ===== */
body.new-year-theme .hero-section .stat-number,
body.new-year-theme .hero-kpi-bar .stat-number,
body.new-year-theme .stat-number {
    background: linear-gradient(135deg, #00c4b4 0%, #8b2a6b 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    text-shadow: none !important;
}

body.new-year-theme .hero-kpi-bar .hero-stats {
    background: linear-gradient(135deg, 
        rgba(15, 22, 40, 0.95) 0%, 
        rgba(26, 39, 68, 0.9) 100%
    ) !important;
    border: 1px solid rgba(0, 196, 180, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

body.new-year-theme .stat-label {
    color: rgba(255, 255, 255, 0.85) !important;
}

body.new-year-theme .stat-divider {
    background: linear-gradient(180deg, #00c4b4, #8b2a6b) !important;
}

/* ===== NAVIGATION ===== */
body.new-year-theme .alaska-nav {
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #8b2a6b, #00c4b4) 1;
    box-shadow: 0 2px 20px rgba(0, 196, 180, 0.15);
}

body.new-year-theme .btn-join {
    background: linear-gradient(135deg, #8b2a6b 0%, #00c4b4 100%) !important;
    color: #fff !important;
    font-weight: 700;
}

body.new-year-theme .btn-join:hover {
    box-shadow: 0 6px 20px rgba(0, 196, 180, 0.4);
}

/* ===== BUTTONS ===== */
body.new-year-theme .btn-hero-primary {
    background: linear-gradient(135deg, #8b2a6b 0%, #00c4b4 100%) !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(139, 42, 107, 0.35);
}

body.new-year-theme .btn-hero-primary:hover {
    box-shadow: 0 10px 35px rgba(0, 196, 180, 0.5);
}

/* ===== FEATURE CARDS ===== */
body.new-year-theme .feature-icon {
    background: linear-gradient(135deg, #0f1628 0%, #1a2744 100%) !important;
}

body.new-year-theme .feature-card:hover {
    border-color: #00c4b4;
    box-shadow: 0 8px 25px rgba(0, 196, 180, 0.12);
}

/* ===== CTA SECTION ===== */
body.new-year-theme .cta-section {
    background: linear-gradient(135deg, 
        #0f1628 0%, 
        #1a2744 50%,
        #0f1628 100%
    ) !important;
}

/* ===== FOOTER ===== */
body.new-year-theme .footer-title {
    color: #00c4b4 !important;
}

body.new-year-theme .social-link:hover {
    background: linear-gradient(135deg, #8b2a6b, #00c4b4) !important;
    color: #fff !important;
}

/* ===== SCROLL INDICATOR ===== */
body.new-year-theme .scroll-arrow {
    border-color: rgba(0, 196, 180, 0.6);
    background: rgba(0, 196, 180, 0.1);
}

body.new-year-theme .scroll-indicator span {
    color: #00c4b4;
}

/* ===== CONTACT MODAL NEW YEAR THEME ===== */
body.new-year-theme .contact-branding {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
}

body.new-year-theme .contact-branding .brand-icon {
    background: linear-gradient(135deg, #8b2a6b 0%, #00c4b4 100%) !important;
    border-color: rgba(0, 196, 180, 0.3) !important;
}

body.new-year-theme .contact-branding .info-icon-wrap {
    background: rgba(0, 196, 180, 0.2) !important;
    color: #00c4b4 !important;
}

body.new-year-theme .contact-footer i {
    color: #00c4b4 !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .new-year-banner {
        top: 65px;
        padding: 1rem 1.5rem;
    }
    
    .new-year-content {
        gap: 1.5rem;
    }
    
    .new-year-text {
        padding-left: 1.5rem;
    }
    
    .new-year-year {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .new-year-banner {
        padding: 0.875rem 1rem;
    }
    
    .new-year-content {
        gap: 1rem;
    }
    
    .new-year-year {
        font-size: 2rem;
    }
    
    .new-year-text {
        padding-left: 1rem;
    }
    
    .new-year-title {
        font-size: 1rem;
    }
    
    .new-year-subtitle {
        display: none;
    }
}