/* Build My Dive Holiday — Booking Calculator Styles */

/* ===========================
   Booking page layout
   =========================== */

.booking-page-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0a2a4a 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
}

.booking-page-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.booking-page-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.booking-progress {
    margin-top: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.booking-progress-step {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.booking-progress-step.is-active {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.booking-progress-step.is-complete {
    color: #dff2ff;
    border-color: rgba(223, 242, 255, 0.45);
}

.booking-progress-sep {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.62);
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
    padding: 2.5rem 0 4rem;
}

@media (max-width: 900px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Form sections
   =========================== */

.booking-form-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
}

.form-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-title .step-badge {
    background: linear-gradient(135deg, var(--primary-blue), #0052a3);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wizard-step {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.wizard-step.is-locked {
    opacity: 0.64;
}

.wizard-step-header {
    margin: 0;
}

.wizard-step-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border: 0;
    background: transparent;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font: inherit;
}

.wizard-step-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.wizard-step-status {
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.wizard-step-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.wizard-step.is-expanded .wizard-step-content {
    border-top: 1px solid var(--border-light);
}

.wizard-step-body {
    padding: 1rem 1.25rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.wizard-step[data-step="experiences"] .form-section,
.wizard-step[data-step="package"] .form-section:nth-of-type(2) {
    border: 1px solid var(--border-light);
    box-shadow: none;
    padding: 1rem;
    border-radius: 14px;
}

.wizard-step[data-step="package"] .form-section:first-of-type .form-section-title,
.wizard-step[data-step="dates"] .form-section-title,
.wizard-step[data-step="accommodation"] .form-section-title,
.wizard-step[data-step="meals"] .form-section-title,
.wizard-step[data-step="transfer"] .form-section-title,
.wizard-step[data-step="contact"] .form-section-title,
.wizard-step[data-step="experiences"] .form-section:first-of-type .form-section-title {
    display: none;
}

.wizard-step[data-step="package"] .form-section:first-of-type,
.wizard-step[data-step="dates"] .form-section,
.wizard-step[data-step="accommodation"] .form-section,
.wizard-step[data-step="meals"] .form-section,
.wizard-step[data-step="transfer"] .form-section,
.wizard-step[data-step="contact"] .form-section {
    border: 0;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

.wizard-step[data-step="experiences"] .form-section-title .step-badge,
.wizard-step[data-step="package"] .form-section:nth-of-type(2) .form-section-title .step-badge {
    display: none;
}

.wizard-step[data-step="contact"] .contact-details-section {
    padding: 0;
}

.transfer-step-summary {
    margin-top: 0.8rem;
    padding: 0.65rem 0.8rem;
    border: 1px solid #d6e6f8;
    border-radius: 12px;
    background: #f6faff;
    color: var(--text-dark);
    font-size: 0.84rem;
    line-height: 1.45;
}

/* ===========================
   Radio option cards
   =========================== */

.option-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.form-section fieldset {
    border: 0;
    margin: 0;
    padding: 0;
    min-inline-size: 0;
}

.option-card-label {
    position: relative;
    cursor: pointer;
}

.option-card-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-card-body {
    display: block;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.2s ease;
    background: var(--light-bg);
}

.option-card-label input[type="radio"]:checked + .option-card-body {
    border-color: var(--primary-blue);
    background: #eef5ff;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

.option-card-label:hover .option-card-body {
    border-color: #aac6e8;
    background: #f4f9ff;
}

.option-card-name {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.option-card-detail {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

.option-card-price {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 0.3rem;
}

.package-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 1rem;
    margin-bottom: 0.45rem;
}

.package-card {
    display: block;
    height: 100%;
}

.package-card .option-card-body {
    position: relative;
    border-radius: 18px;
    background: white;
    border-color: #d7e5f4;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.package-card .option-card-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.package-card .option-card-detail {
    font-size: 0.94rem;
    margin-bottom: 18px;
}

.package-card .option-card-price {
    margin-top: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.package-card:hover .option-card-body {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.package-card input[type="radio"]:checked + .option-card-body {
    border-color: var(--primary-blue);
    background: #f3f8ff;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.18), 0 12px 24px rgba(0, 102, 204, 0.14);
}

.accommodation-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 0;
}

.accommodation-cards-grid .option-card-label {
    display: block;
    height: 100%;
}

.accommodation-cards-grid .option-card-body {
    border-radius: 18px;
    background: white;
    border-color: #d7e5f4;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    min-height: 158px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.accommodation-cards-grid .option-card-name {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.accommodation-cards-grid .option-card-detail {
    font-size: 0.86rem;
    margin-bottom: 0.55rem;
}

.accommodation-cards-grid .option-card-price {
    margin-top: 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.accommodation-cards-grid .option-card-label:hover .option-card-body {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.accommodation-cards-grid .option-card-label input[type="radio"]:checked + .option-card-body {
    border-color: var(--primary-blue);
    background: #f3f8ff;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.16), 0 12px 24px rgba(0, 102, 204, 0.12);
}

@media (min-width: 768px) {
    .accommodation-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .accommodation-cards-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.package-card:focus-within .option-card-body {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
}

.package-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: white;
    background: var(--primary-blue);
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
}

.package-card-custom .option-card-body {
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 24px 20px;
}

.package-custom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.package-custom-icon {
    font-size: 1.4rem;
    line-height: 1;
    margin-bottom: 8px;
}

.package-itinerary-text {
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
}

.package-customize-btn {
    margin-top: 0;
    border: 1px solid #c7dbf1;
    background: #f5f9ff;
    color: var(--primary-blue);
    border-radius: 999px;
    padding: 0.38rem 0.82rem;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}

.custom-package-controls {
    margin-top: 0.5rem;
    padding: 1.15rem;
    border: 1px solid #d9e7f6;
    border-radius: 18px;
    background: white;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.custom-package-controls.is-open {
    max-height: 360px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.custom-package-controls-header {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.55rem;
}

.custom-package-intro {
    margin: 0 0 0.9rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-light);
}

.custom-stepper .counter-input {
    width: 64px;
}

.custom-package-max {
    margin: 0.55rem 0 0;
    font-size: 0.82rem;
    color: var(--text-light);
}

.custom-package-helper {
    margin: 0.25rem 0 0;
    font-size: 0.8rem;
    color: var(--primary-blue);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.custom-package-helper.is-visible {
    opacity: 1;
}

.custom-package-controls.is-inline-mobile {
    grid-column: 1 / -1;
    margin-top: 0.25rem;
}

/* ===========================
   Counter controls
   =========================== */

.counter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.counter-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.counter-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.counter-sublabel {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.counter-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: white;
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
    padding: 0;
}

.counter-btn:hover {
    background: var(--primary-blue);
    color: white;
}

.counter-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #f2f6fb;
    color: #8aa3bf;
    border-color: #bfd2e7;
}

.counter-btn:disabled:hover {
    background: #f2f6fb;
    color: #8aa3bf;
}

.counter-input {
    width: 52px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 0.35rem 0.25rem;
    color: var(--text-dark);
}

.counter-input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* ===========================
   Date range inputs
   =========================== */

.date-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.travel-date-input {
    width: 100%;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 0.7rem 0.8rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: white;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.travel-date-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.14);
}

.travel-date-input.is-invalid {
    border-color: #d93025;
    box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.12);
}

.travel-info-box {
    margin-top: 0.7rem;
    border: 1px solid #d6e6f8;
    background: #f6faff;
    border-radius: 12px;
    padding: 0.7rem 0.85rem;
    font-size: 0.84rem;
    color: var(--text-dark);
    line-height: 1.45;
}

.travel-info-box p {
    margin: 0;
}

.travel-validation-message {
    min-height: 1.15rem;
    margin: 0.55rem 0 0;
    font-size: 0.82rem;
    color: #b3261e;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.field-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.field-group input,
.field-group select,
.field-group textarea {
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: white;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.field-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* ===========================
   Contact details
   =========================== */

.contact-details-section {
    padding: 0 0 3rem;
}

.contact-details-card {
    max-width: 920px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-intro {
    margin: 0 0 0.85rem;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.45;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
    row-gap: 1.25rem;
}

.contact-grid-full {
    grid-column: 1 / -1;
}

.contact-method-group legend {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.contact-method-segmented {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #d4e4f4;
    border-radius: 14px;
    background: #f7fbff;
    padding: 4px;
    gap: 4px;
    max-width: 320px;
}

.contact-segment-option {
    position: relative;
}

.contact-segment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.contact-segment-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 10px;
    border: 1px solid #dfebf7;
    background: white;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-segment-option input[type="radio"]:checked + .contact-segment-pill {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.22);
}

.contact-segment-option input[type="radio"]:focus-visible + .contact-segment-pill {
    outline: 2px solid #8cbcff;
    outline-offset: 1px;
}

.contact-textarea-group {
    margin-top: 1.25rem;
}

#contact-special-requests {
    min-height: 114px;
}

.field-label-optional {
    font-weight: 500;
    color: var(--text-light);
}

.contact-field-hint {
    margin: 0.35rem 0 0;
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.4;
}

.contact-field-error {
    margin: 0.2rem 0 0;
    min-height: 1rem;
    color: #b3261e;
    font-size: 0.78rem;
    font-weight: 600;
}

.field-group input.is-invalid,
.field-group textarea.is-invalid {
    border-color: #d93025;
    box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.12);
}

.contact-actions {
    margin-top: 1.05rem;
    display: flex;
    justify-content: center;
}

.contact-submit-btn {
    border: none;
    background: var(--primary-blue);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.82rem 1.2rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    width: auto;
}

.contact-submit-btn:hover {
    background: #0052a3;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 102, 204, 0.22);
}

.contact-confirmation {
    margin-top: 1rem;
    border: 1px solid #d6e6f8;
    border-radius: 14px;
    background: #f6faff;
    padding: 0.9rem 1rem;
}

.contact-confirmation-message {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-confirmation-actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.contact-confirmation-actions a {
    text-decoration: none;
}

.contact-confirmation-email-note {
    margin: 0.75rem 0 0;
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ===========================
   Domestic transfer
   =========================== */

.transfer-helper-text {
    margin: 0 0 0.8rem;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.45;
}

.transfer-toggle-fieldset {
    margin: 0;
}

.transfer-segmented-control {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #d4e4f4;
    border-radius: 18px;
    background: #f7fbff;
    padding: 4px;
    gap: 4px;
    max-width: 380px;
}

.transfer-segment-option {
    position: relative;
}

.transfer-segment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.transfer-segment-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    background: white;
    border: 1px solid #e1ebf6;
    transition: all 0.2s ease;
    cursor: pointer;
}

.transfer-segment-option input[type="radio"]:checked + .transfer-segment-pill {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    box-shadow: 0 8px 18px rgba(0, 102, 204, 0.24);
}

.transfer-segment-option:hover .transfer-segment-pill {
    border-color: #b8d0ea;
}

.transfer-options-flow {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-4px);
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.25s ease, transform 0.25s ease, margin-top 0.25s ease;
}

.transfer-options-flow.is-open {
    margin-top: 0.85rem;
    max-height: 520px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.transfer-arrival-label {
    font-size: 0.84rem;
    color: var(--text-light);
    margin: 0 0 0.65rem;
}

.transfer-route-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.transfer-passenger-group {
    margin-top: 0.85rem;
}

/* ===========================
   Add-ons
   =========================== */

.addons-group {
    border: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.addons-group:last-child {
    margin-bottom: 0;
}

.addons-group legend {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}

.addon-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease;
    margin-bottom: 0.25rem;
}

.addon-option:hover {
    background: var(--light-bg);
}

.addon-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-blue);
    cursor: pointer;
    flex-shrink: 0;
}

.addon-option span {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.addon-option strong {
    font-size: 0.85rem;
    color: var(--primary-blue);
    white-space: nowrap;
}

/* ===========================
   Promo code
   =========================== */

.promo-row {
    display: flex;
    gap: 0.6rem;
    align-items: stretch;
}

.promo-row input {
    flex: 1;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: inherit;
}

.promo-row input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.promo-row button {
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.1rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.promo-row button:hover {
    background: #0052a3;
}

.promo-status {
    margin-top: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    min-height: 1.2em;
}

/* ===========================
   Currency selector
   =========================== */

.currency-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.currency-row label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    white-space: nowrap;
}

.currency-row select {
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: white;
    cursor: pointer;
    font-family: inherit;
}

.currency-row select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* ===========================
   Summary panel (sticky)
   =========================== */

.summary-col {
    position: static;
}

.summary-panel {
    background: white;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
    height: auto;
    max-height: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.summary-panel-header {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.summary-currency-badge {
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--light-bg);
    color: var(--primary-blue);
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    border: 1px solid #d0e4f7;
}

.summary-selections {
    margin-bottom: 1rem;
}

.summary-metadata-line {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.8rem;
    flex-shrink: 0;
}

.summary-panel-body {
    min-height: 0;
    flex: initial;
    overflow-y: visible;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-right: 0;
}

.summary-panel-body::-webkit-scrollbar {
    width: 6px;
}

.summary-panel-body::-webkit-scrollbar-track {
    background: transparent;
}

.summary-panel-body::-webkit-scrollbar-thumb {
    background: #c7d6e6;
    border-radius: 999px;
}

.summary-panel-body {
    scrollbar-width: thin;
    scrollbar-color: #c7d6e6 transparent;
}

@media (min-width: 1201px) {
    .plan-holiday-page .container {
        max-width: 1400px;
        padding: 0 24px;
    }

    .plan-holiday-page .navbar-container {
        height: 72px;
        padding: 0 24px;
    }

    .plan-holiday-page .navbar-brand {
        margin-right: 2rem;
    }

    .plan-holiday-page .navbar-menu {
        gap: 1rem;
    }

    .plan-holiday-page .booking-page-hero {
        min-height: 88px;
        padding: 24px 0;
    }

    .plan-holiday-page .booking-page-hero h1 {
        font-size: 36px;
        margin-bottom: 4px;
    }

    .plan-holiday-page .booking-page-hero p {
        font-size: 18px;
        line-height: 1.35;
    }

    .plan-holiday-page .booking-progress {
        margin-top: 0.45rem;
    }

    .plan-holiday-page .booking-layout {
        grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
        gap: 20px;
        padding: 10px 0 0;
        align-items: start;
        height: auto;
        overflow: visible;
    }

    .plan-holiday-page .booking-form-col {
        gap: 20px;
        min-height: auto;
        height: auto;
        overflow-y: visible;
        overflow-x: visible;
        padding-right: 0;
    }

    .plan-holiday-page .summary-col {
        position: sticky;
        top: 100px;
        width: 100%;
        max-width: 360px;
        height: auto;
        min-height: auto;
        justify-self: end;
        align-self: start;
    }

    .plan-holiday-page .summary-panel {
        height: auto;
        max-height: calc(100vh - 120px);
    }

    .plan-holiday-page .summary-panel-body {
        flex: 1;
        overflow-y: auto;
        padding-right: 0.35rem;
    }

    .plan-holiday-page .form-section {
        padding: 24px;
        border-radius: 18px;
    }

    .plan-holiday-page .form-section-title {
        margin-bottom: 16px;
    }

    .plan-holiday-page .field-group label,
    .plan-holiday-page .contact-method-group legend,
    .plan-holiday-page .currency-row label {
        margin-bottom: 4px;
    }

    .plan-holiday-page .option-cards,
    .plan-holiday-page .date-fields,
    .plan-holiday-page .contact-grid,
    .plan-holiday-page .promo-row {
        gap: 16px;
    }

    .plan-holiday-page .package-cards-grid {
        row-gap: 16px;
        column-gap: 16px;
    }

    .plan-holiday-page .package-card .option-card-body {
        min-height: 164px;
        padding: 16px 18px;
    }

    .plan-holiday-page .package-card .option-card-name {
        margin-bottom: 6px;
    }

    .plan-holiday-page .package-card .option-card-detail {
        margin-bottom: 6px;
    }

    .plan-holiday-page .wizard-step-header {
        position: sticky;
        top: 0;
        background: white;
        z-index: 2;
    }

    .plan-holiday-page .field-group input,
    .plan-holiday-page .field-group select,
    .plan-holiday-page .travel-date-input,
    .plan-holiday-page .promo-row input,
    .plan-holiday-page .promo-row button,
    .plan-holiday-page .contact-submit-btn,
    .plan-holiday-page .btn,
    .plan-holiday-page .btn-book-now {
        min-height: 48px;
    }

    .plan-holiday-page .contact-textarea-group {
        margin-top: 16px;
    }

    .plan-holiday-page .travel-info-box,
    .plan-holiday-page .travel-validation-message,
    .plan-holiday-page .contact-actions,
    .plan-holiday-page .contact-confirmation {
        margin-top: 16px;
    }
}

.summary-section {
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border-light);
}

.summary-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.summary-section-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-light);
    margin: 0 0 0.45rem 0;
}

.summary-compact-list,
.summary-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.summary-compact-list li {
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.45;
    padding: 0.12rem 0;
}

.summary-checklist li {
    font-size: 0.86rem;
    color: var(--text-dark);
    line-height: 1.45;
    padding: 0.16rem 0 0.16rem 1.2rem;
    position: relative;
}

.summary-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.12rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.summary-checklist li.is-empty::before {
    content: '';
}

.summary-selection-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.3rem 0;
    font-size: 0.85rem;
}

.summary-selection-label {
    color: var(--text-light);
    font-weight: 500;
}

.summary-selection-value {
    color: var(--text-dark);
    font-weight: 600;
    text-align: right;
    max-width: 60%;
}

.summary-divider {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 0.75rem 0;
}

.summary-cost-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.3rem 0;
    font-size: 0.88rem;
}

.summary-cost-label {
    color: var(--text-light);
}

.summary-cost-value {
    font-weight: 600;
    color: var(--text-dark);
}

.summary-cost-row.is-discount .summary-cost-label,
.summary-cost-row.is-discount .summary-cost-value {
    color: #16a34a;
}

.summary-cost-row.is-strong .summary-cost-label,
.summary-cost-row.is-strong .summary-cost-value {
    font-weight: 800;
    color: var(--text-dark);
}

.summary-cost-row.is-package-price .summary-cost-label,
.summary-cost-row.is-package-price .summary-cost-value {
    color: var(--primary-blue);
    font-weight: 800;
}

.summary-cost-row.is-package-price {
    font-size: 1rem;
    padding-top: 0.45rem;
}

.summary-cost-row.is-upgrade .summary-cost-value {
    color: #d97706;
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0 0.2rem;
    border-top: 2px solid var(--text-dark);
    margin-top: 0;
}

.summary-total-label {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-dark);
}

.summary-total-value {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary-blue);
}

.summary-deposit-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.82rem;
    color: var(--text-light);
    padding: 0.25rem 0;
}

.summary-nights-tier {
    display: flex;
    gap: 0.5rem;
    margin: 0.75rem 0;
    flex-wrap: wrap;
}

.summary-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    background: #eef5ff;
    color: var(--primary-blue);
    border: 1px solid #d0e4f7;
}

.summary-savings-callout {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 8px;
    padding: 0.6rem 0.75rem;
    margin: 0.75rem 0;
    font-size: 0.85rem;
    color: #166534;
    font-weight: 600;
    text-align: center;
}

.summary-accordion {
    margin-bottom: 0.85rem;
}

.summary-accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    text-align: left;
}

.summary-accordion-title {
    margin: 0;
    color: var(--text-dark);
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.9rem;
}

.summary-accordion-chevron {
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.summary-accordion-toggle[aria-expanded="true"] .summary-accordion-chevron {
    transform: rotate(180deg);
}

.summary-accordion-toggle[aria-expanded="true"] + .summary-payment-preview {
    display: none;
}

.summary-accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.2s ease, opacity 0.2s ease;
}

.summary-accordion-content.is-open {
    max-height: 560px;
    opacity: 1;
    margin-top: 0.35rem;
}

.summary-payment-preview {
    margin-top: 0.35rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 0.5rem 0.7rem;
    background: #f8fbff;
}

.summary-payment-message {
    margin-top: 0.35rem;
    border: 1px solid #d6e6f8;
    background: #f6faff;
    border-radius: 12px;
    padding: 0.6rem 0.75rem;
    color: var(--text-light);
    font-size: 0.84rem;
    line-height: 1.45;
}

.summary-payment-group {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 0.6rem 0.75rem;
    background: #fcfdff;
    margin-top: 0.55rem;
}

.summary-payment-heading {
    margin: 0 0 0.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #374151;
    font-weight: 800;
}

.summary-payment-divider {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 0.45rem 0;
}

.summary-transfer-breakdown {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0.15rem 0 0.65rem 0;
}

.whatsapp-enquiry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25d366, #1da851);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 1rem;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.whatsapp-enquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-enquiry-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ===========================
   Responsive adjustments
   =========================== */

@media (max-width: 900px) {
    .booking-page-hero h1 {
        font-size: 1.8rem;
    }

    .summary-col {
        position: static;
    }

    .option-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-submit-btn {
        width: 100%;
    }
}

@media (max-width: 680px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .option-cards {
        grid-template-columns: 1fr;
    }

    .package-cards-grid {
        grid-template-columns: 1fr;
    }

    .form-section {
        padding: 1.25rem;
    }
}
