/* ============================================
   FareTravo.com - Premium Flight Booking
   Theme: Dark Navy / White / Gold Accent
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #0C1A3A;
    --primary-light: #142952;
    --primary-dark: #060D1F;
    --secondary: #1B3A6B;
    --accent: #C8A951;
    --accent-light: #E0C878;
    --accent-dark: #A88B3D;
    --white: #FFFFFF;
    --light: #F0F4F8;
    --gray-100: #E8EDF3;
    --gray-200: #D1D9E6;
    --gray-300: #A0AEC0;
    --gray-400: #718096;
    --gray-500: #4A5568;
    --dark: #1A202C;
    --success: #48BB78;
    --danger: #FC8181;
    --warning: #F6E05E;
    --info: #63B3ED;
    --gradient-primary: linear-gradient(135deg, #0C1A3A 0%, #1B3A6B 50%, #2D5AA0 100%);
    --gradient-accent: linear-gradient(135deg, #C8A951 0%, #E0C878 100%);
    --gradient-hero: linear-gradient(135deg, #0C1A3A 0%, #142952 40%, #1B3A6B 100%);
    --shadow-sm: 0 2px 8px rgba(12, 26, 58, 0.08);
    --shadow-md: 0 4px 20px rgba(12, 26, 58, 0.12);
    --shadow-lg: 0 10px 40px rgba(12, 26, 58, 0.18);
    --shadow-xl: 0 20px 60px rgba(12, 26, 58, 0.25);
    --shadow-glow: 0 0 30px rgba(200, 169, 81, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
}

/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--light);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ---------- Navigation ---------- */
#mainNav {
    padding: 15px 0;
    transition: var(--transition-slow);
    background: transparent;
    z-index: 1000;
}

#mainNav.scrolled {
    background: rgba(12, 26, 58, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
}

.brand-logo i {
    color: var(--accent);
    font-size: 1.4rem;
    transition: var(--transition);
}

.navbar-brand:hover .brand-logo i {
    transform: translateX(5px) rotate(-10deg);
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--accent) !important;
    background: rgba(255, 255, 255, 0.08);
}

.nav-link i {
    font-size: 0.85rem;
}

.btn-nav {
    background: var(--gradient-accent) !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
    border-radius: var(--radius-full) !important;
    padding: 8px 24px !important;
    margin-left: 8px;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--primary) !important;
    background: var(--accent-light) !important;
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

/* ---------- Hero Section ---------- */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 169, 81, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(45, 90, 160, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(200, 169, 81, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(200, 169, 81, 0.4);
    border-radius: 50%;
    animation: float-particle 15s infinite ease-in-out;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    50% {
        transform: translateY(-100vh) translateX(50px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 169, 81, 0.15);
    border: 1px solid rgba(200, 169, 81, 0.3);
    color: var(--accent-light);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title .accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-plane-container {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-plane-svg {
    width: 400px;
    height: 400px;
    animation: plane-float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(200, 169, 81, 0.2));
}

@keyframes plane-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(200, 169, 81, 0.2);
    animation: orbit-rotate 20s linear infinite;
}

.orbit-ring-1 {
    width: 350px;
    height: 350px;
}

.orbit-ring-2 {
    width: 420px;
    height: 420px;
    animation-duration: 30s;
    animation-direction: reverse;
}

@keyframes orbit-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(200, 169, 81, 0.5);
}

/* ---------- Search Form ---------- */
.search-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 35px;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.6s ease 0.3s both;
}

.search-card-page {
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.search-tabs {
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    padding: 4px;
    margin-bottom: 25px;
    width: fit-content;
}

.search-tab {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-tab.active {
    background: var(--accent);
    color: var(--primary);
}

.form-group-custom {
    position: relative;
}

.form-group-custom label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    display: block;
    font-weight: 600;
}

.search-card-page .form-group-custom label {
    color: var(--gray-400);
}

.form-control-custom {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.15);
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.search-card-page .form-control-custom {
    background: var(--light);
    border: 1px solid var(--gray-200);
    color: var(--dark);
}

.search-card-page .form-control-custom:focus {
    background: var(--white);
    border-color: var(--accent);
}

.search-card-page .form-control-custom::placeholder {
    color: var(--gray-300);
}

.swap-btn {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(200, 169, 81, 0.3);
}

.swap-btn:hover {
    transform: translate(-50%, -50%) rotate(180deg);
    box-shadow: var(--shadow-glow);
}

.btn-search {
    background: var(--gradient-accent);
    color: var(--primary);
    border: none;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    justify-content: center;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ---------- Section Styles ---------- */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--primary);
    color: var(--white);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    color: var(--gray-400);
    font-size: 1.05rem;
    margin-bottom: 50px;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 169, 81, 0.1);
    color: var(--accent-dark);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-dark .section-badge {
    background: rgba(200, 169, 81, 0.15);
    color: var(--accent-light);
}

/* ---------- Destination Cards ---------- */
.destination-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.destination-card .card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.destination-card:hover .card-bg {
    transform: scale(1.1);
}

.destination-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    background: linear-gradient(transparent, rgba(12, 26, 58, 0.95));
    color: var(--white);
}

.destination-card .city-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.destination-card .country {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.destination-card .price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
}

/* ---------- Flight Cards ---------- */
.flight-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    margin-bottom: 20px;
}

