/* ===== CSS Variables ===== */
:root {
    /* Primary Colors - Vibrant and Modern */
    --primary-color: #6366f1; /* Indigo */
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    
    /* Secondary Colors */
    --secondary-color: #ec4899; /* Pink accent */
    --accent-color: #14b8a6; /* Teal */
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    
    /* Text Colors */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    
    /* Gradient */
    --gradient-primary: linear-gradient(90deg, #0066ff, #EC4899);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px; /* Set a maximum width for larger screens */
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        width: 100%;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .search-container {
        padding: 1rem;
        margin: 0 0.5rem;
        border-radius: var(--radius-lg);
    }
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* ===== Header Navigation ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 2000;
    transition: all var(--transition-base);
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar {
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    height: 70px;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
}

.logo {
    margin-right: 4rem;
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

/* Mobile Navigation Styles */
.mobile-menu-toggle,
.mobile-nav-menu {
    display: none;
}

@media (max-width: 1024px) {
    .nav-list {
        gap: 1.5rem;
    }
    .logo {
        margin-right: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 1;
        width: 30px;
        height: 24px;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        background: transparent;
        border: none;
        padding: 0;
        z-index: 2100;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--text-primary);
        border-radius: 2px;
        transition: background-color var(--transition-fast);
    }
    
.mobile-nav-menu {
    position: absolute;
    top: 100%; /* Position below header */
    right: 0;
    width: 250px; /* Slightly wider for better readability */
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--transition-base),
                transform var(--transition-base),
                visibility var(--transition-base);
    z-index: 1500;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    /* Removed display:none to allow visibility toggling via opacity and visibility */
}
    
.mobile-nav-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}
    
    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-nav-list li {
        margin: 0;
    }
    
    .mobile-nav-list .nav-link {
        display: block;
        padding: 0.875rem 1.5rem;
        color: var(--text-primary);
        text-decoration: none;
        transition: all var(--transition-fast);
        position: relative;
    }
    
    .mobile-nav-list .nav-link:hover,
    .mobile-nav-list .nav-link:focus {
        background: var(--bg-tertiary);
        color: var(--primary-color);
    }

    .mobile-nav-list .nav-link:focus {
        outline: none;
    }

    .mobile-nav-list .nav-link:focus-visible {
        outline: 2px solid var(--primary-color);
        outline-offset: -2px;
    }
    
    .country-selector {
        order: 0;
        position: relative;
        display: flex;
        align-items: center;
    }

    /* Ensure proper stacking of dropdown menus */
    .nav-actions {
        position: relative;
    }

    .dropdown-content {
        z-index: 1550; /* Above mobile menu but below toggle */
    }
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
    white-space: nowrap;
    display: inline-block;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
    margin-left: auto;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
    padding: 2rem 0;
    background-image: url('https://storage.googleapis.com/a1aa/image/4536e050-0799-4048-14d5-a64c7168d359.jpg');
    background-size: cover;
    background-position: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    /* background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards; */
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    background: var(--gradient-primary, linear-gradient(90deg, #4F46E5, #EC4899));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    padding-bottom: 40px; /* Increased padding for larger airplane */
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100vw; /* Full viewport width */
    transform: translateX(-50%); /* Center the path */
    margin-left: 50%;
    height: 30px; /* Larger height */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='%234f46e5' d='M482.3 192c34.2 0 93.7 29 93.7 64c0 36-59.5 64-93.7 64H365.7L265.2 495.9c-5.7 10-16.3 16.1-27.8 16.1h-56.2c-10.6 0-18.3-10.2-15.4-20.4l49-171.6H112l-43.2 57.6c-3 4-7.8 6.4-12.8 6.4H14c-7.8 0-14-6.3-14-14c0-1.3 .2-2.6 .5-3.9L32 256 .5 145.9c-.4-1.3-.5-2.6-.5-3.9c0-7.8 6.3-14 14-14h43c5 0 9.8 2.4 12.8 6.4L112 192h102.9l-49-171.6C162.9 10.2 170.6 0 181.2 0h56.2c11.5 0 22.1 6.2 27.8 16.1L365.7 192h116.6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: -150px center; /* Start further off-screen */
    background-size: 35px auto; /* Larger airplane */
    transition: 
        transform 1s ease-in-out, 
        background-position 3s cubic-bezier(0.25, 0.1, 0.25, 1); /* Slower and smoother */
    z-index: -1;
    pointer-events: none;
}

.hero-content:hover .hero-title .highlight::after {
    background-position: calc(100vw - 20px) center; /* Fly to edge of viewport */
    transform: translateY(-20px) scale(1.1); /* Lift effect */
}
.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1.25rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.hero-cta:hover::before {
    left: 100%;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
        margin: 0 0.5rem;
        max-width: 100%;
    }
    
    .hero-cta {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Add this at the end of your CSS file */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 0.5s ease-out;
}


/* ===== Search Section ===== */
.search-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.search-container {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .search-container {
        padding: 1.5rem;
    }
}

.row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.input-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.input-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.flight-type-selector,
.passenger-dropdown > button,
.cabin-dropdown > button {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
    background-color: white;
    text-align: left;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.passenger-dropdown, .cabin-dropdown {
    position: relative;
}

select, input[type="text"], input[type="date"], button {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
}

select:focus, input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

button {
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

button:hover {
    background: var(--primary-dark);
}

button:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
}

/* Country Selector */
.country-selector {
    position: relative;
}

.country-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-tertiary);
    border: 2px solid transparent;
    color: var(--text-primary);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.country-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.country-btn:active {
    transform: translateY(0);
}

#selectedCurrency {
    color: var(--text-secondary);
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
}

/* Country Search Wrapper */
.country-search-wrapper {
    position: relative;
    padding: 1rem;
    border-bottom: 1px solid var(--bg-tertiary);
}

/* Country Search Input */
.country-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 1rem;
    border: 2px solid var(--bg-tertiary);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
    /* Removed background image for search icon */
    background-image: none;
    margin-bottom: 0.5rem;
}

