/* ============================================================
   Liberty Reservation – CSS
   ============================================================ */

:root {
    --lt-orange:#F15A24;
    --lt-orange-dark:#cc4a1c;
    --lt-gray-bg:#f7f7f7;
    --lt-dark:#222;
}

/* ----------------------
   Ana sayfa arama formu
------------------------- */
.liberty-res-form {
    max-width:1100px;
    margin:0 auto 20px;
}
.liberty-res-row {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}
.liberty-res-field {
    flex:1 1 25%;
    min-width:200px;
    display:flex;
    flex-direction:column;
    gap:4px;
}
.liberty-res-field label {
    font-size:14px;
    font-weight:600;
    color:var(--lt-dark);
}
.liberty-res-field input {
    padding:9px 10px;
    border-radius:4px;
    border:1px solid #ddd;
    font-size:14px;
    width:100%;
    box-sizing:border-box;
}
.liberty-res-submit { justify-content:flex-end; }
.liberty-res-submit button {
    margin-top:18px;
    padding:11px 22px;
    border:none;
    border-radius:4px;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    background:var(--lt-orange);
    color:#fff;
}
.liberty-res-submit button:hover {
    background:var(--lt-orange-dark);
}
@media(max-width:768px){
    .liberty-res-field { flex:1 1 100%; }
    .liberty-res-submit button { width:100%; }
}

/* ----------------------
   Sayfa yapısı + adımlar
------------------------- */
.lt-wrapper {
    max-width:900px;
    margin:20px auto;
    font-family:inherit;
}

.lt-steps-header {
    display:flex;
    justify-content:space-between;
    border-bottom:1px solid #eee;
    margin-bottom:20px;
}
.lt-step-box {
    flex:1;
    text-align:center;
    padding:10px 5px;
    font-weight:600;
    color:#999;
    font-size:14px;
}
.lt-step-box .lt-step-number {
    display:inline-block;
    width:26px;
    height:26px;
    line-height:26px;
    border-radius:50%;
    background:#bbb;
    color:#fff;
    margin-right:6px;
    font-weight:700;
}
.lt-step-box.active { color:var(--lt-orange-dark); }
.lt-step-box.active .lt-step-number {
    background:var(--lt-orange);
}
.lt-step-box.current {
    background:#ffe8de;
    border-bottom:2px solid var(--lt-orange);
}

/* ----------------------
   Kutulu bölümler
------------------------- */
.lt-section {
    background:#fff;
    border-radius:6px;
    border:1px solid #eee;
    padding:20px;
    margin-bottom:20px;
}
.lt-section-title {
    display:flex;
    align-items:center;
    margin-bottom:15px;
    font-weight:700;
    font-size:16px;
    color:var(--lt-dark);
}
.lt-section-title .lt-section-number {
    display:inline-block;
    width:24px;
    height:24px;
    line-height:24px;
    border-radius:4px;
    background:var(--lt-orange);
    color:#fff;
    text-align:center;
    margin-right:8px;
    font-weight:700;
}

/* ----------------------
   Grid alanları
------------------------- */
.lt-grid-3 {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}
.lt-grid-2 {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}
.lt-field label {
    font-size:13px;
    font-weight:600;
    margin-bottom:5px;
}
.lt-field input,
.lt-field select,
.lt-field textarea {
    width:100%;
    padding:8px 10px;
    border-radius:4px;
    border:1px solid #ddd;
    font-size:14px;
    box-sizing:border-box;
}
.lt-field textarea {
    min-height:80px;
    resize:vertical;
}

/* ----------------------
   Araç kartları
------------------------- */
.lt-vehicle-card {
    display:flex;
    gap:20px;
    border:1px solid #e5e5e5;
    padding:15px;
    border-radius:8px;
    margin-bottom:20px;
    background:#fff;
    box-shadow:0 2px 4px rgba(0,0,0,.03);
}
.lt-vehicle-card img {
    width:200px;
    height:120px;
    object-fit:cover;
    border-radius:6px;
}
.lt-vehicle-meta {
    display:flex;
    gap:12px;
    font-size:13px;
    margin:6px 0;
    color:#555;
}
.lt-meta-item span.icon { margin-right:4px; }

/* ----------------------
   PDF voucher görüntüsü
------------------------- */
#lt-voucher {
    background:#fff;
    border:1px solid #ddd;
    border-radius:8px;
    padding:0;
    overflow:hidden;
}
#lt-voucher-inner {
    padding:18px 20px 20px 20px;
}
.lt-voucher-topbar {
    background:var(--lt-orange);
    color:#fff;
    padding:8px 16px;
    font-size:14px;
    font-weight:600;
    display:flex;
    justify-content:space-between;
}

/* PDF Dialog */
#lt-pdf-lang-dialog {
    display:none;
    position:fixed;
    left:50%; top:50%;
    transform:translate(-50%,-50%);
    background:#fff;
    border-radius:8px;
    border:1px solid #ddd;
    padding:16px 18px;
    box-shadow:0 8px 25px rgba(0,0,0,.2);
    z-index:99999;
    max-width:320px;
    width:90%;
}
.lt-lang-buttons {
    display:flex;
    gap:8px;
    margin-bottom:8px;
}
.lt-lang-btn {
    flex:1;
    border:1px solid #ddd;
    border-radius:4px;
    padding:8px 6px;
    background:#fafafa;
    cursor:pointer;
    font-size:13px;
}
.lt-lang-btn:hover {
    border-color:var(--lt-orange);
    color:var(--lt-orange-dark);
}

#lt-pdf-close {
    border:none;
    background:none;
    font-size:12px;
    color:#777;
    cursor:pointer;
    margin-top:4px;
}

/* PDF Buton satırı */
.lt-pdf-bar {
    margin-top:10px;
    display:flex;
    gap:10px;
}
#lt-open-pdf-dialog {
    background:var(--lt-orange);
    color:#fff;
    border:none;
    padding:8px 18px;
    border-radius:4px;
    cursor:pointer;
    font-size:13px;
}