.flight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.flight-airline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.airline-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.flight-number {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.flight-aircraft {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.airline-logo-wrap {
    width: 60px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.airline-logo-wrap img,
.airline-logo-wrap svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.flight-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.route-point {
    text-align: center;
    flex: 0 0 auto;
}

.route-code {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.route-city {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.route-time {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

.route-line {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 10px;
}

.route-duration {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.route-line-track {
    width: 100%;
    height: 2px;
    background: var(--gray-200);
    position: relative;
}

.route-line-track::before {
    content: '';
    position: absolute;
    left: 0;
    top: -3px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.route-line-track::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.route-plane-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent);
    font-size: 0.85rem;
    background: var(--white);
    padding: 2px 8px;
}

.route-type {
    font-size: 0.7rem;
    color: var(--gray-400);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flight-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.flight-price {
    font-family: var(--font-display);
}

.flight-price .amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.flight-price .currency {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 500;
}

.flight-price .per-person {
    font-size: 0.75rem;
    color: var(--gray-400);
    display: block;
}

.btn-book {
    background: var(--gradient-accent);
    color: var(--primary);
    border: none;
    padding: 12px 32px;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--primary);
}

/* ---------- Page Header ---------- */
.page-header {
    background: var(--gradient-hero);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(200, 169, 81, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(45, 90, 160, 0.1) 0%, transparent 50%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.breadcrumb-custom {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.breadcrumb-custom li {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.breadcrumb-custom li a {
    color: var(--accent);
}

.breadcrumb-custom li+li::before {
    content: '/';
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.3);
}

/* ---------- Form Cards ---------- */
.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.form-card .form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.form-card .form-control {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    font-size: 1rem;
    transition: var(--transition);
}

.form-card .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.15);
}

.form-card .form-select {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    font-size: 1rem;
    transition: var(--transition);
}

.form-card .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.15);
}

/* ---------- Promo Cards ---------- */
.promo-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.promo-card .promo-img {
    height: 200px;
    overflow: hidden;
}

.promo-card .promo-img img,
.promo-card .promo-img svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-card .promo-body {
    padding: 25px;
}

.promo-card .promo-tag {
    display: inline-block;
    background: rgba(200, 169, 81, 0.1);
    color: var(--accent-dark);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.promo-card .promo-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.promo-card .promo-desc {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.promo-card .promo-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.promo-card .promo-price .from {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.promo-card .promo-price .price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-dark);
}

/* ---------- Features Section ---------- */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(200, 169, 81, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(200, 169, 81, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--accent);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ---------- Booking Confirmation / Ticket ---------- */
.ticket-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 700px;
    margin: 0 auto;
}

.ticket-header {
    background: var(--gradient-primary);
    padding: 30px 35px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ticket-header .brand-logo {
    font-size: 1.4rem;
}

.ticket-header .ticket-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
}

.ticket-body {
    padding: 35px;
}

.ticket-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px dashed var(--gray-200);
}

.ticket-airport {
    text-align: center;
}

.ticket-airport .code {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.ticket-airport .city {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.ticket-flight-info {
    text-align: center;
    flex: 1;
    padding: 0 20px;
}

.ticket-flight-info .duration {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 5px;
}

.ticket-flight-info .plane-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--accent);
}

.ticket-flight-info .plane-line hr {
    flex: 1;
    border: none;
    border-top: 2px solid var(--gray-200);
}

.ticket-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.ticket-detail {
    padding: 15px;
    background: var(--light);
    border-radius: var(--radius-md);
}

.ticket-detail .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-bottom: 4px;
    font-weight: 600;
}

.ticket-detail .value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.ticket-qr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-top: 25px;
    border-top: 2px dashed var(--gray-200);
}

.ticket-pnr {
    text-align: center;
}

.ticket-pnr .pnr-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.ticket-pnr .pnr-code {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-dark);
    letter-spacing: 3px;
}

.ticket-footer {
    background: var(--light);
    padding: 20px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ---------- Seat Map ---------- */
.seat-map-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.seat-legend {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.seat-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.seat-legend-box {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.seat-legend-box.available {
    background: var(--gray-200);
    border: 1px solid var(--gray-300);
}

.seat-legend-box.selected {
    background: var(--accent);
}

.seat-legend-box.occupied {
    background: var(--gray-400);
}

.seat-legend-box.business {
    background: var(--secondary);
}

.aircraft-body {
    max-width: 320px;
    margin: 0 auto;
    padding: 20px 15px;
    background: var(--light);
    border-radius: 80px 80px 20px 20px;
    position: relative;
}

.aircraft-nose {
    width: 60%;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gray-200);
    border-radius: 50% 50% 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.8rem;
    font-weight: 600;
}

.seat-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px;
}

.seat {
    width: 36px;
    height: 36px;
    border-radius: 6px 6px 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.seat.available {
    background: var(--gray-200);
    color: var(--gray-500);
}

.seat.available:hover {
    background: var(--accent-light);
    color: var(--primary);
    transform: scale(1.1);
}

.seat.selected {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent-dark);
    box-shadow: 0 0 10px rgba(200, 169, 81, 0.4);
}

.seat.occupied {
    background: var(--gray-400);
    color: var(--white);
    cursor: not-allowed;
    opacity: 0.6;
}

.seat.business-seat {
    background: var(--secondary);
    color: var(--white);
    width: 42px;
    height: 42px;
}

.seat.business-seat.available {
    background: rgba(27, 58, 107, 0.15);
    color: var(--secondary);
}

.seat.business-seat.available:hover {
    background: var(--secondary);
    color: var(--white);
}

.seat-aisle {
    width: 30px;
    text-align: center;
    font-size: 0.7rem;
    color: var(--gray-400);
    font-weight: 600;
}

.seat-section-label {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    font-weight: 600;
    margin: 15px 0;
    padding: 8px;
    background: rgba(200, 169, 81, 0.1);
    border-radius: var(--radius-sm);
}

/* ---------- Booking Steps ---------- */
.booking-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.booking-step {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-300);
}

.booking-step.active {
    color: var(--accent);
}

.booking-step.completed {
    color: var(--success);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.booking-step.active .step-number {
    background: var(--accent);
    color: var(--primary);
}

.booking-step.completed .step-number {
    background: var(--success);
    color: var(--white);
}

.step-label {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ---------- Manage Booking Info ---------- */
.booking-info-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.booking-info-header {
    background: var(--gradient-primary);
    padding: 25px 30px;
    color: var(--white);
}

.booking-info-body {
    padding: 30px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-item {
    padding: 15px;
    background: var(--light);
    border-radius: var(--radius-md);
}

.info-item .info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-bottom: 4px;
    font-weight: 600;
}

.info-item .info-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
}

/* ---------- Status Badges ---------- */
.badge-status {
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-confirmed {
    background: rgba(72, 187, 120, 0.1);
    color: var(--success);
}

.badge-cancelled {
    background: rgba(252, 129, 129, 0.1);
    color: var(--danger);
}

.badge-checked-in {
    background: rgba(99, 179, 237, 0.1);
    color: var(--info);
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
    background: var(--gradient-accent);
    color: var(--primary);
    border: none;
    padding: 14px 32px;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--primary);
}

.btn-outline-custom {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 12px 32px;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: var(--accent);
    color: var(--primary);
}

/* ---------- Alerts ---------- */
.alert-custom {
    border: none;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success-custom {
    background: rgba(72, 187, 120, 0.1);
    color: #2F855A;
}

.alert-error-custom {
    background: rgba(252, 129, 129, 0.1);
    color: #C53030;
}

/* ---------- Loading ---------- */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 26, 58, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    text-align: center;
    color: var(--white);
}

.loading-spinner .spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ---------- Footer ---------- */
.site-footer {
    position: relative;
}

.footer-wave {
    margin-bottom: -2px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.footer-content {
    background: var(--primary);
    padding: 60px 0 30px;
}

.footer-logo {
    font-size: 1.4rem;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-links.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links.contact-info i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 35px 0 25px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.payment-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.payment-icons i {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.payment-icons i:hover {
    color: var(--accent);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease both;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        gap: 25px;
    }

    #navbarNav {
        background: rgba(12, 26, 58, 0.98);
        padding: 20px;
        border-radius: var(--radius-lg);
        margin-top: 10px;
        backdrop-filter: blur(20px);
    }

    .booking-steps {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .ticket-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .ticket-qr {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .flight-route {
        flex-direction: column;
        text-align: center;
    }

    .route-line {
        width: 100%;
        padding: 15px 0;
    }

    .flight-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .ticket-details {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 25px;
    }

    .search-card {
        padding: 20px;
    }
}

/* ---------- Boarding Pass Special ---------- */
.boarding-pass {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.boarding-pass::before,
.boarding-pass::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--light);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.boarding-pass::before {
    left: -15px;
}

.boarding-pass::after {
    right: -15px;
}

.boarding-pass-left {
    flex: 2;
    padding: 30px;
}

.boarding-pass-right {
    flex: 1;
    padding: 30px;
    background: var(--light);
    border-left: 2px dashed var(--gray-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ---------- Destination SVG Placeholders ---------- */
.dest-svg-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- No Results ---------- */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results i {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.no-results h3 {
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 10px;
}

.no-results p {
    color: var(--gray-400);
}

/* ---------- Booking Widget Tabs ---------- */
.booking-widget {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 0;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.widget-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.widget-tab {
    flex: 1;
    padding: 18px 24px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.widget-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: var(--transition);
}

.widget-tab:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.03);
}

.widget-tab.active {
    color: var(--accent);
    background: rgba(200, 169, 81, 0.05);
}

.widget-tab.active::after {
    background: var(--accent);
}

.widget-panel {
    padding: 30px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.widget-panel.active {
    display: block;
    opacity: 1;
}

/* ---------- Toast Notifications ---------- */
.toast-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    min-width: 320px;
    max-width: 420px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-success {
    background: rgba(72, 187, 120, 0.95);
    color: white;
}

.toast-error {
    background: rgba(252, 129, 129, 0.95);
    color: white;
}

.toast-info {
    background: rgba(99, 179, 237, 0.95);
    color: white;
}

.toast-warning {
    background: rgba(246, 224, 94, 0.95);
    color: var(--dark);
}

.toast-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
}

.toast-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-fast);
    padding: 0;
}

.toast-close:hover {
    opacity: 1;
}

/* ---------- Newsletter Bar ---------- */
.newsletter-bar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    padding: 14px 28px;
    background: var(--gradient-accent);
    color: var(--primary);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ---------- App Badges ---------- */
.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
}

.app-badge:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.app-badge i {
    font-size: 1rem;
}

/* ---------- QR Code Container ---------- */
.qr-code-container {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.qr-code-container img {
    display: block;
}

.qr-code-container canvas {
    display: block;
}

/* ---------- Fare Class Cards ---------- */
.fare-classes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.fare-class-card {
    background: var(--light);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 18px 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.fare-class-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.fare-class-card.active {
    border-color: var(--accent);
    background: rgba(200, 169, 81, 0.08);
    box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.15);
}

.fare-class-card.active::after {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.fare-class-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.fare-class-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-dark);
}

.fare-class-features {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.fare-class-features li {
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.fare-class-features li i {
    font-size: 0.7rem;
    color: var(--success);
}

.fare-class-features li i.fa-times {
    color: var(--danger);
}

/* ---------- Travel Services ---------- */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-accent);
    color: var(--primary);
    transform: scale(1.08);
}

.service-card h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.service-card p {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.service-link {
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    color: var(--accent);
}

/* ---------- Flight Amenities ---------- */
.flight-amenities {
    display: flex;
    gap: 15px;
    padding: 10px 0;
    flex-wrap: wrap;
}

.amenity-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--light);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
}

.amenity-badge i {
    color: var(--accent-dark);
    font-size: 0.7rem;
}

/* ---------- Ticket Barcode ---------- */
.ticket-barcode {
    text-align: center;
    padding: 15px 0;
}

.ticket-barcode svg {
    max-width: 100%;
    height: auto;
}

/* ---------- Ticket Travel Info ---------- */
.ticket-travel-info {
    background: var(--light);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 20px;
}

.ticket-travel-info h5 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.ticket-travel-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ticket-travel-info ul li {
    padding: 5px 0;
    font-size: 0.8rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticket-travel-info ul li i {
    color: var(--accent-dark);
    width: 16px;
    text-align: center;
    font-size: 0.75rem;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.testimonial-route {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ---------- Flight Status Widget ---------- */
.flight-status-mini {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-top: 20px;
}

/* ---------- Enhanced Responsive ---------- */
@media (max-width: 991px) {
    .newsletter-form {
        flex-direction: column;
    }

    .flight-amenities {
        justify-content: center;
    }

    .fare-classes {
        grid-template-columns: repeat(2, 1fr);
    }

    .widget-tab {
        font-size: 0.8rem;
        padding: 14px 12px;
    }

    .widget-tab span.tab-text {
        display: none;
    }
}

@media (max-width: 767px) {
    .fare-classes {
        grid-template-columns: 1fr;
    }

    .boarding-pass-left {
        padding: 20px;
    }

    .boarding-pass-right {
        padding: 20px;
        border-left: none;
        border-top: 2px dashed var(--gray-200);
    }

    .widget-tabs {
        overflow-x: auto;
    }

    .toast-notification {
        left: 20px;
        right: 20px;
        min-width: auto;
    }
}

/* ---------- PDF Rendering Mode ---------- */
.pdf-rendering {
    background: white !important;
}

.pdf-rendering * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}

/* ---------- Print Styles ---------- */
@media print {
    .no-print {
        display: none !important;
    }

    body {
        background: white !important;
        font-size: 12pt;
    }

    .ticket-card {
        box-shadow: none !important;
        border: 2px solid #0C1A3A;
        max-width: 100%;
        page-break-inside: avoid;
    }

    .ticket-header {
        background: #0C1A3A !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .ticket-detail {
        background: #f5f5f5 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .ticket-details {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .ticket-qr {
        margin-top: 15px;
    }

    .boarding-pass {
        box-shadow: none !important;
        border: 2px solid #0C1A3A;
        page-break-inside: avoid;
    }

    .boarding-pass .info-item {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    #mainNav,
    .site-footer,
    .page-header,
    .loading-overlay {
        display: none !important;
    }

    .section {
        padding: 20px 0 !important;
    }

    .qr-code-container {
        border: 1px solid #ddd;
    }

    .ticket-barcode svg {
        max-width: 200px;
    }
}

/* ---------- Glassmorphism Effects ---------- */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
}

/* ---------- Shimmer Loading ---------- */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
    border-radius: var(--radius-sm);
}

/* ---------- Pulse Animation ---------- */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(200, 169, 81, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(200, 169, 81, 0.4);
    }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* ---------- Full-screen Loading Overlay ---------- */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(12, 26, 58, 0.95);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(10px);
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-airplane {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
    animation: flyUp 2s infinite ease-in-out;
}

.loading-message {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

.loading-submessage {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-top: 10px;
    text-align: center;
}

@keyframes flyUp {
    0% {
        transform: translateY(10px) rotate(-15deg);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-10px) rotate(-15deg);
        opacity: 1;
    }

    100% {
        transform: translateY(10px) rotate(-15deg);
        opacity: 0.5;
    }
}

/* Trip Type Switcher */
.trip-type-switcher {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.trip-type-label {
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.trip-type-label input[type="radio"] {
    accent-color: var(--accent);
    transform: scale(1.2);
}

.trip-type-label.active {
    color: var(--primary);
}

/* =============================================
   NEW COMPONENTS - Airport Search, Cards, etc.
   ============================================= */

/* ---------- Airport Autocomplete Dropdown ---------- */
.airport-search-wrapper {
    position: relative;
}

.airport-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    max-height: 280px;
    overflow-y: auto;
    margin-top: 4px;
}

.airport-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: var(--transition-fast);
    border-bottom: 1px solid var(--gray-100);
}

.airport-item:last-child {
    border-bottom: none;
}

.airport-item:hover {
    background: rgba(200, 169, 81, 0.08);
}

.airport-item.no-results {
    color: var(--gray-400);
    cursor: default;
    text-align: center;
    font-size: 0.85rem;
}

.airport-item-main {
    display: flex;
    align-items: center;
    gap: 12px;
}

.airport-code {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary);
    background: var(--light);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    min-width: 50px;
    text-align: center;
}

.airport-city {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.airport-item-sub {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 2px;
    padding-left: 62px;
}

/* ---------- Expandable Flight Card ---------- */
.flight-card-main {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    padding: 5px 0;
    transition: var(--transition-fast);
}

.flight-card-main:hover {
    opacity: 0.9;
}

.flight-airline {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 160px;
}

.airline-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.flight-number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
}

.flight-aircraft {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.flight-route {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.route-point {
    text-align: center;
    min-width: 60px;
}

.route-line {
    flex: 1;
    text-align: center;
    position: relative;
}

.route-line-track {
    height: 2px;
    background: linear-gradient(90deg, var(--gray-200), var(--accent), var(--gray-200));
    position: relative;
    margin: 5px 0;
}

.route-plane-icon {
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    color: var(--accent-dark);
    font-size: 0.75rem;
}

.route-line-connecting {
    background: linear-gradient(90deg, var(--gray-200), var(--accent), var(--accent), var(--gray-200));
}

.route-stop-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--accent);
    border: 2px solid var(--white);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 2px var(--accent);
}

.route-badge-direct {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--success);
    background: rgba(72, 187, 120, 0.1);
    padding: 2px 10px;
    border-radius: var(--radius-full);
}

.route-badge-stop {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-dark);
    background: rgba(200, 169, 81, 0.15);
    padding: 2px 10px;
    border-radius: var(--radius-full);
}

.route-layover {
    font-size: 0.65rem;
    color: var(--gray-400);
    display: block;
    margin-top: 2px;
}

.route-duration {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
}

.route-type {
    margin-top: 2px;
}

.flight-price-quick {
    text-align: right;
    min-width: 90px;
}

.flight-price-quick .amount {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.flight-price-quick .per-person {
    font-size: 0.7rem;
    color: var(--gray-400);
}

.flight-expand-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light);
    color: var(--gray-400);
    transition: var(--transition);
    flex-shrink: 0;
}

.flight-expand-btn:hover {
    background: rgba(200, 169, 81, 0.15);
    color: var(--accent-dark);
}

.flight-expand-btn i {
    transition: transform 0.3s ease;
}

/* Flight Details Panel (hidden by default) */
.flight-details-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 1px solid var(--gray-100);
    margin-top: 15px;
    padding-top: 0;
}

