﻿:root {
    --primary-blue: #1e40af;
    --secondary-blue: #3b82f6;
    --light-blue: #dbeafe;
    --dark-blue: #1e3a8a;
    --accent-yellow: #faa61a;
    --accent-red: #ef4444;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --black: #000000;
    --footer-bg: #1f2937;
    --footer-text: #e5e7eb;
    --footer-link: #9ca3af;
    --footer-border: #374151;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.5;
}

.container {
    max-width: 1370px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Contact Bar */
.top-contact-bar {
    background-color: var(--black);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-700);
}

.top-contact-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact-right {
    display: flex;
    gap: 30px;
}

.phone-info,
.email-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-300);
    position: relative;
}

    .phone-info i,
    .email-info i {
        color: var(--accent-yellow);
        font-size: 14px;
    }

    .phone-info::after {
        content: '';
        position: absolute;
        right: -15px;
        top: 50%;
        transform: translateY(-50%);
        height: 16px;
        width: 1px;
        background-color: var(--gray-300);
        opacity: 0.5;
    }

/* Main Header */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .logo img {
        height: 85px;
        width: 100%;
    }

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
}

.nav-item {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .nav-item:hover {
        color: var(--accent-yellow);
    }

    .nav-item.active {
        color: var(--accent-yellow);
        font-weight: 600;
    }

        .nav-item.active::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background-color: var(--accent-yellow);
        }

.nav-phone {
    background: var(--accent-yellow);
    color: var(--black) !important;
    padding: 8px 15px !important;
    border-radius: 6px;
    font-weight: 600 !important;
    margin-left: 10px;
    transition: opacity 0.3s;
}

    .nav-phone:hover {
        opacity: 0.9;
    }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
    z-index: 1002;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

    .mobile-menu-overlay.active {
        display: block;
    }

.close-menu-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--gray-600);
    cursor: pointer;
    z-index: 1002;
}

.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

body.has-sticky-header {
    padding-top: 70px;
}

/* Hero Section */
.hero-section {
    background: #001a49;
    padding: 50px 0 140px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.support-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 100%;
    flex: 1;
}

.support-text {
    flex: 1;
    color: var(--white);
    max-width: 600px;
}

.support-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--white);
}

.support-phone {
    background: var(--white);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    user-select: none;
    border: 2px solid transparent;
}

    .support-phone:hover {
        background: var(--accent-yellow);
        color: var(--white);
        border-color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(250, 166, 26, 0.3);
    }

    .support-phone i {
        color: var(--accent-yellow);
        font-size: 22px;
        transition: all 0.3s;
    }

    .support-phone:hover i {
        color: var(--white);
    }

.support-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.support-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
}

    .support-feature i {
        font-size: 20px;
        color: var(--accent-yellow);
    }

.no-queue-tag {
    font-size: 16px;
    font-weight: 500;
    color: #facc15;
    margin-top: 10px;
}

.support-image {
    flex-shrink: 0;
    width: 450px;
    height: 450px;
    position: relative;
    z-index: 1;
    left: 280px; 

}

    .support-image img {
        width: 120%;
        height: 100%;
        object-fit: contain;
        border-radius: 20px;
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3)) saturate(1.5);
    }

/* Flight Search Box */
.flight-search-box {
    position: absolute;
    bottom: -135px;
    left: 50%;
    transform: translateX(-50%);
    width: 105%;
    background: #0f172a;
    padding: 18px 22px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.trip-type {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.trip-btn {
    background: transparent;
    border: none;
    color: #cbd5e1;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

    .trip-btn.active {
        background: #1e293b;
        color: var(--white);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    }

    .trip-btn:hover:not(.active) {
        background: rgba(255, 255, 255, 0.1);
    }

.search-form {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    align-items: center;
    width: 100%;
    overflow: visible;
    justify-items: center;
}

    .search-form .form-group:last-child {
        grid-column: 3 / 5;
        display: flex;
        justify-content: center;
    }

.form-group {
    position: relative;
    width: 100%;
}

.search-form input,
.travelers-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    background: var(--white);
    transition: all 0.3s;
    height: 46px;
    color: var(--black);
    box-sizing: border-box;
}

    .search-form input:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
    }

.form-group:first-child {
    position: relative;
}

.swap-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gray-100);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 12px;
    padding: 0;
    z-index: 2;
}

    .swap-btn:hover {
        background: var(--secondary-blue);
        color: var(--white);
        transform: translateY(-50%) rotate(180deg);
    }

