/* ── BOOKING PAGES COMMON STYLES ── */
.booking-section {
    padding: 0 20px 80px;
    max-width: 860px;
    margin: 0 auto;
}

.alert {
    border-radius: 10px;
    padding: 16px 20px;
    font-size: .9rem;
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}
.alert i { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.alert.success { background: #e6faf4; color: #00673e; border: 1px solid #9fe8d0; }
.alert.error   { background: #fff0f0; color: #c0142a; border: 1px solid #f5b8bf; }

.booking-card {
    background: #fff;
    border: 1px solid #e2e5ef;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.form-body { padding: 32px; }

.form-section-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #9099ac;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f1f5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-row {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
.form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-row.cols-1 { grid-template-columns: 1fr; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
    font-size: .78rem;
    font-weight: 600;
    color: #3a404f;
}
.field label .req { color: #e53e3e; margin-left: 2px; }

.field input, .field select, .field textarea {
    padding: 11px 14px;
    border: 1px solid #d8dbe8;
    border-radius: 8px;
    font-size: .9rem;
    color: #0f1117;
    background: #fff;
    transition: border-color .18s, box-shadow .18s;
    width: 100%;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
}
.field textarea { resize: vertical; min-height: 90px; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: #1a56ff;
    box-shadow: 0 0 0 3px rgba(26,86,255,.12);
}
.field input::placeholder, .field textarea::placeholder { color: #b0b8cc; }

.form-divider { border: none; border-top: 1px solid #f0f1f5; margin: 28px 0; }

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 24px;
    background: #1a56ff;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 28px;
    font-family: inherit;
    transition: background .18s, transform .15s;
    letter-spacing: .01em;
}
.submit-btn:hover { background: #0f3fd6; transform: translateY(-1px); }

.trust-strip {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: #8890a0;
}
.trust-item i { color: #1a56ff; font-size: .85rem; }

/* ── FLIGHT SPECIFIC ── */
.page-banner.flight-banner {
    background: linear-gradient(160deg, #05102b 0%, #0a2563 55%, #1565c0 100%);
    position: relative; overflow: hidden; padding: 120px 20px 80px;
}
.plane-trail {
    position: absolute; top: 38px; left: -80px; font-size: 2rem; opacity: .18;
    animation: flyAcross 14s linear infinite; pointer-events: none;
}
@keyframes flyAcross {
    0%   { left: -80px; opacity: 0; }
    8%   { opacity: .18; }
    92%  { opacity: .18; }
    100% { left: calc(100% + 80px); opacity: 0; }
}
.trip-tabs { display: flex; border-bottom: 1px solid #e2e5ef; }
.trip-tab {
    flex: 1; padding: 16px; font-size: .875rem; font-weight: 600; text-align: center;
    cursor: pointer; background: #f7f8fc; color: #7a8090; border: none;
    transition: background .18s, color .18s; display: flex; align-items: center; justify-content: center; gap: 7px;
}
.trip-tab.active { background: #fff; color: #1a56ff; border-bottom: 2px solid #1a56ff; margin-bottom: -1px; }
.trip-tab:first-child { border-radius: 16px 0 0 0; }
.trip-tab:last-child  { border-radius: 0 16px 0 0; }

.route-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: end; margin-bottom: 16px; }
.swap-btn {
    width: 38px; height: 38px; border-radius: 50%; border: 1px solid #d8dbe8;
    background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: #1a56ff; font-size: .9rem; transition: background .18s, transform .22s; flex-shrink: 0; margin-bottom: 2px;
}
.swap-btn:hover { background: #eef2ff; transform: rotate(180deg); }
.return-row { display: none; }
.return-row.visible { display: grid; }

.file-upload-label {
    display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1px dashed #a0a8c0;
    border-radius: 8px; background: #f7f8fc; cursor: pointer; font-size: .88rem; color: #5a6070;
    transition: border-color .18s, background .18s;
}
.file-upload-label:hover { border-color: #1a56ff; background: #eef2ff; color: #1a56ff; }
.file-upload-label input[type="file"] { display: none; }
.file-upload-label.has-file { border-color: #00a86b; background: #e6faf4; color: #00673e; }

/* ── HOTEL SPECIFIC ── */
.page-banner.hotel-banner {
    background: linear-gradient(160deg, #0a1628 0%, #1a3a2a 55%, #1e5c3a 100%);
    position: relative; overflow: hidden; padding: 120px 20px 80px;
}
.banner-deco { position: absolute; font-size: 5rem; opacity: .04; pointer-events: none; }
.banner-deco.d1 { top: 10px;  left: 5%;  font-size: 6rem; }
.banner-deco.d2 { top: 20px;  right: 8%; font-size: 4rem; }
.banner-deco.d3 { bottom: 30px; left: 20%; font-size: 3rem; }

.date-range-wrap { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: end; margin-bottom: 16px; }
.date-range-arrow { display: flex; align-items: center; justify-content: center; padding-bottom: 11px; color: #9099ac; font-size: .85rem; }
.nights-badge {
    display: none; align-items: center; gap: 6px; background: #e8f5ee; color: #1e7c4a;
    border-radius: 99px; padding: 6px 14px; font-size: .8rem; font-weight: 600; width: fit-content; margin-bottom: 16px;
}
.nights-badge.visible { display: flex; }

/* ── CART & CHECKOUT ── */
.cart-page, .checkout-page {
    padding: 120px 24px 100px;
    background: var(--bg);
    min-height: 90vh;
}

.cart-container, .checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.checkout-container { max-width: 1000px; }

.cart-item {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    border: 1px solid var(--line);
    transition: 0.3s;
    margin-bottom: 20px;
}
.cart-item:hover { border-color: var(--brand); transform: translateY(-2px); }

.item-icon {
    width: 64px; height: 64px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.summary-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--line);
    position: sticky;
    top: 110px;
    box-shadow: var(--shadow-lg);
}

.summary-total {
    border-top: 1px solid var(--line);
    padding-top: 25px;
    margin-top: 25px;
    font-size: 1.6rem;
    font-weight: 800;
}

@media (max-width: 950px) {
    .cart-container, .checkout-container { grid-template-columns: 1fr; }
    .summary-card { position: static; }
}