.flight-details-panel.open {
    padding-top: 15px;
}

.flight-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--gray-100);
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

/* ---------- Connecting Flight Legs ---------- */
.connecting-legs {
    margin-bottom: 10px;
}

.connecting-leg {
    padding: 12px 0;
    border-bottom: 1px dashed var(--gray-200);
}

.connecting-leg:last-child {
    border-bottom: none;
}

.leg-header {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 5px;
}

.layover-info {
    background: rgba(200, 169, 81, 0.1);
    color: var(--accent-dark);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}

/* ---------- Offers Carousel ---------- */
.offers-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.offers-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.offer-banner {
    border-radius: var(--radius-xl);
    padding: 60px 50px;
    min-height: 280px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.offer-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.offer-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.offer-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.offer-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 15px;
}

.offer-price {
    color: var(--white);
    font-size: 1.1rem;
}

.offer-price strong {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.offer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-nav:hover {
    background: var(--accent);
    color: var(--primary);
}

.offer-prev {
    left: 15px;
}

.offer-next {
    right: 15px;
}

.offer-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding-bottom: 5px;
}

.offer-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.offer-dot.active {
    background: var(--accent);
    width: 30px;
    border-radius: var(--radius-full);
}

/* ---------- Promo Cards ---------- */
.promo-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.promo-body {
    padding: 20px;
}