.travelers-input {
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--black);
    font-weight: 500;
    user-select: none;
    padding: 0 16px;
    gap: 8px;
}
.travelers-input {
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--black);
    font-weight: 500;
    user-select: none;
    padding: 0 16px;
    gap: 8px;
    height: 46px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

    .travelers-input:hover {
        border-color: #3b82f6;
        box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
    }

.traveler-options-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.traveler-option {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    white-space: nowrap;
    padding: 2px 4px;
    border-radius: 4px;
    transition: background 0.2s;
}

    .traveler-option:hover {
        background: rgba(59, 130, 246, 0.05);
    }

.option-label {
    color: var(--gray-600);
    font-weight: 400;
    font-size: 12px;
}

.option-value {
    color: var(--black);
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    font-size: 14px;
}

.divider-line {
    height: 20px;
    width: 1px;
    background-color: var(--gray-300);
    margin: 0 4px;
}

.travelers-input i {
    color: var(--gray-500);
    font-size: 12px;
    transition: transform 0.3s;
}

.travelers-input.active i {
    transform: rotate(180deg);
}

/* Traveler Modal Styles */
.traveler-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    animation: fadeIn 0.2s ease-out;
}

.traveler-modal-content {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.3s ease-out;
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .modal-header h3 {
        font-size: 20px;
        font-weight: 600;
        color: #1f2937;
        margin: 0;
        font-family: 'Poppins', sans-serif;
    }

.close-modal {
    background: none;
    border: none;
    font-size: 28px;
    color: #6b7280;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

    .close-modal:hover {
        background: #f3f4f6;
        color: #1f2937;
    }

.modal-body {
    padding: 24px;
}

.traveler-counter {
    margin-bottom: 30px;
}

.counter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

    .counter-item:last-child {
        border-bottom: none;
    }

.counter-label {
    font-weight: 500;
    color: #1f2937;
    font-size: 15px;
}

    .counter-label small {
        display: block;
        font-size: 12px;
        color: #6b7280;
        font-weight: 400;
        margin-top: 2px;
    }

.counter-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.counter-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: none;
    font-size: 18px;
    color: #4b5563;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

    .counter-btn:hover:not(:disabled) {
        border-color: #3b82f6;
        color: #3b82f6;
        background: #eff6ff;
    }

    .counter-btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }

.counter-value {
    font-size: 18px;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
    color: #1f2937;
}

.class-selection h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
    font-family: 'Poppins', sans-serif;
}

.class-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.class-option {
    padding: 14px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    text-align: center;
}

    .class-option.active {
        border-color: #3b82f6;
        background: #dbeafe;
        color: #1e40af;
    }

    .class-option:hover:not(.active) {
        border-color: #9ca3af;
        background: #f9fafb;
    }

