/*
Theme Name:   Bali Direct Transfer
Description:  Child theme for Bali Airport Fast Track Services – based on Hello Elementor
Template:     hello-elementor
Version:      1.0.0
Text Domain:  bali-direct-transfer
*/

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
    --navy:        #0A2540;
    --navy-2:      #163A5F;
    --navy-light:  #EBF2FA;
    --gold:        #C9A84C;
    --gold-light:  #F5E9C5;
    --green:       #10B981;
    --red:         #EF4444;
    --bg:          #FFFFFF;
    --bg-soft:     #F8FAFC;
    --border:      #E2E8F0;
    --text:        #0F172A;
    --muted:       #64748B;
    --radius:      12px;
    --radius-sm:   8px;
    --radius-lg:   20px;
    --shadow:      0 2px 16px rgba(10,37,64,.08);
    --shadow-lg:   0 8px 40px rgba(10,37,64,.14);
    --transition:  all .25s ease;
    --font:        'Sora', sans-serif;
    --max-w:       1200px;
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy);
    margin: 0 0 .75em;
}
h1 { font-size: clamp(2rem,5vw,3.2rem); }
h2 { font-size: clamp(1.6rem,4vw,2.4rem); }
h3 { font-size: clamp(1.2rem,3vw,1.7rem); }
h4 { font-size: clamp(1rem,2vw,1.25rem); }

p  { margin: 0 0 1em; color: var(--muted); }
a  { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
ul { padding: 0; margin: 0; list-style: none; }

/* Override Hello Elementor */
.page-content,
.entry-content { padding-top: 0 !important; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.bdt-label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .4rem;
}
.bdt-eyebrow { /* same as label */
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gold);
}
.bdt-section-title {
    font-size: clamp(1.8rem,4vw,2.6rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .5rem;
}
.bdt-section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 560px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.bdt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--font);
    font-weight: 600;
    font-size: .95rem;
    padding: .8rem 2rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}
.bdt-btn-primary {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}
.bdt-btn-primary:hover {
    background: var(--navy-2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10,37,64,.25);
}
.bdt-btn-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.bdt-btn-gold:hover {
    background: #b8943e;
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,.3);
}
.bdt-btn-wa {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    font-size: 1rem;
    padding: .9rem 2rem;
    width: 100%;
}
.bdt-btn-wa:hover {
    background: #1da855;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37,211,102,.35);
}
.bdt-btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--border);
}
.bdt-btn-outline:hover {
    border-color: var(--navy);
    background: var(--navy-light);
}
.bdt-btn-sm { padding: .5rem 1.2rem; font-size: .85rem; }
.bdt-btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ============================================================
   BADGE / TAG
   ============================================================ */
.bdt-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .3rem .85rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    font-family: var(--font);
}
.bdt-badge-navy  { background: var(--navy-light); color: var(--navy); }
.bdt-badge-gold  { background: var(--gold-light); color: #8a6c1e; }
.bdt-badge-green { background: #D1FAE5; color: #065F46; }

/* ============================================================
   SERVICE CARDS  [bdt_services_grid]
   ============================================================ */
.bdt-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.bdt-service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.bdt-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    opacity: 0;
    transition: var(--transition);
}
.bdt-service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.bdt-service-card:hover::before { opacity: 1; }

.bdt-sc-icon {
    width: 56px; height: 56px;
    background: var(--navy-light);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
}
.bdt-sc-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}
.bdt-sc-desc {
    font-size: .9rem;
    color: var(--muted);
    flex-grow: 1;
    margin: 0;
}
.bdt-sc-price {
    font-size: .85rem;
    font-weight: 600;
    color: var(--muted);
}
.bdt-sc-price strong {
    font-size: 1.1rem;
    color: var(--navy);
}

/* ============================================================
   STATS ROW  [bdt_stats]
   ============================================================ */
.bdt-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem;
    background: var(--navy);
    border-radius: var(--radius-lg);
    color: #fff;
}
.bdt-stat-item { text-align: center; }
.bdt-stat-number {
    font-size: clamp(2rem,4vw,2.8rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: .3rem;
}
.bdt-stat-label {
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    font-weight: 400;
}

/* ============================================================
   WHY US  [bdt_why_us]
   ============================================================ */
.bdt-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.bdt-why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.bdt-why-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--gold-light);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.bdt-why-text h4 { font-size: .95rem; margin-bottom: .25rem; color: var(--navy); }
.bdt-why-text p  { font-size: .875rem; margin: 0; color: var(--muted); }

