.booking-page {
    padding: 18px 0 52px;
}

.booking-hero {
    padding: 0 0 10px;
}

.booking-hero-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(24, 52, 89, 0.08);
    box-shadow: var(--rd-shadow);
    background:
        radial-gradient(circle at top right, rgba(245, 159, 24, 0.14), transparent 26%),
        radial-gradient(circle at left center, rgba(63, 143, 199, 0.12), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 253, 0.98));
}

.booking-hero-shell::before,
.booking-hero-shell::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.booking-hero-shell::before {
    right: -72px;
    top: -72px;
    width: 210px;
    height: 210px;
    background: radial-gradient(circle, rgba(245, 159, 24, 0.20), transparent 68%);
}

.booking-hero-shell::after {
    left: -60px;
    bottom: -70px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(63, 143, 199, 0.16), transparent 68%);
}

.booking-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 22px;
}

.booking-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(24, 52, 89, 0.08), rgba(63, 143, 199, 0.12) 58%, rgba(245, 159, 24, 0.16));
    color: var(--rd-navy);
    font-size: 0.8rem;
    font-weight: 800;
}

.booking-hero-copy h1 {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 2.85rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
    color: var(--rd-navy-strong);
    max-width: none;
}

.booking-hero-copy p {
    margin: 0;
    max-width: 56ch;
    color: var(--rd-muted);
    font-size: 0.98rem;
    line-height: 1.55;
}

.booking-hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.booking-hero-point {
    background: linear-gradient(135deg, #ffffff 0%, #f6fbff 100%);
    border: 1px solid rgba(24, 52, 89, 0.08);
    box-shadow: var(--rd-shadow-soft);
    border-radius: 18px;
    padding: 14px 14px 13px;
}

.booking-hero-point strong {
    display: block;
    margin-bottom: 4px;
    color: var(--rd-navy-strong);
    font-size: 0.96rem;
}

.booking-hero-point span {
    display: block;
    color: var(--rd-muted);
    font-size: 0.9rem;
    line-height: 1.42;
}

.booking-page-section {
    padding: 6px 0 0;
}

#expert-booking-wizard {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
    gap: 24px;
    max-width: none;
    width: 100%;
    margin: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    min-height: 0;
}

.wizard-sidebar,
.wizard-content {
    border: 1px solid rgba(24, 52, 89, 0.08);
    box-shadow: var(--rd-shadow);
}

.wizard-sidebar {
    position: sticky;
    top: 102px;
    width: auto;
    padding: 24px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(238, 244, 251, 0.98));
    gap: 22px;
}

.sidebar-header h3 {
    margin: 0 0 4px;
    font-family: "Fraunces", Georgia, serif;
    font-size: 2rem;
    line-height: 0.98;
    color: var(--rd-navy-strong);
}

.sidebar-header p {
    margin: 0;
    color: var(--rd-muted);
}

.steps-indicator {
    display: grid;
    gap: 12px;
}

.step-indicator {
    margin: 0;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(24, 52, 89, 0.06);
    opacity: 1;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.step-indicator.active {
    background: linear-gradient(135deg, rgba(237, 246, 255, 0.92), rgba(255, 242, 220, 0.92));
    border-color: rgba(63, 143, 199, 0.22);
    box-shadow: 0 14px 28px rgba(24, 52, 89, 0.08);
    transform: translateY(-1px);
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(24, 52, 89, 0.08), rgba(63, 143, 199, 0.16), rgba(245, 159, 24, 0.18));
    color: var(--rd-navy);
    flex: 0 0 auto;
}

.step-indicator.active .step-icon {
    background: linear-gradient(135deg, #183459 0%, #255489 52%, #3f8fc7 100%);
    color: #fff;
}

.step-title {
    display: block;
    font-weight: 800;
    color: var(--rd-navy-strong);
}

.step-desc {
    display: block;
    margin-top: 2px;
    color: var(--rd-muted);
    font-size: 0.9rem;
}

.sidebar-footer {
    margin-top: auto;
}

.contact-preview {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(24, 52, 89, 0.08);
    color: var(--rd-navy-strong);
    font-weight: 700;
}

.wizard-content {
    position: relative;
    padding: 28px 28px 40px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.96));
}

.step-header {
    margin-bottom: 22px;
}

.step-header h2 {
    margin: 0 0 8px;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.85rem, 3.4vw, 2.7rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: var(--rd-navy-strong);
}