.apply-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent-yellow);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

    .apply-btn:hover {
        opacity: 0.9;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }

    .apply-btn:active {
        transform: translateY(0);
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.divider-line {
    height: 24px;
    width: 1px;
    background-color: var(--gray-200);
    margin: 0 8px;
}

.traveler-count,
.class-type {
    font-size: 14px;
    white-space: nowrap;
}

.travelers-input i {
    color: var(--gray-500);
    font-size: 12px;
    margin-left: 8px;
}

.search-btn {
    background: var(--accent-yellow);
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    color: var(--black);
    transition: all 0.3s;
    font-family: "Poppins", sans-serif;
    box-shadow: 0 3px 12px rgba(250, 166, 26, 0.3);
    height: 46px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .search-btn:hover {
        opacity: 0.9;
    }

/* Page Heading with Line */
.page-heading {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

    .page-heading .section-title {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 15px;
        color: var(--black);
        font-family: "Montserrat", sans-serif;
        position: relative;
        display: inline-block;
    }

.heading-line {
    width: 50px;
    height: 3px;
    background: var(--accent-yellow);
    margin: 0 auto;
    border: none;
    border-radius: 2px;
}

/* Why Book Section */
.why-book-section {
    padding: 140px 0 80px;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff6e6, #ffedd5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 35px;
    color: var(--accent-yellow);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--black);
}

.feature-card p {
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 16px;
}

/* Popular Routes */
.popular-routes {
    padding: 80px 0;
    background: var(--gray-50);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.route-card {
    background: var(--white);
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    height: 120px;
    display: flex;
    align-items: center;
}

    .route-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

.route-content {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

.route-left {
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    font-size: 35px;
}

.route-icon {
    color: var(--accent-yellow);
    font-size: 30px;
    width: 50px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.route-dates {
    font-size: 13px;
    color: var(--gray-700);
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.route-cities {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 22px;
    font-weight: 800;
    color: var(--black);
}

    .route-cities i {
        color: var(--accent-yellow);
        font-size: 20px;
    }

.city-from,
.city-to {
    min-width: 50px;
    text-align: center;
}

.route-right {
    flex: 0 0 100px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.book-btn {
    padding: 10px 20px;
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
    background: var(--accent-yellow);
}

    .book-btn:hover {
        opacity: 0.9;
    }

/* Flight Offers */
.flight-offers {
    padding: 80px 0;
    background: var(--white);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    
}

    .offer-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.offer-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

    .offer-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.offer-content {
    padding: 25px;
}

    .offer-content h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--black);
    }

.offer-dates {
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.offer-btn {
    width: 100%;
    padding: 15px;
    background: var(--accent-yellow);
    color: var(--black);
    border: none;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 17px;
}

    .offer-btn:hover {
        opacity: 0.9;
    }

/* Description Section */
.description-section {
    padding: 80px 0;
    background: var(--gray-50);
    width: 100%;
/*    max-width: 1440px;*/
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

    .description-content h2 {
        font-size: 18px;
        font-weight: 800;
        margin-bottom: 30px;
        color: var(--black);
        font-family: "Montserrat", sans-serif;
    }

    .description-content p {
        color: var(--gray-700);
        margin-bottom: 20px;
        line-height: 1.7;
        font-size: 14px;
    }

/* Footer */
.footer {
    background: var(--black);
    color: var(--footer-text);
    padding: 60px 0 25px;

}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    font-family: "Montserrat", sans-serif;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 25px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--footer-link);
    font-size: 16px;
    line-height: 1.6;
}

    .contact-item i {
        color: var(--accent-yellow);
        margin-top: 5px;
        flex-shrink: 0;
    }

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: var(--footer-link);
        text-decoration: none;
        transition: color 0.3s;
        font-size: 16px;
    }

        .footer-links a:hover {
            color: var(--white);
        }

.footer-about {
    border-top: 1px solid var(--footer-border);
    border-bottom: 1px solid var(--footer-border);
    padding: 40px 0;
    margin-bottom: 40px;
}

    .footer-about p {
        color: var(--footer-link);
        margin-bottom: 20px;
        line-height: 1.7;
        font-size: 16px;
    }

.legal-notice {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
}

    .legal-notice p {
        font-size: 15px;
        color: var(--gray-400);
        margin-bottom: 10px;
        line-height: 1.6;
    }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--footer-border);
}

.copyright {
    color: var(--accent-yellow);
    font-size: 15px;
    font-weight: 500;
}

/* Autocomplete Styles */
.autocomplete-suggestions {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 5px;
}

.suggestion-item {
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
}

    .suggestion-item:hover {
        background: var(--gray-100);
    }

    .suggestion-item:last-child {
        border-bottom: none;
    }

    .suggestion-item div:first-child {
        font-weight: 600;
        color: var(--gray-800);
    }

    .suggestion-item div:last-child {
        font-size: 12px;
        color: var(--gray-600);
        margin-top: 2px;
    }

/* Loading Spinner */
.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */

@media (max-width: 1200px) {
    .search-form {
        grid-template-columns: repeat(3, 1fr);
    }

    .search-btn {
        grid-column: span 1;
    }

    .support-image {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        gap: 50px;
    }

    .support-box {
        flex-direction: column;
        text-align: center;
    }

    .support-image {
        width: 550px;
        height: 350px;
        margin: 0 auto;
        bottom: -100px;
    }

    .flight-search-box {
        position: static;
        transform: none;
        margin: 40px auto 0;
        width: 100%;
    }

    .why-book-section {
        padding-top: 100px;
    }

    .features-grid,
    .routes-grid,
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-form {
        grid-template-columns: repeat(3, 1fr);
    }

    .search-btn {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-left: 0;
        padding-right: 0;
/*        margin-left: -20px;
        margin-right: -20px;*/
        width: calc(100% + 40px);
        max-width: none;
        overflow: hidden;
    }
    .mobile-hero-image {
        /* POSITION से adjust करें: */
        position: relative;
        left: 20px; 
        top: 28px;
/*        right: -20px;*/
    }
        .offer-card {
            margin-right: -45px;
        }

        .hero-content {
            padding: 0 20px;
            width: 100%;
        }

        .support-box {
            width: 100%;
            padding: 0 20px;
        }

        .support-text {
            width: 100%;
            padding: 0;
        }

        .main-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--white);
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            gap: 15px;
        }

        .mobile-menu-btn {
            display: block;
        }

        .nav-phone {
            margin-left: 0;
            justify-content: center;
        }

        .support-header h1 {
            font-size: 28px;
        }

        .support-phone {
            font-size: 20px;
            padding: 10px 18px;
        }

        .support-image {
            width: 85%;
            height: 100%;
            bottom: -100px;
        }

        .support-features {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .features-grid,
        .routes-grid,
        .offers-grid {
            grid-template-columns: 1fr;
        }

        .page-heading .section-title {
            font-size: 32px;
        }

        .search-form {
            grid-template-columns: 1fr;
            gap: 12px;
        }

            .search-form .form-group:last-child {
                grid-column: 1;
                display: flex;
                justify-content: center;
            }

        .search-btn {
            width: 100%;
            max-width: 200px;
        }

        .heading-line {
            width: 40px;
            height: 2px;
        }

        .trip-type {
            justify-content: center;
        }

        .trip-btn {
            flex: 1;
            text-align: center;
        }
    }

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 40px 0 100px;
    }

    .support-header h1 {
        font-size: 24px;
    }

    .support-phone {
        font-size: 18px;
        padding: 8px 15px;
    }

    .support-image {
        right: 10px;
        width: 293px;
        height: 250px;
    }

    .search-form .form-group:last-child {
        margin-top: 10px; 
    }

    .search-btn {
        max-width: 180px;
        padding: 12px 20px;
    }

    .flight-search-box {
        padding: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .page-heading .section-title {
        font-size: 28px;
    }

    .heading-line {
        width: 35px;
        height: 2px;
    }

    .why-book-section,
    .popular-routes,
    .flight-offers,
    .description-section {
        padding: 60px 0;
    }

    .search-form input,
    .travelers-input {
        font-size: 14px;
        padding: 12px 14px;
    }

    .traveler-count,
    .class-type {
        font-size: 13px;
    }
}