/* ============================================================
   BOOKING FORM WRAPPER
   ============================================================ */
.bdt-booking-wrap {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: flex-start;
}

/* ---- FORM LEFT ---- */
.bdt-form-left {}

.bdt-form-section {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    margin-bottom: 1.25rem;
}
.bdt-form-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: .5rem;
}
.bdt-form-section-title span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    font-size: .8rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Field */
.bdt-field {
    margin-bottom: 1.25rem;
}
.bdt-field:last-child { margin-bottom: 0; }

.bdt-field label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .4rem;
}
.bdt-field label .req { color: var(--red); margin-left: 2px; }

.bdt-field input,
.bdt-field select,
.bdt-field textarea {
    width: 100%;
    padding: .7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: .9rem;
    color: var(--text);
    background: var(--bg-soft);
    outline: none;
    transition: var(--transition);
    appearance: none;
}
.bdt-field input:focus,
.bdt-field select:focus,
.bdt-field textarea:focus {
    border-color: var(--navy);
    background: #fff;
    box-shadow: 0 0 0 3px var(--navy-light);
}
.bdt-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 2.5rem;
}
.bdt-field textarea { resize: vertical; min-height: 100px; }

/* Field grid */
.bdt-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.bdt-field-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

/* ---- COUNTER ---- */
.bdt-counter-group {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.bdt-counter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.1rem;
    background: var(--bg-soft);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
}
.bdt-counter-info {}
.bdt-counter-info strong {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    color: var(--navy);
}
.bdt-counter-info em {
    font-style: normal;
    font-size: .8rem;
    color: var(--muted);
}
.bdt-counter {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.bdt-counter__btn {
    width: 32px; height: 32px;
    border: 1.5px solid var(--border);
    background: #fff;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    transition: var(--transition);
    user-select: none;
}
.bdt-counter__btn:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
}
.bdt-counter__btn:disabled {
    opacity: .35;
    cursor: not-allowed;
}
.bdt-counter__val {
    font-size: 1rem;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
    color: var(--navy);
}

/* ---- ADD-ONS ---- */
.bdt-addon-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.bdt-addon-card {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}
.bdt-addon-card.is-checked {
    border-color: var(--navy);
    box-shadow: 0 0 0 2px var(--navy-light);
}
.bdt-addon-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .9rem 1.1rem;
    cursor: pointer;
    background: var(--bg-soft);
}
.bdt-addon-header input[type="checkbox"],
.bdt-addon-header input[type="radio"] {
    width: 18px; height: 18px;
    accent-color: var(--navy);
    cursor: pointer;
    flex-shrink: 0;
}
.bdt-addon-label {
    flex: 1;
}
.bdt-addon-label strong {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    color: var(--navy);
}
.bdt-addon-label span {
    font-size: .8rem;
    color: var(--muted);
}
.bdt-addon-price {
    font-size: .9rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}
.bdt-addon-body {
    padding: .75rem 1.1rem;
    border-top: 1px solid var(--border);
    font-size: .85rem;
    color: var(--muted);
    background: #fff;
    display: none;
}
.bdt-addon-card.is-checked .bdt-addon-body { display: block; }

/* SIM select inside addon */
.bdt-addon-body select,
.bdt-addon-body input {
    margin-top: .5rem;
    padding: .55rem .8rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: .85rem;
    outline: none;
    background: var(--bg-soft);
    width: 100%;
}
.bdt-addon-body select:focus,
.bdt-addon-body input:focus {
    border-color: var(--navy);
    background: #fff;
}

/* ---- FILE UPLOAD ---- */
.bdt-upload-label {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .65rem 1rem;
    border: 1.5px dashed var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    background: var(--bg-soft);
    font-size: .85rem;
    color: var(--muted);
    transition: var(--transition);
}
.bdt-upload-label:hover {
    border-color: var(--navy);
    color: var(--navy);
}
.bdt-upload-label input { display: none; }