.step-header p {
    margin: 0;
    color: var(--rd-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.booking-category-switcher {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.booking-category-tab {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 18px;
    border: 1px solid rgba(24, 52, 89, 0.08);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.98));
    box-shadow: var(--rd-shadow-soft);
    color: var(--rd-text);
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-category-tab strong {
    color: var(--rd-navy-strong);
    font-size: 1rem;
}

.booking-category-tab span {
    color: var(--rd-muted);
    font-size: 0.87rem;
    line-height: 1.45;
}

.booking-category-tab:hover {
    border-color: rgba(63, 143, 199, 0.24);
    box-shadow: 0 16px 34px rgba(24, 52, 89, 0.10);
    transform: translateY(-1px);
}

.booking-category-tab.active {
    border-color: rgba(63, 143, 199, 0.30);
    background: linear-gradient(135deg, rgba(237, 246, 255, 0.92), rgba(255, 243, 226, 0.92));
    box-shadow: 0 0 0 2px rgba(63, 143, 199, 0.16), 0 16px 34px rgba(24, 52, 89, 0.12);
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.service-card {
    padding: 18px;
    border: 1px solid rgba(24, 52, 89, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.98));
    box-shadow: var(--rd-shadow-soft);
}

.service-card[hidden] {
    display: none !important;
}

.service-card > input[type="checkbox"] {
    display: none;
}

html[data-booking-category="carpets"] .services-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
}

html[data-booking-category="carpets"] .service-card[data-category="carpets"] {
    width: min(100%, 560px);
}

.services-grid > .service-card:nth-child(1),
.services-grid > .service-card:nth-child(2),
.services-grid > .service-card:nth-child(3),
.services-grid > .service-card:nth-child(4),
.services-grid > .service-card:nth-child(5),
.services-grid > .service-card:nth-child(6),
.services-grid > .service-card:nth-child(7),
.services-grid > .service-card:nth-child(8),
.services-grid > .service-card:nth-child(9) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.98));
}

.service-card:hover {
    border-color: rgba(63, 143, 199, 0.26);
    box-shadow: 0 16px 34px rgba(24, 52, 89, 0.12);
}

.service-card:has(input:checked) {
    border-color: rgba(63, 143, 199, 0.34);
    background: linear-gradient(135deg, rgba(237, 246, 255, 0.92), rgba(255, 243, 226, 0.92));
    box-shadow: 0 0 0 2px rgba(63, 143, 199, 0.18), 0 16px 34px rgba(24, 52, 89, 0.12);
}

.service-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 152px;
    margin-bottom: 14px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #eff5fb 100%);
}

.service-image-container img {
    height: 140px;
    margin-bottom: 0;
}

.card-content h3 {
    margin: 0 0 8px;
    font-size: 1.02rem;
    color: var(--rd-navy-strong);
}

.card-content p {
    margin: 0 0 8px;
    color: var(--rd-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.card-content .price {
    color: var(--rd-navy);
    font-size: 1.06rem;
}

.check-circle {
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #183459 0%, #255489 52%, #3f8fc7 100%);
    box-shadow: 0 12px 24px rgba(24, 52, 89, 0.18);
}

.datetime-selection-wrapper {
    gap: 20px;
}

.calendar-section,
.time-section,
.summary-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.98));
    border-radius: 24px;
    border: 1px solid rgba(24, 52, 89, 0.08);
    box-shadow: var(--rd-shadow-soft);
}

.summary-card {
    padding: 24px;
}

.calendar-header h3,
.summary-section h4,
.time-section h3 {
    color: var(--rd-navy-strong);
}

.calendar-nav-btn {
    border: 1px solid rgba(24, 52, 89, 0.10);
    color: var(--rd-navy);
    background: rgba(255, 255, 255, 0.9);
}

.calendar-nav-btn:hover {
    background: #edf6ff;
    color: var(--rd-teal);
    border-color: rgba(63, 143, 199, 0.22);
}

.calendar-weekdays {
    color: var(--rd-muted);
}

.calendar-day:not(.empty):not(.disabled):hover {
    background-color: #edf6ff;
    color: var(--rd-teal);
}

