@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
    /* Modern Color Palette */
    --primary: #004B87;
    --primary-light: #0066B3;
    --secondary: #F5A623;
    --accent: #FF6B35;
    --dark: #0A1628;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #004B87 0%, #0066B3 100%);
    --gradient-secondary: linear-gradient(135deg, #F5A623 0%, #FF8C42 100%);
    --gradient-dark: linear-gradient(135deg, #0A1628 0%, #1a2942 100%);

    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Spacing */
    --container: 1280px;
    --section-padding: 120px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

/* Custom Webkit Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Deals Ticker */
.promo-ticker {
    background: #0A1628;
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* display: block is default, removing flex to avoid shrink issues */
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    white-space: nowrap;
    animation: ticker-scroll 35s linear infinite;
    /* Ensure no flex shrinking squishes this element */
    flex-shrink: 0;
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
    line-height: 24px;
}

.ticker-item i {
    margin-right: 8px;
    font-size: 14px;
}

.ticker-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.ticker-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

@keyframes ticker-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Modern Top Bar */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact span {
    margin-right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-contact i {
    color: var(--secondary);
}

.top-social a {
    color: var(--white);
    margin-left: 16px;
    transition: var(--transition);
    opacity: 0.8;
}

.top-social a:hover {
    opacity: 1;
    color: var(--secondary);
    transform: translateY(-2px);
}

/* Premium Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1002;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    mix-blend-mode: multiply;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
    letter-spacing: -0.01em;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transform: translateX(-50%);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 12px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    font-size: 14px;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.dropdown-menu li a::before {
    display: none;
}

.dropdown-menu i {
    width: 20px;
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Modern Buttons */
.btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover::after {
    left: 150%;
}

.btn-primary {
    background: linear-gradient(to right, #004B87 0%, #0066B3 51%, #004B87 100%);
    background-size: 200% auto;
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(0, 75, 135, 0.3);
    transition: 0.5s;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px 0 rgba(0, 75, 135, 0.4), 0 0 15px rgba(0, 102, 179, 0.4);
}

.btn-secondary {
    background: linear-gradient(to right, #F5A623 0%, #FF8C42 51%, #F5A623 100%);
    background-size: 200% auto;
    color: var(--dark);
    box-shadow: 0 4px 14px 0 rgba(245, 166, 35, 0.3);
    transition: 0.5s;
}

.btn-secondary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px 0 rgba(245, 166, 35, 0.4), 0 0 15px rgba(255, 140, 66, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section - Modern & Bold */
.hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 75, 135, 0.95) 0%, rgba(10, 22, 40, 0.85) 100%),
        url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(245, 166, 35, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 0 90px;
    margin: 0 auto;
    text-align: center;
}

.iata-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.iata-badge i {
    color: var(--secondary);
    font-size: 16px;
}

.hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 5px;
    letter-spacing: -0.02em;
}

.hero h1 span {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
}

.hero p:empty {
    display: none;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

/* Glass-morphism Search Widget */
.search-widget {
    position: relative;
    margin-top: -120px;
    z-index: 100;
    padding-bottom: 40px;
}

.search-card {
    background: rgba(0, 70, 173, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.35);
    padding: 32px 40px;
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
}



.search-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.search-tab {
    flex: 1;
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.search-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.6);
    color: var(--primary);
    transform: translateY(-2px);
}

.search-tab.active {
    background: var(--white);
    color: #0046AD;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}

.search-tab i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.search-tab.active i {
    transform: scale(1.1);
}

.trip-types {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.trip-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.trip-radio input[type="radio"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.search-form-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.flight-leg.has-return {
    grid-template-columns: repeat(4, 1fr);
}

.search-controls-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    /* Add Button | Travelers | Search */
    gap: 16px;
    align-items: end;
}

.btn-add-city {
    background: transparent;
    border: 2px dashed var(--gray-300);
    border-radius: 50px;
    padding: 10px 20px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 46px;
    margin-right: auto;
}

.btn-add-city:hover {
    background: var(--gray-50);
    border-color: var(--primary);
}

.btn-remove-leg {
    background: #fee2e2;
    color: #dc2626;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    right: -10px;
    top: -10px;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.form-field label {
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}

.form-field input,
.form-field select {
    padding: 0 24px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-field input:hover,
.form-field select:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 75, 135, 0.12),
        0 4px 12px rgba(0, 75, 135, 0.15);
    transform: translateY(-2px);
}

.form-field input::placeholder {
    color: var(--gray-400);
    font-weight: 500;
}

/* High-End Swap Animation */
/* Premium Circular Swap Animation */
.swap-animating-origin,
.swap-animating-dest {
    will-change: transform, opacity;
    pointer-events: none;
    z-index: 100 !important;
}

.swap-animating-origin {
    animation: swapArcOrigin 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

.swap-animating-dest {
    animation: swapArcDest 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@keyframes swapArcOrigin {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    40% {
        transform: translate(calc(var(--dx) * 0.4), -45px) scale(1.04);
        opacity: 0.85;
    }

    100% {
        transform: translate(var(--dx), var(--dy)) scale(1);
        opacity: 1;
    }
}

@keyframes swapArcDest {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    40% {
        transform: translate(calc(var(--dx) * 0.4), 45px) scale(0.96);
        opacity: 0.85;
    }

    100% {
        transform: translate(var(--dx), var(--dy)) scale(1);
        opacity: 1;
    }
}

.swap-btn-animating i {
    animation: swapIconFlip 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes swapIconFlip {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.3);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Autocomplete Styles */
.position-relative {
    position: relative;
}

.swap-locations-btn {
    position: absolute;
    right: -24px;
    top: 66%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: var(--primary);
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0;
}

.swap-locations-btn:hover {
    background: var(--dark);
    transform: translateY(-50%) rotate(180deg) scale(1.15);
    box-shadow: 0 8px 24px rgba(0, 75, 135, 0.3);
}

.swap-locations-btn i {
    font-size: 13px;
}

@media (max-width: 768px) {
    .swap-locations-btn {
        right: 15px;
        top: 35px;
        /* Centered between stacked inputs */
        transform: rotate(90deg);
    }

    .swap-locations-btn:hover {
        transform: rotate(270deg) scale(1.15);
    }
}

.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    margin-top: 5px;
}

.autocomplete-header {
    padding: 12px 15px;
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.autocomplete-item {
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--gray-100);
    text-align: left;
}

.autocomplete-item:hover {
    background: var(--gray-50);
}

.autocomplete-item .iata-badge-small {
    background: var(--gray-100);
    color: var(--gray-800);
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 13px;
    display: inline-block;
}

.autocomplete-item .city-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-900);
}

.autocomplete-item .airport-name {
    font-size: 11px;
    color: var(--gray-500);
    display: block;
    margin-top: 2px;
}

/* Travelers Dropdown Styles */
#travelers-dropdown {
    width: 220px;
}

.travelers-input-wrapper {
    padding: 0 16px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    overflow: hidden;
}

#passenger-summary {
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    margin-right: 5px;
}

.travelers-input-wrapper:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.85);
}

.travelers-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--gray-200);
    z-index: 1000;
    padding: 10px;
    margin-top: 8px;
    display: none;
    flex-direction: column;
    gap: 1px;
}

