/* ============================================
   CRISTAL AIRWAYS - STYLES
   Charte graphique: Élégance & Modernité
   ============================================ */

:root {
    /* Couleurs principales - Inspirées du luxe aérien */
    --primary-color: #1a237e;
    --primary-light: #283593;
    --primary-dark: #0d47a1;
    --secondary-color: #ff6f00;
    --secondary-light: #ff8f00;
    --accent-color: #00acc1;
    --accent-light: #26c6da;
    
    /* Couleurs neutres */
    --dark: #0a0e27;
    --dark-light: #1a1f3a;
    --light: #f5f7fa;
    --white: #ffffff;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    
    /* Typographie */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Oswald', 'Berlin Sans FB Demi', 'Arial Black', sans-serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 35, 126, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
    margin: 0;
}

.nav-brand .tagline {
    display: block;
    font-size: 0.7rem;
    color: var(--accent-light);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: var(--spacing-xs) 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.7) 0%, rgba(13, 71, 161, 0.8) 100%);
    z-index: -1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 111, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 172, 193, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 143, 0, 0.2) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.title-line {
    display: block;
    font-size: 0.4em;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5em;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
}

.btn-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 300;
}

/* ============================================
   SERVICES
   ============================================ */

.services {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 100%;
    height: 200px;
    margin: 0 auto var(--spacing-sm);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    background: var(--gray-light);
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   DESTINATIONS
   ============================================ */

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.destination-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.destination-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 35, 126, 0.2);
    border-color: var(--primary-color);
}

.destination-image {
    height: 250px;
    overflow: hidden;
    background: var(--gray-light);
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.destination-card-link:hover .destination-image img {
    transform: scale(1.1);
}

.destination-content {
    padding: var(--spacing-md);
    background: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.destination-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
}

.destination-content p {
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
    font-weight: 500;
}

.destination-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.destination-card-link:hover .destination-link {
    color: var(--secondary-color);
    padding-left: 5px;
}

.destination-card-link:hover .destination-card {
    transform: translateY(-8px);
}

/* ============================================
   SECTION SEPARATORS
   ============================================ */

.section-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(26, 35, 126, 0.2) 20%,
        rgba(26, 35, 126, 0.3) 50%,
        rgba(26, 35, 126, 0.2) 80%,
        transparent 100%
    );
    margin: var(--spacing-xl) 0;
    position: relative;
}

.section-separator::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid rgba(26, 35, 126, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-separator::after {
    content: '✈';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
    background: var(--light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.info-item p {
    color: var(--gray);
    margin: 0.3rem 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-xs);
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.footer-column h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--accent-light);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 var(--spacing-sm);
    }

    .hero-card {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        padding: var(--spacing-md);
        transition: var(--transition);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }


    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    section {
        padding: var(--spacing-md) 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .services-grid,
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ABOUT SLIDER
   ============================================ */

.about-slider {
    background: var(--light);
    padding: var(--spacing-xl) 0;
}

.slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 400px;
}

.slide {
    display: none;
    animation: fadeIn 0.6s ease-in-out;
}

.slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-content {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.slide-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.slide-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
}

.slide-text p {
    margin-bottom: var(--spacing-sm);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: var(--spacing-xs);
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   DESTINATION PAGES
   ============================================ */

.destination-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    margin-top: 80px;
    overflow: hidden;
}

.destination-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.destination-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.8), rgba(13, 71, 161, 0.9));
    z-index: -1;
}

.destination-hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    width: 100%;
}

.destination-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.destination-tagline {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 800px;
}

.destination-content-section {
    padding: var(--spacing-xl) 0;
    background: var(--light);
}

.destination-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.destination-main {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-block {
    margin-bottom: var(--spacing-lg);
}

.content-block:last-child {
    margin-bottom: 0;
}

.block-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.content-block p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
    color: var(--dark);
}

.info-list {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.info-list li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
    line-height: 1.8;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.example-text {
    font-style: italic;
    color: var(--gray);
    margin-top: var(--spacing-sm);
}

/* ============================================
   TABLES
   ============================================ */

.table-container {
    overflow-x: auto;
    margin: var(--spacing-md) 0;
}

.flights-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.flights-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.flights-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flights-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-light);
    color: var(--dark);
}

.flights-table tbody tr:hover {
    background: var(--light);
}

.flights-table tbody tr:last-child td {
    border-bottom: none;
}

.btn-table {
    margin-top: var(--spacing-md);
    width: 100%;
}

/* ============================================
   RESERVATION MODULE
   ============================================ */

.reservation-sidebar {
    position: sticky;
    top: 100px;
}