.country-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.country-search-loading {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    animation: spin 1s linear infinite;
    color: var(--text-secondary);
}

@keyframes spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Country Results */
.country-results {
    padding: 0.5rem;
    overflow-y: auto;
    max-height: 300px; /* Add fixed height to enable scrolling */
}

/* Dropdown Styles */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    margin-top: 0.5rem;
    z-index: 1800;
    transform-origin: top right;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    min-width: 360px;
    max-width: 90vw;
    max-height: calc(100vh - 150px);
}

.dropdown-content.show {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.country-list {
    width: 100%;
    padding: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .dropdown-content {
        min-width: 280px;
        max-width: calc(100vw - 32px);
        margin-right: -8px;
    }
    
    .country-option {
        padding: 0.75rem;
    }
    
    .country-info {
        max-width: 180px;
    }
}

.country-option {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
    margin: 0.25rem 0;
    border-radius: var(--radius-md);
}

.country-option:hover {
    background: var(--bg-tertiary);
    border-left-color: var(--primary-color);
}

.country-code {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    min-width: 2rem;
    text-align: center;
}

.country-option-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0; /* Enable text truncation */
}

.country-info {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    min-width: 0; /* Enable text truncation */
}

.country-name {
    color: var(--text-primary);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.country-currency {
    color: var(--text-secondary);
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.country-flag {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.country-select-icon {
    margin-left: 1rem;
    flex-shrink: 0;
    color: var(--primary-color);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.country-option:hover .country-select-icon {
    opacity: 1;
}

/* No Results State */
.no-results {
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.no-results-icon {
    font-size: 1.5rem;
    opacity: 0.5;
}

/* Passenger & Cabin Dropdowns */
#passengerMenu, #cabinMenu {
    min-width: 300px;
    padding: 1rem;
}

.passenger-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--bg-tertiary);
}

.passenger-type:last-child {
    border-bottom: none;
}

.counter {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.counter-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.counter-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
}

.cabin-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border-radius: var(--radius-sm);
}

.cabin-option:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
}

/* Flight Inputs */
.flights-list {
    margin: 1.5rem 0;
}

.flight-segment {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: end;
}

.input-wrapper {
    position: relative;
    flex: 1;
}

.location-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    margin-top: 0.25rem;
    z-index: 1900;
    max-height: 300px;
    overflow-y: auto;
}

.location-dropdown.show {
    display: block;
}

.location-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #f1f5f9;
    transition: background var(--transition-fast);
}

.location-option:hover {
    background: var(--bg-tertiary);
}

.location-option:last-child {
    border-bottom: none;
}

.loading-indicator {
    padding: 1rem;
    text-align: center;
    color: var(--text-secondary);
}