.travelers-menu.show {
    display: flex;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.traveler-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.traveler-label .fw-bold {
    font-size: 14px;
    color: var(--gray-900);
}

.traveler-label .text-muted {
    font-size: 11px;
    color: var(--gray-500);
}

.traveler-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ctrl-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--gray-700);
    transition: all 0.2s;
}

.ctrl-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.count-val {
    min-width: 20px;
    text-align: center;
    font-weight: 700;
    color: var(--gray-900);
}

.cabin-row {
    border-top: 1px solid var(--gray-100);
    padding-top: 10px;
    margin-top: 5px;
}

.cabin-select {
    width: 100%;
    margin-top: 8px;
    padding: 8px 12px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    background: var(--gray-50);
    outline: none;
}

.btn-search {
    padding: 0 24px !important;
    height: 48px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    border-radius: 50px !important;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 16px rgba(241, 125, 34, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    white-space: nowrap;
    border: 2px solid transparent !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-search:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 24px rgba(241, 125, 34, 0.4) !important;
}

.btn-search:active {
    transform: translateY(-1px) !important;
}

.btn-search i {
    margin-right: 10px;
    font-size: 18px;
}

/* Search Widget Responsive */
@media (max-width: 1024px) {
    .search-form {
        grid-template-columns: repeat(3, 1fr);
    }

    .btn-search {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .search-widget {
        margin-top: -80px;
    }

    .search-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .flight-leg,
    .flight-leg.has-return {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .search-controls-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .btn-add-city {
        width: 100%;
        justify-content: center;
    }

    .btn-search {
        width: 100%;
    }

    .search-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .search-tab {
        font-size: 14px;
        padding: 12px 16px;
        gap: 8px;
    }

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

    .form-field label {
        font-size: 11px;
    }

    .form-field input,
    .form-field select {
        padding: 0 18px;
        height: 52px;
    }
}

/* Hotel Search Form - Two-Row Grid Layout */
#hotel-search-form .search-form-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: flex-end;
}

#hotel-search-form .form-field:nth-child(4) {
    grid-column: span 2;
}

#hotel-search-form .btn-search {
    grid-column: span 1;
    width: 100%;
    margin-top: 0;
}

