/* =====================================================
   AIR ARABIA - Main Stylesheet
   Premium Flight Booking Platform
   ===================================================== */

/* =====================================================
   CSS VARIABLES / DESIGN TOKENS
   ===================================================== */
:root {
    /* Primary Colors */
    --primary: #1a3c6e;
    --primary-light: #2a5298;
    --primary-dark: #0f2847;
    --primary-50: rgba(26, 60, 110, 0.05);
    --primary-100: rgba(26, 60, 110, 0.1);
    
    /* Accent */
    --accent: #2563eb;
    --accent-light: #3b82f6;
    --accent-dark: #1d4ed8;
    --accent-hover: #1e40af;
    
    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Semantic */
    --success: #059669;
    --success-light: #d1fae5;
    --warning: #d97706;
    --warning-light: #fef3c7;
    --error: #dc2626;
    --error-light: #fee2e2;
    --info: #0284c7;
    --info-light: #e0f2fe;
    
    /* Price trend */
    --price-up: #dc2626;
    --price-down: #059669;
    --price-stable: #d97706;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06), 0 0 1px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.1), 0 0 1px rgba(0, 0, 0, 0.08);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-smooth: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;
    --z-toast: 700;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

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

a:hover {
    color: var(--accent-dark);
}

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

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-900);
}

ul, ol {
    list-style: none;
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-gray {
    background-color: var(--gray-50);
}

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

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

.hidden { display: none !important; }
.block { display: block; }
.relative { position: relative; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-smooth);
    cursor: pointer;
    border: none;
    line-height: 1.5;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--gray-800);
    border: 1.5px solid var(--gray-200);
}

.btn-white:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    color: var(--gray-800);
}

.btn-success {
    background: var(--success);
    color: var(--white);
}

.btn-success:hover {
    background: #047857;
    color: var(--white);
}

.btn-danger {
    background: var(--error);
    color: var(--white);
}

.btn-danger:hover {
    background: #b91c1c;
    color: var(--white);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 13px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* =====================================================
   HEADER / NAVBAR
   ===================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    transition: box-shadow var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
    height: 68px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-brand .brand-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.navbar-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.3px;
}

.navbar-brand .brand-text span {
    color: var(--accent);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent);
    background: var(--primary-50);
}

.navbar-nav .nav-link i {
    font-size: 15px;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-actions .currency-badge {
    padding: 6px 12px;
    background: var(--gray-50);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
}

.navbar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 6px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    cursor: pointer;
    position: relative;
}

.navbar-user:hover {
    background: var(--gray-50);
}

.navbar-user .user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.navbar-user .user-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition-smooth);
    z-index: var(--z-dropdown);
}

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

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--gray-700);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.user-dropdown a:hover {
    background: var(--gray-50);
    color: var(--gray-900);
}

.user-dropdown a i {
    width: 18px;
    text-align: center;
    color: var(--gray-400);
}

.user-dropdown .divider {
    height: 1px;
    background: var(--gray-100);
    margin: 4px 0;
}

.user-dropdown a.logout-link {
    color: var(--error);
}

.user-dropdown a.logout-link i {
    color: var(--error);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gray-700);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.mobile-toggle:hover {
    background: var(--gray-50);
}

/* =====================================================
   HERO / SEARCH SECTION
   ===================================================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 48px 0 56px;
    z-index: 10;
    overflow: visible !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
    background-size: cover;
    opacity: 0.5;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 12;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible !important;
}

.hero-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.hero-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
}

/* Trip Type Tabs */
.trip-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.trip-tab {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.trip-tab:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.trip-tab.active {
    color: var(--primary);
    background: var(--white);
}

/* Passengers & Class Selectors */
.search-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.passenger-selector {
    display: flex;
    align-items: center;
    gap: 16px;
}

.selector-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.selector-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.selector-btn i {
    font-size: 16px;
}

/* Search Form */
.search-form {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: visible;
    position: relative;
}

.search-field {
    flex: 1;
    position: relative;
}

.search-field-inner {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background var(--transition-fast);
    min-height: 60px;
}

.search-field-inner:hover {
    background: rgba(255, 255, 255, 0.05);
}

.search-field .field-icon {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    flex-shrink: 0;
}

.search-field .field-content {
    flex: 1;
    min-width: 0;
}

.search-field .field-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.search-field .field-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-field .field-value.placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-field input {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    padding: 0;
}

.search-field input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-field-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 12px 0;
}