.search-btn {
    display: block;
    margin: 2rem auto 0;
    padding: 1rem 3rem;
    font-size: 1.125rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* ===== Results Section ===== */
.results-container {
    margin-top: 3rem;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.results-controls {
    display: flex;
    gap: 1rem;
}

.sort-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-select {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    border: 2px solid #e2e8f0;
    background-color: white;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    min-width: 150px; /* Set a minimum width */
    width: auto;      /* Allow width to adjust based on content */
}


.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.filter-icon {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='4' y1='21' x2='4' y2='14'%3E%3C/line%3E%3Cline x1='4' y1='10' x2='4' y2='3'%3E%3C/line%3E%3Cline x1='12' y1='21' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='8' x2='12' y2='3'%3E%3C/line%3E%3Cline x1='20' y1='21' x2='20' y2='16'%3E%3C/line%3E%3Cline x1='20' y1='12' x2='20' y2='3'%3E%3C/line%3E%3Cline x1='1' y1='14' x2='7' y2='14'%3E%3C/line%3E%3Cline x1='9' y1='8' x2='15' y2='8'%3E%3C/line%3E%3Cline x1='17' y1='16' x2='23' y2='16'%3E%3C/line%3E%3C/svg%3E");
    background-size: contain;
}

.filters-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: var(--shadow-xl);
    z-index: 2500;
    transition: right var(--transition-base);
    display: flex;
    flex-direction: column;
}

.filters-panel.show {
    right: 0;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.close-filters {
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--text-secondary);
}

.filters-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex-grow: 1;
}

.filters-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 1rem;
}

.clear-filters-btn, .apply-filters-btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    font-weight: 500;
}

.clear-filters-btn {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.apply-filters-btn {
    background: var(--primary-color);
    color: white;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group h4 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.filter-group input[type="checkbox"] {
    margin-right: 0.5rem;
}

.flights-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
    padding: 1rem;
    position: relative;
}


.flights-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1rem;
    background: linear-gradient(to bottom, white, rgba(255,255,255,0));
    z-index: 10;
    pointer-events: none;
}

/* Custom Scrollbar for flight results */
.flights-grid::-webkit-scrollbar {
    width: 8px;
}

.flights-grid::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
}

.flights-grid::-webkit-scrollbar-thumb {
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    border: 2px solid var(--bg-tertiary);
}

.flights-grid::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-color);
}

/* New Flight Card Styles */
.flight-card-new {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    transition: all var(--transition-base);
    margin-bottom: 1rem;
}

.flight-card-summary {
    display: grid;
    grid-template-columns: 1fr 3fr 1.5fr;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 1rem;
    cursor: pointer;
    border-radius: var(--radius-lg);
    transition: background-color var(--transition-fast);
}

/* Add gap between outbound and inbound flight legs */
.flight-leg.outbound-leg {
    margin-right: 0.5rem;
    background-color: whitesmoke;
    border-radius: var(--radius-lg);
}

.flight-leg.inbound-leg {
    margin-left: 0.5rem;
    background-color: whitesmoke;
    border-radius: var(--radius-lg);
}