@media (max-width: 1200px) {
    #hotel-search-form .search-form-content {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }

    #hotel-search-form .btn-search {
        grid-column: span 4;
        width: 100%;
    }
}

@media (max-width: 992px) {
    #hotel-search-form .search-form-content {
        grid-template-columns: 1fr 1fr;
    }

    #hotel-search-form .form-field:first-child {
        grid-column: span 2;
    }

    #hotel-search-form .btn-search {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    #hotel-search-form .search-form-content {
        grid-template-columns: 1fr;
    }

    #hotel-search-form .form-field:first-child,
    #hotel-search-form .btn-search {
        grid-column: span 1;
    }
}

/* Stats Section - Premium & Clean */
.stats {
    padding: 20px 0 60px;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 24px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 160px;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 75, 135, 0.05);
    border-color: rgba(0, 75, 135, 0.1);
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    max-width: 180px;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.section-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Modern Destination Cards */
.destinations {
    padding: 20px 0 60px;
    background: var(--gray-50);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.destination-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    border: 1px solid var(--gray-100);
    position: relative;
}

.destination-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 75, 135, 0.25), 0 0 30px rgba(0, 75, 135, 0.1);
    border-color: rgba(0, 75, 135, 0.2);
}

.destination-image {
    height: 320px;
    position: relative;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.destination-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: var(--transition);
}

.destination-card:hover .destination-image::before {
    opacity: 1;
}

.price-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--gradient-secondary);
    color: var(--dark);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    box-shadow: var(--shadow-lg);
    letter-spacing: -0.01em;
}

.destination-info {
    padding: 32px;
}

.destination-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.destination-description {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.destination-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.destination-link:hover {
    gap: 12px;
    color: var(--primary-light);
}

/* Services Section */
.services {
    padding: 20px 0 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    padding: 48px 36px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition-slow);
    border: 2px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(245, 166, 35, 0.2), 0 0 20px rgba(245, 166, 35, 0.1);
    border-color: var(--secondary);
}

.service-icon {
    font-size: 52px;
    margin-bottom: 24px;
    display: block;
}

.service-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.service-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 15px;
}

/* Partner Airlines Section */
.partner-airlines {
    padding: 30px 0 50px;
    background: var(--white);
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 100px;
    padding-right: 100px;
    animation: scroll-marquee 30s linear infinite;
    width: max-content;
}

.marquee-track img {
    height: 55px;
    /* Increased from 35px */
    object-fit: contain;
    filter: none;
    /* Removed grayscale(100%) opacity(0.5) */
    transition: all 0.4s ease;
    cursor: pointer;
}