.calendar-day.selected {
    background: linear-gradient(135deg, #183459 0%, #255489 52%, #3f8fc7 100%) !important;
    box-shadow: 0 10px 22px rgba(24, 52, 89, 0.16);
}

.calendar-day.today {
    border: 1px solid rgba(63, 143, 199, 0.55);
    color: var(--rd-teal);
}

.time-slot:hover {
    border-color: rgba(63, 143, 199, 0.28);
    color: var(--rd-teal);
    background: #edf6ff;
}

.time-slot.selected {
    background: linear-gradient(135deg, #183459 0%, #255489 52%, #3f8fc7 100%);
    border-color: transparent;
    box-shadow: 0 10px 22px rgba(24, 52, 89, 0.16);
}

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

#manual-address-fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width,
#manual-address-fields,
#company-fields {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--rd-navy-strong);
}

.form-control {
    margin-bottom: 0;
    padding: 13px 14px;
    border-radius: 16px;
    border: 1px solid rgba(24, 52, 89, 0.12);
    background: rgba(255, 255, 255, 0.94);
    color: var(--rd-text);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.7);
}

.form-control:focus {
    outline: none;
    border-color: rgba(63, 143, 199, 0.34);
    box-shadow: 0 0 0 4px rgba(63, 143, 199, 0.12);
}

.address-suggestions {
    margin-top: 8px;
    border-radius: 16px;
    border: 1px solid rgba(24, 52, 89, 0.10);
    box-shadow: var(--rd-shadow-soft);
}

.suggestion-item:hover {
    background-color: #f3f8ff;
    color: var(--rd-teal);
}

.payment-options-grid {
    gap: 16px;
}

.payment-option-card {
    border: 1px solid rgba(24, 52, 89, 0.08);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.98));
    box-shadow: var(--rd-shadow-soft);
}

.payment-option-card:hover {
    border-color: rgba(63, 143, 199, 0.24);
    transform: translateY(-2px);
}

.payment-option-card:has(input:checked) {
    border-color: rgba(63, 143, 199, 0.30);
    background: linear-gradient(135deg, rgba(237, 246, 255, 0.92), rgba(255, 243, 226, 0.92));
    color: var(--rd-navy-strong);
    box-shadow: 0 0 0 2px rgba(63, 143, 199, 0.16), 0 14px 28px rgba(24, 52, 89, 0.10);
}

.payment-icon {
    color: var(--rd-muted);
}

.payment-option-card:has(input:checked) .payment-icon {
    color: var(--rd-teal);
}

.summary-section {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(24, 52, 89, 0.08);
}

.summary-row,
.total-price {
    color: var(--rd-text);
}

.summary-row span:first-child,
.summary-sub-row {
    color: var(--rd-muted);
}

.total-price {
    color: var(--rd-navy);
}

.modal-overlay {
    background: rgba(15, 36, 64, 0.46);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-content {
    width: min(620px, calc(100vw - 32px));
    max-width: 620px;
    padding: 0;
    border-radius: 28px;
    border: 1px solid rgba(24, 52, 89, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 249, 255, 0.98));
    box-shadow: 0 28px 72px rgba(15, 36, 64, 0.22);
}

.modal-header {
    margin-bottom: 0;
    padding: 20px 22px 14px;
    border-bottom: 1px solid rgba(24, 52, 89, 0.08);
}

.modal-title {
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.7rem, 2.6vw, 2.15rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: var(--rd-navy-strong);
}

.modal-close {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(24, 52, 89, 0.10);
    background: rgba(255, 255, 255, 0.92);
    color: var(--rd-navy);
    box-shadow: 0 10px 22px rgba(24, 52, 89, 0.08);
}

.modal-close:hover {
    background: #edf6ff;
    color: var(--rd-teal);
    border-color: rgba(63, 143, 199, 0.24);
    transform: translateY(-1px);
}

.modal-body {
    margin-bottom: 0;
    padding: 18px 22px;
}

.modal-body h4 {
    margin: 0 0 12px;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.3rem;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--rd-navy-strong);
}

.modal-price-box {
    background: linear-gradient(135deg, rgba(237, 246, 255, 0.92), rgba(255, 243, 226, 0.88));
    border: 1px solid rgba(24, 52, 89, 0.08);
    border-radius: 20px;
    padding: 14px 16px;
    margin-bottom: 18px;
    box-shadow: var(--rd-shadow-soft);
}

.modal-price-row {
    font-size: 1.04rem;
    color: var(--rd-navy-strong);
}

.modal-price-row span:first-child {
    font-weight: 700;
}

.modal-price-row span:last-child {
    font-weight: 800;
}

.modal-addons-container {
    margin-bottom: 18px;
}

