.adb-booking-form {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0;
    background: #ffffff;
    border: 1px solid #e5eaf1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.adb-form-hero {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    background: linear-gradient(135deg, #10213f, #1f73ff);
    color: #ffffff;
}

.adb-form-kicker {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .85;
}

.adb-form-title {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.1;
    color: #ffffff;
}

.adb-form-hero p {
    margin: 0;
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
}

.adb-form-badge {
    align-self: flex-start;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .28);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
    white-space: nowrap;
}

.adb-form-section {
    margin: 0;
    padding: 28px 34px;
    border-bottom: 1px solid #eef2f7;
}

.adb-section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.adb-section-heading span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1f73ff;
    color: #ffffff;
    border-radius: 999px;
    font-weight: 900;
}

.adb-section-heading h3 {
    margin: 0;
    color: #10213f;
    font-size: 22px;
}

.adb-section-note {
    margin: -8px 0 18px;
    color: #667085;
}

.adb-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.adb-form-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.adb-form-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.adb-field {
    margin: 0;
}

.adb-field-wide {
    grid-column: span 2;
}

.adb-field label {
    display: block;
    margin-bottom: 7px;
    color: #10213f;
    font-size: 14px;
    font-weight: 800;
}

.adb-field small {
    display: block;
    margin: -3px 0 7px;
    color: #667085;
}

.adb-booking-form input,
.adb-booking-form select,
.adb-booking-form textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid #d9e2ef;
    border-radius: 12px;
    padding: 0 14px;
    font-size: 15px;
    color: #10213f;
    background: #ffffff;
    outline: none;
    box-sizing: border-box;
}

.adb-booking-form textarea {
    padding: 14px;
    min-height: 120px;
    resize: vertical;
}

.adb-booking-form input:focus,
.adb-booking-form select:focus,
.adb-booking-form textarea:focus {
    border-color: #1f73ff;
    box-shadow: 0 0 0 4px rgba(31, 115, 255, 0.12);
}

.adb-checkbox-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    border: 1px solid #d9e2ef;
    border-radius: 16px;
    background: #f8fbff;
    cursor: pointer;
}

.adb-checkbox-card input {
    width: 20px;
    min-height: 20px;
    margin-top: 2px;
}

.adb-checkbox-card strong {
    display: block;
    color: #10213f;
    margin-bottom: 4px;
}

.adb-checkbox-card small {
    color: #667085;
}

.adb-return-fields {
    margin-top: 18px;
}

.adb-vehicle-section {
    background: #f8fbff;
}

.adb-vehicle-card {
    width: 100%;
    border: 1px solid #d9e2ef;
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 14px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    text-align: left;
    cursor: pointer;
    transition: all 0.18s ease;
}

.adb-vehicle-card:hover,
.adb-vehicle-card.is-selected {
    border-color: #1f73ff;
    box-shadow: 0 0 0 4px rgba(31, 115, 255, 0.13);
    transform: translateY(-1px);
}

.adb-vehicle-card strong {
    color: #10213f;
    font-size: 21px;
}

.adb-vehicle-card p {
    margin: 8px 0 0;
    color: #667085;
    line-height: 1.45;
}

.adb-vehicle-card-price {
    text-align: right;
    min-width: 180px;
}

.adb-vehicle-card-price strong {
    display: block;
    font-size: 32px;
    color: #10213f;
}

.adb-vehicle-card-price span {
    display: block;
    margin-top: 12px;
    background: #1f73ff;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 900;
    text-align: center;
}

.adb-vehicle-card.is-selected .adb-vehicle-card-price span {
    background: #0f52c9;
}

.adb-vehicle-message {
    margin-top: 12px;
    color: #b45309;
    font-weight: 700;
}

.adb-submit-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 28px 34px;
    background: #ffffff;
}

.adb-submit-box strong {
    display: block;
    color: #10213f;
    font-size: 20px;
}

.adb-submit-box p {
    margin: 5px 0 0;
    color: #667085;
}

