/* ===== CSS Variables ===== */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #000000;
    --bg-card: #111111;
    --bg-card-hover: #1f1f1f;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --accent: #ffffff;
    --accent-dim: rgba(255, 255, 255, 0.1);
    --border: rgba(255, 255, 255, 0.2);
    --border-light: rgba(255, 255, 255, 0.1);
    --success: #ffffff;
    --warning: #cccccc;
    --gradient: linear-gradient(135deg, #111111 0%, #000000 100%);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.5);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}



.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

input,
select {
    font-family: inherit;
    outline: none;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-img {
    height: 45px;
    width: auto;
    filter: invert(1);
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: invert(1);
    margin-bottom: 8px;
}

.logo-icon {
    font-size: 1.75rem;
}

.nav {
    display: flex;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover,
.nav-link.active {
    background: var(--accent-dim);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
}

.dropdown-toggle:hover {
    background: var(--accent-dim);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    margin-top: 8px;
    box-shadow: var(--shadow);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 20px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: var(--accent-dim);
}

.header-contact {
    display: flex;
    gap: 12px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ffffff;
    color: #000000;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 1.5rem;
    padding: 8px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav-link.active {
    background: var(--accent-dim);
}

/* ===== Button Styles ===== */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--text-secondary);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 12px 32px;
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        var(--bg-primary);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

/* ===== Search Card ===== */
.search-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: left;
    box-shadow: var(--shadow);
    overflow: visible;
}

.search-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.search-tab {
    padding: 10px 20px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-tab:hover {
    border-color: var(--text-secondary);
}

.search-tab.active {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: end;
    overflow: visible;
}

.form-row:nth-child(3) {
    grid-template-columns: repeat(4, 1fr);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: visible;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent);
    background: var(--bg-card-hover);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.swap-btn {
    width: 44px;
    height: 44px;
    background: var(--accent-dim);
    border-radius: 50%;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-bottom: 4px;
}

.swap-btn:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: rotate(180deg);
}

/* Airport Dropdown */
.airport-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    max-height: 240px;
    overflow-y: auto;
    display: none;
    z-index: 100;
    margin-top: 4px;
}

.airport-dropdown.active {
    display: block;
}

.airport-option {
    padding: 12px 16px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-light);
}

.airport-option:hover {
    background: var(--accent-dim);
}

.airport-option:last-child {
    border-bottom: none;
}

.airport-code {
    font-weight: 700;
    color: var(--accent);
}

.airport-name {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* Passengers Selector */
.passengers-selector {
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.passengers-selector:hover {
    border-color: var(--text-secondary);
}

.passenger-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: none;
    z-index: 100;
    margin-top: 4px;
}

.passenger-dropdown.active {
    display: block;
}

.passenger-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    min-height: 48px;
}

.passenger-row:last-child {
    border-bottom: none;
}

.passenger-row small {
    color: var(--text-muted);
}

.counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.counter button {
    width: 32px;
    height: 32px;
    background: var(--accent-dim);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.counter button:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

.counter span {
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.done-btn {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin-top: 16px;
    transition: var(--transition);
}

.done-btn:hover {
    opacity: 0.9;
}

/* Search Button */
.search-btn {
    padding: 16px 32px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
    margin-top: 8px;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Multi-City Form */
.flight-segment {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
    position: relative;
}

.segment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.segment-header h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

.remove-segment-btn {
    background: transparent;
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.remove-segment-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.form-row-multi {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.add-flight-btn {
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    border: 2px dashed var(--border);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    margin-bottom: 20px;
}

.add-flight-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
}

/* Trust Features Slider */
.trust-features-slider {
    margin-top: 48px;
    overflow: hidden;
    position: relative;
    padding: 24px 0;
}

.trust-track {
    display: flex;
    gap: 32px;
    animation: slideTrust 30s linear infinite;
    width: fit-content;
}

.trust-track:hover {
    animation-play-state: paused;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 280px;
    transition: var(--transition);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.trust-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.trust-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 100%);
    opacity: 0.2;
    z-index: -1;
}

.trust-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.trust-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

@keyframes slideTrust {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-280px * 6 - 32px * 6));
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Airline Partners Section */
.airline-partners-section {
    margin-top: 48px;
    padding: 32px 0;
    border-top: 1px solid var(--border);
}

.partners-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.airline-partners-slider {
    overflow: visible;
    position: relative;
}

.airline-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.airline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 0.8;
    transition: var(--transition);
}

.airline-item:hover {
    opacity: 1;
    transform: translateY(-8px);
}

.airline-logo {
    width: 120px;
    height: 120px;
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.airline-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: brightness(1.1);
}

.airline-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.airline-item:hover .airline-logo {
    border-color: var(--accent);
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

.airline-item:hover .airline-logo::before {
    opacity: 1;
}

.airline-item span {
    font-size: 1.1rem;
    color: var(--text-primary);
    text-align: center;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .airline-track {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 16px;
        padding: 10px;
    }

    .airline-logo {
        width: 80px;
        height: 80px;
        padding: 10px;
    }

    .airline-item span {
        font-size: 0.8rem;
    }
}

/* ===== Featured Tours Section ===== */
.featured-tours {
    padding: 80px 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.tour-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-badge.discount {
    background: #ffffff;
    color: #000000;
}

.tour-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.tour-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.tour-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.tour-meta i {
    color: var(--accent);
}

.tour-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.tour-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tour-highlights span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.tour-highlights i {
    color: var(--text-primary);
    font-size: 0.75rem;
}

.tour-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.tour-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
}

.price-original {
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.view-all-tours {
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
}

/* Responsive adjustments for tours */
@media (max-width: 768px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .tour-content h3 {
        font-size: 1.25rem;
    }
}

/* ===== Package Deals Section ===== */
.package-deals {
    padding: 80px 0;
    background: var(--bg-primary);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.package-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.package-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.package-badge.best-value {
    background: #ffffff;
    color: #000000;
}

.package-badge.popular {
    background: #333333;
    color: white;
    border: 1px solid white;
}

.package-badge.new {
    background: #000000;
    color: white;
    border: 1px solid white;
}

.package-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.package-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.package-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.package-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.package-services {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.service-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.service-item div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-item strong {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.service-item span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.package-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.package-highlights span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.package-highlights span:last-child {
    border-bottom: none;
}

.package-highlights i {
    color: var(--bg-primary);
    font-size: 0.75rem;
    background: var(--text-primary);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.package-card .btn-full {
    margin-top: auto;
}

/* Package Inclusions in Modal */
.package-inclusions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    margin-top: 16px;
}

.inclusion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.inclusion-item:last-child {
    border-bottom: none;
}

.inclusion-item i {
    color: var(--accent);
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.inclusion-item strong {
    color: var(--text-secondary);
    font-size: 0.85rem;
    min-width: 100px;
}

.inclusion-item span {
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Responsive adjustments for packages */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-content {
        padding: 20px;
    }

    .package-services {
        padding: 16px;
    }
}

/* ===== Features Section ===== */
.features {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--text-secondary);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== Destinations Section ===== */
.destinations {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.destination-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.destination-img {
    height: 160px;
    background-size: cover;
    background-position: center;
}

.destination-info {
    padding: 20px;
}

.destination-info h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.destination-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.destination-info .price {
    color: var(--success);
    font-weight: 600;
}

/* ===== Contact Section ===== */
.contact {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--text-secondary);
}

.contact-card i {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--accent);
}

.contact-card h3 {
    margin-bottom: 12px;
}

.contact-card a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--accent);
}

/* ===== Footer ===== */
.footer {
    padding: 48px 0 24px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-brand p {
    width: 100%;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: var(--accent-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Results Page ===== */
.results-page {
    padding-top: 100px;
    min-height: 100vh;
}

.results-header {
    background: var(--bg-secondary);
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.search-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.route-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.route-info h1 {
    font-size: 1.5rem;
}

.route-info .arrow {
    color: var(--text-muted);
}

.trip-details {
    display: flex;
    gap: 24px;
    color: var(--text-secondary);
}

.modify-search-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: var(--transition);
}

.modify-search-btn:hover {
    background: var(--accent-dim);
}

.results-content {
    padding: 40px 0;
}

.results-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters-title {
    font-size: 1.125rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    cursor: pointer;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.price-range {
    display: flex;
    gap: 12px;
    align-items: center;
}

.price-range input {
    width: 100%;
    padding: 10px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
}

/* Flight Cards */
.flights-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.flight-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}

.flight-card:hover {
    border-color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
}

.flight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.airline-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.flight-airline-logo {
    width: 40px;
    height: 40px;
    background: var(--accent-dim);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.airline-name {
    font-weight: 600;
}

.flight-number {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.flight-class {
    padding: 6px 12px;
    background: var(--accent-dim);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

.flight-details {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto;
    gap: 24px;
    align-items: center;
}

.flight-time {
    text-align: center;
}

.time {
    font-size: 1.5rem;
    font-weight: 700;
}

.airport-code-result {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.flight-duration {
    text-align: center;
    padding: 0 24px;
}

.duration-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.line {
    flex: 1;
    height: 2px;
    background: var(--border);
}

.line i {
    color: var(--text-muted);
}

.duration-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.stops {
    font-size: 0.75rem;
    color: var(--success);
}

.stops.has-stops {
    color: var(--warning);
}

.flight-price {
    text-align: right;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
}

.price-person {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.book-btn {
    padding: 12px 32px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin-top: 12px;
    transition: var(--transition);
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Loading State */
.loading {
    text-align: center;
    padding: 80px 0;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 24px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.no-results {
    text-align: center;
    padding: 80px 0;
}

.no-results i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.no-results h2 {
    margin-bottom: 12px;
}

.no-results p {
    color: var(--text-secondary);
}

/* ===== Booking Page ===== */
.booking-page {
    padding-top: 100px;
    min-height: 100vh;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
}

.booking-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.booking-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.booking-subtitle {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.flight-summary {
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-bottom: 32px;
}

.flight-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.flight-summary h3 {
    font-size: 1.125rem;
}

.flight-summary-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
}

.flight-summary-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.summary-value {
    font-weight: 500;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-section {
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.125rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section h3 i {
    color: var(--text-muted);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-grid .form-group.full-width {
    grid-column: 1 / -1;
}

.booking-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    resize: vertical;
    min-height: 100px;
}

.booking-form textarea:focus {
    border-color: var(--accent);
}

.submit-booking-btn {
    padding: 16px 32px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.submit-booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 24px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 480px;
    width: 100%;
    text-align: center;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    color: var(--text-primary);
}

.modal h2 {
    margin-bottom: 12px;
}

.modal p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.modal-btn {
    padding: 14px 32px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.modal-btn:hover {
    opacity: 0.9;
}

/* ===== Cars Page ===== */
.cars-hero {
    background:
        radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        var(--bg-primary);
}

.cars-hero .hero-title .highlight {
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.car-types {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.car-type-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.car-type-btn:hover {
    border-color: var(--text-secondary);
}

.car-type-btn.active {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.car-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--text-secondary);
}

.car-image {
    height: 180px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-info {
    padding: 24px;
}

.car-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.car-category {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.car-features {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.car-features span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.car-price {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.car-price-amount {
    font-size: 1.5rem;
    font-weight: 700;
}

.car-price-period {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.car-book-btn {
    padding: 10px 24px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.car-book-btn:hover {
    opacity: 0.9;
}

/* ===== Car Booking Page ===== */
.booking-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    padding: 40px 0;
}

.booking-summary h2,
.booking-form-container h2 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.car-summary-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.car-summary-image {
    height: 200px;
    background: var(--bg-secondary);
    overflow: hidden;
}

.car-summary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-summary-info {
    padding: 20px;
}

.car-summary-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.car-summary-info .car-category {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.car-summary-info .car-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.car-summary-info .car-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.form-row-booking {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    transition: var(--transition);
    padding-top: 20px;
}

.back-link:hover {
    color: var(--accent);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {

    .feature-grid,
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-container {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
        display: none;
    }

    .car-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav,
    .header-contact {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 100px 16px 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .search-card {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-row:nth-child(3) {
        grid-template-columns: 1fr 1fr;
    }

    .swap-btn {
        display: none;
    }

    .feature-grid,
    .destination-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .flight-details {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .flight-price {
        text-align: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .car-grid {
        grid-template-columns: 1fr;
    }

    .car-types {
        justify-content: center;
    }
}