.addon-row {
    padding: 13px 0;
    border-bottom: 1px solid rgba(24, 52, 89, 0.08);
}

.addon-row:last-child {
    border-bottom: none;
}

.addon-info {
    gap: 14px;
}

.addon-info label {
    font-weight: 700;
    color: var(--rd-navy-strong);
    font-size: 0.97rem;
}

.addon-price {
    font-size: 0.78rem;
    color: var(--rd-navy);
    background: linear-gradient(135deg, #edf5ff 0%, #fff3e2 100%);
    padding: 6px 9px;
    border-radius: 999px;
    border: 1px solid rgba(24, 52, 89, 0.08);
    font-weight: 700;
}

.addon-controls {
    gap: 8px;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid rgba(24, 52, 89, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.98));
    box-shadow: var(--rd-shadow-soft);
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(24, 52, 89, 0.08);
    background: #fff;
    color: var(--rd-navy);
    box-shadow: none;
}

.quantity-btn:hover {
    background: #edf6ff;
    color: var(--rd-teal);
    transform: none;
}

.quantity-display {
    min-width: 30px;
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--rd-navy-strong);
}

.m2-input {
    width: 78px;
    padding: 7px 10px;
    border-radius: 12px;
    border: 1px solid rgba(24, 52, 89, 0.10);
    background: rgba(255, 255, 255, 0.92);
    color: var(--rd-text);
}

.m2-input:focus {
    border-color: rgba(63, 143, 199, 0.34);
    box-shadow: 0 0 0 4px rgba(63, 143, 199, 0.12);
}

.carpet-inline-meter {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    padding: 14px;
    border: 1px solid rgba(24, 52, 89, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
}

.carpet-inline-meta {
    display: grid;
    gap: 3px;
}

.carpet-inline-label {
    font-weight: 800;
    color: var(--rd-navy-strong);
}

.carpet-inline-note {
    color: var(--rd-muted);
    font-size: 0.8rem;
    line-height: 1.4;
}

.carpet-inline-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card .carpet-inline-meter .carpet-inline-input {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 1 1 auto;
    min-width: 0;
    min-height: 42px;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
}

.carpet-inline-selected {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--rd-navy-strong);
}

.carpet-inline-total {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--rd-navy);
}

.addon-info input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #3f8fc7;
}

.modal-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.modal-features li {
    gap: 12px;
    color: var(--rd-muted);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.98));
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(24, 52, 89, 0.06);
}

.modal-features li i {
    color: var(--rd-teal);
    background: rgba(63, 143, 199, 0.12);
    padding: 6px;
    border-radius: 999px;
}

.modal-footer {
    padding: 16px 22px 22px;
    border-top: 1px solid rgba(24, 52, 89, 0.08);
    background: linear-gradient(180deg, rgba(245, 249, 255, 0.88), rgba(245, 249, 255, 0.98));
}

.modal-footer .btn {
    min-width: 160px;
}