/* ---- PASSENGER DETAIL ROWS (dynamic) ---- */
.bdt-pax-details { display: none; margin-top: 1rem; }
.bdt-pax-details.visible { display: block; }
.bdt-pax-block {
    padding: 1rem;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: .75rem;
}
.bdt-pax-block-title {
    font-size: .82rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .75rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ---- PRICE SUMMARY (right sticky) ---- */
.bdt-price-summary {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    position: sticky;
    top: 100px;
    color: #fff;
}
.bdt-ps-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.bdt-ps-rows {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    min-height: 80px;
    margin-bottom: 1.25rem;
}
.bdt-ps-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .5rem;
    font-size: .875rem;
}
.bdt-ps-row-label { color: rgba(255,255,255,.7); flex: 1; }
.bdt-ps-row-amount { color: #fff; font-weight: 600; white-space: nowrap; }
.bdt-ps-empty {
    font-size: .85rem;
    color: rgba(255,255,255,.4);
    font-style: italic;
    text-align: center;
    padding: 1rem 0;
}

.bdt-ps-divider {
    height: 1px;
    background: rgba(255,255,255,.12);
    margin: 1rem 0;
}
.bdt-ps-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}
.bdt-ps-total-label {
    font-size: .9rem;
    color: rgba(255,255,255,.8);
    font-weight: 600;
}
.bdt-ps-total-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
}

.bdt-ps-note {
    font-size: .78rem;
    color: rgba(255,255,255,.45);
    text-align: center;
    margin-top: .75rem;
}

/* Visa type toggle inside price summary */
.bdt-visa-selector {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1rem;
}
.bdt-visa-option {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .65rem .9rem;
    border: 1.5px solid rgba(255,255,255,.15);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}
.bdt-visa-option:hover,
.bdt-visa-option.active {
    border-color: var(--gold);
    background: rgba(201,168,76,.12);
}
.bdt-visa-option input { accent-color: var(--gold); }
.bdt-visa-option-text {
    flex: 1;
    font-size: .85rem;
}
.bdt-visa-option-text strong { display: block; color: #fff; font-weight: 600; }
.bdt-visa-option-text span  { color: rgba(255,255,255,.55); font-size: .78rem; }
.bdt-visa-option-price {
    font-size: .9rem;
    font-weight: 700;
    color: var(--gold);
}

/* ============================================================
   FAQ  [bdt_faq]
   ============================================================ */
.bdt-faq-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.bdt-faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.bdt-faq-item.open {
    border-color: var(--navy);
    box-shadow: 0 4px 16px rgba(10,37,64,.08);
}
.bdt-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    cursor: pointer;
    background: var(--bg);
    font-size: .95rem;
    font-weight: 600;
    color: var(--navy);
    user-select: none;
    transition: var(--transition);
}
.bdt-faq-question:hover { background: var(--bg-soft); }
.bdt-faq-item.open .bdt-faq-question { background: var(--navy); color: #fff; }

.bdt-faq-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--muted);
    transition: var(--transition);
}
.bdt-faq-item.open .bdt-faq-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: rotate(45deg);
}

.bdt-faq-answer {
    display: none;
    padding: 1.1rem 1.4rem;
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.75;
    background: #fff;
    border-top: 1px solid var(--border);
}
.bdt-faq-item.open .bdt-faq-answer { display: block; }

/* ============================================================
   PRICE TABLE  [bdt_price_table service="..."]
   ============================================================ */
.bdt-price-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.bdt-price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}
.bdt-price-table thead th {
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: .9rem 1.25rem;
    text-align: left;
    white-space: nowrap;
}
.bdt-price-table tbody td {
    padding: .85rem 1.25rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    vertical-align: middle;
}
.bdt-price-table tbody tr:last-child td { border-bottom: none; }
.bdt-price-table tbody tr:hover td { background: var(--bg-soft); }
.bdt-price-table .price-val {
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
}
.bdt-price-table .price-type {
    font-size: .78rem;
    color: var(--muted);
    margin-top: .15rem;
}

/* ============================================================
   PROCESS STEPS  [bdt_steps]
   ============================================================ */