.promo-tag {
    display: inline-block;
    background: rgba(200, 169, 81, 0.15);
    color: var(--accent-dark);
    padding: 3px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.promo-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.promo-desc {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.promo-price .from {
    color: var(--gray-400);
    font-size: 0.8rem;
}

.promo-price .price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-dark);
    margin-left: 5px;
}

/* ---------- Loading Overlay (fixed) ---------- */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(12, 26, 58, 0.95);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    backdrop-filter: blur(10px);
}

.loading-spinner {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(200, 169, 81, 0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-spinner p {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
}

/* ---------- Multi-Step Booking ---------- */
.booking-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    padding: 0 20px;
}

.booking-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50px;
    right: 50px;
    height: 3px;
    background: var(--gray-200);
    z-index: 0;
}

.booking-step {
    text-align: center;
    z-index: 1;
    position: relative;
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 auto 8px;
    transition: var(--transition);
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.booking-step.active .step-number {
    background: var(--gradient-accent);
    color: var(--primary);
    box-shadow: 0 0 0 4px rgba(200, 169, 81, 0.2);
}

.booking-step.completed .step-number {
    background: var(--success);
    color: var(--white);
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
}

.booking-step.active .step-label {
    color: var(--accent-dark);
}

.booking-step.completed .step-label {
    color: var(--success);
}

.booking-step-panel {
    display: none;
    animation: fadeInUp 0.3s ease;
}

.booking-step-panel.active {
    display: block;
}

.step-nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.btn-step-prev,
.btn-step-next {
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-step-prev {
    background: var(--light);
    color: var(--gray-500);
    border: 1px solid var(--gray-200);
}

.btn-step-prev:hover {
    background: var(--gray-200);
}

.btn-step-next {
    background: var(--gradient-accent);
    color: var(--primary);
    border: none;
    box-shadow: 0 4px 15px rgba(200, 169, 81, 0.3);
}

.btn-step-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 169, 81, 0.4);
}