.marquee-track img:hover {
    transform: scale(1.1);
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Sister Companies Section */
.sister-companies {
    padding: 20px 0 80px;
    background: var(--gray-50);
}

.sister-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.sister-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.sister-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(0, 75, 135, 0.2), 0 0 20px rgba(0, 75, 135, 0.1);
    border-color: var(--primary-light);
}

.sister-icon {
    width: 100px;
    height: 100px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    overflow: hidden;
}

.sister-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sister-card:hover .sister-icon {
    transform: scale(1.05);
}

.sister-icon i {
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.sister-card:hover .sister-icon i {
    color: var(--white);
}

.sister-info h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.sister-desc {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 12px;
    line-height: 1.6;
}

.sister-location {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Section */
.about {
    padding: 20px 0 60px;
    background: var(--gray-900);
    color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}

.about-features {
    list-style: none;
    display: grid;
    gap: 16px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    font-size: 16px;
}

.about-features li i {
    width: 28px;
    height: 28px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 14px;
}

.about-image {
    position: relative;
    border-radius: 24px;
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    height: 450px;
}

.about-image img.parallax-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    display: block;
    transform: translateY(0);
    will-change: transform;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(60px);
}

/* Premium Footer */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 24px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    object-fit: contain;
}

.footer-description {
    margin-bottom: 32px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gradient-secondary);
    color: var(--dark);
    transform: translateY(-4px);
}

.footer-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