.bdt-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
}
.bdt-steps::before {
    content: '';
    position: absolute;
    top: 22px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
    height: 2px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    z-index: 0;
}
.bdt-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .75rem;
    position: relative;
    z-index: 1;
}
.bdt-step-num {
    width: 44px; height: 44px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--navy);
}
.bdt-step-text h4 { font-size: .85rem; margin-bottom: .2rem; color: var(--navy); }
.bdt-step-text p  { font-size: .78rem; color: var(--muted); margin: 0; }

/* ============================================================
   NOTICE / ALERT
   ============================================================ */
.bdt-notice {
    padding: .85rem 1.1rem;
    border-radius: var(--radius-sm);
    font-size: .875rem;
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    line-height: 1.5;
}
.bdt-notice-info    { background: var(--navy-light); color: var(--navy); border-left: 3px solid var(--navy); }
.bdt-notice-success { background: #D1FAE5; color: #065F46; border-left: 3px solid var(--green); }
.bdt-notice-warn    { background: var(--gold-light); color: #7a5c00; border-left: 3px solid var(--gold); }
.bdt-notice-error   { background: #FEE2E2; color: #991B1B; border-left: 3px solid var(--red); }

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.bdt-wa-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 9999;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    transition: var(--transition);
    text-decoration: none;
}
.bdt-wa-float svg { width: 30px; height: 30px; fill: #fff; }
.bdt-wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.5); }

/* Tooltip */
.bdt-wa-float::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 110%;
    background: var(--navy);
    color: #fff;
    padding: .4rem .8rem;
    border-radius: var(--radius-sm);
    font-size: .78rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    font-family: var(--font);
}
.bdt-wa-float:hover::before { opacity: 1; }

/* ============================================================
   SECTION HELPERS (for Elementor sections)
   ============================================================ */
.bdt-section { padding: 80px 0; }
.bdt-section-sm { padding: 50px 0; }
.bdt-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}
.bdt-text-center { text-align: center; }
.bdt-text-center .bdt-section-sub { margin: 0 auto; }

/* Decorative divider */
.bdt-divider {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    border-radius: 2px;
    margin: 1rem 0 1.5rem;
}
.bdt-text-center .bdt-divider { margin: 1rem auto 1.5rem; }

/* ============================================================
   ELEMENTOR OVERRIDES
   ============================================================ */
.elementor-widget-heading .elementor-heading-title { font-family: var(--font) !important; }
.elementor-widget-button .elementor-button { font-family: var(--font) !important; font-weight: 600 !important; }
.elementor-widget-text-editor p { font-family: var(--font); }

/* ============================================================
   FORM SUCCESS / ERROR STATE
   ============================================================ */
