* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter,Helvetica,"sans-serif";
}

body {
    font-family: Inter,Helvetica,"sans-serif";
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1430px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(to bottom,#009fe3,#00a8cc);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e3a8a;
}

.nav {
    display: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #0ea5e9;
}

.login-btn {
    background: white;
    border: 2px solid #0ea5e9;
    color: #0ea5e9;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.login-btn:hover {
    background: #0ea5e9;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23001122" width="1200" height="600"/><rect fill="%23002244" y="400" width="1200" height="200"/><circle fill="%23ffd700" cx="200" cy="100" r="3"/><circle fill="%23ffd700" cx="400" cy="80" r="2"/><circle fill="%23ffd700" cx="600" cy="120" r="2"/><circle fill="%23ffd700" cx="800" cy="90" r="3"/><circle fill="%23ffd700" cx="1000" cy="110" r="2"/></svg>');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-highlight {
    color: #002861;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Search Form */
.search-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    color: #333;
}

.trip-type {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trip-type label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
}

.search-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-group label {
    font-weight: 500;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
}

.field-group input,
.field-group select {
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.field-group input:focus,
.field-group select:focus {
    outline: none;
    border-color: #0ea5e9;
}

.search-btn {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}

/* Flight Offers */
.offers {
    padding: 4rem 0;
    /*background: linear-gradient(to bottom, #f0f9ff, white);*/
}

.offers h2 {
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 3rem;
    font-size: calc(26px + .015 * (100vw - 320px));
    font-weight: 700;
    letter-spacing: .03em;
    line-height: 1.1;
    text-transform: uppercase;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 1.5rem;
}

.flight-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgb(226, 232, 240);
    box-shadow: 0 4px 12px #0000001a;
    transition: transform 0.3s, box-shadow 0.3s;
}

.flight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.flight-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.airline-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.airline-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.airline-details h3 {
    font-weight: 600;
    color: #1e3a8a;
}

.airline-details p {
    color: #6b7280;
    font-size: 0.9rem;
}

.price-info {
    text-align: right;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0ea5e9;
}

.original-price {
    color: #6b7280;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.airport {
    text-align: center;
}

.airport-code {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e3a8a;
}

.airport-city {
    color: #6b7280;
    font-size: 0.9rem;
}

.route-line {
    flex: 1;
    margin: 0 1rem;
    position: relative;
}

.route-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #0ea5e9, #06b6d4);
    border-radius: 1px;
}

.route-line::after {
    content: '✈';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 0 8px;
    color: #0ea5e9;
}

.flight-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.select-btn {
    display: block;
    width: 100%;
    background: white;
    border: 2px solid #0ea5e9;
    color: #0ea5e9;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
}

.select-btn:hover {
    background: #0ea5e9;
    color: white;
}

/* Airline Info */
.airline-info-section {
    padding: 4rem 0;
    background: white;
}

.airline-info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.airline-info-section .subtitle {
    text-align: center;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    background: linear-gradient(135deg, #f0f9ff, white);
    padding: 3rem;
    border-radius: 12px;
}

.info-section h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-item h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #1b1b1b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.6;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav {
        display: flex;
    }

    .search-fields {
        grid-template-columns: repeat(4, 1fr);
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    /* Global scale down */
    html { font-size: 14px; }
    body { line-height: 1.5; }

    /* Header */
    .header-content { padding: .6rem 0; }
    .logo { gap: 8px; }
    .logo-icon img { width: 36px; height: 36px; }
    .logo-text { font-size: 1.1rem; }
    .login-btn { padding: 6px 10px; font-size: .9rem; border-width: 1.5px; }

    /* Hero */
    .hero { min-height: 380px; background-color: #fff; }
    .hero-container { background:linear-gradient(to bottom,#009fe3,#00a8cc); }
    .hero-content h1 {
        font-size: 1.35rem;
        color: #000;
        margin: 30px 0 8px;
    }
    .hero-highlight { color: #000; }
    .hero-content p {
        font-size: .98rem;
        margin-bottom: 1.2rem;
        color: #000;
        opacity: .9;
    }

    /* Search form */
    .search-form {
        padding: 0rem;
        border-radius: 10px;
        /* background-color: rgba(246,247,248,.95); */
        margin-top: 1rem;
    }
    .trip-type { gap: .75rem; }
    .trip-type label { font-size: .95rem; gap: 6px; }
    .search-fields {
        gap: .75rem;
        margin-bottom: 1rem;
        grid-template-columns: 1fr; /* single column stack */
    }
    .field-group { gap: 6px; }
    .field-group label { font-size: .95rem; gap: 6px; }
    .field-group input,
    .field-group select {
        padding: 10px;
        font-size: .95rem;
        border-width: 1.5px;
    }
    .search-btn {
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(14,165,233,.25);
    }

    /* Offers section */
    .offers { padding: 2rem 0; }
    .offers h2 {
        font-size: calc(26px + .015 * (100vw - 320px));
        font-weight: 700;
        letter-spacing: .03em;
        line-height: 1.1;
        text-transform: uppercase;
        margin-bottom: 1.25rem;
    }
    .offers-grid {
        grid-template-columns: 1fr; /* single card per row */
        gap: 1rem;
    }
    .flight-card { padding: 1rem; }
    .airline-logo { width: 32px; height: 32px; font-size: .95rem; }
    .airline-details h3 { font-size: 1rem; }
    .airline-details p { font-size: .85rem; }
    .price { font-size: 1.1rem; }
    .original-price { font-size: .8rem; }

    .route { margin: .5rem 0 1rem; }
    .airport-code { font-size: 1.1rem; }
    .airport-city { font-size: .8rem; }
    .flight-details { font-size: .85rem; margin-bottom: .75rem; }
    .select-btn { padding: 10px; font-size: .95rem; }

    /* Airline info section */
    .airline-info-section { padding: 2rem 0; }
    .airline-info-section h2 { font-size: 1.35rem; margin-bottom: .75rem; }
    .airline-info-section .subtitle { font-size: .95rem; margin-bottom: 1.5rem; }

    .features-grid { gap: 1rem; }
    .feature-card { padding: 1.25rem; }
    .feature-icon { width: 44px; height: 44px; font-size: 1.2rem; }
    .feature-card h3 { font-size: 1rem; }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.5rem;
        border-radius: 10px;
    }
    .info-section h3 { font-size: 1.1rem; margin-bottom: .6rem; }
    .info-table { gap: 8px; }
    .info-row { padding: 6px 0; }
    .faq-item { margin-bottom: .75rem; }
    .faq-item h4 { font-size: 1rem; margin-bottom: .35rem; }
    .faq-item p { font-size: .9rem; }

    /* Footer */
    .footer { padding: 2rem 0 1rem; }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }
    .footer-section h3 { font-size: 1rem; }
    .footer-section p,
    .footer-section ul li,
    .footer-bottom p { font-size: calc(14px + .00125*(100vw - 320px)); }
    .footer-bottom { padding-top: 1.25rem; }

    /* Utilities */
    .container { padding: 0 16px; }
}

.d-none
{
    display: none;
}

.autocomplete-list
{
    list-style: none;
    position: absolute;
    top: 11rem;
    background-color: white;
    width: 14rem;
    border-radius: 5px;
    z-index: 10;
}

