.hidden {
    display: none !important;
}
*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}

h2.transfer-booking {
	color: #405463;
}
.intro-image {
    background: linear-gradient(rgba(78, 125, 190, 0.8), rgba(78, 125, 190, 0.9)), 
                url('pickup.jpg') center/cover;
	padding: 30px;
	margin: 0 0 130px 0;

}
/* Исправление отображения библиотеки флагов */
.iti { 
    width: 100%; 
    display: block;
}

.required-star {
    color: #d9534f;
    margin-left: 2px;
    font-weight: bold;
}

.booking-container {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.transfer-booking { color: #333; text-align: center; margin-bottom: 25px; }

.form-group { margin-bottom: 15px; }

.flex-row { display: flex; gap: 15px; margin-bottom: 15px; }
.flex-half { flex: 1; }

.form-control {
    width: 100%;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
	height:45px;
	line-height:1.4;
}

/* Блок описания авто 
#cost {
    margin: 20px 0;
    padding: 0 10px;
    background: #eef9fb;
    border-left: 5px solid #1597ac;
    border-radius: 5px;
    font-size: 14px;
    color: #444;
}
#cost p { margin: 0 0 10px 0; color: #000; }
#cost ul { padding-left: 20px; margin: 0; }*/

.btn-primary {
    width: 100%;
    padding: 15px;
    background: #1597ac;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover { background: #0e6d7c; }

.error-message { color: #d9534f; margin-top: 10px; font-weight: bold; text-align: center; }

.hidden { display: none; }

.success-box {
    text-align: center;
    padding: 20px;
    background: #d4edda;
    border-radius: 10px;
    color: #155724;
}
.checkbox-group {
    background: #f0f4f8;
    padding: 10px;
    border-radius: 6px;
    margin: 15px 0;
    border: 1px dashed #1597ac;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 10px;
}

#returnDetails {
    animation: fadeIn 0.4s;
    background: #f0f4f8;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Принудительно задаем цвет текста для списка и его опций */
#vehicle, #vehicle option {
    color: #333 !important;
    background-color: #fff !important;
}

/* Убираем возможную прозрачность или странную высоту */
.form-control {
    height: auto !important;
    min-height: 38px;
}
/* Скрыть форму по умолчанию */
.hidden {
    display: none !important;
}

/* Стили для баннера-кнопки */
.hero-trigger {
    display: block;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.hero-trigger:hover {
    transform: scale(1.01); /* Легкий эффект при наведении */
}

/* Кнопка закрытия */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    font-size: 40px;
    color: white;
    cursor: pointer;
    line-height: 1;
    padding: 5px 15px;
    border-radius: 50%;
    transition: 0.3s;
    z-index: 100;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    color: #333;
}

/* Позиционирование контейнера для кнопки */
.intro-image {
    position: relative; /* Чтобы кнопка закрытия была привязана к этому блоку */
}
/* Прячем секцию по умолчанию */
.hidden {
    display: none !important;
}

/* Эффект наведения на баннер */
#openBooking {
    transition: transform 0.3s ease;
}

#openBooking:hover {
    transform: scale(1.02);
}

/* Кнопка закрытия */
.intro-image {
    position: relative; /* Чтобы кнопка позиционировалась внутри */
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    font-size: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.close-btn:hover {
    background: white;
    color: #000;
}