/* =====================================================================
 * Visa on Arrival — public flow styles
 * Uses the existing design tokens (--blue, --orange, Inter, 25-30px radii,
 * 45-50px control heights). All VOA pages share this single sheet so the
 * stepper, cards, summaries, and buttons stay visually consistent.
 * ===================================================================== */

.voa-hero {
    width: 100%;
    float: left;
    padding: 60px 0 100px;
    background-image: url(../images/top-search-bg.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    color: #fff;
}
.voa-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(43, 57, 145, 0.78);
    z-index: 0;
}
.voa-hero > .container { position: relative; z-index: 1; }
.voa-hero h1 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
    margin: 0 0 10px;
}
.voa-hero p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.55;
}
/* Sağa-yaslama YALNIZ landing'in 2-kolon hero'sunda (.voa-hero-copy);
   diğer VOA sayfalarındaki tek-kolon hero ortalı kalır. */
.voa-hero-copy p { max-width: none; margin: 0; }

.voa-shell {
    width: 100%;
    float: left;
    margin-top: -60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}
.voa-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 60px -28px rgba(43, 57, 145, 0.35);
    padding: 28px 32px;
    /* Prevent any descendant (long voucher, hash, etc.) from blowing past
       the card width and pushing the right edge out of the container. */
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}
@media (max-width: 768px) {
    .voa-hero { padding: 40px 0 80px; }
    .voa-hero h1 { font-size: 26px; }
    .voa-hero p  { font-size: 14px; padding: 0 8px; text-align: center; margin: 0 auto; }
    .voa-shell   { margin-top: -50px; margin-bottom: 60px; }
    .voa-card    { padding: 22px 18px; border-radius: 14px; }
    .voa-step h2 { font-size: 18px; }
    .voa-step .voa-lede { font-size: 13.5px; margin-bottom: 16px; }
    .voa-option  { padding: 14px 14px; }
    .voa-option strong { font-size: 13.5px; }
    .voa-variant-panel { padding: 14px 16px; }
    .voa-passenger { padding: 14px 14px; }
}
@media (max-width: 480px) {
    body { -webkit-text-size-adjust: 100%; }
    .voa-hero { padding: 32px 0 70px; }
    .voa-hero h1 { font-size: 22px; }
    .voa-card { padding: 18px 14px; border-radius: 12px; }
    .voa-field-row { gap: 10px; }
    /* Stack action bar with the primary action on top thanks to
       column-reverse — primary CTA stays in thumb reach. */
    .voa-actions {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 10px;
        margin-top: 20px;
    }
    .voa-actions .spacer { display: none; }
    .voa-actions .voa-btn { width: 100%; height: 50px; }
    .voa-options { gap: 10px; }
    .voa-option {
        padding: 14px;
        align-items: center;
    }
    .voa-option .voa-option-icon { width: 36px; height: 36px; }
    .voa-summary { padding: 14px 16px; }
    .voa-passenger-head { gap: 8px; }
    .voa-pax-chip { font-size: 10px; padding: 3px 8px; }
    .voa-warning { font-size: 12.5px; padding: 12px 14px; }
}
/* Safe-area inset for iPhone home indicator */
@supports (padding: max(0px)) {
    .voa-shell { padding-bottom: max(0px, env(safe-area-inset-bottom)); }
}

/* ------------------------- Stepper ------------------------- */
.voa-stepper {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0 0 24px;
    counter-reset: voa-step;
}
.voa-stepper li {
    counter-increment: voa-step;
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--gri-bg);
    border: 1px solid var(--border-color);
    color: var(--p-color);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.voa-stepper li::before {
    content: counter(voa-step);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    color: var(--p-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}
.voa-stepper li.is-done {
    background: #eef2ff;
    border-color: #d6dbf7;
    color: var(--blue);
}
.voa-stepper li.is-done::before {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    content: "✓";
}
.voa-stepper li.is-current {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}
.voa-stepper li.is-current::before {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}
@media (max-width: 640px) {
    /* Compact stepper: each pill is just the number + dot; the *current*
       step keeps its label so the user always knows where they are. */
    .voa-stepper { gap: 6px; }
    .voa-stepper li {
        padding: 10px 8px;
        justify-content: center;
        font-size: 12px;
        flex: 0 0 auto;
        min-width: 40px;
    }
    .voa-stepper li span { display: none; }
    .voa-stepper li.is-current {
        flex: 1 1 auto;
        padding: 10px 14px;
    }
    .voa-stepper li.is-current span { display: inline; }
}

/* ------------------------- Steps ------------------------- */
.voa-step { display: none; }
.voa-step.is-current { display: block; }
.voa-step h2 {
    font-size: 20px;
    color: var(--h-color);
    font-weight: 800;
    margin: 0 0 6px;
}
.voa-step .voa-lede {
    color: var(--p-color);
    font-size: 14px;
    margin: 0 0 20px;
    line-height: 1.55;
}

/* ------------------------- Fields ------------------------- */
.voa-field { display: block; margin-bottom: 16px; }
.voa-field > span {
    display: block;
    font-size: 13px;
    color: var(--paragraf-color);
    font-weight: 600;
    margin-bottom: 6px;
}
.voa-field input[type="text"],
.voa-field input[type="email"],
.voa-field input[type="tel"],
.voa-field input[type="date"],
.voa-field input[type="number"],
.voa-field select,
.voa-field textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #d7dbe3;
    background: #fff;
    border-radius: 14px;
    padding: 0 18px;
    font-family: Inter, sans-serif;
    /* 16px shrinks visually with @media on small screens but keeps iOS Safari
       from zooming on focus (it triggers zoom only on inputs <16px). */
    font-size: 16px;
    line-height: 50px;
    color: var(--paragraf-color);
    box-sizing: border-box;
    transition: border-color .2s ease, box-shadow .2s ease;
    -webkit-appearance: none;
    appearance: none;
}
.voa-field input[type="date"] {
    /* iOS Safari ignores line-height on date inputs and centers the placeholder
       awkwardly otherwise. */
    line-height: normal;
    padding-top: 0;
    padding-bottom: 0;
}
.voa-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239aa1b1' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 40px;
}
.voa-field textarea {
    height: auto;
    min-height: 100px;
    padding: 14px 18px;
    resize: vertical;
}
.voa-field input:focus,
.voa-field select:focus,
.voa-field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(43, 57, 145, 0.08);
    outline: none;
}
/* Gidiş/Dönüş tarih kutuları legacy `.tarih-col.icon-input` içinde sarılı;
   global sayfa stilleri onları küçültüyor. VOA select/input ile aynı boyuta
   zorla (yüksek özgüllük + !important ile legacy'yi ez). */
.voa-field .tarih-col.icon-input {
    display: block;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}
.voa-field .tarih-col.icon-input input {
    width: 100% !important;
    height: 50px !important;
    border: 1px solid #d7dbe3 !important;
    background: #fff !important;
    border-radius: 14px !important;
    padding: 0 18px !important;
    margin: 0 !important;
    font-family: Inter, sans-serif !important;
    font-size: 16px !important;
    line-height: 50px !important;
    color: var(--paragraf-color) !important;
    box-sizing: border-box !important;
}
.voa-field .tarih-col.icon-input input:focus {
    border-color: var(--blue) !important;
    box-shadow: 0 0 0 4px rgba(43, 57, 145, 0.08) !important;
    outline: none;
}
.voa-field-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}
/* Trip row: Ada + Gidiş + Dönüş + Yetişkin + Çocuk tek hizada (5 sütun).
   Tarihler geniş, ada orta, yolcu sayıları kompakt. */
.voa-field-row.is-trip {
    grid-template-columns:
        minmax(150px, 1.3fr)
        minmax(150px, 1.5fr) minmax(150px, 1.5fr)
        minmax(92px, 0.85fr) minmax(92px, 0.85fr);
}
@media (max-width: 768px) {
    .voa-field-row.is-trip { grid-template-columns: 1fr 1fr; }
    .voa-field-row.is-trip .voa-field.is-island { grid-column: span 2; }
    .voa-field-row.is-trip .voa-field.is-pax { grid-column: span 1; }
}
@media (max-width: 480px) {
    .voa-field-row.is-trip { grid-template-columns: 1fr; }
    .voa-field-row.is-trip .voa-field.is-island,
    .voa-field-row.is-trip .voa-field.is-pax { grid-column: span 1; }
}

