/* Booking Page Specific Styles */

html, body {
    background: #011e23;
    overscroll-behavior: none;
}

.booking-container,
.booking-wrapper {
    background: #f8fafb;
}

/* Show "Back to Home" on mobile in small font */
@media (max-width: 768px) {
    .header .nav-menu {
        display: flex !important;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
        width: auto;
        flex-direction: row;
    }

    .header .nav-menu .nav-link {
        font-size: 0.72rem;
        color: var(--text-dark);
        opacity: 0.7;
        padding: 0;
    }
}


/* User Info Banner */
.user-info-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    width: 100%;
}

.user-info-banner.hidden {
    display: none;
}

.user-info-banner .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.banner-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    flex: 1;
}

.banner-text i {
    font-size: 1.2rem;
}

.btn-use-saved {
    background: white;
    color: #667eea;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-use-saved:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-use-saved:active {
    transform: scale(0.98);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    max-width: 1600px;
    margin: 1rem auto 2rem auto;
    padding: 0 20px;
}

.booking-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 3rem;
}

/* Progress Bar */
.progress-section {
    margin-bottom: 3rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #024751, #ff5416);
    width: 25%;
    transition: width 0.3s ease;
}

.steps-indicator {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: nowrap;
    width: 100%;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0 0.25rem;
}

.step-indicator.active {
    opacity: 1;
}

.step-indicator span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #e5e5e5;
    border-radius: 50%;
    font-weight: bold;
    color: #666;
    transition: all 0.3s ease;
}

.step-indicator.active span {
    background: var(--primary-color);
    color: white;
}

.step-indicator p {
    font-size: 0.65rem;
    color: #666;
    margin: 0;
    text-align: center;
    line-height: 1.1;
}