.bdt-form-feedback {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 500;
    margin-top: 1rem;
    display: none;
}
.bdt-form-feedback.show { display: flex; align-items: center; gap: .5rem; }
.bdt-form-feedback.success { background: #D1FAE5; color: #065F46; }
.bdt-form-feedback.error   { background: #FEE2E2; color: #991B1B; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .bdt-services-grid  { grid-template-columns: repeat(2, 1fr); }
    .bdt-stats-row      { grid-template-columns: repeat(2, 1fr); }
    .bdt-booking-wrap   { grid-template-columns: 1fr; }
    .bdt-price-summary  { position: static; order: -1; }
    .bdt-steps          { grid-template-columns: repeat(2, 1fr); }
    .bdt-steps::before  { display: none; }
    .bdt-why-grid       { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .bdt-services-grid  { grid-template-columns: 1fr 1fr; }
    .bdt-stats-row      { gap: 1.5rem; padding: 2rem; }
    .bdt-field-row,
    .bdt-field-row-3    { grid-template-columns: 1fr; }
    .bdt-section        { padding: 56px 0; }
}
@media (max-width: 480px) {
    .bdt-services-grid  { grid-template-columns: 1fr; }
    .bdt-stats-row      { grid-template-columns: 1fr 1fr; }
    .bdt-why-grid       { grid-template-columns: 1fr; }
    .bdt-steps          { grid-template-columns: 1fr; }
    .bdt-wa-float       { bottom: 16px; right: 16px; }
}

/* ============================================================
   VISA OPTION CARDS (Section 4 of FT & MA forms)
   ============================================================ */
.bdt-visa-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.bdt-visa-option {
    display: block;
    cursor: pointer;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.bdt-visa-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.bdt-visa-option__body {
    padding: 1.1rem 1.1rem 1rem;
}
.bdt-visa-option__num {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: .5rem;
}
.bdt-visa-option__num--alt {
    background: var(--gold);
    color: var(--navy);
}
.bdt-visa-option__body strong {
    display: block;
    font-size: .95rem;
    color: var(--navy);
    margin-bottom: .25rem;
}
.bdt-visa-option__body p {
    font-size: .82rem;
    color: #6b7280;
    margin: 0 0 .5rem;
    line-height: 1.4;
}
.bdt-visa-option__price {
    font-size: .82rem;
    font-weight: 700;
    color: var(--gold);
}
.bdt-visa-option.is-selected {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(10,37,64,.1);
    background: #f0f4f8;
}

/* ============================================================
   SIM TABS & GRID (Section 5 of FT & MA forms)
   ============================================================ */
.bdt-optional {
    font-size: .75rem;
    font-weight: 400;
    color: #9ca3af;
    background: #f3f4f6;
    border-radius: 4px;
    padding: 1px 7px;
    margin-left: .4rem;
    vertical-align: middle;
}
.bdt-sim-tabs {
    display: flex;
    gap: .5rem;
    margin-bottom: 1rem;
}
.bdt-sim-tab {
    padding: .45rem 1.1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    color: #6b7280;
    transition: all .18s;
}
.bdt-sim-tab.is-active {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
}
.bdt-sim-panel {
    display: none;
}
.bdt-sim-panel.is-active {
    display: block;
}
.bdt-sim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: .75rem;
}
.bdt-sim-item {
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: .8rem .9rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    background: #fafafa;
    transition: border-color .15s;
}
.bdt-sim-item:hover {
    border-color: var(--navy);
}
.bdt-sim-item__info {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.bdt-sim-item__info strong {
    font-size: .95rem;
    color: var(--navy);
}
.bdt-sim-item__info span {
    font-size: .82rem;
    color: var(--gold);
    font-weight: 600;
}
/* Smaller counter for SIM grid */
.bdt-counter--sm {
    gap: 0;
}
.bdt-counter--sm .bdt-counter__btn {
    width: 28px;
    height: 28px;
    font-size: .9rem;
}
.bdt-counter--sm .bdt-counter__val {
    min-width: 28px;
    height: 28px;
    font-size: .9rem;
}

/* ============================================================
   CURRENCY CONVERSION DISPLAY
   ============================================================ */
.bdt-ps-currency {
    display: flex;
    justify-content: space-between;
    margin: .4rem 0 1rem;
    font-size: .82rem;
    color: #94a3b8;
}
.bdt-ps-currency b {
    color: #cbd5e1;
    font-weight: 600;
}

/* ============================================================
   NATIONALITY SELECT
   ============================================================ */
.bdt-field select {
    width: 100%;
    padding: .65rem .85rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-family: var(--font);
    font-size: .9rem;
    background: #fff;
    color: var(--navy);
    appearance: auto;
    cursor: pointer;
    transition: border-color .15s, box-shadow .15s;
}
.bdt-field select:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(10,37,64,.1);
}

/* ============================================================
   HOTEL TRANSFER — CATEGORY CARDS GRID
   ============================================================ */
.bdt-transport-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 2.8rem;
}

.bdt-transport-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.2rem 1.3rem;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s, transform .15s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    position: relative;
}
.bdt-transport-card:hover {
    border-color: var(--navy);
    box-shadow: 0 4px 20px rgba(10,37,64,.12);
    transform: translateY(-3px);
}
.bdt-transport-card.is-active {
    border-color: var(--gold);
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(201,168,76,.15), 0 4px 20px rgba(10,37,64,.1);
    background: linear-gradient(160deg, #fffdf5 0%, #fff 100%);
}
.bdt-transport-card.is-active::after {
    content: '✓';
    position: absolute;
    top: .55rem;
    right: .65rem;
    width: 22px;
    height: 22px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    font-size: .75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.bdt-transport-card__icon {
    font-size: 2.4rem;
    margin-bottom: .25rem;
    line-height: 1;
}
.bdt-transport-card__title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    line-height: 1.2;
}
.bdt-transport-card__sub {
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: .3rem;
}
.bdt-transport-card__features {
    list-style: none;
    padding: 0;
    margin: .5rem 0;
    text-align: left;
    font-size: .78rem;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: .2rem;
    width: 100%;
}
.bdt-transport-card__features li {
    padding-left: 1.1em;
    position: relative;
}
.bdt-transport-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
    font-size: .75rem;
}
.bdt-transport-card__price {
    font-weight: 700;
    font-size: .92rem;
    color: var(--gold);
    margin-top: .6rem;
}
.bdt-transport-card__btn {
    display: inline-block;
    margin-top: .8rem;
    background: var(--navy);
    color: #fff;
    border: none;
    padding: .45rem 1.3rem;
    border-radius: 6px;
    font-size: .82rem;
    font-family: var(--font);
    font-weight: 600;
    pointer-events: none; /* card div handles click */
    transition: background .15s;
}
.bdt-transport-card:hover .bdt-transport-card__btn,
.bdt-transport-card.is-active .bdt-transport-card__btn {
    background: var(--gold);
}