/* Swap Button */
.swap-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    z-index: 5;
    cursor: pointer;
}

.swap-btn:hover {
    transform: translate(-50%, -50%) rotate(180deg);
    background: var(--accent);
    color: var(--white);
}

.search-airports-group {
    display: flex;
    flex: 2;
    position: relative;
}

.search-airports-group .swap-btn {
    display: flex;
}

/* Search Button */
.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
    cursor: pointer;
    transition: all var(--transition-smooth);
    white-space: nowrap;
    min-width: 140px;
}

.search-btn:hover {
    background: var(--accent-hover);
}

.search-btn i {
    font-size: 16px;
}

/* Airport Dropdown */
.airport-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-100);
    margin-top: 8px;
    max-height: 350px;
    overflow-y: auto;
    z-index: var(--z-dropdown);
    display: none;
    animation: dropdownFadeIn 0.2s ease;
}

.airport-dropdown.show {
    display: block;
}

.airport-dropdown .dropdown-search {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-100);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1;
}

.airport-dropdown .dropdown-search input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--gray-800);
    transition: border-color var(--transition-fast);
}

.airport-dropdown .dropdown-search input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.airport-dropdown .dropdown-group-title {
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-400);
    background: var(--gray-50);
}

.airport-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.airport-dropdown .dropdown-item:hover {
    background: var(--primary-50);
}

.airport-dropdown .dropdown-item .airport-code {
    width: 44px;
    height: 44px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.airport-dropdown .dropdown-item .airport-info {
    flex: 1;
    min-width: 0;
}

.airport-dropdown .dropdown-item .airport-city {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-800);
}

.airport-dropdown .dropdown-item .airport-name {
    font-size: 12px;
    color: var(--gray-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Passenger Dropdown */
.passenger-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-100);
    margin-top: 8px;
    padding: 16px;
    min-width: 280px;
    z-index: var(--z-dropdown);
    display: none;
    animation: dropdownFadeIn 0.2s ease;
}

.passenger-dropdown.show {
    display: block;
}

.passenger-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

.passenger-row:last-child {
    border-bottom: none;
}

.passenger-row .pax-info .pax-type {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-800);
}

.passenger-row .pax-info .pax-age {
    font-size: 12px;
    color: var(--gray-400);
}

.pax-counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pax-counter button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gray-600);
    background: var(--white);
    transition: all var(--transition-fast);
}

.pax-counter button:hover:not(:disabled) {
    border-color: var(--accent);
    color: var(--accent);
}

.pax-counter button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pax-counter .pax-count {
    font-size: 16px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    color: var(--gray-800);
}

/* Class Dropdown */
.class-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-100);
    margin-top: 8px;
    padding: 6px;
    min-width: 180px;
    z-index: var(--z-dropdown);
    display: none;
    animation: dropdownFadeIn 0.2s ease;
}

.class-dropdown.show {
    display: block;
}

.class-dropdown .class-option {
    padding: 10px 14px;
    font-size: 14px;
    color: var(--gray-700);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.class-dropdown .class-option:hover,
.class-dropdown .class-option.selected {
    background: var(--primary-50);
    color: var(--accent);
}

/* =====================================================
   PROMOTIONAL CARDS (Sloppy/Swipeable)
   ===================================================== */
.promo-section {
    padding: 40px 0;
}

.promo-cards {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
}

.promo-cards::-webkit-scrollbar {
    display: none;
}

.promo-card {
    flex: 0 0 calc(50% - 10px);
    min-width: 320px;
    scroll-snap-align: start;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    height: 200px;
    cursor: pointer;
    transition: transform var(--transition-smooth);
}

.promo-card:hover {
    transform: translateY(-4px);
}

.promo-card .promo-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-smooth);
}

