body {
    background-color: var(--light-bg);
}

/* BANNER START */

/* Enhanced Hero Banner */
.enhanced-hero-banner {
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4f8 50%, #fff 100%);
    /* padding: 60px 0 100px; */
    position: relative;
    overflow: hidden;
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    background: #f3b75a;
    top: -100px;
    right: -50px;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    background: #0066ff;
    bottom: -50px;
    left: -50px;
}

.decoration-3 {
    width: 150px;
    height: 150px;
    background: #0b203a;
    top: 50%;
    right: 10%;
}

/* BANNER END */

.flight-hero {
    /* background: radial-gradient(circle at top left, #ffffff 0, #e5edf7 40%, #d1d8e5 100%); */
    border-radius: 0 0 40px 40px;
    position: relative;
    overflow: hidden;
}

.flight-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(11,32,58,0.8), rgba(11,32,58,0.1)); */
    /* opacity: 0.55; */
    pointer-events: none;
    mix-blend-mode: multiply;
}

.flight-hero-inner {
    position: relative;
    z-index: 1;
    padding: 48px 0 110px;
}

.hero-title {
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    color: #000;
}

.hero-subtitle {
    /* color: rgba(255, 255, 255, 0.85); */
    color: rgba(0, 0, 0, 0.85);
    font-size: 0.95rem;
}

.hero-highlight {
    color: var(--primary);
}

.hero-tabs {
    border-radius: 999px;
    padding: 4px;
    background-color: rgba(78, 78, 78, 0.09);
    display: inline-flex;
    gap: 4px;
}

.hero-tab {
    border-radius: 999px;
    padding: 8px 18px;
    border: none;
    background: transparent;
    color: #000000d9;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

.hero-tab-active {
    background-color: #ffffff;
    color: var(--secondary);
}

.badge-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    background: var(--primary);
    color: var(--secondary);
    font-size: 0.72rem;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #fff;
}

.search-card-wrapper {
    margin-top: -70px;
}

.search-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
    padding: 18px 22px;
    position: relative;
    z-index: 2;
}

.search-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 4px;
}

.search-field {
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    padding: 9px 14px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #f9fafb;
    cursor: pointer;
}

.search-field span {
    color: #111827;
    font-weight: 500;
}

.search-field small {
    display: block;
    font-size: 0.7rem;
    color: #6b7280;
}

.search-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(11, 32, 58, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.btn-primary-rounded {
    border-radius: 999px;
    border: none;
    padding: 0.85rem 2.3rem;
    background: var(--primary);
    color: #111827;
    font-weight: 600;
    font-size: 0.92rem;
    box-shadow: 0 10px 30px rgba(243, 183, 90, 0.4);
}

.btn-primary-rounded:hover {
    background: #f6c977;
    color: #111827;
}

.quick-tile {
    border-radius: 20px;
    padding: 20px 10px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    background: #ffffff;
    color: #4b5563;
    width: 100%;
    border-radius: 12px;
}

.quick-tile-active {
    background: rgba(243, 183, 90, 0.08);
    border-color: rgba(243, 183, 90, 0.6);
    color: var(--secondary);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.section-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary);
}

.section-title span {
    color: var(--primary);
}

.destination-card {
    border-radius: 26px;
    overflow: hidden;
    background: #000;
    position: relative;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.28);
}

.destination-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.destination-tag {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
}

.testimonials-section {
    background: #ffffff;
    border-radius: 32px;
    padding: 40px 26px 32px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

.testimonial-card {
    border-radius: 22px;
    border: 1px solid #e5e7eb;
    padding: 20px 18px 18px;
    background: #f9fafb;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-stars {
    color: #f97316;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.testimonial-text {
    font-size: 0.85rem;
    color: #4b5563;
    margin-top: 8px;
    margin-bottom: 14px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary);
}

.why-card {
    border-radius: 24px;
    background: #ffffff;
    padding: 22px 20px;
    border: 1px solid #e5e7eb;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: rgba(243, 183, 90, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 22px;
    color: var(--secondary);
}

.why-title {
    font-weight: 600;
    font-size: 0.98rem;
    margin-bottom: 6px;
    color: var(--secondary);
}

.why-text {
    font-size: 0.82rem;
    color: #6b7280;
}

/* Travellers dropdown */
.travellers-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: -80px;
    width: 280px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.25);
    padding: 16px 18px 18px;
    z-index: 50;
    display: none;
}

.travellers-dropdown-header {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    text-align: center;
    color: var(--secondary);
}

.traveller-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.traveller-label {
    font-weight: 500;
    color: #111827;
}

.traveller-sub {
    font-size: 0.75rem;
    color: #9ca3af;
}

.traveller-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.circle-btn {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
}

.circle-btn:disabled {
    opacity: 0.4;
    cursor: default;
}

.class-badges {
    display: flex;
    gap: 8px;
    margin: 8px 0 10px;
    flex-wrap: wrap;
}

.class-badge {
    border-radius: 999px;
    padding: 6px 12px;
    border: 1px solid #e5e7eb;
    font-size: 0.6rem;
    cursor: pointer;
    background: #f9fafb;
    color: #4b5563;
}

.class-badge-active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #ffffff;
}

.travellers-apply-btn {
    border-radius: 999px;
    border: none;
    background: #007bff;
    color: #ffffff;
    width: 100%;
    padding: 9px 0;
    font-weight: 600;
    font-size: 0.9rem;
}

.trip-type-input {
    display: none;
}

.tab-content-panel {
    display: none;
}

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

@media (max-width: 991.98px) {
    .flight-hero-inner {
        padding: 60px 25px;
    }

    .search-card-wrapper {
        margin-top: -40px;
        padding: 25px;
    }

    .search-card {
        padding: 16px;
    }
}
