.search-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.search-grid {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 30px;
    width: 90%;
    max-width: 1000px;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.search-container {
    position: relative;
    flex: 1;
}

.search-input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    color: #fff;
    background: transparent;
    padding: 10px;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-btn {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 16px;
    padding: 10px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

#airport-results-hero {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-top: 8px;
    overflow: hidden;
}

.category-buttons {
    justify-content: flex-start;
}

.inline-form-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.inline-form-logo i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #EA580C, #F97316);
    box-shadow: 0 6px 18px rgba(234, 88, 12, 0.35);
}

.booking-form-container {
    max-width: 420px;
}

.booking-form {
    padding: 1.5rem;
}

/* Trip Type Selector - Uniform with other inputs */
.trip-type-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 0.5rem;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 42px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
}

.trip-type-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 12px;
    flex: 1;
    height: 100%;
    border-radius: 0.35rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    white-space: nowrap;
}

.trip-type-label i {
    font-size: 0.8rem;
    opacity: 0.8;
}

.trip-type-label:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.trip-type-radio {
    display: none;
}

.trip-type-radio:checked+.trip-type-label {
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: #fff;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3);
}

.trip-type-radio:checked+.trip-type-label i {
    opacity: 1;
}

@media (max-width: 768px) {
    .trip-type-label {
        padding: 0 5px;
        font-size: 0.7rem;
    }

    .trip-type-label i {
        display: none;
    }
}