/* ---------- Responsive Additions ---------- */
@media (max-width: 991px) {
    .flight-card-main {
        flex-wrap: wrap;
        gap: 12px;
    }

    .flight-airline {
        min-width: auto;
    }

    .flight-route {
        order: 3;
        width: 100%;
    }

    .flight-price-quick {
        min-width: auto;
    }

    .offer-banner {
        padding: 30px 25px;
        min-height: 200px;
    }

    .offer-content h3 {
        font-size: 1.4rem;
    }

    .booking-progress {
        padding: 0 5px;
    }

    .step-label {
        font-size: 0.6rem;
    }
}

@media (max-width: 767px) {
    .flight-card-main {
        gap: 8px;
    }

    .route-code {
        font-size: 1.3rem !important;
    }

    .offer-nav {
        display: none;
    }

    .booking-progress::before {
        left: 25px;
        right: 25px;
    }
}

/* ---------- Badge Status ---------- */
.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-confirmed {
    background: rgba(72, 187, 120, 0.1);
    color: var(--success);
}

.badge-cancelled {
    background: rgba(252, 129, 129, 0.1);
    color: var(--danger);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    font-size: 0.85rem;
}

.breadcrumb-custom li a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-custom li a:hover {
    color: var(--accent);
}

.breadcrumb-custom li:last-child {
    color: var(--accent);
    font-weight: 600;
}

.breadcrumb-custom li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.3);
}

/* ---------- Seat Map ---------- */
.seat-map {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin: 20px 0;
}

.seat-map-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    max-width: 350px;
    margin: 0 auto;
}

.seat {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.seat.available {
    background: var(--white);
    border: 2px solid var(--gray-200);
    color: var(--gray-500);
}

.seat.available:hover {
    border-color: var(--accent);
    background: rgba(200, 169, 81, 0.1);
}

.seat.selected {
    background: var(--accent);
    color: var(--primary);
    border: 2px solid var(--accent-dark);
}

.seat.occupied {
    background: var(--gray-200);
    color: var(--gray-300);
    cursor: not-allowed;
}

.seat.aisle {
    visibility: hidden;
}

.seat-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.seat-legend span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.seat-legend-box {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    display: inline-block;
}

/* ============================================
   E-TICKET DOCUMENT STYLES (IATA Standard)
   ============================================ */

.eticket-document {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
    position: relative;
}

.eticket-document::before {
    content: 'AIRNEXA';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(12, 26, 58, 0.02);
    font-family: var(--font-display);
    pointer-events: none;
    z-index: 0;
    letter-spacing: 20px;
    white-space: nowrap;
}

.eticket-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.eticket-header-left,
.eticket-header-right {
    position: relative;
    z-index: 1;
}

.eticket-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.eticket-brand i {
    color: var(--accent);
    font-size: 1.3rem;
}

.eticket-brand span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
}

.eticket-brand strong {
    font-weight: 800;
}

.eticket-subtitle {
    font-size: 0.7rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.eticket-iata {
    font-size: 0.7rem;
    opacity: 0.5;
    margin-top: 3px;
}

.eticket-header-right {
    text-align: right;
}

.eticket-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.5;
}

.eticket-pnr {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--accent);
}

.eticket-section {
    padding: 20px 30px;
    border-bottom: 1px solid var(--gray-100);
    position: relative;
    z-index: 1;
}

.eticket-section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.eticket-section-title i {
    color: var(--accent);
    font-size: 0.85rem;
}