/* Inline rule note ("Lead-time is 14 days", "Max 7 days stay"). */
.voa-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #eef2ff;
    border: 1px solid #d6dbf7;
    border-radius: 12px;
    padding: 10px 14px;
    margin: 6px 0 16px;
    color: var(--blue);
    font-size: 12.5px;
    line-height: 1.55;
}
.voa-note i { margin-top: 2px; flex-shrink: 0; }
.voa-note strong { color: var(--blue); }

/* Birthday calendar popup (VoaBirthdayCalendar)
   custom-calendar.css mobil aralıkta (≤991px) tüm .fc-popup'ları gizliyor
   çünkü visa-gate calendar mobilde .fc-sheet kullanıyor. VoaBirthdayCalendar
   ayrı bir engine ve tüm breakpoint'lerde popup yapısını koruyor — bu yüzden
   görünürlüğünü !important ile geri açıyoruz. */
.voa-bday-popup {
    width: 320px;
    margin-top: 6px;
}
.voa-bday-popup.open { display: block !important; }
@media (max-width: 480px) {
    .voa-bday-popup.open {
        position: fixed !important;
        left: 12px !important;
        right: 12px !important;
        top: auto !important;
        bottom: 12px;
        width: auto;
        margin: 0;
        max-height: 75vh;
        overflow-y: auto;
    }
}
.voa-bday-popup .fc-day.fc-selected { background: var(--blue); color: #fff; font-weight: 700; }
/* "No slots" — day is inside the [min,max] window but has no operator
   availability. Distinct visual from plain out-of-bounds disable so the
   user can tell "not bookable yet" from "no slots configured". */
.voa-bday-popup .fc-day.fc-no-slots {
    color: #c5c8d1;
    background: repeating-linear-gradient(135deg, transparent 0 4px, rgba(0,0,0,.025) 4px 8px);
}
.voa-bday-popup .fc-no-avail-note {
    text-align: center;
    font-size: 12px;
    color: #a55;
    padding: 10px 8px 4px;
    border-top: 1px dashed #eee;
    margin-top: 6px;
}

/* Year & month pickers (three-step birthday selection) */
.voa-bday-popup .fc-years,
.voa-bday-popup .fc-months {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 10px;
}
.voa-bday-popup .fc-year,
.voa-bday-popup .fc-month {
    text-align: center;
    padding: 18px 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    user-select: none;
    background: #f4f6fb;
    transition: background .12s, color .12s;
}
.voa-bday-popup .fc-year:hover,
.voa-bday-popup .fc-month:hover { background: #dde7f7; }
.voa-bday-popup .fc-year.fc-selected,
.voa-bday-popup .fc-month.fc-selected { background: var(--blue); color: #fff; font-weight: 700; }
/* nav buttons that hit the page boundary */
.voa-bday-popup .fc-nav button[disabled] {
    opacity: 0.35;
    cursor: not-allowed;
}
.voa-bday-popup .fc-month:hover { background: #eef4ff; }
.voa-bday-popup .fc-month.fc-selected { background: var(--blue); color: #fff; font-weight: 700; }
.voa-bday-popup .fc-month.fc-disabled {
    color: #ccc;
    cursor: not-allowed;
    background: #fafafa;
}
.voa-hint {
    color: var(--p-color);
    font-size: 12px;
    display: block;
    margin-top: 6px;
    line-height: 1.5;
}
.voa-field-inline {
    display: flex;
    gap: 8px;
}
.voa-field-inline input { flex: 1; }

/* ------------------------- Selectable cards ------------------------- */
.voa-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}
.voa-option {
    border: 1px solid var(--border-color);
    background: var(--gri-bg);
    border-radius: 14px;
    padding: 16px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    font-family: inherit;
    color: var(--paragraf-color);
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.voa-option:hover { border-color: #c8cef0; background: #f0f3fb; }
.voa-option.is-active {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 12px 30px -18px rgba(43, 57, 145, 0.45);
}
.voa-option .voa-option-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--blue);
    border: 1px solid var(--border-color);
    font-size: 16px;
}
.voa-option.is-active .voa-option-icon {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}
.voa-option strong {
    display: block;
    color: var(--h-color);
    font-size: 14px;
    font-weight: 700;
}
.voa-option small {
    color: var(--p-color);
    font-size: 12px;
    line-height: 1.5;
    display: block;
}

/* ------------------------- Variant panels ------------------------- */
.voa-variant-panel {
    background: var(--gri-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 16px;
}
.voa-warning {
    background: #fff5e6;
    border: 1px solid #ffd591;
    border-radius: 12px;
    padding: 14px 16px;
    color: #6b3a00;
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
}
.voa-warning strong { color: var(--orange); }

/* ------------------------- Callouts ------------------------- *
 * Generic callout component used by:
 *   - .voa-callout.is-warning  : ferry-ticket pax reconciliation notice
 *   - .voa-callout.is-error    : pricing not available + contact CTA
 *   - .voa-callout.is-info     : secondary informational hints
 * Built as a tiny "card" so it doesn't look like a stray inline note. */
.voa-callout {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    margin: 12px 0 4px;
    line-height: 1.55;
    font-size: 13.5px;
}
.voa-callout-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.voa-callout-body { min-width: 0; }
.voa-callout-title {
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 14px;
}
.voa-callout-text { display: block; opacity: 0.95; }
.voa-callout-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 8px;
    font-size: 12.5px;
}
.voa-callout-meta-row {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background: rgba(0, 0, 0, 0.04);
    padding: 4px 10px;
    border-radius: 999px;
    font-variant-numeric: tabular-nums;
}
.voa-callout-meta-row b {
    font-weight: 700;
    color: inherit;
}
.voa-callout-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.voa-callout-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid currentColor;
    color: inherit;
    background: transparent;
    transition: background-color .15s ease, transform .15s ease;
}
.voa-callout-action:hover {
    background: rgba(255, 255, 255, 0.55);
    transform: translateY(-1px);
}
.voa-callout-action i { font-size: 13px; }

.voa-callout.is-warning {
    background: linear-gradient(180deg, #fff8e5 0%, #fff3d0 100%);
    border-color: #f3d27a;
    color: #6b4a00;
}
.voa-callout.is-warning .voa-callout-icon {
    background: #ffe7a8;
    color: #8a5a00;
}

.voa-callout.is-error {
    background: linear-gradient(180deg, #fff1ec 0%, #ffe1d4 100%);
    border-color: #f6b6a0;
    color: #6b1f0a;
}
.voa-callout.is-error .voa-callout-icon {
    background: #ffd0bd;
    color: #8a2b10;
}
.voa-callout.is-error .voa-callout-meta-row { background: rgba(255, 255, 255, 0.6); }

.voa-callout.is-info {
    background: linear-gradient(180deg, #f0f5ff 0%, #e6efff 100%);
    border-color: #c5d3ef;
    color: var(--blue);
}
.voa-callout.is-info .voa-callout-icon {
    background: #d8e3ff;
    color: var(--blue);
}

/* Secondary helper link rendered as a button (e.g. "I have another voucher").
 * Looks like a calm CTA instead of a stray underlined string. */
.voa-helper-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px dashed var(--border-color);
    background: #fff;
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.voa-helper-link:hover {
    border-color: var(--blue);
    background: #f0f5ff;
}
.voa-helper-link i { font-size: 13px; }

@media (max-width: 480px) {
    .voa-callout { grid-template-columns: 1fr; }
    .voa-callout-icon { display: none; }
    .voa-callout-actions { width: 100%; }
    .voa-callout-action { flex: 1 1 auto; justify-content: center; }
}

/* ------------------------- Passenger cards ------------------------- */
.voa-passenger {
    background: var(--gri-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 12px;
}
.voa-passenger-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.voa-passenger-head h3 {
    margin: 0;
    font-size: 14px;
    color: var(--h-color);
    font-weight: 700;
}
.voa-pax-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    background: #eef2ff;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ------------------- Voucher passenger selection (visa picker) ------------- */
.voa-pax-select {
    margin-top: 14px;
    border: 1px solid #e3e8f0;
    border-radius: 14px;
    background: #fbfcfe;
    padding: 14px 16px;
}
.voa-pax-select-head { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.voa-pax-select-title { font-size: 14px; font-weight: 700; color: var(--ink, #1f2937); }
.voa-pax-select-text { font-size: 12.5px; line-height: 1.45; color: #6b7280; }
.voa-pax-select-list { display: flex; flex-direction: column; gap: 8px; }
.voa-pax-select-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid #e3e8f0;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}
.voa-pax-select-row:hover { border-color: #c7d2fe; }
.voa-pax-select-row.is-checked { border-color: var(--blue, #2563eb); background: #eef2ff; }
.voa-pax-select-row input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; cursor: pointer; }
.voa-pax-select-name { flex: 1; font-size: 14px; font-weight: 600; color: var(--ink, #1f2937); }
.voa-pax-select-row .voa-pax-chip { flex-shrink: 0; }
/* Locked pax selects (driven by the visa picker) */
.voa-field.is-pax select.is-locked,
select.is-locked { opacity: .6; cursor: not-allowed; }

/* ------------------------- Checkbox / acknowledge ------------------------- */
.voa-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--paragraf-color);
    line-height: 1.5;
    cursor: pointer;
    margin: 12px 0;
    position: relative;
}
/* The project-wide reset uses `input[type=checkbox]:not(old) { width:1px }`
   to hide native checkboxes (legacy custom-checkbox skin). We override that
   for VOA forms so our checkboxes actually render. */
.voa-check input[type="checkbox"],
.voa-check input[type="radio"],
.voa-option input[type="checkbox"],
.voa-card input[type="checkbox"]:not([type="hidden"]),
.voa-radio input[type="radio"] {
    -webkit-appearance: auto !important;
    appearance: auto !important;
    width: 18px !important;
    height: 18px !important;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    border: 1px solid #b3b8c4 !important;
    border-radius: 4px !important;
    background: #fff !important;
    accent-color: var(--blue);
    flex-shrink: 0;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    cursor: pointer;
}

/* ------------------------- Credit card form ------------------------- */
.voa-card-form {
    background: var(--gri-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 20px;
    margin-top: 20px;
}
.voa-card-form h3 {
    margin: 0 0 14px;
    font-size: 15px;
    color: var(--h-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.voa-card-form h3 i { color: var(--blue); }
.voa-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.voa-card-grid .voa-card-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.voa-card-grid .voa-card-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}
@media (max-width: 480px) {
    .voa-card-grid .voa-card-row-3 { grid-template-columns: 1fr 1fr; }
    .voa-card-grid .voa-card-row-3 > :last-child { grid-column: span 2; }
}
.voa-card-secure-note {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 14px;
    font-size: 12px;
    color: var(--p-color);
}
.voa-card-secure-note i { color: var(--yesil); font-size: 16px; }

/* ------------------------- Buttons ------------------------- */
.voa-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
    /* Never let the action bar bleed past the card. */
    max-width: 100%;
    min-width: 0;
}
.voa-actions .spacer { flex: 1; min-width: 0; }
.voa-actions .voa-btn { max-width: 100%; }
.voa-btn {
    height: 48px;
    padding: 0 28px;
    border-radius: 26px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s, transform .05s;
}
.voa-btn:active { transform: translateY(1px); }
.voa-btn-primary {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}
.voa-btn-primary:hover { background: #1f2c75; border-color: #1f2c75; color: #fff; }
.voa-btn-orange {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}
.voa-btn-orange:hover { background: #e07d10; border-color: #e07d10; color: #fff; }
.voa-btn-orange.is-incomplete {
    background: #c9ccd1;
    border-color: #c9ccd1;
    color: #fff;
    cursor: help;
}
.voa-btn-orange.is-incomplete:hover {
    background: #b6b9bf;
    border-color: #b6b9bf;
    color: #fff;
}
.voa-btn-ghost {
    background: transparent;
    color: var(--paragraf-color);
    border-color: #d7dbe3;
}
.voa-btn-ghost:hover { background: var(--gri-bg); color: var(--h-color); }
.voa-btn-sm { height: 38px; padding: 0 16px; font-size: 13px; border-radius: 19px; }

/* ------------------------- Summary ------------------------- */
.voa-summary {
    background: var(--gri-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 16px 20px;
    margin: 20px 0;
    min-width: 0;
    /* Block out any legacy float/position rules that target dl/dt/dd
       from the global stylesheet — semantic dl had layout collisions, so
       we now build the summary out of plain divs (.voa-summary-row). */
}
/* Plain block layout — label sits above the value on every screen size.
   Block flow side-steps the flex/grid `min-width: auto` quirk that was
   shoving the row outside the card. */
.voa-summary-row {
    display: block;
    padding: 6px 0;
    font-size: 13px;
    max-width: 100%;
}
.voa-summary-row + .voa-summary-row {
    border-top: 1px dashed transparent;
}
.voa-summary-label {
    display: block;
    color: var(--p-color);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.voa-summary-value {
    display: block;
    color: var(--paragraf-color);
    font-weight: 500;
    font-size: 14px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.voa-pricing-card {
    margin-top: 16px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 16px 20px;
    background: linear-gradient(180deg, #fff 0%, #f7f9ff 100%);
    min-width: 0;
}
.voa-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--paragraf-color);
    padding: 4px 0;
}
.voa-pricing-row > * { min-width: 0; }
.voa-pricing-row > :last-child { white-space: nowrap; }
.voa-pricing-row.is-total {
    border-top: 1px dashed #d7dbe3;
    margin-top: 8px;
    padding-top: 12px;
    font-size: 16px;
    color: var(--h-color);
    font-weight: 800;
}
.voa-pricing-row.is-cash {
    color: var(--p-color);
    font-style: italic;
}
.voa-pricing-row strong { color: var(--blue); }

/* Per-pax breakdown rows: each line shows the type, count × unit price and
 * the resulting subtotal. Kept compact so a 3-row breakdown doesn't push
 * the totals below the fold. */
.voa-pricing-section-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--p-color);
    margin: 4px 0 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.voa-pricing-carrier {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
    background: rgba(13, 71, 161, 0.08);
    padding: 2px 10px;
    border-radius: 999px;
}
.voa-pricing-carrier i { font-size: 11px; opacity: 0.85; }
/* Ada chip — firmadan ayırt edilsin diye yumuşak yeşil ton. */
.voa-pricing-carrier.voa-pricing-island {
    color: #1f6b3f;
    background: rgba(31, 107, 63, 0.10);
}
.voa-pricing-row.is-perpax {
    align-items: flex-start;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}
.voa-pricing-row.is-perpax:last-of-type { border-bottom: 0; }
.voa-pricing-row.is-perpax small {
    display: block;
    font-size: 11.5px;
    font-weight: 400;
    color: var(--p-color);
    margin-top: 2px;
}
.voa-pricing-row.is-perpax .voa-pricing-perpax-amount {
    text-align: right;
    white-space: normal;
}
.voa-pricing-divider {
    height: 1px;
    background: var(--border-color);
    margin: 10px 0 6px;
}

/* ------------------------- Tour voucher status ------------------------- */
.voa-tour-status { display: flex; align-items: center; gap: 6px; margin-top: 8px; min-height: 20px; }
.voa-tour-status.is-ok    { color: var(--yesil); }
.voa-tour-status.is-error { color: var(--kirmizi); }

/* Voucher duplicate (birden fazla eşleşme) — müşteri hizmetleri yönlendirmesi */
.voa-voucher-dup {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 12px;
    padding: 12px 14px;
}
.voa-voucher-dup-msg {
    color: #9a3412;
    font-size: 13px;
    line-height: 1.5;
}
.voa-voucher-dup-msg i { color: #ea580c; }
.voa-voucher-dup-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.voa-voucher-dup-actions a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #fdba74;
    color: #9a3412;
    border-radius: 9px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s, border-color .15s;
}
.voa-voucher-dup-actions a:hover { background: #ffedd5; border-color: #fb923c; }
.voa-voucher-dup-actions a i { font-size: 13px; }

/* ------------------------- Error banner ------------------------- */
.voa-error {
    background: #fff0f1;
    border: 1px solid #ffc7c9;
    color: #a31418;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 13px;
    margin-top: 14px;
}

/* ------------------------- Order detail view ------------------------- */
.voa-order-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 60px -28px rgba(43, 57, 145, 0.35);
    padding: 28px 32px;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.voa-order-card *,
.voa-order-card .voa-status-chip,
.voa-order-card .voucher-pill { max-width: 100%; min-width: 0; }
.voa-order-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.voa-order-card h1 {
    font-size: 22px;
    color: var(--h-color);
    font-weight: 800;
    margin: 0 0 4px;
}
.voa-order-card .voucher-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef2ff;
    color: var(--blue);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 6px;
}
.voa-status-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #eef2ff;
    color: var(--blue);
}
.voa-status-chip[data-status="DRAFT"]    { background: #fff5e6; color: #b06b00; }
.voa-status-chip[data-status="PAID"]     { background: #e8f7ef; color: var(--yesil); }
.voa-status-chip[data-status="IN_REVIEW"]{ background: #eef2ff; color: var(--blue); }
.voa-status-chip[data-status="REVIEW_APPROVED"] { background: #e8f7ef; color: var(--yesil); }
.voa-status-chip[data-status="REVIEW_NEEDS_CHANGES"] { background: #fff0f1; color: var(--kirmizi); }
.voa-status-chip[data-status="CANCELED"] { background: #fff0f1; color: var(--kirmizi); }
.voa-status-chip[data-status="REFUNDED"] { background: #fef3e8; color: var(--turuncu); }
.voa-status-chip[data-status="AT_PORT"]  { background: #eef2ff; color: var(--blue); }

@media (max-width: 768px) {
    .voa-order-card { padding: 22px 18px; border-radius: 14px; }
    .voa-order-head { gap: 12px; }
    .voa-order-card h1 { font-size: 18px; }
}
@media (max-width: 480px) {
    .voa-order-head { flex-direction: column; align-items: stretch; }
    .voa-order-head .voa-status-chip { align-self: flex-start; }
    .voa-status-chip { font-size: 10px; padding: 4px 9px; }
}

/* ------------------------- Alert banner ------------------------- */
.voa-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}
.voa-alert.is-success {
    background: #e8f7ef;
    border: 1px solid #b9e2c9;
    color: #1f5e36;
}
.voa-alert.is-info {
    background: #eef2ff;
    border: 1px solid #d6dbf7;
    color: var(--blue);
}
.voa-alert.is-warn {
    background: #fff5e6;
    border: 1px solid #ffd591;
    color: #6b3a00;
}
.voa-alert .icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-size: 18px;
}
.voa-alert.is-error {
    background: #fff0f0;
    border: 1px solid #f5c6c6;
    color: #7b1a1a;
}
.voa-alert.is-success .icon { color: var(--yesil); }
.voa-alert.is-info    .icon { color: var(--blue); }
.voa-alert.is-warn    .icon { color: var(--orange); }
.voa-alert.is-error   .icon { color: var(--kirmizi); }
.voa-alert strong { display: block; font-weight: 700; margin-bottom: 2px; }

/* ------------------------- Document upload ------------------------- */
.voa-doc-passenger {
    background: var(--gri-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 14px;
}
.voa-doc-passenger-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.voa-doc-passenger-head h3 {
    margin: 0;
    font-size: 15px;
    color: var(--h-color);
    font-weight: 700;
}
.voa-doc-slots {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.voa-doc-slot {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}
.voa-doc-slot.is-uploaded { border-color: #c9e3d1; background: #f5fbf7; }
.voa-doc-slot.is-locked   { border-color: #d6dbf7; background: #f4f6ff; opacity: 0.95; }
.voa-doc-info { flex: 1 1 220px; min-width: 0; }
.voa-doc-info strong { display: block; color: var(--h-color); font-size: 14px; }
.voa-doc-info small  { display: block; color: var(--p-color); font-size: 12px; margin-top: 2px; line-height: 1.45; }
.voa-doc-required-mark { color: var(--kirmizi); margin-left: 4px; }
.voa-doc-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.voa-doc-actions input[type="file"] { display: none; }
.voa-doc-file-name {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--paragraf-color);
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.voa-doc-file-name i { color: var(--yesil); }

/* ------------------------- Submit footer ------------------------- */
.voa-doc-submit-bar {
    background: linear-gradient(180deg, #fff 0%, #f4f6ff 100%);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.voa-doc-progress {
    font-size: 13px;
    color: var(--paragraf-color);
}
.voa-doc-progress strong { color: var(--h-color); }
@media (max-width: 480px) {
    .voa-doc-slot { padding: 12px 14px; }
    .voa-doc-actions { width: 100%; justify-content: flex-end; }
}

/* ------------------------- Document slot (refined layout) ------------------------- */
/* Override the earlier flex layout with a two-column grid:
   header spans the full row, left column holds upload + actions + FAQ link,
   right column holds the long "detaylı bilgi" copy. Stacks on small screens
   with info first → upload last so the user always sees what's expected
   before they hit "Yükle". */
.voa-doc-slot {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    grid-template-areas:
        "header header"
        "upload info";
    gap: 12px 22px;
    align-items: start;
}
.voa-doc-slot-header {
    grid-area: header;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.voa-doc-slot-header strong {
    color: var(--h-color);
    font-size: 14.5px;
    font-weight: 700;
}
.voa-doc-slot-upload {
    grid-area: upload;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.voa-doc-slot-upload .voa-doc-actions { flex-wrap: wrap; }
.voa-doc-slot-info {
    grid-area: info;
    background: #fff;
    border: 1px dashed #d6dbf7;
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--paragraf-color);
    font-size: 13px;
    line-height: 1.55;
}
.voa-doc-slot-info h4 {
    margin: 0 0 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--blue);
    font-weight: 700;
}
.voa-doc-slot-info p { margin: 0; }

.voa-doc-faq-trigger {
    appearance: none;
    background: transparent;
    border: 1px dashed var(--blue);
    border-radius: 999px;
    padding: 8px 14px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.voa-doc-faq-trigger:hover {
    background: var(--blue);
    color: #fff;
}
.voa-doc-faq-trigger i { font-size: 14px; }

@media (max-width: 768px) {
    .voa-doc-slot {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "header"
            "info"
            "upload";
    }
    .voa-doc-slot-info { padding: 10px 12px; }
}

/* ------------------------- Modal (FAQ) ------------------------- */
.voa-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.voa-modal[hidden] { display: none; }
.voa-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 25, 50, 0.55);
    backdrop-filter: blur(2px);
}
.voa-modal-panel {
    position: relative;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 30px 80px -30px rgba(20, 25, 50, 0.6);
    width: min(640px, 100%);
    max-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: voaModalIn 0.18s ease-out;
}
@keyframes voaModalIn {
    from { transform: translateY(12px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.voa-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    border-bottom: 1px solid var(--border-color);
}
.voa-modal-head h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--h-color);
}
.voa-modal-close {
    appearance: none;
    background: var(--gri-bg);
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--paragraf-color);
    transition: background .15s;
}
.voa-modal-close:hover { background: #ececec; color: var(--kirmizi); }
.voa-modal-body {
    padding: 18px 22px;
    overflow-y: auto;
    color: var(--paragraf-color);
}
.voa-modal-foot {
    padding: 14px 22px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    background: var(--gri-bg);
}

/* ------------------------- FAQ items ------------------------- */
.voa-faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--gri-bg);
    margin-bottom: 10px;
    overflow: hidden;
}
.voa-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 12px 16px;
    font-weight: 600;
    color: var(--h-color);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.voa-faq-item summary::-webkit-details-marker { display: none; }
.voa-faq-item summary::after {
    content: "+";
    font-size: 18px;
    color: var(--blue);
    transition: transform .15s;
}
.voa-faq-item[open] summary::after { content: "−"; }
.voa-faq-item[open] summary { background: #fff; border-bottom: 1px solid var(--border-color); }
.voa-faq-answer {
    padding: 12px 16px 14px;
    background: #fff;
    color: var(--paragraf-color);
    font-size: 13.5px;
    line-height: 1.6;
}

/* ------------------------- Application form banner ------------------------- */
.voa-app-form-banner {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px 20px;
    border-radius: 14px;
    margin: 6px 0 18px;
    border: 1px solid transparent;
}
.voa-app-form-banner.is-pending {
    background: linear-gradient(180deg, #f0f5ff 0%, #e6efff 100%);
    border-color: #c5d3ef;
    color: var(--blue);
}
.voa-app-form-banner.is-completed {
    background: linear-gradient(180deg, #e8f7ef 0%, #d8f0e0 100%);
    border-color: #a7d9b6;
    color: #1f6b3f;
}
.voa-app-form-banner-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    font-size: 22px;
}
.voa-app-form-banner-body h3 {
    margin: 0 0 4px;
    font-size: 16px;
    color: inherit;
}
.voa-app-form-banner-body p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.5;
    color: inherit;
    opacity: 0.85;
}
.voa-app-form-banner-action { white-space: nowrap; }
@media (max-width: 640px) {
    .voa-app-form-banner { grid-template-columns: 44px 1fr; }
    .voa-app-form-banner-icon { width: 44px; height: 44px; font-size: 18px; }
    .voa-app-form-banner-action { grid-column: 1 / -1; }
}

/* ------------------------- Application form (form view) ------------------------- */
.voa-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--blue);
    text-decoration: none;
}
.voa-back-link:hover { text-decoration: underline; }
.voa-app-section {
    background: var(--gri-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 18px;
}
.voa-app-section h2 {
    font-size: 18px;
    color: var(--h-color);
    margin: 0 0 12px;
}
.voa-app-passenger-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
.voa-app-passenger-head h2 {
    margin: 0;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.voa-app-hotel-info,
.voa-app-hotel-override {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 14px;
}
.voa-app-hotel-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 10px;
    flex-wrap: wrap;
}
.voa-app-hotel-info-header strong {
    color: var(--h-color);
    font-size: 14px;
}
.voa-app-hotel-info-list {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 6px 16px;
    margin: 0 0 12px;
    font-size: 13.5px;
}
.voa-app-hotel-info-list dt { color: var(--p-color); font-weight: 500; }
.voa-app-hotel-info-list dd { margin: 0; color: var(--h-color); word-break: break-word; }
.voa-app-hotel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
@media (max-width: 640px) {
    .voa-app-hotel-info-list { grid-template-columns: 1fr; gap: 2px; }
    .voa-app-hotel-info-list dt { color: var(--p-color); font-size: 12px; margin-top: 6px; }
}


/* Application form üst başlık: back-link + voucher/tarih chip'leri yan yana */
.voa-app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.voa-app-header .voa-back-link { margin-bottom: 0; }
.voa-app-header-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-left: auto;
}
@media (max-width: 640px) {
    .voa-app-header-meta { margin-left: 0; }
}

/* =====================================================================
 * Application form — Stripe tarzı iki katmanlı tasarım (v2, overflow-safe)
 *
 * Outer .voa-card.voa-card-app: açık gri shell.
 * İç tek beyaz .voa-app-content: section'lar hairline divider'larla ayrı.
 * Field-row için minmax(0, 1fr) ile overflow guard.
 * ===================================================================== */
.voa-card.voa-card-app {
    background: #f4f6fa;
    box-shadow: 0 20px 50px -30px rgba(13, 39, 80, 0.20);
    border-radius: 22px;
    padding: 18px;
}
.voa-card.voa-card-app .voa-app-header {
    margin: 0 4px 12px;
    padding: 0;
}

.voa-app-content {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(13, 39, 80, 0.05);
    box-shadow: 0 1px 2px rgba(13, 39, 80, 0.04);
    overflow: hidden;
}

.voa-card.voa-card-app .voa-app-section {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(13, 39, 80, 0.06);
}
.voa-card.voa-card-app .voa-app-content > .voa-app-section:last-child {
    border-bottom: 0;
}

.voa-card.voa-card-app .voa-app-section-header {
    padding: 22px 24px 10px;
}
.voa-card.voa-card-app .voa-app-section-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #8993a8;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    margin-bottom: 4px;
}
.voa-card.voa-card-app .voa-app-section-header h2 {
    font-size: 21px;
    font-weight: 800;
    color: var(--h-color);
    letter-spacing: -0.015em;
    line-height: 1.22;
    margin: 0;
    font-family: Inter, sans-serif;
}
.voa-card.voa-card-app .voa-app-section-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.voa-card.voa-card-app .voa-app-section-header-row > div:first-child {
    flex: 1 1 auto;
    min-width: 0;
}

.voa-card.voa-card-app .voa-app-section-body {
    padding: 14px 24px 20px;
}
.voa-card.voa-card-app .voa-app-section-body > .voa-field:last-child,
.voa-card.voa-card-app .voa-app-section-body > .voa-field-row:last-child {
    margin-bottom: 0;
}

/* — Field grid overflow guard (en kritik nokta) — */
.voa-card.voa-card-app .voa-app-section-body .voa-field-row {
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}
.voa-card.voa-card-app .voa-app-section-body .voa-field { min-width: 0; }
.voa-card.voa-card-app .voa-app-section-body .voa-field input,
.voa-card.voa-card-app .voa-app-section-body .voa-field select,
.voa-card.voa-card-app .voa-app-section-body .voa-field textarea {
    max-width: 100%;
    box-sizing: border-box;
}

/* — Otel info / override paneller (beyazın içinde hafif gri) — */
.voa-card.voa-card-app .voa-app-hotel-info,
.voa-card.voa-card-app .voa-app-hotel-override {
    background: #f7f9fd;
    border: 1px solid rgba(13, 39, 80, 0.05);
    border-radius: 10px;
    margin-bottom: 14px;
}

/* — Yolcu kartında chip'ler header-row'ın sağına — */
.voa-card.voa-card-app .voa-pax-chip {
    background: #eef2ff;
    color: var(--blue);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
}

/* — Alt başlıklar (eski .voa-pricing-section-title kullanımı) — */
.voa-card.voa-card-app .voa-app-section-body .voa-pricing-section-title {
    margin: 22px 0 12px !important;
    padding-top: 16px;
    border-top: 1px dashed rgba(13, 39, 80, 0.10);
}
.voa-card.voa-card-app .voa-app-section-body > .voa-pricing-section-title:first-child {
    margin-top: 0 !important;
    padding-top: 0;
    border-top: 0;
}

@media (max-width: 720px) {
    /* Mobil/dar ekran: tüm field-row'lar tek sütun — input'lar yan yana
     * sıkışıp okunaksız hale gelmesin. Grid item'lar arası boşluk gap ile,
     * field-row sonrası standalone field arası boşluk margin-bottom ile. */
    .voa-card.voa-card-app .voa-app-section-body .voa-field-row,
    .voa-card.voa-card-app .voa-app-hotel-override .voa-field-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 16px;
    }
    /* Grid içindeki field'lar margin'siz — gap halleder. Standalone
     * field'lar (örn. Ev Adresi tek başına) kendi margin-bottom'larını
     * korur, sonraki blok ile dip dibe gelmesin. */
    .voa-card.voa-card-app .voa-app-section-body .voa-field-row > .voa-field {
        margin-bottom: 0;
    }
}
@media (max-width: 640px) {
    .voa-card.voa-card-app { padding: 12px; border-radius: 16px; }
    .voa-card.voa-card-app .voa-app-section-header { padding: 18px 16px 8px; }
    .voa-card.voa-card-app .voa-app-section-body { padding: 12px 16px 18px; }
    .voa-card.voa-card-app .voa-app-section-header h2 { font-size: 18px; }
    .voa-card.voa-card-app .voa-app-header { flex-direction: column; align-items: stretch; }
    .voa-card.voa-card-app .voa-app-header-meta { margin-left: 0; }
    .voa-card.voa-card-app .voa-pricing-carrier { font-size: 11.5px; padding: 2px 8px; }
}
@media (max-width: 480px) {
    .voa-card.voa-card-app { padding: 10px; }
    .voa-card.voa-card-app .voa-app-section-header { padding: 16px 14px 6px; }
    .voa-card.voa-card-app .voa-app-section-body { padding: 10px 14px 16px; }
    .voa-card.voa-card-app .voa-app-section-header h2 { font-size: 17px; letter-spacing: -0.01em; }
    .voa-card.voa-card-app .voa-app-section-eyebrow { font-size: 10.5px; }
    /* Yolcu kartında ad sağ taraftaki chip'lerle yan yana sığmazsa wrap'ler */
    .voa-card.voa-card-app .voa-app-section-header-row { flex-direction: column; align-items: flex-start; gap: 8px; }
    .voa-card.voa-card-app .voa-app-section-header-row > div:first-child { width: 100%; }
}

/* Application form: tüm wrapper'lara border-box garantisi (content-box
 * modunda padding parent'ı taşırıp grid akışı bozuyordu). */
.voa-card.voa-card-app,
.voa-card.voa-card-app *,
.voa-card.voa-card-app *::before,
.voa-card.voa-card-app *::after {
    box-sizing: border-box;
}

/* style.css'te global `header { float: left }` kuralı var; bizim
 * `<header class="voa-app-section-header">` tag'imizi de etkiliyor.
 * Float'ı sıfırla ve width:100% zorla — yoksa içerideki block element'ler
 * sağa yaslanıp dikey alanı pas geçiyordu. */
.voa-card.voa-card-app .voa-app-section-header,
.voa-card.voa-card-app header.voa-app-section-header {
    float: none !important;
    width: 100%;
    clear: both;
}

/* ============================================================
   İmzalı Başvuru Formu slot (application_form_signed)
   — özel 3-adımlı UX, slot içinde nested
   ============================================================ */
.voa-doc-slot.is-application-form-signed {
    border-color: #cbd5f0;
    background: #fafbff;
}
.voa-doc-signed-notice {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 14px;
    background: #fff7e6;
    border: 1px solid #f0d9a8;
    border-radius: 8px;
    color: #6b4f12;
    font-size: 13.5px;
    line-height: 1.45;
    margin: 8px 0 12px;
}
.voa-doc-signed-notice i {
    color: #c38600;
    margin-top: 2px;
}
.voa-doc-signed-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}
.voa-doc-signed-step {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}
.voa-doc-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1e3a8a;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}
.voa-doc-step-body strong {
    display: block;
    font-size: 14px;
    color: #0d2750;
}
.voa-doc-step-body small {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}
.voa-doc-step-action {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}
.voa-doc-step-action .voa-btn[disabled],
.voa-doc-step-action .voa-btn[aria-disabled="true"] {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}
.voa-doc-step-action input[type="file"] { display: none; }
@media (max-width: 640px) {
    .voa-doc-signed-step {
        grid-template-columns: 28px 1fr;
        gap: 8px;
    }
    .voa-doc-step-action {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

/* ============================================================
   Tatil paketinde atlanan evrak slotları
   ============================================================ */
.voa-doc-slot.is-skipped-for-tour-package {
    border-color: #c8d6f5;
    background: #f6f9ff;
}
.voa-doc-tour-package-notice {
    /* Slot bir grid (header / upload-info); grid-area atanmamış bu notice
       "upload" hücresine düşüp ~%45 genişlikte kalıyordu — tüm satırı kapla. */
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 8px;
    padding: 10px 14px;
    background: #e8efff;
    border: 1px solid #c8d6f5;
    border-radius: 8px;
    color: #1e3a8a;
    font-size: 13.5px;
    line-height: 1.5;
}
.voa-doc-tour-package-notice i {
    color: #1e3a8a;
    margin-top: 2px;
    font-size: 16px;
}

/* ============================================================
   Application form PDF download modal (loading spinner + queue)
   ============================================================ */
.voa-dl-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e5e7eb;
    border-top-color: #1e3a8a;
    border-radius: 50%;
    animation: voa-dl-spin 0.8s linear infinite;
    margin: 8px auto 16px;
}
@keyframes voa-dl-spin {
    to { transform: rotate(360deg); }
}
.voa-dl-status {
    text-align: center;
    margin: 0 0 8px;
    font-size: 14.5px;
    color: #1f2937;
}
.voa-dl-queue {
    text-align: center;
    margin: 4px 0 0;
    font-size: 13px;
    color: #6b7280;
    font-style: italic;
}

/* ============================================================
   Başvuru Bilgi Formu kartı (per-passenger, documents page)
   Hover'da yükselen, full-clickable card. Pending → primary accent;
   filled → success accent. Icon badge + başlık + açıklama + CTA okku.
   ============================================================ */
.voa-appform-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    margin: 10px 0 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    position: relative;
    overflow: hidden;
}
.voa-appform-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.07);
    border-color: #cbd5e1;
    text-decoration: none;
    color: inherit;
}
.voa-appform-card.is-filled  { background: #f8fcf9; border-color: #d8ebdf; }
.voa-appform-card.is-pending { background: #fffcf5; border-color: #f0d9a0; }
.voa-appform-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.voa-appform-card.is-pending .voa-appform-card-icon {
    background: #fef3c7;
    color: #b45309;
}
.voa-appform-card.is-filled .voa-appform-card-icon {
    background: #dcfce7;
    color: #15803d;
}
.voa-appform-card-content { flex: 1; min-width: 0; }
.voa-appform-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.voa-appform-card-title strong {
    font-size: 15.5px;
    color: #111827;
    font-weight: 600;
}
.voa-appform-status {
    display: inline-flex;
    align-items: center;
    padding: 2px 9px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.voa-appform-status.is-pending {
    background: #fef3c7;
    color: #92400e;
}
.voa-appform-status.is-done {
    background: #dcfce7;
    color: #15803d;
}
.voa-appform-card-desc {
    display: block;
    color: #475569;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.4;
}
.voa-appform-card-action { flex-shrink: 0; }
.voa-appform-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: #1e3a8a;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background 0.15s ease;
}
.voa-appform-card.is-filled .voa-appform-card-cta { color: #15803d; }
.voa-appform-card:hover .voa-appform-card-cta { background: rgba(30, 58, 138, 0.06); }
.voa-appform-card.is-filled:hover .voa-appform-card-cta { background: rgba(22, 163, 74, 0.08); }
.voa-appform-card-cta i {
    font-size: 11px;
    transition: transform 0.15s ease;
}
.voa-appform-card:hover .voa-appform-card-cta i {
    transform: translateX(3px);
}
@media (max-width: 640px) {
    .voa-appform-card {
        gap: 10px;
        padding: 12px 14px;
    }
    .voa-appform-card-icon {
        width: 40px; height: 40px; font-size: 18px;
    }
    .voa-appform-card-desc { font-size: 12.5px; }
}

/* ============================================================
   Sponsor relation (yalnız child/baby yolculara gösterilir)
   ============================================================ */
.voa-sponsor-relation {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px 14px;
    margin: 8px 0 16px;
    background: #f9fafb;
}
.voa-sponsor-relation legend {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    padding: 0 6px;
}
.voa-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 6px;
}
.voa-radio {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 8px;
    transition: background 0.15s ease;
}
.voa-radio:hover { background: #fff; }
.voa-radio input[type="radio"] {
    accent-color: #1e3a8a;
}
.voa-radio span {
    font-size: 14px;
    color: #1f2937;
}

/* Reddedilen evrak için müşteri uyarısı */
.voa-doc-rejection-notice {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 4px solid #dc2626;
    border-radius: 8px;
    padding: 12px 14px;
    margin: 10px 0;
}
.voa-doc-rejection-head {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #991b1b;
    margin-bottom: 8px;
}
.voa-doc-rejection-head i { font-size: 16px; }
.voa-doc-rejection-head strong { font-size: 14px; }
.voa-doc-rejection-row {
    font-size: 13px;
    color: #7f1d1d;
    line-height: 1.5;
    padding: 3px 0;
}
.voa-doc-rejection-label {
    display: inline-block;
    min-width: 130px;
    font-weight: 600;
}

/* Muvafakatname uyarısı (travel_with BOTH değilse) */
.voa-travel-consent-warning {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fef3c7;
    border-left: 4px solid #d97706;
    border-radius: 8px;
    padding: 12px 14px;
}
.voa-travel-consent-warning i {
    color: #b45309;
    font-size: 18px;
    margin-top: 1px;
    flex-shrink: 0;
}
.voa-travel-consent-warning strong {
    display: block;
    color: #78350f;
    font-size: 14px;
    margin-bottom: 4px;
}
.voa-travel-consent-warning p {
    margin: 0;
    color: #78350f;
    font-size: 13px;
    line-height: 1.5;
}

/* ============================================================
   İmza gerekmeyen rota — uyarı kartı (documents page)
   Sadeleştirilmiş tasarım: tek tonlu amber, ack sonrası yumuşak yeşil.
   ============================================================ */
.voa-sign-notice {
    border: 1px solid #fcd34d;
    background: #fffbeb;
    border-radius: 12px;
    padding: 16px 18px;
    margin: 0 0 16px;
    transition: background 0.25s ease, border-color 0.25s ease;
}
.voa-sign-notice.is-acked {
    background: #f0fdf4;
    border-color: #86efac;
}
.voa-sign-notice-head {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}
.voa-sign-notice-icon {
    color: #d97706;
    font-size: 20px;
    flex-shrink: 0;
}
.voa-sign-notice.is-acked .voa-sign-notice-icon {
    color: #16a34a;
}
.voa-sign-notice-title {
    font-size: 15px;
    color: #78350f;
    line-height: 1.3;
}
.voa-sign-notice.is-acked .voa-sign-notice-title { color: #14532d; }
.voa-sign-notice-body p {
    color: #4b3a14;
    line-height: 1.55;
    margin: 0 0 8px;
    font-size: 14px;
}
.voa-sign-notice-body p:last-child { margin-bottom: 0; }
.voa-sign-notice-body p strong { color: #78350f; }
.voa-sign-notice-emph {
    margin-top: 10px !important;
    padding-top: 10px;
    border-top: 1px dashed #fcd34d;
}
.voa-sign-notice-emph strong {
    display: block;
    margin-bottom: 2px;
}
.voa-sign-notice.is-acked .voa-sign-notice-emph {
    border-top-color: #86efac;
}
.voa-sign-notice.is-acked .voa-sign-notice-body p,
.voa-sign-notice.is-acked .voa-sign-notice-body p strong { color: #166534; }
.voa-sign-notice-ack {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #fcd34d;
    cursor: pointer;
    font-size: 13.5px;
    color: #5a3a10;
}
.voa-sign-notice.is-acked .voa-sign-notice-ack {
    border-top-color: #86efac;
    color: #166534;
}
.voa-sign-notice-ack input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: #d97706;
}
.voa-sign-notice.is-acked .voa-sign-notice-ack input[type="checkbox"] {
    accent-color: #16a34a;
}

/* ───────────────────────────────────────────────────────────────────
   Shipping screen — onaylı evraklar + kargo gönderim akışı.
   Sipariş statüsü REVIEW_APPROVED / AT_PORT / COMPLETED'de gösterilir.
   ─────────────────────────────────────────────────────────────────── */
.voa-ship-hero {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #6ee7b7;
    border-radius: 14px;
    margin-bottom: 28px;
}
.voa-ship-hero.is-received {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #93c5fd;
}
.voa-ship-hero-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    font-size: 26px;
    box-shadow: 0 4px 10px rgba(22, 163, 74, 0.15);
    flex-shrink: 0;
}
.voa-ship-hero.is-received .voa-ship-hero-icon { color: #2563eb; box-shadow: 0 4px 10px rgba(37, 99, 235, 0.15); }
.voa-ship-hero-content h2 { margin: 0 0 4px; font-size: 19px; color: #064e3b; font-weight: 800; }
.voa-ship-hero.is-received .voa-ship-hero-content h2 { color: #1e3a8a; }
.voa-ship-hero-content p { margin: 0; font-size: 14px; color: #065f46; line-height: 1.45; }
.voa-ship-hero.is-received .voa-ship-hero-content p { color: #1e40af; }

.voa-ship-block { margin-top: 24px; }
.voa-ship-block-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.voa-ship-step {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #1e3a8a;
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.voa-ship-block-head h3 { margin: 0; font-size: 17px; font-weight: 700; color: #0f172a; }
.voa-ship-block-lead { margin: 0 0 14px; font-size: 13.5px; color: #475569; line-height: 1.5; }

/* Kargo adresi kartı */
.voa-ship-address-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px 20px;
}
.voa-ship-address-name { font-size: 16px; font-weight: 800; color: #0f172a; margin-bottom: 10px; }
.voa-ship-address-row { display: flex; gap: 8px; margin-bottom: 6px; font-size: 14px; }
.voa-ship-address-label { color: #64748b; flex-shrink: 0; min-width: 70px; }
.voa-ship-address-value { color: #0f172a; }
.voa-ship-address-value a { color: #1e3a8a; text-decoration: none; }
.voa-ship-address-value a:hover { text-decoration: underline; }

/* Checklist */
.voa-ship-checklist { display: flex; flex-direction: column; gap: 14px; }
.voa-ship-pax {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
}
.voa-ship-pax-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #cbd5e1;
}
.voa-ship-pax-head strong { font-size: 14.5px; color: #0f172a; }
.voa-ship-pax-docs { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.voa-ship-doc {
    display: flex;
    align-items: stretch;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 7px;
    transition: background 0.15s, border-color 0.15s;
}
.voa-ship-doc:hover { background: #f1f5f9; }
.voa-ship-doc.is-checked { background: #ecfdf5; border-color: #86efac; }
.voa-ship-doc-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 10px;
    cursor: pointer;
    margin: 0;
    flex: 1;
    min-width: 0;
}
.voa-ship-doc input[type="checkbox"] { width: 18px; height: 18px; accent-color: #16a34a; flex-shrink: 0; cursor: pointer; margin-top: 1px; }
.voa-ship-doc input[type="checkbox"]:disabled { cursor: default; }
.voa-ship-doc-text { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.voa-ship-doc-name { font-size: 14px; color: #0f172a; line-height: 1.35; }
.voa-ship-doc.is-checked .voa-ship-doc-name { color: #064e3b; font-weight: 600; }
.voa-ship-doc-note {
    font-size: 12px;
    color: #b91c1c;
    background: #fef2f2;
    padding: 2px 8px;
    border-radius: 4px;
    align-self: flex-start;
    font-weight: 600;
}
.voa-ship-doc.is-checked .voa-ship-doc-note { color: #991b1b; }
.voa-ship-doc-dl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    flex-shrink: 0;
    color: #475569;
    text-decoration: none;
    border-left: 1px solid #e2e8f0;
    transition: background 0.12s, color 0.12s;
}
.voa-ship-doc-dl:hover { background: #e0e7ff; color: #1e3a8a; text-decoration: none; }
.voa-ship-doc.is-checked .voa-ship-doc-dl { border-left-color: #86efac; color: #15803d; }
.voa-ship-doc.is-checked .voa-ship-doc-dl:hover { background: #bbf7d0; color: #14532d; }

/* Uyarılar */
.voa-ship-warning {
    display: flex;
    gap: 12px;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 10px;
}
.voa-ship-warning--critical { background: #fef2f2; border-color: #fca5a5; }
.voa-ship-warning-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fef3c7;
    color: #b45309;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.voa-ship-warning--critical .voa-ship-warning-icon { background: #fee2e2; color: #b91c1c; }
.voa-ship-warning-body strong { display: block; font-size: 14.5px; color: #78350f; margin-bottom: 4px; }
.voa-ship-warning--critical .voa-ship-warning-body strong { color: #991b1b; }
.voa-ship-warning-body p { margin: 0; font-size: 13.5px; color: #78350f; line-height: 1.5; }
.voa-ship-warning--critical .voa-ship-warning-body p { color: #7f1d1d; }

/* Mixed-payment nakit zarf uyarısı — solda büyük tutar, sağda metin */
.voa-ship-cash {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}
.voa-ship-cash-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    background: #ffedd5;
    color: #9a3412;
    border-right: 1px solid #fdba74;
    min-width: 130px;
    flex-shrink: 0;
}
.voa-ship-cash-currency { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; opacity: 0.85; }
.voa-ship-cash-value { font-size: 28px; font-weight: 800; line-height: 1.1; white-space: nowrap; }
.voa-ship-cash-text { padding: 14px 16px; flex: 1; }
.voa-ship-cash-text strong { display: block; font-size: 14.5px; color: #9a3412; margin-bottom: 4px; }
.voa-ship-cash-text p { margin: 0; font-size: 13.5px; color: #7c2d12; line-height: 1.5; }

.voa-ship-warning-list {
    margin: 14px 0 0;
    padding: 16px 18px 16px 36px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13.5px;
    color: #334155;
    line-height: 1.6;
}
.voa-ship-warning-list li { margin-bottom: 8px; }
.voa-ship-warning-list li:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
    .voa-ship-hero { flex-direction: column; align-items: flex-start; padding: 18px; }
    .voa-ship-hero-icon { width: 48px; height: 48px; font-size: 22px; }
    .voa-ship-hero-content h2 { font-size: 17px; }
    .voa-ship-address-row { flex-direction: column; gap: 2px; }
    .voa-ship-address-label { min-width: auto; font-size: 12.5px; }
    .voa-ship-cash { flex-direction: column; }
    .voa-ship-cash-amount { min-width: 0; border-right: none; border-bottom: 1px solid #fdba74; padding: 12px; }
    .voa-ship-cash-value { font-size: 24px; }
    .voa-ship-doc { flex-wrap: nowrap; }
    .voa-ship-doc-dl { width: 44px; }
}

/* İndirilebilir evrak formu (taahhütname/dilekçe) — düz upload slotunda
   "Formu İndir" bloğu. */
.voa-doc-download-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    margin-bottom: 10px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
}
.voa-doc-download-form .voa-hint { margin: 0; font-size: 12.5px; color: #1e40af; }

/* ───────────────────────────────────────────────────────────────────
   Landing SSS (FAQ) — native <details> accordion
   ─────────────────────────────────────────────────────────────────── */
/* FAQ shell, form .voa-shell ile aynı z-index:2'yi paylaşıp DOM'da sonra geldiği
   için form içindeki tarih seçici (.voa-bday-popup) aşağı taştığında üstüne
   biniyordu. FAQ'i form kabuğunun altına indir. */
.voa-faq-shell { padding-top: 0; z-index: 1; }

/* ── Hero 2 sütun: solda video kartı, sağda metin ───────────────────── */
.voa-hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.voa-hero-media { flex: 0 1 482px; min-width: 0; }
.voa-hero-copy  { flex: 1 1 360px; text-align: right; min-width: 0; }

/* Hero video kartı — tıklayınca modal açar */
.voa-hero-video {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    border: 0;
    cursor: pointer;
    text-align: left;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-shadow: 0 18px 50px -26px rgba(0, 0, 0, 0.6);
    transition: transform .25s ease, background .25s ease;
}
.voa-hero-video:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.18); }
.voa-hero-video-thumb {
    position: relative;
    flex: 0 0 auto;
    width: 168px;
    height: 96px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.voa-hero-video-thumb::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.18); }
.voa-hero-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #fff;
    font-size: 15px;
    padding-left: 3px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
    opacity: 0.4;
    transition: transform .25s ease, background .25s ease, opacity .25s ease;
}
.voa-hero-video:hover .voa-hero-video-play { transform: translate(-50%, -50%) scale(1.1); }
.voa-hero-video-text { display: flex; flex-direction: column; color: #fff; min-width: 0; }
.voa-hero-video-text strong { font-size: 15px; font-weight: 700; line-height: 1.3; }
.voa-hero-video-text small  { font-size: 12.5px; opacity: .85; margin-top: 2px; }

/* ── Video modalı ───────────────────────────────────────────────────── */
.voa-video-modal[hidden] { display: none; }
.voa-video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.voa-video-modal-backdrop { position: absolute; inset: 0; background: rgba(5, 10, 25, 0.82); }
.voa-video-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(960px, 96vw);
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
}
.voa-video-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease;
}
.voa-video-modal-close:hover { background: rgba(255, 255, 255, 0.32); }
.voa-video-modal-body { width: 100%; aspect-ratio: 16 / 9; }
.voa-video-el { width: 100%; height: 100%; object-fit: contain; display: block; background: #000; }

@media (max-width: 768px) {
    .voa-hero-grid { flex-direction: column-reverse; align-items: stretch; gap: 24px; }
    .voa-hero-media,
    .voa-hero-copy { flex: 1 1 auto; width: 100%; }
    .voa-hero-copy { text-align: center; }
    .voa-hero-video { max-width: 420px; margin: 0 auto; }
    .voa-video-modal-close { top: -40px; }
}
@media (max-width: 400px) {
    .voa-hero-video-thumb { width: 120px; height: 72px; }
    .voa-hero-video-text strong { font-size: 14px; }
    .voa-hero-video-text small  { font-size: 12px; }
}
.voa-faq-title { font-size: 22px; font-weight: 800; color: var(--h-color, #0d2750); margin: 0 0 18px; }
.voa-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 10px;
    background: #fff;
    overflow: hidden;
}
.voa-faq-item + .voa-faq-item { margin-top: 0; }
.voa-faq-item > summary {
    list-style: none;
    cursor: pointer;
    padding: 15px 44px 15px 16px;
    position: relative;
    font-weight: 600;
    font-size: 15px;
    color: #0f172a;
    user-select: none;
}
.voa-faq-item > summary::-webkit-details-marker { display: none; }
.voa-faq-item > summary::after {
    content: "+";
    position: absolute;
    right: 16px; top: 50%;
    transform: translateY(-50%);
    font-size: 22px; font-weight: 400; line-height: 1;
    color: #2b3991; transition: transform .18s ease;
}
.voa-faq-item[open] > summary::after { content: "−"; }
.voa-faq-item[open] > summary { color: #2b3991; }
.voa-faq-item > summary:hover { background: #f6f8fe; }
.voa-faq-a { padding: 16px 16px; }
.voa-faq-a p { margin: 0; font-size: 14px; line-height: 1.6; color: #475569; }
@media (max-width: 640px) {
    .voa-faq-title { font-size: 19px; }
    .voa-faq-item > summary { font-size: 14px; }
}

/* Kargo aşaması — "Kargoya verdim" bildirimi */
.voa-ship-handover { margin-top: 18px; padding-top: 16px; border-top: 1px dashed #e2e8f0; }
.voa-ship-handover-text { font-size: 13.5px; color: #475569; margin: 0 0 12px; }
.voa-ship-handover-btn {
    display: inline-flex; align-items: center; gap: 8px;
    border: 0; cursor: pointer;
    background: #16a34a; color: #fff;
    font-size: 14px; font-weight: 700;
    padding: 11px 22px; border-radius: 10px;
    box-shadow: 0 10px 24px -12px rgba(22,163,74,.6);
    transition: background .2s ease, transform .15s ease;
}
.voa-ship-handover-btn:hover { background: #15803d; transform: translateY(-1px); }
.voa-ship-handover-done {
    display: flex; align-items: center; gap: 10px;
    background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46;
    border-radius: 10px; padding: 12px 16px; font-size: 13.5px;
}
.voa-ship-handover-done i { font-size: 18px; color: #16a34a; }
.voa-ship-handover-done strong { margin-left: 4px; white-space: nowrap; }

/* Handover, uyarı listesinin üstünde — üstte ayraç çizgisi kalır, altta boşluk */
.voa-ship-handover-block { margin-bottom: 16px; text-align: center; }
.voa-ship-handover-block form { display: flex; justify-content: center; }
.voa-ship-handover-block .voa-ship-handover-done { justify-content: center; }

/* Kargo uyarıları — veri saklama/silme bilgilendirmesi (alanın en altı) */
.voa-ship-retention-note {
    display: flex; align-items: center; gap: 8px;
    margin: 16px 0 0; padding: 12px 14px;
    background: #f1f5f9; border: 1px solid #e2e8f0; border-radius: 10px;
    font-size: 12.5px; color: #475569; line-height: 1.5;
}
.voa-ship-retention-note i { color: #64748b; flex-shrink: 0; font-size: 22px; }
