:root {
    --hoppa-green: #c8102e;
    --hoppa-dark: #1a1a1a;
}

.reservation-section{
    padding: 60px 0;
    background-color: white;
}

.reservation-form {
    background: #fff !important;
    padding: 32px;
    border: 1px solid #dedede;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.09);
}

.airport-tabs-wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.airport-tab {
    min-width: 0;
    min-height: 82px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-areas:
        "icon title"
        "icon code";
    align-items: center;
    column-gap: 10px;
    padding: 13px 14px;
    border: 1px solid #d6d6d6;
    border-radius: 12px;
    background: #fff;
    color: #171717;
    text-align: left;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.airport-tab:hover {
    border-color: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.airport-tab.active {
    border-color: #111;
    background: #111;
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.airport-tab-icon {
    grid-area: icon;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f2f2f2;
}

.airport-tab.active .airport-tab-icon {
    background: #fff;
}

.airport-tab-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: grayscale(1);
}

.airport-tab-title {
    grid-area: title;
    overflow: hidden;
    font-size: .92rem;
    font-weight: 700;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.airport-tab-code {
    grid-area: code;
    color: #777;
    font-size: .78rem;
    font-weight: 700;
}

.airport-tab.active .airport-tab-code {
    color: #d8d8d8;
}

.reservation-form .form-label {
    color: #222 !important;
    font-weight: 700;
    margin-bottom: 7px;
}

.reservation-form .form-control,
.reservation-form .form-select {
    min-height: 50px;
    border: 1px solid #d4d4d4 !important;
    border-radius: 10px;
    background-color: #fff !important;
    color: #171717;
}

.reservation-form .form-control:focus,
.reservation-form .form-select:focus {
    border-color: #111 !important;
    box-shadow: 0 0 0 .2rem rgba(0, 0, 0, .1) !important;
}

.btn-hoppa {
    min-height: 52px;
    background: #111 !important;
    color: white;
    padding: 13px 24px;
    border: 1px solid #111 !important;
    border-radius: 10px;
    font-weight: 700;
    width: 100%;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.btn-hoppa:hover {
    background: #333 !important;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
}

.form-label {
    font-weight: 500;
    color: var(--hoppa-dark);
}

.form-control:focus {
    border-color: var(--hoppa-green);
    box-shadow: 0 0 0 0.2rem rgba(0, 161, 156, 0.25);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #111 !important;
}

.section-title p {
    color: #5d5d5d;
    font-size: 18px;
}



.return-date-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--hoppa-dark);
}

.return-date-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

@media (max-width: 767.98px) {
    .reservation-section {
        padding: 36px 0;
    }

    .reservation-form {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .airport-tabs-wrap {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .airport-tab {
        min-height: 64px;
        grid-template-columns: 36px minmax(0, 1fr) auto;
        grid-template-areas: "icon title code";
    }
}