.footer-contact {
    display: grid;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-item i {
    color: var(--secondary);
    margin-top: 2px;
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-icons {
    display: flex;
    gap: 16px;
    font-size: 28px;
    opacity: 0.6;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-button {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.7);
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Add slight delays for grid items if needed */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* Mobile Menu Icon */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero h1 {
        font-size: 46px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav {
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        padding: 20px 0 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding-top: 0;
        width: 100%;
        text-align: center;
    }

    .dropdown-menu li a {
        justify-content: center;
        padding: 5px 0;
        font-size: 13px;
    }

    .dropdown-toggle {
        font-weight: 800;
        color: var(--primary);
    }

    .nav-actions {
        display: none;
        width: 100%;
        justify-content: center;
        padding: 15px 0 20px;
    }

    .nav-actions.active {
        display: flex;
    }

    .hero h1 {
        font-size: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .search-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .top-bar {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 34px;
    }

    .section-title {
        font-size: 32px;
    }
}

/* Groups Section - Premium Table View */
.groups {
    padding: 20px 0;
    background: #f8fafc;
}

.groups-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.group-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.group-header {
    background: var(--white);
    padding: 10px 20px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

.group-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--gray-200);
}

.airline-logo {
    height: 30px;
    object-fit: contain;
}

.group-route-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.groups-table {
    width: 100%;
    border-collapse: collapse;
}

.groups-table th {
    text-align: left;
    padding: 12px 20px;
    font-size: 11px;
    font-weight: 800;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--gray-50);
}

.group-row td {
    padding: 12px 20px;
    vertical-align: middle;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    border-top: 1px solid var(--gray-50);
}

.flight-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.flight-date i {
    color: var(--primary);
    opacity: 0.6;
}

.flight-no {
    color: var(--gray-500);
    font-size: 13px;
    display: block;
}

.flight-route {
    font-weight: 800;
    white-space: nowrap;
}

.flight-time {
    font-weight: 800;
    white-space: nowrap;
}

.flight-baggage {
    color: var(--gray-500);
    font-size: 14px;
}

.seats-badge {
    background: #eefbff;
    color: #0088cc;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #cceeff;
}

.seats-badge.low {
    background: #fff5ee;
    color: #ff8c42;
    border-color: #ffe0cc;
}

.seats-badge.high {
    background: #eefdf6;
    color: #27ae60;
    border-color: #d1f2e1;
}

.meal-status {
    color: var(--gray-300);
    font-size: 14px;
}

.price-box {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
}

.price-box span {
    font-size: 14px;
    color: var(--gray-500);
    margin-right: 4px;
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-icon-group {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--gray-200);
    transition: var(--transition);
}

.btn-icon-group.green {
    background: #27ae60;
}

.btn-icon-group.blue {
    background: #2980b9;
}

.btn-icon-group.purple {
    background: #8e44ad;
}

.btn-book-now {
    background: #f17d22;
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    white-space: nowrap;
}

.btn-book-now:hover {
    background: #e66a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(241, 125, 34, 0.3);
}

.loading-state,
.error-state {
    text-align: center;
    padding: 60px;
    background: var(--white);
    border-radius: 20px;
    color: var(--gray-600);
    font-weight: 600;
}

.error-state i {
    color: #e74c3c;
    margin-bottom: 20px;
    font-size: 48px;
    display: block;
}

@media (max-width: 1024px) {

    .groups-table th:nth-child(5),
    .groups-table th:nth-child(7),
    .group-row td:nth-child(5),
    .group-row td:nth-child(7) {
        display: none;
    }
}

@media (max-width: 768px) {

    .groups-table,
    .groups-table thead,
    .groups-table tbody,
    .groups-table tr,
    .groups-table td {
        display: block;
        width: 100%;
    }

    .groups-table thead {
        display: none;
    }

    .group-row {
        border-bottom: 10px solid var(--gray-50);
    }

    .group-row td {
        padding: 12px 20px;
        text-align: right;
        position: relative;
        border: none;
        border-bottom: 1px solid var(--gray-50);
        min-height: 45px;
    }

    .group-row td::before {
        content: attr(data-label);
        position: absolute;
        left: 20px;
        font-weight: 800;
        text-transform: uppercase;
        font-size: 10px;
        color: var(--gray-400);
        top: 50%;
        transform: translateY(-50%);
    }

    .action-buttons {
        justify-content: flex-end;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

/* Header Sticky Booking Content (Second Row) */
.header-sticky-wrapper {
    display: none;
    /* hidden by default */
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(0, 75, 135, 0.1);
    padding: 10px 0;
}

.header.show-search .header-sticky-wrapper {
    display: block;
}

.header-sticky-content-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}


.sticky-inputs {
    display: flex;
    flex: 1;
    gap: 15px;
    background: rgba(0, 75, 135, 0.04);
    padding: 5px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0, 75, 135, 0.1);
}

.sticky-field {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    border-right: 1px solid rgba(0, 75, 135, 0.1);
    padding-right: 15px;
}

.sticky-field:last-child {
    border-right: none;
    padding-right: 0;
}

.sticky-field i {
    color: var(--primary);
    font-size: 14px;
    opacity: 0.7;
}

.sticky-field input {
    background: transparent;
    border: none;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    width: 100%;
    outline: none;
    cursor: pointer;
}

.sticky-field input::placeholder {
    color: var(--gray-400);
}

.sticky-search-btn {
    padding: 10px 25px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    min-width: 140px;
}

@media (max-width: 1024px) {
    .sticky-field:nth-child(5) {
        /* Hide travelers if space is tight */
        display: none;
    }
}

@media (max-width: 768px) {
    .sticky-inputs {
        gap: 10px;
        padding: 5px 15px;
    }

    .sticky-field span,
    .sticky-field i {
        font-size: 12px;
    }

    .sticky-search-btn {
        min-width: unset;
        width: 45px;
        height: 45px;
        padding: 0 !important;
        justify-content: center;
    }

    .sticky-search-btn span {
        display: none;
    }

    .sticky-field {
        border-right: none;
        padding-right: 0;
    }

    .sticky-field:not(:first-child) {
        display: none;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal.show .modal-content {
    transform: translateY(0) scale(1);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 24px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 30px;
    font-weight: 300;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-50);
}

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

/* Travel Utilities & Age Calculator - Modal Specific */
.utility-content {
    padding: 0;
}

.age-calc-card {
    background: var(--white);
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 30px;
    align-items: center;
}

.calc-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-input-group label {
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-input-group label i {
    color: var(--primary);
}

.calc-input {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    font-size: 15px;
    font-weight: 600;
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.calc-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 75, 135, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.calc-result {
    display: flex;
    justify-content: space-around;
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--gray-100);
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.calc-result:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.result-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.result-val {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.result-lbl {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    margin-top: 4px;
}

.age-category-tag {
    margin-top: 30px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 15px -3px rgba(0, 75, 135, 0.3);
    animation: tagPulse 2s infinite;
}

@keyframes tagPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

#cat-text {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 800;
}

@media (max-width: 992px) {

    .calculator-grid,
    .currency-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .calc-result {
        margin-top: 10px;
    }

    .modal-content {
        padding: 20px;
        margin: 10% auto;
    }
}

.currency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: flex-end;
}

.currency-result-box {
    text-align: center;
    padding: 30px;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.curr-val-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

/* World Clock Utility */
.clock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.clock-card {
    background: var(--gray-50);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
}

.clock-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px) scale(1.02);
    background: var(--white);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.city-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.time-display {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.date-display {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-400);
}

@media (max-width: 992px) {
    .clock-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .clock-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 25px 15px;
        margin: 2% auto;
        width: 95%;
    }

    .section-title {
        font-size: 24px;
    }
}

/* Weather Widget Utility */
.weather-main-card {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 35px;
    color: var(--white);
    margin-bottom: 30px;
    box-shadow: 0 20px 25px -5px rgba(0, 75, 135, 0.3);
    position: relative;
    overflow: hidden;
}

.weather-main-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.weather-header h3 {
    font-size: 24px;
    font-weight: 800;
}

.weather-header p {
    font-size: 14px;
    opacity: 0.8;
}

.weather-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.weather-temp-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

#weather-icon-large {
    font-size: 48px;
}

#weather-temp {
    font-size: 56px;
    font-weight: 800;
}

.weather-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.weather-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 90px;
}