.reservation-module {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.reservation-tabs {
    display: flex;
    border-bottom: 2px solid var(--gray-light);
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-btn:hover {
    background: var(--light);
}

.tab-content {
    display: none;
    padding: var(--spacing-md);
}

.tab-content.active {
    display: block;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.reservation-form .form-group {
    display: flex;
    flex-direction: column;
}

.reservation-form label {
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--dark);
}

.reservation-form input,
.reservation-form select {
    padding: 0.8rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.reservation-form input:focus,
.reservation-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.radio-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.8rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.radio-label:hover {
    border-color: var(--primary-color);
    background: var(--light);
}

.radio-label input[type="radio"] {
    margin: 0;
    cursor: pointer;
}

.radio-label input[type="radio"]:checked + span {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-block {
    width: 100%;
    margin-top: var(--spacing-sm);
}

/* ============================================
   FLOTTE PAGE
   ============================================ */

.flotte-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: var(--spacing-xl) 0;
    margin-top: 80px;
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.flotte-section {
    padding: var(--spacing-xl) 0;
    background: var(--light);
}

.crew-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.crew-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.crew-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.crew-icon svg {
    width: 40px;
    height: 40px;
}

.crew-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.crew-card p {
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
}

.spirit-block {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    margin: var(--spacing-lg) 0;
}

.spirit-block .block-title {
    color: var(--white);
}

.spirit-text {
    font-size: 1.3rem;
    font-style: italic;
    opacity: 0.95;
}

.team-section {
    margin-top: var(--spacing-lg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.team-member {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.team-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto var(--spacing-sm);
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.team-member p {
    color: var(--gray);
    font-size: 0.9rem;
}

.airport-image {
    margin: var(--spacing-md) 0;
    border-radius: 15px;
    overflow: hidden;
}

.airport-image img {
    width: 100%;
    height: auto;
    display: block;
}

.schedule-info {
    background: var(--light);
    padding: var(--spacing-md);
    border-radius: 10px;
    margin-bottom: var(--spacing-md);
}

.schedule-info p {
    margin-bottom: var(--spacing-xs);
}

/* ============================================
   RESPONSIVE DESTINATIONS
   ============================================ */

@media (max-width: 1024px) {
    .destination-layout {
        grid-template-columns: 1fr;
    }

    .reservation-sidebar {
        position: static;
    }
}

/* ============================================
   RESERVATION PAGE
   ============================================ */

.reservation-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: var(--spacing-xl) 0;
    margin-top: 80px;
    text-align: center;
}

.reservation-main-section {
    padding: var(--spacing-xl) 0;
    background: var(--light);
    min-height: 80vh;
}

.reservation-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.reservation-form-container {
    position: sticky;
    top: 100px;
}

.reservation-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.flight-search-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.radio-group-horizontal {
    display: flex;
    gap: var(--spacing-sm);
}

.radio-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}

.radio-option:hover {
    border-color: var(--primary-color);
    background: var(--light);
}

.radio-option input[type="radio"] {
    margin-right: var(--spacing-xs);
    cursor: pointer;
}

.radio-option input[type="radio"]:checked + span {
    color: var(--primary-color);
    font-weight: 600;
}

.radio-option:has(input[type="radio"]:checked) {
    border-color: var(--primary-color);
    background: var(--light);
}

.btn-large {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.btn-secondary {
    background: var(--gray);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--gray);
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Results Panel */
.reservation-results-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.results-panel {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.flights-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.flight-card {
    border: 2px solid var(--gray-light);
    border-radius: 15px;
    padding: var(--spacing-md);
    transition: var(--transition);
    background: var(--white);
}

.flight-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.1);
}

.flight-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--gray-light);
}

.flight-direction {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.flight-date {
    color: var(--gray);
    font-size: 0.9rem;
}

.flight-card-body {
    margin-bottom: var(--spacing-md);
}

.flight-route {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-md);
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.flight-route-item {
    text-align: center;
}

.flight-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.flight-airport {
    font-size: 0.9rem;
    color: var(--gray);
}

.flight-route-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.flight-duration {
    font-size: 0.85rem;
    color: var(--gray);
    background: var(--light);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.flight-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray-light);
}

.flight-info {
    display: flex;
    gap: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--gray);
}

.flight-price {
    text-align: right;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.2rem;
}

.flight-card-footer {
    margin-top: var(--spacing-md);
}

.btn-select-flight {
    width: 100%;
}

.btn-select-flight.selected {
    background: var(--secondary-color);
    cursor: not-allowed;
}

.booking-section {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--light);
    border-radius: 15px;
}

.booking-summary {
    text-align: center;
}

.booking-summary h3 {
    font-family: var(--font-display);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.booking-summary p {
    color: var(--gray);
    margin-bottom: var(--spacing-md);
}

/* Info Panel */
.info-panel {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.info-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.info-item {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--gray-light);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.info-item ul {
    list-style: none;
    padding-left: 0;
}

.info-item ul li {
    padding: 0.3rem 0;
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--dark);
}

.info-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.info-item p {
    color: var(--dark);
    line-height: 1.6;
}

/* Responsive Reservation */
@media (max-width: 1024px) {
    .reservation-layout {
        grid-template-columns: 1fr;
    }

    .reservation-form-container,
    .info-panel {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .flight-route {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .flight-route-line {
        transform: rotate(90deg);
        width: 50px;
        margin: var(--spacing-xs) auto;
    }

    .flight-details {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .flight-price {
        text-align: left;
        width: 100%;
    }
}