.adb-submit-box button,
.adb-booking-form button[type="submit"] {
    background: #1f73ff;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 16px 32px;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    min-width: 170px;
}

.adb-submit-box button:hover,
.adb-booking-form button[type="submit"]:hover {
    background: #0f52c9;
}

.adb-booking-form button[type="submit"].is-loading {
    opacity: 0.75;
    cursor: wait;
}

.adb-success-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(15, 23, 42, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.adb-success-modal.is-visible {
    display: flex;
    animation: adbFadeIn 0.2s ease-out;
}

.adb-success-box {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border-radius: 22px;
    padding: 38px 32px;
    text-align: center;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.22);
    animation: adbScaleIn 0.25s ease-out;
}

.adb-success-check {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 999px;
    background: #16a34a;
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: adbPop 0.45s ease-out;
}

.adb-success-box h2 {
    margin: 0 0 10px;
    color: #10213f;
    font-size: 26px;
}

.adb-success-box p {
    margin: 0 0 24px;
    color: #667085;
    line-height: 1.5;
}

.adb-success-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1f73ff;
    color: #ffffff;
    border-radius: 12px;
    padding: 13px 24px;
    font-weight: 700;
    text-decoration: none;
}

.adb-success-button:hover {
    background: #0f52c9;
    color: #ffffff;
}

@keyframes adbFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes adbScaleIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(12px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes adbPop {
    0% {
        transform: scale(0.4);
        opacity: 0;
    }
    70% {
        transform: scale(1.12);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 900px) {
    .adb-form-hero,
    .adb-submit-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .adb-form-grid,
    .adb-form-grid-3,
    .adb-form-grid-4 {
        grid-template-columns: 1fr;
    }

    .adb-field-wide {
        grid-column: span 1;
    }

    .adb-vehicle-card {
        grid-template-columns: 1fr;
    }

    .adb-vehicle-card-price {
        text-align: left;
        min-width: 0;
    }

    .adb-submit-box button {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .adb-form-hero,
    .adb-form-section,
    .adb-submit-box {
        padding: 22px;
    }

    .adb-form-title {
        font-size: 28px;
    }
}

.adb-price-summary {
    margin: 0;
    padding: 26px 34px;
    background: #0f172a;
    color: #ffffff;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.adb-price-summary > div {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 18px;
}

.adb-price-summary span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 8px;
}

.adb-price-summary strong {
    display: block;
    color: #ffffff;
    font-size: 20px;
}

.adb-price-summary .adb-summary-total {
    background: #1f73ff;
    border-color: #1f73ff;
}

.adb-price-summary .adb-summary-total strong {
    font-size: 30px;
}

@media (max-width: 900px) {
    .adb-price-summary {
        grid-template-columns: 1fr;
        padding: 22px;
    }
}
.adb-stopover-toggle {
    grid-column: 1 / -1;
    margin-top: 4px;
}

.adb-stopover-card {
    border: 1px solid #d9e2ef;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 16px;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.adb-stopover-card:hover {
    border-color: #1f73ff;
    box-shadow: 0 10px 24px rgba(31, 115, 255, .08);
}

.adb-stopover-card input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #1f73ff;
    flex: 0 0 auto;
}

.adb-stopover-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.adb-stopover-content strong {
    color: #10213f;
    font-size: 15px;
    font-weight: 800;
}

.adb-stopover-content small {
    color: #64748b;
    font-size: 13px;
    line-height: 1.4;
}

.adb-stopover-fields {
    grid-column: 1 / -1;
    margin-top: 12px;
    padding: 16px;
    background: #f8fbff;
    border: 1px solid #d9e2ef;
    border-radius: 16px;
}

.adb-vehicle-card.is-selected,
.adb-vehicle-card.is-selected:hover,
.adb-vehicle-card.is-selected:focus {
    border: 2px solid #1f73ff !important;
    background: #eef6ff !important;
    box-shadow: 0 12px 28px rgba(31, 115, 255, 0.18) !important;
    outline: none !important;
}

.adb-vehicle-card.is-selected .adb-vehicle-card-price strong {
    color: #1f73ff !important;
}