.weather-info-item i {
    font-size: 18px;
}

.info-label {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.8;
}

.info-val {
    font-size: 14px;
    font-weight: 800;
}

.weather-forecast-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.forecast-item {
    flex: 1;
    min-width: 100px;
    background: var(--gray-50);
    padding: 15px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.forecast-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.fc-day {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.fc-icon {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 8px;
}

.fc-temp {
    font-size: 16px;
    font-weight: 800;
    color: var(--gray-900);
}

@media (max-width: 768px) {
    .weather-body {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .weather-info-grid {
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }
}

.search-results-dropdown .result-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-100);
}

.search-results-dropdown .result-item:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.search-results-dropdown .result-item:last-child {
    border-bottom: none;
}

.search-results-dropdown .city-tz {
    font-size: 11px;
    color: var(--gray-400);
    font-weight: 600;
}

.clock-card {
    position: relative;
}

.remove-clock {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
}

.clock-card:hover .remove-clock {
    opacity: 1;
}

.remove-clock:hover {
    background: var(--primary);
    color: var(--white);
}

/* Travel Checklist Utility */
.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 8px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.checklist-item:hover {
    border-color: var(--primary-light);
    transform: translateX(5px);
}

.checklist-item.completed {
    background: #f8f9fa;
    opacity: 0.6;
}

.checklist-item.completed .item-text {
    text-decoration: line-through;
    color: var(--gray-400);
    animation: strikeThrough 0.3s ease-out;
}

@keyframes strikeThrough {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.item-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.checklist-item.completed .item-checkbox {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.item-text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
}

.delete-item {
    color: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
    padding: 5px;
}

.delete-item:hover {
    color: #e74c3c;
    transform: scale(1.2) rotate(90deg);
}

/* Mobile adjustments for Weather & Estimator */
@media (max-width: 768px) {
    .weather-body {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .weather-temp-container {
        flex-direction: column;
        gap: 5px;
    }

    #weather-temp {
        font-size: 48px;
    }

    .weather-main-card {
        padding: 25px 20px;
    }

    @media (max-width: 480px) {
        .weather-info-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .estimator-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .estimator-grid,
    .timezone-adjustment .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .duration-result-box {
        padding: 25px !important;
    }

    #duration-display {
        font-size: 36px !important;
    }

    .checklist-input-group {
        flex-direction: column;
    }

    #add-item-btn {
        width: 100%;
        height: 45px;
    }

    .checklist-actions {
        justify-content: center !important;
        flex-wrap: wrap;
    }
}

/* Scrollbar and search fixes */
.search-results-dropdown {
    max-height: 250px;
}

.checklist-list::-webkit-scrollbar,
.search-results-dropdown::-webkit-scrollbar {
    width: 6px;
}

.checklist-list::-webkit-scrollbar-track,
.search-results-dropdown::-webkit-scrollbar-track {
    background: var(--gray-50);
    border-radius: 10px;
}

.checklist-list::-webkit-scrollbar-thumb,
.search-results-dropdown::-webkit-scrollbar-thumb {
    background: var(--gray-200);
    border-radius: 10px;
}

.checklist-list::-webkit-scrollbar-thumb:hover,
.search-results-dropdown::-webkit-scrollbar-thumb:hover {
    background: var(--gray-300);
}

/* FAQ Utility */
.faq-container {
    max-width: 650px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--gray-800);
    user-select: none;
    transition: var(--transition);
}