/* ==================== MOBILE COMPONENTS ==================== */
.mobile-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.mobile-popup {
    background: linear-gradient(135deg, #001a49 0%, #0f172a 100%);
    border-radius: 20px;
    width: 100%;
    max-width: 380px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(250, 166, 26, 0.3);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-popup-overlay.active .mobile-popup {
    transform: scale(1);
    opacity: 1;
}
.popup-header {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(250, 166, 26, 0.3);
}
.popup-header h2 {
    color: #fff;
    font-size: 20px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.popup-header h2 i { color: #faa61a; }
.close-popup {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}
.popup-content { padding: 25px; }
.popup-phone-large {
    text-align: center;
    margin-bottom: 25px;
}
.popup-phone-large a {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #faa61a;
    color: #000;
    font-size: 24px;
    font-weight: 700;
    padding: 18px 30px;
    border-radius: 15px;
    text-decoration: none;
}
.popup-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}
.popup-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.popup-feature i { color: #faa61a; }
.popup-feature span { color: #fff; font-size: 14px; }
.popup-tagline {
    background: rgba(250, 166, 26, 0.1);
    border: 1px solid rgba(250, 166, 26, 0.3);
    border-radius: 12px;
    padding: 15px;
    color: #ffd166;
    text-align: center;
    font-size: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.popup-actions { text-align: center; }
.popup-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #10b981;
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 35px;
    border-radius: 15px;
    text-decoration: none;
    margin-bottom: 20px;
    width: 100%;
    justify-content: center;
}
.popup-options { display: flex; flex-direction: column; gap: 15px; }
.dont-show-today {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #a0aec0;
    font-size: 14px;
}
.close-and-continue {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    width: 100%;
}

/* Mobile Top Bar */
.mobile-top-bar {
    display: none;
    background: #faa61a;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1001;
}
.mobile-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    font-weight: 600;
}
.top-bar-text { font-size: 16px; font-weight: 700; }
.top-bar-call-btn {
    background: #000;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.bottom-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bottom-bar-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}
.bottom-bar-info i { font-size: 22px; color: #faa61a; }
.bottom-bar-text { display: flex; flex-direction: column; }
.bottom-bar-title { font-size: 12px; color: #cbd5e1; }
.bottom-bar-number { font-size: 16px; font-weight: 700; }
.bottom-bar-call-btn {
    background: #faa61a;
    color: #000 !important;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Mobile Show */
@media (max-width: 768px) {
    .mobile-top-bar { display: block; }
    .floating-call-btn { display: block; }
    .top-contact-bar { display: none; }
}
@media (max-width: 768px) {
    .main-header {
        display: none !important;
    }

    .top-contact-bar {
        display: none !important;
    }
    .mobile-top-bar {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #faa61a;
        padding: 12px 20px;
        z-index: 1001;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    body {
        padding-top: 60px !important;
    }
    .sticky-bottom-bar {
        display: block !important;
        position: fixed;
        bottom: -100px;
        left: 0;
        right: 0;
        background: #1e3a8a;
        padding: 12px 20px;
        z-index: 1000;
        transition: bottom 0.3s ease;
    }

        .sticky-bottom-bar.visible {
            bottom: 0;
        }

    /* Floating call button */
    .floating-call-btn {
        display: block !important;
        position: fixed;
        bottom: 100px;
        right: 20px;
        z-index: 999;
    }
}

@media (min-width: 769px) {
    .mobile-popup-overlay,
    .mobile-top-bar,
    .sticky-bottom-bar,
    .floating-call-btn {
        display: none !important;
    }

    .main-header {
        display: flex !important;
    }

    .top-contact-bar {
        display: block !important;
    }
    body {
        padding-top: 0 !important;
    }
}

.mobile-popup-overlay.active {
    display: flex !important; 
    opacity: 1;
}




/* ==================== MOBILE HERO LAYOUT ==================== */

/* Mobile के लिए नया layout */
.mobile-hero-layout {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.mobile-hero-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

    .mobile-hero-image img {
        width: 100%;
        height: auto;
        max-height: 280px;
        object-fit: contain;

    }

.mobile-hero-text {
    width: 100%;
    text-align: center;
}

/* Desktop के लिए original structure */
.desktop-support-box {
    display: flex;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Mobile layout show करें */
    .mobile-hero-layout {
        display: flex;
        order: 1;
    }

    /* Desktop layout hide करें */
    .desktop-support-box {
        display: none;
    }

    /* Hero content को column में arrange करें */
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    /* Flight search box को mobile layout के नीचे रखें */
    .flight-search-box {
        order: 2;
        margin-top: 20px;
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
    }


    .mobile-hero-text .support-header {
        text-align: center;
        margin-bottom: 20px;
    }

    .mobile-hero-text .support-phone {
        display: inline-flex;
        margin: 0 auto 20px auto;
        justify-content: center;
    }

    .mobile-hero-text .support-features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }

    .mobile-hero-text .no-queue-tag {
        font-size: 14px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .mobile-hero-image {
        max-width: 280px;
    }

        .mobile-hero-image img {
            max-height: 240px;
        }

    .mobile-hero-text .support-header h1 {
        font-size: 24px;
    }

    .mobile-hero-text .support-phone {
        font-size: 18px;
        padding: 10px 16px;
    }
}

@media (min-width: 769px) {

    .mobile-hero-layout {
        display: none;
    }
    .desktop-support-box {
        display: flex;
    }
}