.promo-card:hover .promo-bg {
    transform: scale(1.05);
}

.promo-card .promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 40, 71, 0.85) 0%, rgba(26, 60, 110, 0.6) 100%);
}

.promo-card .promo-content {
    position: relative;
    z-index: 1;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.promo-card .promo-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.promo-card .promo-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.promo-card .promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--white);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    align-self: flex-start;
    transition: all var(--transition-smooth);
}

.promo-card .promo-btn:hover {
    background: var(--accent);
    color: var(--white);
}

/* =====================================================
   POPULAR DESTINATIONS
   ===================================================== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dest-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-smooth);
    cursor: pointer;
}

.dest-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.dest-card .dest-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.dest-card:hover .dest-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(37, 99, 235, 0.15);
}

.dest-card .dest-price-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.dest-card .dest-info {
    padding: 16px;
}

.dest-card .dest-city {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.dest-card .dest-country {
    font-size: 13px;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 4px;
}

.dest-card .dest-route {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--gray-100);
    font-size: 12px;
    color: var(--gray-500);
}

.dest-card .dest-route i {
    color: var(--accent);
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-smooth);
}

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

.feature-card .feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    transition: all var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1);
}

.feature-card .feature-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.feature-card .feature-text {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* =====================================================
   FLIGHT SEARCH RESULTS
   ===================================================== */
.flights-page {
    padding: 30px 0 60px;
    background: var(--gray-50);
    min-height: 70vh;
}

.flights-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 20px 0;
}

.flights-header .search-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--gray-600);
}

.flights-header .route-display {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
}

.flights-header .route-display .route-arrow {
    color: var(--accent);
}

.flights-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px;
}

/* Filter Sidebar */
.filter-sidebar {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-card);
    height: fit-content;
    position: sticky;
    top: 92px;
}

.filter-section {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    cursor: pointer;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
}

.filter-option label {
    font-size: 13px;
    color: var(--gray-600);
    cursor: pointer;
    flex: 1;
}

.filter-option .filter-count {
    font-size: 12px;
    color: var(--gray-400);
}

/* Price Range Slider */
.price-range {
    padding: 8px 0;
}

.price-range input[type="range"] {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    background: var(--gray-200);
    border-radius: 2px;
    outline: none;
}

.price-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.price-range .price-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: var(--gray-500);
}

/* Sort Bar */
.sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.sort-bar .results-count {
    font-size: 14px;
    color: var(--gray-500);
}

.sort-bar .results-count strong {
    color: var(--gray-800);
}

.sort-options {
    display: flex;
    gap: 4px;
}

.sort-option {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.sort-option:hover,
.sort-option.active {
    background: var(--accent);
    color: var(--white);
}

/* Flight Card */
.flight-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 20px 24px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-smooth);
    border: 1.5px solid transparent;
}

.flight-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.flight-card-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.flight-airline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 80px;
}