.step-indicator.active p {
    color: var(--primary-color);
    font-weight: 600;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Step 1: Service Options */
.service-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-option {
    position: relative;
    cursor: pointer;
}

.service-option input[type="radio"] {
    display: none;
}

.option-content {
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-option input[type="radio"]:checked + .option-content {
    border-color: var(--accent-color);
    background: #fff5f0;
    box-shadow: 0 5px 15px rgba(255, 84, 22, 0.15);
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.option-header h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.option-header i {
    color: var(--accent-color);
}

.price {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.option-content > p {
    color: var(--text-light);
    margin: 0.5rem 0 1rem 0;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.features-list li {
    color: var(--text-light);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Step 2: Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 84, 22, 0.1);
}

.form-group.checkbox {
    margin-bottom: 1rem;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox label {
    display: flex;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
    gap: 0.5rem;
    margin: 0;
}

.form-group.checkbox input[type="checkbox"],
.checkbox-item input[type="checkbox"] {
    width: auto;
    height: auto;
    margin: 0;
    cursor: pointer;
    vertical-align: middle;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.checkbox-item {
    display: flex;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
    gap: 0.5rem;
    margin: 0;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 0.5rem;
}

.checkbox-item:hover {
    color: var(--accent-color);
}

.checkbox-group .add-on-service {
    flex-direction: row;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid #e5e5e5;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkbox-group .add-on-service input[type="checkbox"] {
    order: 2;
    width: auto;
    margin: 0;
}

.checkbox-group .add-on-service label {
    order: 1;
    margin: 0;
}

.add-on-service:hover {
    background: #f9f9f9;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

small {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Step 3: Schedule */
.schedule-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.date-picker-wrapper,
.time-picker-wrapper,
.frequency-wrapper {
    display: flex;
    flex-direction: column;
}

.date-picker-wrapper label,
.time-picker-wrapper label,
.frequency-wrapper label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.date-picker-wrapper input {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

.time-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.time-slot {
    position: relative;
    cursor: pointer;
}

.time-slot input[type="radio"] {
    display: none;
}

.time-slot span {
    display: block;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-weight: 500;
}

.time-slot input[type="radio"]:checked + span {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.frequency-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.frequency-option {
    position: relative;
    cursor: pointer;
}

.frequency-option input[type="radio"] {
    display: none;
}

.frequency-option span {
    display: block;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-weight: 500;
}

.frequency-option input[type="radio"]:checked + span {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* Step 4: Summary */
.booking-summary {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.booking-summary h3 {
    color: var(--primary-color);
    margin: 0 0 1rem 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--text-dark);
}

.summary-item span {
    color: var(--text-light);
}

.summary-item strong {
    color: var(--primary-color);
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1rem 0;
}

.summary-item.total {
    border-top: 2px solid var(--border-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.summary-item.total strong {
    color: var(--accent-color);
}

.contact-form-section {
    margin-top: 2rem;
}

.contact-form-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: space-between;
}

.btn-back,
.btn-next,
.btn-submit {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-back {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-back:hover {
    background: var(--light-bg);
}

.btn-next,
.btn-submit {
    background: var(--primary-color);
    color: white;
}

.btn-next:hover,
.btn-submit:hover {
    background: #033a42;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 71, 81, 0.3);
}

.btn-submit {
    background: var(--accent-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background: #e63f0f;
    box-shadow: 0 5px 15px rgba(255, 84, 22, 0.3);
}

/* Sidebar */
.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.sidebar-card h3 {
    color: var(--primary-color);
    font-size: 1rem;
    margin: 0 0 0.35rem 0;
}

.sidebar-card .sidebar-icon {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.sidebar-card .sidebar-icon i {
    color: var(--accent-color);
}

.sidebar-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.faq-card {
    background: linear-gradient(135deg, var(--primary-color), #066b7e);
    color: white;
    border-color: var(--primary-color);
}

.faq-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0.5rem 0;
}

.faq-card i {
    color: var(--accent-color);
}

.faq-card .faq-card-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.faq-card .faq-card-icon {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.faq-card h4 {
    color: white;
    margin: 0;
}

.faq-card .faq-card-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-card .faq-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.faq-card .faq-contact-item:hover {
    color: white;
}

/* Price Calculator */
.price-calculator {
    background: linear-gradient(135deg, #f0f8ff, #ffffff);
    border: 2px solid var(--primary-color);
}

.price-calculator h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 1rem;
}

#priceCalculator {
    min-height: 150px;
}

.calculator-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 0.95rem;
}

.calculator-item.small {
    font-size: 0.85rem;
    padding: 0.5rem 0;
}

.calculator-item span {
    color: #666;
}

.calculator-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

.calculator-divider {
    height: 2px;
    background: var(--accent-color);
    margin: 1rem 0;
}

.calculator-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 1.1rem;
}

.calculator-total span {
    color: var(--primary-color);
    font-weight: 600;
}

.calculator-total strong {
    color: var(--accent-color);
    font-size: 1.3rem;
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 1rem;
    overflow-y: auto;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    display: none !important;
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    margin: auto;
}

.success-modal {
    padding: 3rem 2rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.success-modal h2 {
    color: var(--primary-color);
    margin: 0 0 1rem 0;
}

.success-modal p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.success-subtitle {
    font-size: 1rem !important;
    color: var(--text-light) !important;
    margin-bottom: 2rem !important;
}

.confirmation-details {
    background: #f0f7ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 2px solid var(--primary-color);
}

.detail-item {
    text-align: center;
}

.detail-item label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cleaning-id {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.email-notification {
    background: #fff8e1;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #ffc107;
}

.notification-icon {
    font-size: 1.8rem;
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.email-notification p {
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.email-notification strong {
    color: var(--text-dark);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    margin-top: 2rem;
}

.action-buttons a {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.confirmation-details span {
    color: var(--accent-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr;
    }

    .booking-sidebar {
        flex-direction: row;
        gap: 1rem;
    }

    .sidebar-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .booking-wrapper {
        padding: 1.5rem;
    }

    .step-indicator span {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .step-indicator p {
        font-size: 0.6rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .time-options,
    .frequency-options {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-back,
    .btn-next {
        margin-left: 0;
    }

    .booking-sidebar {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    /* Container & wrapper */
    .booking-container {
        margin: 0.5rem auto 1.5rem auto;
        padding: 0 12px;
        gap: 1rem;
    }

    .booking-wrapper {
        padding: 0.85rem;
        border-radius: 10px;
    }

    /* Progress */
    .progress-section {
        margin-bottom: 1.5rem;
    }

    .progress-bar {
        margin-bottom: 1.25rem;
    }

    .step-indicator span {
        width: 32px;
        height: 32px;
        font-size: 0.82rem;
    }

    .step-indicator p {
        font-size: 0.58rem;
    }

    /* Form step headings */
    .form-step h2 {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .step-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    /* Service cards — compact horizontal mobile layout */
    .service-options {
        gap: 0.65rem;
        margin-bottom: 1.25rem;
    }

    .service-option {
        position: relative;
    }

    .option-content {
        padding: 0.85rem 1rem 0.85rem 3.5rem;
        border-radius: 10px;
        position: relative;
        min-height: 64px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Selection dot — visible inside option-content left side */
    .option-content::before {
        content: '';
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        border: 2px solid #ccc;
        border-radius: 50%;
        background: white;
        transition: all 0.2s ease;
    }

    .service-option input[type="radio"]:checked + .option-content::before {
        border-color: var(--accent-color);
        background: var(--accent-color);
        box-shadow: inset 0 0 0 3px white;
    }

    .option-header {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.2rem;
    }

    .option-header h3 {
        font-size: 0.95rem;
        flex: 1;
        line-height: 1.3;
    }

    .option-header h3 i {
        font-size: 0.85rem;
    }

    .price {
        font-size: 0.78rem;
        padding: 0.2rem 0.6rem;
        border-radius: 12px;
        flex-shrink: 0;
        background: #fff5f0;
        border: 1px solid rgba(255, 84, 22, 0.2);
    }

    /* Hide feature list on mobile — too verbose */
    .features-list {
        display: none;
    }

    .option-content > p {
        font-size: 0.8rem;
        margin: 0;
        line-height: 1.4;
        color: #888;
    }

    /* The special note lines (orange text) */
    .option-content > p[style] {
        font-size: 0.75rem !important;
        margin-top: 0.25rem !important;
    }

    /* Form inputs - 16px prevents iOS zoom */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 0.65rem 0.75rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group {
        margin-bottom: 1.1rem;
    }

    /* Schedule */
    .schedule-section {
        gap: 1.25rem;
    }

    .time-options {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .time-slot span {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .frequency-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .frequency-option span {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    /* Buttons */
    .form-actions {
        gap: 0.65rem;
        margin-top: 1.25rem;
    }

    .btn-back,
    .btn-next,
    .btn-submit {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    /* Summary step */
    .booking-summary {
        padding: 1rem;
    }

    .summary-item {
        padding: 0.5rem 0;
        font-size: 0.9rem;
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .summary-item.total {
        font-size: 1rem;
    }

    /* Contact form in step 4 */
    .contact-form-section h3 {
        font-size: 1.1rem;
    }

    /* Choice screen */
    .choice-screen {
        padding: 1.25rem 14px;
        align-items: flex-start;
        padding-top: 2rem;
    }

    .choice-screen-header {
        margin-bottom: 1.5rem;
    }

    .choice-screen-header h1 {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }

    .choice-screen-header p {
        font-size: 0.9rem;
    }

    .choice-card {
        padding: 1.5rem 1.25rem;
        border-radius: 12px;
    }

    .choice-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .choice-card h2 {
        font-size: 1.25rem;
    }

    .choice-card-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .choice-card-features {
        margin-bottom: 1.25rem;
        gap: 0.4rem;
    }

    .choice-cta-btn {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    /* ── Mobile Sidebar: Premium Redesign ── */
    .booking-sidebar {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.25rem;
    }

    /* Price breakdown */
    .booking-sidebar .price-calculator {
        border-radius: 12px;
        padding: 1.25rem;
        text-align: left;
    }

    /* Guarantee cards — visually connected group */
    .booking-sidebar > .sidebar-card:nth-child(2),
    .booking-sidebar > .sidebar-card:nth-child(3),
    .booking-sidebar > .sidebar-card:nth-child(4) {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.9rem;
        padding: 0.9rem 1rem;
        text-align: left;
        margin: 0;
    }

    .booking-sidebar > .sidebar-card:nth-child(2) {
        border-radius: 12px 12px 0 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        padding-top: 2.1rem;
        position: relative;
    }

    /* "Why Book With Us" label */
    .booking-sidebar > .sidebar-card:nth-child(2)::before {
        content: 'WHY BOOK WITH US';
        position: absolute;
        top: 0.65rem;
        left: 1rem;
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.07em;
        color: var(--primary-color);
        opacity: 0.45;
    }

    .booking-sidebar > .sidebar-card:nth-child(3) {
        border-radius: 0;
        border-top: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .booking-sidebar > .sidebar-card:nth-child(4) {
        border-radius: 0 0 12px 12px;
        border-top: none;
    }

    /* Icon circle */
    .booking-sidebar > .sidebar-card:not(.price-calculator):not(.faq-card) .sidebar-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 9px;
        background: linear-gradient(135deg, #e8f4f6, #d0edf2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        color: var(--primary-color);
        margin: 0;
    }

    .booking-sidebar > .sidebar-card:not(.price-calculator):not(.faq-card) .sidebar-icon i {
        color: var(--primary-color);
    }

    .booking-sidebar > .sidebar-card:not(.price-calculator):not(.faq-card) .sidebar-text h3 {
        font-size: 0.82rem;
        font-weight: 700;
        color: var(--primary-color);
        margin: 0 0 0.1rem;
    }

    .booking-sidebar > .sidebar-card:not(.price-calculator):not(.faq-card) .sidebar-text p {
        font-size: 0.72rem;
        color: #888;
        margin: 0;
        line-height: 1.4;
    }

    /* Need Help card — teal branded banner */
    .booking-sidebar .faq-card {
        border-radius: 12px;
        padding: 1.1rem 1.15rem;
        text-align: left;
        border-color: transparent;
    }

    .booking-sidebar .faq-card .faq-card-header {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        margin-bottom: 0.85rem;
    }

    .booking-sidebar .faq-card .faq-card-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        background: rgba(255, 84, 22, 0.25);
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.82rem;
        color: #ffb097;
    }

    .booking-sidebar .faq-card h4 {
        font-size: 0.88rem;
        font-weight: 700;
        color: white;
        margin: 0;
    }

    .booking-sidebar .faq-card .faq-card-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.45rem;
    }

    .booking-sidebar .faq-card .faq-contact-item {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        background: rgba(255, 255, 255, 0.13);
        border-radius: 8px;
        padding: 0.55rem 0.8rem;
        text-decoration: none;
        color: white;
        font-size: 0.77rem;
        font-weight: 500;
        transition: background 0.2s ease;
    }

    .booking-sidebar .faq-card .faq-contact-item:hover {
        background: rgba(255, 255, 255, 0.22);
    }

    .booking-sidebar .faq-card .faq-contact-item i {
        color: #ffb097;
        font-size: 0.78rem;
        width: 13px;
        text-align: center;
        flex-shrink: 0;
    }
}

/* ====================================================
   CHOICE SCREEN — Premium Dark Glassmorphism
   ==================================================== */

.choice-screen {
    position: relative;
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, #011e23 0%, #024751 50%, #012830 100%);
    overflow: hidden;
    animation: fadeIn 0.4s ease;
}

.choice-screen.hiding {
    animation: choiceSlideUp 0.45s ease forwards;
}

@keyframes choiceSlideUp {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-40px); }
}

/* Particle canvas */
.choice-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.55;
}

/* Shimmer */
.choice-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.04) 50%, transparent 70%);
    animation: ctaShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

/* Ambient orbs */
.choice-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}
.choice-orb-a {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(11,201,208,0.16), transparent 70%);
    top: -80px; right: -60px;
    animation: ctaOrbFloat 9s ease-in-out infinite;
}
.choice-orb-b {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,84,22,0.1), transparent 70%);
    bottom: -60px; left: -40px;
    animation: ctaOrbFloat 11s ease-in-out infinite reverse;
}
.choice-orb-c {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(11,201,208,0.08), transparent 70%);
    top: 50%; left: 8%;
    animation: ctaOrbFloat 13s ease-in-out infinite;
}

/* Inner wrapper */
.choice-screen-inner {
    position: relative;
    z-index: 10;
    max-width: 860px;
    width: 100%;
    text-align: center;
}

/* Header */
.choice-screen-header {
    margin-bottom: 2.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.choice-screen-header h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.7rem 0;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.choice-screen-header p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

/* Cards row */
.choice-cards {
    display: flex;
    align-items: stretch;
    gap: 0;
    justify-content: center;
}

/* Individual card — glassmorphism */
.choice-card {
    position: relative;
    background: rgba(2, 71, 81, 0.35);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 24px;
    padding: 2.8rem 2.2rem;
    flex: 1;
    max-width: 360px;
    text-align: center;
    overflow: visible;
    transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);

    opacity: 0;
    transform: translateY(32px);
    animation: choiceCardIn 0.7s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}

.choice-card-gift {
    animation-delay: 0.35s !important;
}

@keyframes choiceCardIn {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

.choice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border-color: rgba(11,201,208,0.4);
}

.choice-card-gift:hover {
    border-color: rgba(255,84,22,0.45);
    box-shadow: 0 20px 60px rgba(255,84,22,0.15);
}

/* Hover glow blob inside card */
.choice-card-glow {
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11,201,208,0.15), transparent 70%);
    pointer-events: none;
    filter: blur(40px);
    transition: opacity 0.3s ease;
}
.choice-card-glow-gift {
    background: radial-gradient(circle, rgba(255,84,22,0.12), transparent 70%);
}

/* Badge */
.choice-card-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff5416;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.3px;
    z-index: 20;
    box-shadow: 0 4px 20px rgba(255,84,22,0.55), 0 0 0 2px rgba(255,84,22,0.2);
}

/* Icon circle */
.choice-card-icon {
    width: 72px; height: 72px;
    background: rgba(11,201,208,0.15);
    border: 1px solid rgba(11,201,208,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.4rem auto;
    font-size: 1.7rem;
    color: #7dd8dc;
    transition: background 0.25s ease;
}

.choice-card-icon-gift {
    background: rgba(255,84,22,0.15);
    border-color: rgba(255,84,22,0.3);
    color: #ff8a60;
}

.choice-card:hover .choice-card-icon { background: rgba(11,201,208,0.22); }
.choice-card-gift:hover .choice-card-icon { background: rgba(255,84,22,0.22); }

/* Card text */
.choice-card h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.4rem 0;
}

.choice-card-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.6rem;
}

/* Feature list */
.choice-card-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0;
}

.choice-card-features li {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.choice-card-features li i {
    color: #7dd8dc;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.choice-card-gift .choice-card-features li i {
    color: #ff8a60;
}

/* CTA buttons */
.choice-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.88rem 2rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.28s cubic-bezier(0.22,1,0.36,1);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.choice-cta-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,201,208,0.15) 0%, transparent 60%);
    border-radius: inherit;
    pointer-events: none;
}

.choice-cta-btn:hover {
    background: rgba(11,201,208,0.2);
    border-color: rgba(11,201,208,0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(11,201,208,0.2);
}

.choice-cta-gift {
    background: rgba(255,84,22,0.18);
    border-color: rgba(255,84,22,0.4);
}

.choice-cta-gift::after {
    background: linear-gradient(135deg, rgba(255,84,22,0.15) 0%, transparent 60%);
}

.choice-cta-gift:hover {
    background: rgba(255,84,22,0.3);
    border-color: rgba(255,84,22,0.7);
    box-shadow: 0 8px 28px rgba(255,84,22,0.25);
}

/* Divider */
.choice-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    flex-shrink: 0;
}

.choice-divider span {
    font-family: 'DM Sans', sans-serif;
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

/* Responsive */
@media (max-width: 768px) {
    .choice-screen-header h1 { font-size: 2.2rem; }

    .choice-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .choice-card {
        max-width: 100%;
        width: 100%;
    }

    .choice-divider { padding: 0; }
    .choice-divider span { width: 36px; height: 36px; }
}

@media (max-width: 480px) {
    .choice-screen-header h1 { font-size: 1.9rem; }
    .choice-card { padding: 2.2rem 1.6rem; }
}

/* ====================================================
   RECIPIENT INFO SECTION (Book for Someone)
   ==================================================== */

.recipient-info-section {
    background: linear-gradient(135deg, #fff8f5, #fff0eb);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.recipient-section-heading {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recipient-section-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ====================================================
   PROFILE COMPLETENESS TOAST
   ==================================================== */

.profile-incomplete-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #fff;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 480px;
    width: 90%;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.profile-incomplete-toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.profile-incomplete-toast .toast-icon {
    font-size: 1.3rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.profile-incomplete-toast .toast-message {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

.profile-incomplete-toast .toast-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
    white-space: nowrap;
}

.profile-incomplete-toast .toast-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 1rem;
    padding: 0;
    flex-shrink: 0;
}

/* ====================================================
   PETS TOGGLE
   ================================================== */

.pet-toggle {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.pet-option {
    flex: 1;
    cursor: pointer;
}

.pet-option input[type="radio"] {
    display: none;
}

.pet-label {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.4rem;
    padding: 0.75rem 0.75rem;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #666;
    background: white;
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.pet-label i {
    font-size: 0.82rem;
    flex-shrink: 0;
}

.pet-option input[type="radio"]:checked + .pet-label {
    border-color: #024751;
    background: #f0f8f9;
    color: #024751;
}

.pet-option:hover .pet-label {
    border-color: #aac8cc;
    color: #024751;
}

/* ====================================================
   TOGGLE CHIP (multi-select: add-ons & areas)
   ================================================== */

.toggle-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.75rem;
}

.toggle-chip {
    cursor: pointer;
}

.toggle-chip input[type="checkbox"] {
    display: none;
}

.chip-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #666;
    background: white;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.chip-label i {
    font-size: 0.78rem;
    flex-shrink: 0;
}

.toggle-chip input[type="checkbox"]:checked + .chip-label {
    border-color: #024751;
    background: #f0f8f9;
    color: #024751;
}

.toggle-chip:hover .chip-label {
    border-color: #aac8cc;
    color: #024751;
}

