.reservation-section { padding: 60px 0 100px; background: var(--bg-main); }
.res-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; align-items: start; }
.res-form-panel { background: transparent; }
.transfer-type-tabs { display: flex; background: var(--card-bg); border-radius: 12px; padding: 8px; margin-bottom: 30px; border: 1px solid var(--card-border); }
.type-tab { flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 15px; background: transparent; color: var(--text-muted); border: none; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; }
.type-tab .material-icons-outlined { font-size: 22px; }
.type-tab:hover { color: var(--text-main); }
.type-tab.active { background: var(--yellow); color: var(--pure-black); box-shadow: 0 5px 15px rgba(252, 209, 22, 0.2); }
.res-form { display: flex; flex-direction: column; gap: 30px; }
.form-block { background: var(--card-bg); border: 1px solid var(--card-border); padding: 30px; border-radius: 16px; box-shadow: var(--shadow); }
.block-title { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; border-bottom: 1px solid var(--card-border); padding-bottom: 15px; }
.step-num { background: var(--red); color: #FFF; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: 800; font-size: 14px; }
.block-title h4 { color: var(--header-color); font-size: 18px; margin: 0; }
.res-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.res-input-group { position: relative; margin-bottom: 20px; }
.res-input-group:last-child { margin-bottom: 0; }
/* Input icon pointer-events none yapılarak altındaki inputa tıklama engellenmez */
.input-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 20px; transition: color 0.3s ease; pointer-events: none; z-index: 5; }
.res-input-group input, .res-input-group select, .res-input-group textarea { width: 100%; background: var(--input-bg); border: 1px solid var(--card-border); padding: 16px 16px 16px 45px; border-radius: 10px; color: var(--text-main); font-family: inherit; font-size: 15px; outline: none; transition: all 0.3s ease; box-sizing: border-box; }
.res-input-group textarea { resize: vertical; padding-top: 15px; }
.res-input-group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
.res-input-group input:focus, .res-input-group select:focus, .res-input-group textarea:focus { border-color: var(--yellow); }
.res-input-group:focus-within .input-icon { color: var(--yellow); }
.locked { background: var(--card-border) !important; color: var(--text-muted) !important; cursor: not-allowed; font-weight: 700; }

.res-summary-panel { position: sticky; top: 100px; }
.summary-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 30px; box-shadow: var(--shadow); }
.summary-card h3 { color: var(--header-color); font-size: 20px; font-weight: 800; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px dashed var(--card-border); }
.summary-vehicle { display: flex; gap: 15px; margin-bottom: 30px; background: var(--bg-sec); padding: 15px; border-radius: 12px; border: 1px solid var(--card-border); }
.vehicle-img-mini { width: 90px; height: 70px; background-size: cover; background-position: center; border-radius: 8px; flex-shrink: 0; background-image: url('../img/vehicle.webp'); }
.vehicle-info { display: flex; flex-direction: column; justify-content: center; }
.v-type { font-size: 11px; color: var(--red); font-weight: 800; text-transform: uppercase; margin-bottom: 3px; }
.vehicle-info h4 { color: var(--header-color); font-size: 16px; margin: 0 0 5px 0; }
.v-icons { display: flex; gap: 10px; color: var(--yellow); }
.v-icons .material-icons-outlined { font-size: 16px; }
.summary-details { margin-bottom: 30px; }
.s-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; font-size: 14px; color: var(--text-muted); }
.s-row strong { color: var(--text-main); font-weight: 600; text-align: right; max-width: 60%; }
.text-highlight { color: var(--yellow) !important; }
.summary-price-box { background: var(--bg-sec); border: 1px solid var(--card-border); padding: 20px; border-radius: 12px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.summary-price-box span { color: var(--text-muted); font-size: 15px; }
.price-value { color: var(--yellow); font-size: 36px; font-weight: 800; line-height: 1; }
.price-value small { font-size: 20px; margin-left: 5px; }
.btn-confirm-res { width: 100%; background: var(--yellow); color: var(--pure-black); padding: 18px; border: none; border-radius: 10px; font-size: 16px; font-weight: 800; display: flex; justify-content: center; align-items: center; gap: 10px; cursor: pointer; transition: all 0.3s ease; }
.btn-confirm-res:disabled { background: var(--card-border); color: var(--text-muted); cursor: not-allowed; }
.btn-confirm-res:not(:disabled):hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.safe-checkout { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 15px; color: var(--text-muted); font-size: 12px; font-weight: 600; }
.safe-checkout .material-icons-outlined { font-size: 14px; color: #4CAF50; }

/* --- TARIH/SAAT VE DROPDOWN EKLENTILERI --- */
.hidden { display: none !important; }
.no-margin { margin: 0 !important; }

/* Custom Time Dropdown */
.time-wrapper { position: relative; }
.custom-time-dropdown {
    display: none; position: absolute; top: 100%; left: 0; width: 100%; max-height: 250px; 
    overflow-y: auto; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 8px; 
    box-shadow: var(--shadow); z-index: 100; margin-top: 5px;
}
.custom-time-dropdown.show { display: block; }
.time-opt {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
    border-bottom: 1px solid var(--card-border);
    color: #000000;
}
.time-opt:hover { background: var(--bg-sec); color: var(--yellow); }
.no-times { padding: 15px; text-align: center; color: var(--red); font-size: 13px; }

/* Return Trip Options */
.return-trip-container { display: flex; align-items: center; gap: 10px; padding-left: 10px; }
.return-checkbox { width: 18px !important; height: 18px !important; cursor: pointer; accent-color: var(--yellow); padding: 0 !important; }
.return-label { cursor: pointer; font-size: 14px; font-weight: 500; color: var(--text-muted); }
.return-accent-border { border-color: var(--yellow) !important; }
.return-accent-color { color: var(--yellow) !important; }

/* Date Picker Fixes */
.res-date-input, .res-time-input { position: relative; z-index: 10; cursor: pointer; color-scheme: light; }

/* Kapalı Durum */
.res-closed-container { background: rgba(245, 101, 101, 0.1); border: 2px dashed var(--red); padding: 40px; border-radius: 16px; text-align: center; margin: 40px 0; }
.res-closed-container span { font-size: 48px; color: var(--red); margin-bottom: 15px; }
.res-closed-container p { font-size: 18px; font-weight: 600; color: var(--red); margin: 0; }

/* Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; z-index: 1000; backdrop-filter: blur(4px); }
.modal-content { background: var(--card-bg); padding: 40px; border-radius: 20px; max-width: 400px; width: 90%; text-align: center; border: 1px solid var(--card-border); }
.modal-main-icon { font-size: 60px; margin-bottom: 20px; display: block; }
#resModalTitle { color: var(--header-color); margin: 0 0 15px 0; font-size: 24px; font-weight: 700; }
#resModalText { color: var(--text-muted); margin: 0 0 25px 0; line-height: 1.6; font-size: 16px; }
#resModalClose { background: var(--pure-black); color: #fff; border: none; padding: 12px 30px; border-radius: 8px; cursor: pointer; width: 100%; margin-top: 20px; font-weight: 600; }
[data-theme="dark"] #resModalClose { background: var(--yellow); color: var(--pure-black); }

@media (max-width: 992px) { .res-grid { grid-template-columns: 1fr; } .res-summary-panel { position: static; } }
@media (max-width: 768px) { .res-row { grid-template-columns: 1fr; } .transfer-type-tabs { flex-direction: column; } }