.flight-airline .airline-logo {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.flight-airline .airline-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.flight-airline .airline-logo .airline-code-icon {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.flight-airline .airline-name {
    font-size: 11px;
    color: var(--gray-500);
    text-align: center;
    line-height: 1.3;
}

.flight-airline .flight-num {
    font-size: 11px;
    color: var(--gray-400);
}

.flight-schedule {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.flight-time-block {
    text-align: center;
    min-width: 80px;
}

.flight-time-block .time {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
}

.flight-time-block .city-code {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

.flight-time-block .city-name {
    font-size: 11px;
    color: var(--gray-400);
}

.flight-duration {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.flight-duration .duration-time {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.flight-duration .duration-line {
    position: relative;
    height: 2px;
    background: var(--gray-200);
    border-radius: 1px;
}

.flight-duration .duration-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: -3px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.flight-duration .duration-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.flight-duration .duration-plane {
    position: absolute;
    left: 50%;
    top: -1px;
    transform: translateX(-50%);
    color: var(--accent);
    font-size: 14px;
    background: var(--white);
    padding: 0 4px;
}

.flight-duration .stops-info {
    font-size: 11px;
    color: var(--success);
    margin-top: 6px;
}

.flight-duration .stops-info.has-stops {
    color: var(--warning);
}

.flight-price-section {
    text-align: right;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.flight-price-section .price-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.flight-price-section .price-currency {
    font-size: 14px;
    font-weight: 500;
}

.flight-price-section .price-per {
    font-size: 12px;
    color: var(--gray-400);
}

.flight-price-section .price-trend {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
}

.flight-price-section .price-trend.rising {
    color: var(--price-up);
}

.flight-price-section .price-trend.falling {
    color: var(--price-down);
}

.flight-price-section .price-trend.stable {
    color: var(--price-stable);
}

.flight-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.flight-tags {
    display: flex;
    gap: 8px;
}

.flight-tag {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 500;
    border-radius: var(--radius-full);
    background: var(--gray-50);
    color: var(--gray-600);
}

.flight-tag.available {
    background: var(--success-light);
    color: var(--success);
}

.flight-tag.limited {
    background: var(--warning-light);
    color: var(--warning);
}

.flight-tag.critical {
    background: var(--error-light);
    color: var(--error);
}

.flight-tag.sold-out {
    background: var(--gray-100);
    color: var(--gray-500);
}

.book-flight-btn {
    padding: 10px 28px;
    background: var(--accent);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.book-flight-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* =====================================================
   FLIGHT DETAILS PAGE
   ===================================================== */
.flight-details-page {
    padding: 30px 0 60px;
    background: var(--gray-50);
}

.flight-detail-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-card);
    margin-bottom: 24px;
}

.flight-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.detail-airline-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.detail-airline-logo {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.detail-airline-text .airline-name-lg {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
}

.detail-airline-text .flight-number-lg {
    font-size: 14px;
    color: var(--gray-500);
}

/* Price Graph */
.price-graph-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-card);
    margin-bottom: 24px;
}

.price-graph-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.price-graph-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
}

.price-graph-subtitle {
    font-size: 13px;
    color: var(--gray-500);
}

.graph-legend {
    display: flex;
    gap: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-500);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-dot.actual { background: var(--accent); }
.legend-dot.predicted { background: var(--warning); }

.price-graph-container {
    position: relative;
    height: 300px;
}

.buy-recommendation {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 500;
}

.buy-recommendation.buy-now {
    background: var(--success-light);
    color: var(--success);
}

.buy-recommendation.wait {
    background: var(--warning-light);
    color: var(--warning);
}

.buy-recommendation.hurry {
    background: var(--error-light);
    color: var(--error);
}

/* Fare Breakdown */
.fare-breakdown {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-card);
}

.fare-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-600);
}

.fare-row.total {
    border-top: 2px solid var(--gray-200);
    padding-top: 14px;
    margin-top: 4px;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
}

/* =====================================================
   BOOKING PAGE
   ===================================================== */
.booking-page {
    padding: 30px 0 60px;
    background: var(--gray-50);
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 24px;
}

.booking-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-card);
    margin-bottom: 20px;
}

.booking-form-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-form-title .step-num {
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

/* Summary Sidebar */
.booking-summary {
    position: sticky;
    top: 92px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-card);
    height: fit-content;
}

.booking-summary-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
}

/* =====================================================
   FORMS
   ===================================================== */