.eticket-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.eticket-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.eticket-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.eticket-field-label {
    font-size: 0.65rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.eticket-field-value {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
}

.eticket-bold {
    font-weight: 700;
}

/* Class badges */
.eticket-class-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.eticket-class-economy {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.eticket-class-business {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.eticket-class-first {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

/* Status */
.eticket-status-confirmed {
    color: #16a34a;
    font-weight: 700;
}

.eticket-status-checked_in {
    color: #2563eb;
    font-weight: 700;
}

.eticket-status-cancelled {
    color: #dc2626;
    font-weight: 700;
}

/* Itinerary table */
.eticket-itinerary-header {
    display: grid;
    grid-template-columns: 80px 70px 60px 60px 70px 70px 50px 60px;
    gap: 8px;
    font-size: 0.65rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    border-bottom: 2px solid var(--primary);
    font-weight: 600;
}

.eticket-itinerary-row {
    display: grid;
    grid-template-columns: 80px 70px 60px 60px 70px 70px 50px 60px;
    gap: 8px;
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px dashed var(--gray-200);
    align-items: center;
}

.eticket-segment-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 8px 0 15px;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.eticket-segment-details i {
    color: var(--accent);
    margin-right: 4px;
}

.eticket-layover {
    background: rgba(200, 169, 81, 0.08);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--accent-dark);
    font-weight: 600;
    margin: 5px 0;
    border-left: 3px solid var(--accent);
}

.eticket-layover i {
    margin-right: 5px;
}

/* Seat badge */
.eticket-seat-badge {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-dark);
    letter-spacing: 2px;
}

/* Fare box */
.eticket-fare-box {
    background: var(--light);
    border-radius: var(--radius-md);
    padding: 20px;
}

.eticket-fare-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.85rem;
}

.eticket-fare-amount {
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.eticket-fare-divider {
    border-top: 1px dashed var(--gray-300);
    margin: 8px 0;
}

.eticket-fare-total {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    padding-top: 10px;
}

.eticket-fare-total span:last-child {
    color: var(--accent-dark);
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.eticket-payment-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.eticket-payment-info i {
    color: var(--accent);
    margin-right: 5px;
}

/* Endorsements */
.eticket-endorsements {
    background: var(--light);
    padding: 15px;
    border-radius: var(--radius-md);
}

.eticket-endorsements p {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-family: 'Courier New', monospace;
    margin-bottom: 3px;
}

/* Codes */
.eticket-codes {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.eticket-qr {
    text-align: center;
}

.eticket-barcode-wrap {
    flex-grow: 1;
    text-align: center;
}

/* Notices */
.eticket-notice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.eticket-notice-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--light);
    border-radius: var(--radius-md);
}

.eticket-notice-item>i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 2px;
}

.eticket-notice-item strong {
    font-size: 0.85rem;
    color: var(--primary);
    display: block;
    margin-bottom: 3px;
}

.eticket-notice-item p {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin: 0;
    line-height: 1.4;
}

/* Tear line */
.eticket-tearline {
    border-top: 3px dashed var(--gray-300);
    text-align: center;
    padding: 10px 0;
    background: var(--light);
    position: relative;
}

.eticket-tearline span {
    background: var(--light);
    padding: 0 20px;
    font-size: 0.7rem;
    color: var(--gray-400);
    letter-spacing: 3px;
    font-weight: 700;
}

/* Boarding Pass */
.eticket-boarding-pass {
    display: flex;
    background: var(--primary);
    color: var(--white);
    min-height: 200px;
    position: relative;
    z-index: 1;
}

.bp-left {
    flex: 3;
    padding: 25px 30px;
    border-right: 3px dashed rgba(255, 255, 255, 0.2);
}

.bp-right {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.bp-brand {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.bp-brand i {
    color: var(--accent);
    margin-right: 5px;
}

.bp-brand strong {
    font-weight: 800;
}

.bp-route {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.bp-airport {
    text-align: center;
}

.bp-code {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.bp-city {
    font-size: 0.75rem;
    opacity: 0.6;
}

.bp-arrow {
    font-size: 1.5rem;
    color: var(--accent);
}

.bp-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.bp-detail-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
}

.bp-detail-value {
    font-weight: 700;
    font-size: 0.9rem;
}

.bp-gate {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    text-align: center;
}

.bp-right-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.bp-barcode {
    margin-top: auto;
}

/* Footer */
.eticket-footer {
    padding: 15px 30px;
    background: var(--primary);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    position: relative;
    z-index: 1;
}

.eticket-footer-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.eticket-footer-small {
    text-align: center;
    font-size: 0.65rem;
    opacity: 0.6;
}

/* ============================================
   CLASS COMPARISON CARDS
   ============================================ */
.class-comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.class-card {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.class-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.class-card-selected {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.class-card-header {
    padding: 20px;
    text-align: center;
    color: var(--white);
}

.class-header-economy {
    background: linear-gradient(135deg, #059669, #34d399);
}

.class-header-business {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.class-header-first {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.class-card-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
}

.class-card-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    margin: 5px 0;
}

.class-card-pp {
    font-size: 0.75rem;
    opacity: 0.7;
}

.class-card-body {
    padding: 15px 20px;
}

.class-feature {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.8rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 10px;
}

.class-feature:last-child {
    border-bottom: none;
}

.class-feature i {
    color: var(--accent);
    width: 18px;
    text-align: center;
    font-size: 0.75rem;
}

/* ============================================
   ENHANCED SEAT MAP
   ============================================ */
.aircraft-shape {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
}

.aircraft-nose {
    width: 120px;
    height: 60px;
    margin: 0 auto;
    background: var(--gray-100);
    border-radius: 60px 60px 0 0;
    border: 2px solid var(--gray-200);
    border-bottom: none;
}

.aircraft-body {
    border: 2px solid var(--gray-200);
    border-radius: 0;
    padding: 15px;
    background: var(--white);
}

.aircraft-tail {
    width: 80px;
    height: 40px;
    margin: 0 auto;
    background: var(--gray-100);
    border-radius: 0 0 40px 40px;
    border: 2px solid var(--gray-200);
    border-top: none;
}

.seat-section {
    margin-bottom: 15px;
}

.seat-section-label {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 0;
    margin-bottom: 8px;
    border-radius: var(--radius-sm);
}

.seat-label-first {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.seat-label-business {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.seat-label-economy {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.seat-grid-first {
    grid-template-columns: 30px repeat(2, 1fr) 20px repeat(2, 1fr);
}

.seat-grid-business {
    grid-template-columns: 30px repeat(2, 1fr) 20px repeat(2, 1fr);
}

.seat-grid-economy {
    grid-template-columns: 30px repeat(3, 1fr) 20px repeat(3, 1fr);
}

.seat-map-grid {
    display: grid;
    gap: 4px;
}

.seat-row-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gray-400);
}

.seat {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid var(--gray-200);
    background: var(--white);
}

.seat.aisle {
    border: none;
    background: transparent;
    cursor: default;
}

.seat.available:hover {
    background: rgba(200, 169, 81, 0.2);
    border-color: var(--accent);
    transform: scale(1.1);
}

.seat.occupied {
    background: var(--gray-200);
    color: var(--gray-400);
    cursor: not-allowed;
    border-color: var(--gray-200);
}

.seat.selected {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent-dark);
    transform: scale(1.05);
}

.seat-first.available {
    background: rgba(124, 58, 237, 0.05);
    border-color: rgba(124, 58, 237, 0.2);
}

.seat-business.available {
    background: rgba(37, 99, 235, 0.05);
    border-color: rgba(37, 99, 235, 0.2);
}

.seat-economy.available {
    background: rgba(5, 150, 105, 0.03);
}

.seat-display-badge {
    color: var(--accent-dark);
    font-family: var(--font-display);
    font-size: 1.2rem;
}

/* ============================================
   BOOKING FORM STYLES
   ============================================ */
.booking-section-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.booking-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 6px;
    display: block;
}

.booking-input {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.booking-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.1);
}

/* Ticket icon */
.ticket-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(200, 169, 81, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ticket-icon-circle i {
    font-size: 2rem;
    color: var(--accent);
}

.ticket-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.pnr-input {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 14px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
}

/* Confirmation */
.confirm-check-circle {
    width: 100px;
    height: 100px;
    background: rgba(72, 187, 120, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.confirm-check-circle i {
    font-size: 3rem;
    color: var(--success);
}

.confirm-title {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.confirm-label {
    color: var(--gray-400);
    font-size: 0.8rem;
}

.confirm-pnr {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 3px;
}

.confirm-seat {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-dark);
}

/* ============================================
   EXTRAS CARDS
   ============================================ */
.extras-heading {
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.extras-heading i {
    color: var(--accent);
}

/* Counter */
.extras-counter {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.extras-counter-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--light);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--primary);
    transition: var(--transition-fast);
}

.extras-counter-btn:hover {
    background: var(--accent);
    color: var(--white);
}

.extras-counter-input {
    width: 50px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    background: var(--white);
}

/* Radio cards */
.extras-radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
}

.extras-radio-card {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.extras-radio-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.extras-radio-card:hover {
    border-color: var(--accent);
}

.extras-radio-selected {
    border-color: var(--accent);
    background: rgba(200, 169, 81, 0.05);
}

.extras-radio-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.extras-radio-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
}

.extras-radio-desc {
    font-size: 0.7rem;
    color: var(--gray-400);
    margin: 3px 0;
}

.extras-radio-price {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent-dark);
    margin-top: 5px;
}

/* Toggle cards */
.extras-toggle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.extras-toggle-card {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 15px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.extras-toggle-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.extras-toggle-card:hover {
    border-color: var(--accent);
}

.extras-toggle-selected {
    border-color: var(--accent);
    background: rgba(200, 169, 81, 0.05);
}

.extras-toggle-icon {
    font-size: 1.3rem;
    color: var(--accent);
    width: 40px;
    text-align: center;
}

.extras-toggle-info {
    flex: 1;
}

.extras-toggle-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
}

.extras-toggle-desc {
    font-size: 0.7rem;
    color: var(--gray-400);
}

.extras-toggle-price {
    font-weight: 700;
    color: var(--accent-dark);
}

/* Running total */
.extras-running-total {
    background: rgba(200, 169, 81, 0.05);
    border: 2px solid var(--accent);
}

/* Fare summary */
.fare-summary-content {
    font-size: 0.85rem;
}

.fare-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.fare-total-row {
    padding-top: 8px;
}

.payment-method-card {
    border: 2px solid var(--gray-200);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.payment-method-card.active {
    border-color: var(--accent);
    background: rgba(200, 169, 81, 0.05);
}

.payment-method-card:hover {
    border-color: var(--accent);
}

/* Badge status */
.badge-status {
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8rem;
}

.badge-confirmed {
    background: rgba(72, 187, 120, 0.1);
    color: var(--success);
}

.badge-cancelled {
    background: rgba(252, 129, 129, 0.1);
    color: var(--danger);
}

/* Ticket travel info */
.ticket-travel-info {
    background: var(--light);
    padding: 20px;
    border-radius: var(--radius-md);
}

.ticket-travel-info h5 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticket-travel-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ticket-travel-info li {
    padding: 5px 0;
    font-size: 0.8rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticket-travel-info li i {
    color: var(--accent);
    width: 16px;
    text-align: center;
}

/* ============================================
   RESPONSIVE - TICKET & BOOKING
   ============================================ */
@media (max-width: 768px) {
    .eticket-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .eticket-grid-2 {
        grid-template-columns: 1fr;
    }

    .eticket-itinerary-header,
    .eticket-itinerary-row {
        grid-template-columns: repeat(4, 1fr);
        font-size: 0.75rem;
    }

    .eticket-itinerary-header span:nth-child(n+5),
    .eticket-itinerary-row span:nth-child(n+5) {
        display: none;
    }

    .eticket-notice-grid {
        grid-template-columns: 1fr;
    }

    .eticket-boarding-pass {
        flex-direction: column;
    }

    .bp-left {
        border-right: none;
        border-bottom: 3px dashed rgba(255, 255, 255, 0.2);
    }

    .bp-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .class-comparison-grid {
        grid-template-columns: 1fr;
    }

    .extras-toggle-grid {
        grid-template-columns: 1fr;
    }

    .eticket-header {
        flex-direction: column;
        text-align: center;
    }

    .eticket-header-right {
        text-align: center;
    }

    .eticket-section {
        padding: 15px 20px;
    }
}

/* Print styles */
@media print {

    .no-print,
    .navbar,
    .page-header,
    footer {
        display: none !important;
    }

    .eticket-document {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .section {
        padding: 0 !important;
    }

    body {
        background: white;
    }
}

/* ============================================
   FLIGHTS GRID CARDS
   ============================================ */
.flights-grid-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.flights-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.flights-card-header {
    padding: 15px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flights-card-route {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flights-card-code {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.flights-card-arrow {
    color: var(--accent);
    font-size: 0.9rem;
}

.flights-card-num {
    font-size: 0.75rem;
    opacity: 0.6;
    font-weight: 600;
}

.flights-card-body {
    padding: 20px;
    flex: 1;
}

.flights-card-cities {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.flights-card-duration {
    font-weight: 600;
    color: var(--gray-300);
    font-size: 0.7rem;
}

.flights-card-times {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.flights-time {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary);
}

.flights-date {
    font-size: 0.7rem;
    color: var(--gray-400);
}

.flights-card-plane-line {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 15px;
    position: relative;
}

.flights-card-plane-line span {
    flex: 1;
    height: 2px;
    background: var(--gray-200);
    display: block;
}

.flights-card-plane-line i {
    color: var(--accent);
    font-size: 0.85rem;
    transform: rotate(0deg);
}

.flights-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--gray-400);
    padding-top: 10px;
    border-top: 1px solid var(--gray-100);
}

.flights-card-meta i {
    margin-right: 4px;
    color: var(--accent);
}

.flights-card-footer {
    padding: 15px 20px;
    background: var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--gray-100);
}

.flights-card-prices {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.flights-price-main {
    display: flex;
    flex-direction: column;
}

.flights-price-label {
    font-size: 0.65rem;
    color: var(--gray-400);
    text-transform: uppercase;
}

.flights-price-amount {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary);
}

.flights-price-classes {
    display: flex;
    gap: 8px;
    font-size: 0.7rem;
    color: var(--gray-400);
}

.flights-price-classes span {
    cursor: help;
}

/* ============================================
   VERIFY PAGE
   ============================================ */
.verify-icon-circle {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.verify-icon-circle i {
    font-size: 2.5rem;
    color: var(--primary);
}

.verify-flight-card {
    background: var(--light);
    border-radius: var(--radius-md);
    padding: 20px;
}

.verify-flight-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.verify-flight-number {
    font-weight: 700;
    color: var(--primary);
}

.verify-flight-number i {
    color: var(--accent);
    margin-right: 5px;
}

.verify-flight-aircraft {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.verify-flight-route {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verify-airport {
    text-align: center;
    min-width: 100px;
}

.verify-code {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.verify-city {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.verify-time {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    margin-top: 5px;
}

.verify-date {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.verify-flight-line {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.verify-duration {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 600;
    margin-bottom: 5px;
}

.verify-line-graphic {
    display: flex;
    align-items: center;
    gap: 5px;
}

.verify-line-graphic span {
    flex: 1;
    height: 2px;
    background: var(--gray-200);
}

.verify-line-graphic i {
    color: var(--accent);
}

.verify-type {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-top: 3px;
    text-transform: uppercase;
}

.verify-layover-badge {
    background: rgba(200, 169, 81, 0.1);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-dark);
}

.verify-layover-badge i {
    margin-right: 5px;
}

/* ============================================
   CUSTOM DATE CALENDAR
   ============================================ */
.custom-date-input {
    position: relative;
    cursor: pointer;
}

.custom-date-input input {
    cursor: pointer;
}

.custom-date-display {
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.custom-date-display:hover {
    border-color: var(--accent);
}

.custom-date-display i {
    color: var(--accent);
}

.custom-date-display .placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

.custom-calendar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 320px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.custom-calendar.show {
    display: block;
    animation: calendarSlide 0.25s ease;
}

@keyframes calendarSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calendar-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calendar-nav {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    opacity: 0.7;
    transition: var(--transition-fast);
}

.calendar-nav:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.calendar-month {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 10px 15px 5px;
}

.calendar-weekday {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 5px 15px 15px;
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    border: none;
    background: none;
    color: var(--primary);
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: rgba(200, 169, 81, 0.1);
}

.calendar-day.today {
    background: rgba(200, 169, 81, 0.08);
    border: 1px solid var(--accent);
}

.calendar-day.selected {
    background: var(--accent);
    color: var(--white);
    font-weight: 800;
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    color: var(--gray-300);
}

.calendar-day.empty {
    visibility: hidden;
}

.calendar-day .flight-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    bottom: 4px;
}

.calendar-day .dot-direct {
    background: var(--success);
}

.calendar-day .dot-connecting {
    background: var(--accent);
}

.calendar-day .day-price {
    font-size: 0.55rem;
    color: var(--accent-dark);
    font-weight: 700;
    position: absolute;
    bottom: 2px;
}

/* ============================================
   CURRENCY DROPDOWN
   ============================================ */
.currency-dropdown {
    min-width: 250px;
    max-height: 400px;
    overflow-y: auto;
    padding: 8px;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-xl) !important;
    border: 1px solid var(--gray-100) !important;
}

.currency-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    font-size: 0.85rem;
}

.currency-dropdown .dropdown-item:hover {
    background: rgba(200, 169, 81, 0.08);
}

.currency-dropdown .dropdown-item.active {
    background: var(--gradient-accent);
    color: var(--primary);
    font-weight: 700;
}

.currency-symbol {
    font-weight: 700;
    width: 30px;
    text-align: center;
    font-size: 1rem;
}

.currency-code {
    font-weight: 600;
}

.currency-name {
    color: var(--gray-400);
    font-size: 0.8rem;
}

/* ============================================
   TRIP TYPE TOGGLE
   ============================================ */
.trip-type-toggle {
    display: inline-flex;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    background: var(--white);
}

.trip-type-btn {
    padding: 8px 20px;
    border: none;
    background: none;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 6px;
}

.trip-type-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
}

.trip-type-btn i {
    font-size: 0.75rem;
}

/* ============================================
   GLASSMORPHISM ENHANCED
   ============================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-md);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination .page-link {
    border: none;
    padding: 10px 16px;
    border-radius: var(--radius-sm) !important;
    font-weight: 600;
    color: var(--primary);
    margin: 0 3px;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: rgba(200, 169, 81, 0.1);
    color: var(--accent-dark);
}

.pagination .page-item.active .page-link {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

/* Text accent utility */
.text-accent {
    color: var(--accent) !important;
}

/* ============================================
   RESPONSIVE - NEW COMPONENTS
   ============================================ */
@media (max-width: 768px) {
    .flights-card-code {
        font-size: 1rem;
    }

    .flights-time {
        font-size: 1rem;
    }

    .verify-code {
        font-size: 1.5rem;
    }

    .verify-flight-route {
        flex-direction: column;
        gap: 15px;
    }

    .verify-flight-line {
        padding: 10px 0;
    }

    .custom-calendar {
        min-width: auto;
        left: -20px;
        right: -20px;
    }

    .trip-type-toggle {
        width: 100%;
    }

    .trip-type-btn {
        flex: 1;
        justify-content: center;
    }
}