.modal-footer .btn-secondary {
    background: linear-gradient(135deg, #ffffff 0%, #f3f8ff 100%);
    border-color: rgba(63, 143, 199, 0.16);
    color: var(--rd-navy);
}

@media (max-width: 768px) {
    .modal-content {
        width: calc(100vw - 16px);
        border-radius: 24px;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .modal-header {
        padding-top: 18px;
        padding-bottom: 14px;
    }

    .modal-title {
        font-size: 1.6rem;
    }

    .modal-close {
        width: 42px;
        height: 42px;
    }

    .addon-row {
        gap: 12px;
        align-items: flex-start;
        flex-direction: column;
    }

    .addon-info,
    .addon-controls {
        width: 100%;
        justify-content: space-between;
    }

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

    .modal-footer {
        gap: 10px;
        flex-direction: column-reverse;
    }

    .modal-footer .btn {
        width: 100%;
        min-width: 0;
    }
}

.booking-legal-note {
    margin: 12px 0 8px;
    color: var(--rd-muted);
    font-size: 0.94rem;
    line-height: 1.55;
}

.wizard-footer {
    position: sticky;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    z-index: 14;
    display: flex;
    gap: 12px;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 12px 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.wizard-footer .btn {
    min-width: 160px;
}

.wizard-footer .btn-success {
    color: #fff;
    background: linear-gradient(135deg, #183459 0%, #255489 52%, #3f8fc7 100%);
    border-color: transparent;
    box-shadow: 0 16px 34px rgba(24, 52, 89, 0.18);
}

.booking-live-summary {
    border: 1px solid rgba(63, 143, 199, 0.22);
    box-shadow: 0 0 0 3px rgba(63, 143, 199, 0.10), 0 14px 34px rgba(15, 23, 42, 0.16);
}

.booking-live-summary-wrap {
    position: sticky;
    top: 98px;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 8;
    justify-content: flex-end;
    margin-bottom: 18px;
    pointer-events: none;
}

.booking-live-summary::before {
    background: linear-gradient(135deg, rgba(63, 143, 199, 0.10), rgba(255, 255, 255, 0));
}

.booking-live-summary::after {
    background: linear-gradient(180deg, #183459 0%, #3f8fc7 100%);
    box-shadow: 0 0 12px rgba(63, 143, 199, 0.32);
}

.booking-live-summary-label {
    color: var(--rd-muted);
}

.booking-live-summary-total {
    color: var(--rd-navy-strong);
}

.footer-panel .logo img {
    width: 156px;
    height: auto;
}

@media (max-width: 1180px) {
    .booking-hero-grid,
    #expert-booking-wizard {
        grid-template-columns: 1fr;
    }

    .wizard-sidebar {
        position: static;
    }

    .booking-hero-copy h1 {
        max-width: none;
    }
}

@media (max-width: 900px) {
    .booking-hero-points,
    .details-grid,
    #manual-address-fields,
    .payment-options-grid {
        grid-template-columns: 1fr;
    }

    .wizard-content {
        padding: 22px 22px 36px;
    }

    .booking-category-switcher {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .booking-page {
        padding-top: 18px;
    }

    .booking-hero {
        padding-bottom: 10px;
    }

    .booking-hero-shell,
    .wizard-sidebar,
    .wizard-content {
        border-radius: 28px;
    }

    .booking-hero-grid {
        padding: 12px 16px;
    }

    .booking-hero-copy {
        gap: 0;
    }

    .booking-hero-copy h1 {
        font-size: 1.54rem;
        line-height: 0.95;
    }

    .booking-hero-points {
        display: none;
    }

    .booking-eyebrow,
    .booking-hero-copy p {
        display: none;
    }

    .step-header {
        padding-top: 42px;
    }

    .booking-category-switcher {
        gap: 10px;
        margin-bottom: 14px;
    }

    .booking-category-tab {
        padding: 12px 14px;
        border-radius: 18px;
    }

    .booking-category-tab strong {
        font-size: 0.92rem;
    }

    .booking-category-tab span {
        font-size: 0.76rem;
        line-height: 1.35;
    }

    .wizard-sidebar {
        padding: 20px;
    }

    .step-indicator {
        padding: 12px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    html[data-booking-category="carpets"] .services-grid {
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

    html[data-booking-category="carpets"] .service-card[data-category="carpets"] {
        width: 100%;
    }

    .service-card {
        padding: 12px;
        border-radius: 20px;
    }

    .carpet-inline-meter {
        margin-top: 10px;
        padding: 12px;
        border-radius: 16px;
    }

    .carpet-inline-controls {
        gap: 8px;
    }

    .carpet-inline-note,
    .carpet-inline-selected,
    .carpet-inline-total {
        font-size: 0.76rem;
        line-height: 1.35;
    }

    .service-image-container {
        min-height: 104px;
        margin-bottom: 10px;
        border-radius: 16px;
    }

    .service-image-container img {
        height: 88px;
    }

    .card-content h3 {
        margin-bottom: 6px;
        font-size: 0.86rem;
        line-height: 1.25;
    }

    .card-content p {
        margin-bottom: 6px;
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .card-content .price {
        font-size: 0.9rem;
    }

    .wizard-footer {
        justify-content: center;
        flex-direction: row;
        width: 100%;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    }

    .wizard-footer .btn {
        width: auto;
        min-width: 132px;
        padding: 11px 18px;
        font-size: 0.95rem;
    }

    .booking-live-summary-wrap {
        position: sticky;
        top: 88px;
        margin-bottom: 12px;
        justify-content: flex-end;
        z-index: 12;
    }

    .booking-live-summary {
        min-width: 0;
        max-width: 104px;
        padding: 7px 7px 7px 9px;
        border-radius: 13px;
    }

    .booking-live-summary-label {
        font-size: 0.5rem;
        line-height: 1.05;
        margin-bottom: 1px;
    }

    .booking-live-summary-total {
        font-size: 0.9rem;
    }
}