.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-label .required {
    color: var(--error);
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    color: var(--gray-800);
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control::placeholder {
    color: var(--gray-400);
}

.form-control.error {
    border-color: var(--error);
}

.form-error {
    font-size: 12px;
    color: var(--error);
    margin-top: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* Phone Input with Country Code */
.phone-input-group {
    display: flex;
    gap: 0;
}

.phone-input-group .country-code {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 11px 12px;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-size: 14px;
    color: var(--gray-600);
    white-space: nowrap;
}

.phone-input-group .country-code .flag {
    font-size: 18px;
}

.phone-input-group .form-control {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* =====================================================
   AUTH MODALS
   ===================================================== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: var(--z-modal-backdrop);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.modal-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    z-index: var(--z-modal);
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    width: 440px;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.modal.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-50);
    color: var(--gray-500);
    font-size: 16px;
    transition: all var(--transition-fast);
    z-index: 2;
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--gray-800);
}

.modal-body {
    padding: 40px 36px 32px;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 6px;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 28px;
}

.auth-submit-btn {
    width: 100%;
    padding: 13px 24px;
    background: var(--accent);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-smooth);
    margin-top: 4px;
}

.auth-submit-btn:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--gray-400);
    font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.social-login-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.social-btn:hover {
    border-color: var(--gray-300);
    background: var(--gray-50);
}

.social-btn img {
    width: 18px;
    height: 18px;
}

.social-btn .social-icon {
    font-size: 18px;
}

.social-btn .social-icon.google {
    color: #4285f4;
}

.social-btn .social-icon.facebook {
    color: #1877f2;
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray-500);
}

.auth-switch a {
    color: var(--accent);
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.forgot-link {
    display: block;
    text-align: right;
    font-size: 13px;
    color: var(--accent);
    margin-top: -10px;
    margin-bottom: 8px;
}

/* =====================================================
   PAYMENT PAGE
   ===================================================== */
.payment-methods {
    display: grid;
    gap: 12px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.payment-method:hover,
.payment-method.selected {
    border-color: var(--accent);
    background: var(--primary-50);
}

.payment-method .method-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.payment-method.selected .method-radio {
    border-color: var(--accent);
}

.payment-method.selected .method-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.payment-method .method-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.payment-method .method-icon img {
    max-width: 32px;
    max-height: 32px;
}

.payment-method .method-icon i {
    font-size: 22px;
    color: var(--primary);
}

.payment-method .method-info .method-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-800);
}

.payment-method .method-info .method-desc {
    font-size: 12px;
    color: var(--gray-400);
}

/* =====================================================
   MY BOOKINGS
   ===================================================== */
.booking-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-card);
    margin-bottom: 16px;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-smooth);
}

.booking-item:hover {
    box-shadow: var(--shadow-card-hover);
}

.booking-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.booking-ref {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.booking-status {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
}

.booking-status.confirmed {
    background: var(--success-light);
    color: var(--success);
}

.booking-status.pending {
    background: var(--warning-light);
    color: var(--warning);
}

.booking-status.cancelled {
    background: var(--error-light);
    color: var(--error);
}

/* =====================================================
   STATIC PAGES
   ===================================================== */
.static-page {
    padding: 40px 0 60px;
}

.static-page .page-header {
    text-align: center;
    padding: 40px 0 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--gray-100);
}

.static-page .page-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.static-page .page-header p {
    font-size: 16px;
    color: var(--gray-500);
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.page-content h2 {
    font-size: 24px;
    margin: 28px 0 12px;
    color: var(--gray-900);
}

.page-content h3 {
    font-size: 18px;
    margin: 24px 0 10px;
    color: var(--gray-800);
}

.page-content p {
    margin-bottom: 16px;
    color: var(--gray-600);
}

.page-content ul, .page-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }

.page-content li {
    margin-bottom: 8px;
    color: var(--gray-600);
}

.page-content strong {
    color: var(--gray-800);
}

/* Contact Form */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
}

.contact-info-card .contact-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-info-card .contact-detail h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.contact-info-card .contact-detail p {
    font-size: 14px;
    color: var(--gray-500);
}