.faq-question i {
    color: var(--gray-400);
    transition: transform 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.faq-item.active .faq-question {
    color: var(--primary);
    background: var(--gray-50);
}

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    background: var(--white);
}

.faq-item.active .faq-answer {
    padding: 15px 25px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

/* --- In-Page Hotel Results UI --- */
.hotel-results-section {
    padding: 60px 0;
    background: #f1f5f9;
    border-top: 1px solid var(--gray-200);
}

.results-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.results-subtitle {
    display: block;
    color: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 8px;
}

.results-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.results-filters {
    display: flex;
    gap: 12px;
}

.btn-filter {
    background: white;
    border: 1px solid var(--gray-200);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--gray-600);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-filter:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hotel-results-grid-inline {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.hotel-card-result-inline {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hotel-card-result-inline:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hotel-save {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.hotel-save:hover {
    background: var(--white);
    color: #e74c3c;
}

.hotel-location {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hotel-location i {
    color: var(--primary);
}

.hotel-price strong {
    display: block;
    font-size: 24px;
    color: var(--primary);
    line-height: 1;
}

.hotel-price span {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 600;
}

.no-results-inline {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px;
    background: white;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-400);
    border: 2px dashed var(--gray-200);
}

@media (max-width: 768px) {
    .results-header-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .results-filters {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .btn-filter {
        white-space: nowrap;
    }
}

/* --- Search Tab Contents --- */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* --- Hotel Results UI --- */
.results-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    flex-direction: column;
    padding: 20px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    max-width: 1200px;
    margin: 40px auto 20px;
    width: 100%;
}

.btn-close-results {
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.hotel-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    overflow-y: auto;
    padding-bottom: 50px;
}

.hotel-card-result {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 480px;
}

.hotel-card-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.hotel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-category {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.hotel-card-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hotel-card-info h4 {
    margin: 0 0 10px;
    color: var(--dark);
    font-size: 18px;
}

.hotel-desc {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.hotel-price {
    font-size: 14px;
    color: var(--gray-500);
}

.hotel-price strong {
    display: block;
    font-size: 20px;
    color: var(--primary);
}

.no-results {
    color: white;
    text-align: center;
    grid-column: 1 / -1;
    padding: 100px;
    font-size: 20px;
}

/* --- Hotel Room Selection UI --- */
.rooms-list-container {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.room-card {
    display: grid;
    grid-template-columns: 1fr 200px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.room-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.room-details {
    padding: 24px;
}

.room-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
}

.room-info {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.amenity-tag {
    font-size: 11px;
    background: white;
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--gray-600);
    border: 1px solid var(--gray-100);
}

.room-action {
    background: #f1f5f9;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-left: 1px solid var(--gray-200);
}

.room-price {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
}

.room-price-label {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 15px;
}

.btn-book-room {
    width: 100%;
    padding: 12px;
    font-weight: 800;
}

@media (max-width: 600px) {
    .room-card {
        grid-template-columns: 1fr;
    }

    .room-action {
        border-left: none;
        border-top: 1px solid var(--gray-200);
    }
}