/* Booking Form Styles */
@media (min-width: 769px) {
    .input-wrapper-row .passenger-group {
        flex: 0 0 110px;
        min-width: 120px;
        max-width: 120px;
        padding: 0 8px;
    }
    
    .input-wrapper-row {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .input-wrapper-row .box.nereden,
    .input-wrapper-row .box.nereye {
        flex: 2 1 0%;
        min-width: 220px;
    }

    .input-wrapper-row .box.date-box {
        flex: 1 1 0%;
        min-width: 120px;
        max-width: 180px;
    }
}

/* Google Autocomplete Hide */
.pac-container,
.pac-logo,
.gm-svpc,
.gm-style-cc {
    display: none !important;
}

/* Input Styles */
.input-container {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.input-container input {
    border: 2px solid #ECEFF1;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 20px !important;
    padding-left: 50px !important;
    min-height: 48px !important;
    display: block !important;
}

/* Ara Butonu */
.search-button {
    flex: 0 0 140px;
    background: #6c54a4;
    color: #fff;
    border: none;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    gap: 10px;
}

/* Swap Butonu */
.swap-button {
    background: #fff;
    border: 2px solid #ECEFF1;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    margin: 0 -28px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    margin-top: -50px !important;
}

.icon2 {
    font-size: 30px;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
}

/* MOBİL DÜZENLEME */
@media (max-width: 768px) {
    .icon2 {
        font-size: 30px;
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Modal Inputs */
#transfer_datetime,
#return_datetime {
    height: 100% !important;
    min-height: 100% !important;
    font-size: 18px;
    border-radius: 10px;
    border: 2px solid #ECEFF1;
    background: #fff;
    box-sizing: border-box;
    padding: 0 20px;
    width: 100%;
    margin-bottom: 0;
}

.time-slot {
    height: 48px;
    font-weight: bold !important;
}

/* Calendar Days */
.calendar-day {
    width: 46px;
    height: 46px;
    border: 1px solid #E2E8F0;
    border-radius: 30%;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    outline: none;
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, box-shadow 0.2s;
}

.calendar-day:hover:not(.disabled) {
    background: rgba(108, 84, 164, 0.12);
}

.calendar-day.disabled {
    opacity: 0.25;
    cursor: not-allowed;
    border-color: rgba(0, 0, 0, 0.2);
    background: transparent;
}

.calendar-day.selected {
    background: #6c54a4;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(108, 84, 164, 0.25);
}

.modal-content button {
    height: 44px;
    font-size: 17px;
}

@media screen and (max-width: 480px) {
    .calendar-day {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }

    .calendar-grid {
        gap: 2px !important;
    }

    .modal-content {
        width: 93% !important;
    }
}

#timeModal .modal-content {
    height: 80vh !important;
    max-height: 90vh !important;
    width: 95% !important;
    display: flex;
    flex-direction: column;
}

#timeGrid {
    flex: 1;
    max-height: none !important;
    overflow-y: auto;
    padding-bottom: 20px;
}

/* Radio Buttons */
.custom-radio {
    position: relative;
    padding-left: 38px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.custom-radio input[type="radio"] {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    margin: 0;
    z-index: 2;
    cursor: pointer;
}

.custom-radio .radio-check {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #6c54a4;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(108, 84, 164, 0.08);
    transition: border-color 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-radio input[type="radio"]:checked + .radio-check {
    border-color: #6c54a4;
    box-shadow: 0 0 0 4px rgba(108, 84, 164, 0.15);
}

.custom-radio .radio-check::after {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #6c54a4;
    opacity: 0;
    transition: opacity 0.2s;
}

.custom-radio input[type="radio"]:checked + .radio-check::after {
    opacity: 1;
}

.custom-radio .radio-label {
    margin-left: -12px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.responsive-label .desktop-label {
    display: inline;
}

.responsive-label .mobile-label {
    display: none;
}

@media (max-width: 768px) {
    .responsive-label .desktop-label {
        display: none;
    }

    .responsive-label .mobile-label {
        display: inline;
    }
}

.modal-close-btn {
    position: absolute;
    top: -5px;
    right: 15px;
    background: none;
    border: none;
    font-size: 40px !important;
    color: #c0392b;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s, transform 0.2s;
}

.modal-close-btn:hover {
    color: #a93226;
    transform: scale(1.1);
}