/* FAQ */
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-800);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question i {
    font-size: 14px;
    color: var(--gray-400);
    transition: transform var(--transition-smooth);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.faq-answer-inner {
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.footer-brand .brand-text span {
    color: var(--accent-light);
}

.footer-about {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 18px;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-fast);
}

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

.footer-links a i {
    margin-right: 6px;
    font-size: 12px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-contact li i {
    color: var(--accent-light);
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

/* Newsletter */
.footer-newsletter {
    margin-top: 12px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    color: var(--white);
    font-size: 13px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    padding: 10px 18px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--accent-hover);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icons .pay-icon {
    width: 42px;
    height: 26px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

/* =====================================================
   FLASH MESSAGES / TOASTS
   ===================================================== */
.flash-message {
    position: fixed;
    top: 80px;
    right: 20px;
    padding: 14px 20px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-xl);
    z-index: var(--z-toast);
    animation: slideInRight 0.4s ease;
    max-width: 400px;
}

.flash-success {
    background: var(--success-light);
    color: var(--success);
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.flash-error {
    background: var(--error-light);
    color: var(--error);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.flash-warning {
    background: var(--warning-light);
    color: var(--warning);
    border: 1px solid rgba(217, 119, 6, 0.2);
}

.flash-info {
    background: var(--info-light);
    color: var(--info);
    border: 1px solid rgba(2, 132, 199, 0.2);
}

.flash-close {
    background: none;
    border: none;
    color: inherit;
    opacity: 0.6;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.flash-close:hover {
    opacity: 1;
}

/* =====================================================
   LOADING / SKELETON
   ===================================================== */
.skeleton {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-50) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* =====================================================
   404 PAGE
   ===================================================== */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.error-page .error-code {
    font-size: 120px;
    font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: 8px;
}

.error-page h2 {
    font-size: 24px;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.error-page p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* =====================================================
   SCROLLBAR
   ===================================================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-50);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

/* =====================================================
   PROFILE PAGE
   ===================================================== */
.profile-page {
    padding: 30px 0 60px;
    background: var(--gray-50);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    font-weight: 700;
}

.profile-info h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--gray-900);
}

.profile-info p {
    font-size: 14px;
    color: var(--gray-500);
}

/* =====================================================
   BOOKING CONFIRMATION
   ===================================================== */
.confirmation-page {
    padding: 40px 0 60px;
    text-align: center;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--success-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--success);
}

.confirmation-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.confirmation-ref {
    font-size: 18px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 32px;
}

/* =====================================================
   EMPTY STATE
   ===================================================== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state .empty-icon {
    font-size: 48px;
    color: var(--gray-300);
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 20px;
}

/* =====================================================
   FLATPICKR CALENDAR OVERRIDES
   ===================================================== */
.flatpickr-calendar {
    background: var(--white) !important;
    border: 1px solid var(--gray-200) !important;
    box-shadow: var(--shadow-xl) !important;
    border-radius: var(--radius-lg) !important;
    font-family: var(--font-primary) !important;
}

.flatpickr-months {
    background: var(--white) !important;
    border-bottom: 1px solid var(--gray-100) !important;
    padding: 8px 0 !important;
}

.flatpickr-current-month {
    font-weight: 600 !important;
    color: var(--gray-800) !important;
}

.flatpickr-weekday {
    font-weight: 600 !important;
    color: var(--gray-500) !important;
}

.flatpickr-day {
    color: var(--gray-700) !important;
    border-radius: var(--radius-md) !important;
}

.flatpickr-day.today {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
}

.flatpickr-day.selected, 
.flatpickr-day.selected:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: var(--white) !important;
}

.flatpickr-day.flatpickr-disabled, 
.flatpickr-day.flatpickr-disabled:hover {
    color: var(--gray-300) !important;
}

.flatpickr-day:hover {
    background: var(--primary-50) !important;
    color: var(--accent) !important;
}