@media (max-width: 860px) {
    .bdt-transport-cards { grid-template-columns: repeat(3, 1fr); gap: .9rem; }
    .bdt-transport-card  { padding: 1.1rem .9rem 1rem; }
}
@media (max-width: 600px) {
    .bdt-transport-cards { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
    .bdt-transport-card__icon { font-size: 2rem; }
    .bdt-transport-card__features { display: none; } /* hide on mobile for compactness */
}

/* ============================================================
   POLICE ESCORT — SERVICE INFO BOX
   ============================================================ */
.bdt-escort-service-box {
    background: linear-gradient(135deg, #0a2540 0%, #163a5f 100%);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 1.1rem 1.2rem;
    margin-bottom: .5rem;
}
.bdt-escort-service-box__row {
    display: flex;
    align-items: center;
    gap: .85rem;
}
.bdt-escort-service-box__icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}
.bdt-escort-service-box__row div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .4rem .9rem;
}
.bdt-escort-service-box__row strong {
    font-size: .95rem;
    font-weight: 700;
}
.bdt-escort-service-box__row span {
    font-size: .95rem;
    font-weight: 700;
    color: var(--gold);
}
.bdt-escort-service-box__note {
    font-size: .8rem;
    color: rgba(255,255,255,.7);
    margin: .6rem 0 0;
    line-height: 1.45;
}

/* ============================================================
   VISA FORM — REPEATABLE APPLICANT BLOCK
   ============================================================ */
.bdt-pax-block {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.1rem 1.2rem 1rem;
    margin-bottom: .9rem;
    background: var(--bg-soft);
    transition: border-color .2s;
}
.bdt-pax-block:first-of-type {
    border-color: var(--navy);
}
.bdt-pax-block__title {
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: .9rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border);
}

/* ============================================================
   VISA FORM — SKIP BANK STATEMENT BOX
   ============================================================ */
.bdt-bank-skip {
    margin-top: .9rem;
    padding: 1rem 1.1rem;
    background: #fffbe6;
    border: 1.5px solid #e9c300;
    border-radius: var(--radius-sm);
}
.bdt-bank-skip__label {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    cursor: pointer;
    margin: 0;
}
.bdt-bank-skip__label input[type="checkbox"] {
    margin-top: .15rem;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--navy);
    cursor: pointer;
}
.bdt-bank-skip__body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .4rem .8rem;
}
.bdt-bank-skip__body strong {
    font-size: .9rem;
    color: var(--navy);
}
.bdt-bank-skip__fee {
    font-size: .85rem;
    font-weight: 700;
    color: #b45309;
    background: #fef3c7;
    padding: .1rem .45rem;
    border-radius: 4px;
}
.bdt-bank-skip__note {
    font-size: .8rem;
    color: var(--muted);
    margin: .55rem 0 0;
    line-height: 1.45;
}

/* ============================================================
   RESPONSIVE — SIM grid & visa options
   ============================================================ */
@media (max-width: 600px) {
    .bdt-visa-options    { grid-template-columns: 1fr; }
    .bdt-sim-grid        { grid-template-columns: 1fr 1fr; }
    .bdt-pax-block       { padding: .8rem .9rem; }
}
@media (max-width: 400px) {
    .bdt-sim-grid        { grid-template-columns: 1fr; }
}