@media (max-width: 1024px) {
    .flight-card-summary {
        grid-template-columns: 2fr 3fr 1.5fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .flight-card-summary {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    .route-section {
        flex-direction: column;
        gap: 1rem;
    }
    .price-section {
        text-align: center;
        margin-top: 1rem;
    }
}

.flight-card-summary.active,
.flight-card-summary:hover {
    background-color: var(--bg-secondary);
}

.flight-card-new:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.airline-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.airline-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    object-fit: contain;
}

.airline-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.route-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.route-section .departure,
.route-section .arrival {
    text-align: center;
}

.route-section .time {
    font-size: 1.5rem;
    font-weight: 600;
}

.route-section .airport {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.route-section .path {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 1.5rem;
    min-width: 120px;
}

.route-section .duration {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.route-section .line {
    width: 100%;
    height: 2px;
    background-color: #e2e8f0;
    position: relative;
}

.route-section .line::before,
.route-section .line::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary-light);
    border-radius: 50%;
}

.route-section .line::before { left: -4px; }
.route-section .line::after { right: -4px; }

.route-section .stops {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.price-section {
    text-align: right;
}

.price-section .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.book-btn-new {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.book-btn-new:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.flight-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.flight-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.airline-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.airline-info img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
}

.airline-info h4 {
    margin-bottom: 0.25rem;
}

.flight-number {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.price-tag {
    text-align: right;
}

.currency {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.flight-route {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.departure, .arrival {
    text-align: center;
}

.time {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.airport {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.date {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.flight-path {
    flex: 1;
    text-align: center;
    position: relative;
}

.duration {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.path-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.line {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    margin: 0 0.5rem;
}

.stops {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.flight-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flight-features {
    display: flex;
    gap: 1rem;
}

.feature {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.book-btn {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.book-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ===== About Section ===== */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .about-image {
        order: -1;
    }
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.about-image {
    position: relative;
}

.image-placeholder {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    box-shadow: var(--shadow-xl);
}

/* ===== Services Section ===== */
.services-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 5rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

.testimonial-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ===== Footer Section ===== */
.footer-section {
    background: var(--text-primary);
    color: white;
    padding: 3rem 2rem 1rem;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    font-size: 2rem;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-column h3 {
    margin-bottom: 1rem;
}

.footer-column p {
    color: #cbd5e1;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.contact-info p {
    margin-bottom: 0.75rem;
    color: #cbd5e1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

/* ===== Modal Styles ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.modal-overlay.show {
    opacity: 1;
}

.modal {
    background: white;
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform var(--transition-base);
}

.modal.show {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.modal-body {
    padding: 1.5rem;
}

.booking-modal h2 {
    margin-bottom: 0.5rem;
}

.booking-modal p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.flight-summary {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.contact-section {
    text-align: center;
    margin-bottom: 2rem;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 0;
    transition: all var(--transition-base);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.support-text {
    color: var(--text-secondary);
}

.booking-benefits ul {
    list-style: none;
    padding: 0;
}

.booking-benefits li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

/* ===== Notification Styles ===== */
.notification-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 3000;
}

.notification {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

#results-container {
    margin-top: 2rem;
}


.airline-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.airline-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
}

.airline-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.price-info {
    text-align: right;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.select-flight-btn {
    background: var(--primary-color);
    color: var(--bg-primary);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: bold;
    transition: background var(--transition-fast);
}

.select-flight-btn:hover {
    background: #0056b3;
}

.flight-card-body {
    border-top: 1px solid var(--bg-tertiary);
    padding-top: 1.5rem;
}

.flight-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flight-time {
    text-align: center;
}

.flight-time .time {
    font-size: 1.2rem;
    font-weight: bold;
    display: block;
}

.flight-time .airport {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.flight-duration {
    text-align: center;
}

.flight-duration .duration {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.5rem;
}

.stops {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
}

.stop-line {
    height: 1px;
    width: 50px;
    background: var(--text-secondary);
}

.stop-dot {
    width: 6px;
    height: 6px;
    background: var(--text-secondary);
    border-radius: 50%;
    margin: 0 5px;
}

.stop-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Loading Spinner Styles */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    width: 100%;
}

.spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.spinner-circle {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 123, 255, 0.2);
    border-top-color: #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner p {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Styles for flight card details */
.flight-card-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    padding: 0 20px;
    grid-column: 1 / -1;
}

.flight-card-details.show {
    max-height: 500px; /* Adjust as needed */
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.segments-section h4,
.booking-section h4 {
    margin-top: 0;
    color: var(--text-secondary);
}

.segment, .layover, .booking-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius: var(--radius-sm);
    background-color: var(--bg-secondary);
    margin-bottom: 10px;
}

.segment-airline img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.layover {
    justify-content: center;
    font-style: italic;
    color: var(--text-secondary);
    background-color: transparent;
}

.book-link {
    background-color: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    text-decoration: none;
}

.flight-card-details .details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.flight-card-details .segments-section h4,
.flight-card-details .additional-info-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    border-bottom: 5px solid var(--border-color);
    padding-bottom: 0.5rem;
    
}

.flight-card-details .segment {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-m);
    padding: 1rem;
    margin-bottom: 1rem;
}

.segment-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.segment-airline-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.segment-airline-name {
    font-weight: bold;
}

.segment-flight-details {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.segment-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.timeline-icon {
    font-size: 1.5rem;
}

.timeline-time {
    font-weight: bold;
    font-size: 1.1rem;
}

.timeline-airport {
    color: var(--text-secondary);
}

.timeline-date {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.timeline-duration {
    flex-grow: 1;
    text-align: center;
    position: relative;
}

.timeline-duration span {
    background: var(--bg-tertiary);
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-s);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.timeline-duration::before {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    top: 50%;
    height: 1px;
    background: var(--border-color);
    z-index: -1;
}

.operating-carrier {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
}

.layover {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    margin: 0.5rem 0;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-m);
    color: var(--text-secondary);
}

.layover-icon {
    font-size: 1.2rem;
}

.baggage-info, .booking-options {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: var(--border-radius-m);
    margin-bottom: 1rem;
}

.baggage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.bag-item {
    text-align: center;
}

.bag-type {
    font-weight: bold;
}

.bag-price {
    color: var(--accent-color);
    font-weight: bold;
}

.bag-details {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.booking-option-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-s);
    margin-bottom: 0.5rem;
}

.provider-name {
    font-weight: bold;
}

.booking-price {
    font-weight: bold;
    font-size: 1.1rem;
}

.book-btn-secondary {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-s);
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.book-btn-secondary:hover {
    background: var(--accent-color-dark);
}

.seats-left {
    text-align: center;
    color: var(--accent-color);
    font-weight: bold;
    margin-top: 1rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
