.page-template-book #main-header {
    display: none;
}

.booking-page {
    --dark-blue: #035477;
    --light-blue: #03b8e5;
    --text: #0f172a;
    --muted: #64748b;
    --border: #dbe4f0;
    --soft: #f5fbfe;
    
    background: linear-gradient(180deg, #f5fbfe 0%, #ffffff 48%);
    padding: 50px;
    padding-top: 150px;
    color: var(--text);
}

.booking-wrap {
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

.booking-progress {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.booking-progress-step {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 999px;
    padding: 13px 16px;
    font-size: 15px;
    font-weight: 800;
    color: var(--muted);
    cursor: pointer;
    text-align: left;
}

.booking-progress-step span {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    margin-right: 8px;
    border-radius: 50%;
    background: #eef7fb;
    color: var(--dark-blue);
}

.booking-progress-step.is-active {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    color: #fff;
}

.booking-progress-step.is-active span,
.booking-progress-step.is-complete span {
    background: var(--light-blue);
    color: #fff;
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 32px;
    align-items: start;
}

.booking-main,
.booking-summary {
    background: #fff;
    border-radius: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 24px 80px rgba(3, 84, 119, .08);
}

.booking-section {
    display: none;
    padding: 42px;
    min-height: 560px;
}

.booking-section.is-active {
    display: block;
}

.booking-section-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 32px;
}

.booking-step-number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 20px;
    flex-shrink: 0;
    background: var(--dark-blue);
}

.booking-page h2 {
    font-size: clamp(24px, 2vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0 0 10px;
    color: var(--text);
    font-weight: 900;
}

.booking-page h3 {
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 8px;
    font-weight: 850;
    margin-bottom: 0;
}

.booking-page h4 {
    font-size: 18px;
    margin: 0 0 14px;
}

.booking-page p,
.booking-page small,
.booking-page input,
.booking-page textarea,
.booking-page button {
    font-size: 16px;
    line-height: 1.6;
}

.booking-page p,
.booking-page small {
    color: var(--muted);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.select-card,
.package-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    cursor: pointer;
    transition: .22s ease;
    overflow: hidden;
}

.select-card:hover,
.package-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(3, 84, 119, .1);
}

.select-card.is-selected,
.package-card.is-selected {
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(3, 184, 229, .18);
}

.select-card-body {
    padding: 34px 24px;
    text-align: center;
}

.checkmark {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--light-blue);
    color: #fff;
    display: none;
    place-items: center;
    font-weight: 900;
}

.is-selected .checkmark {
    display: grid;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.package-card-content {
    padding: 26px;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    margin: 18px 0;
}

.package-price {
    font-size: 34px;
    font-weight: 950;
    color: var(--dark-blue);
}

.package-duration {
    color: var(--muted);
    font-weight: 750;
}

.package-services-toggle {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--soft);
    color: var(--dark-blue);
    border-radius: 12px;
    padding: 11px 14px;
    font-weight: 850;
    cursor: pointer;
    margin-bottom: 14px;
}

.package-features {
    list-style: none;
    padding: 14px 16px;
    margin: 0 0 16px;
    border-radius: 14px;
    background: #f8fbfd;
    border: 1px solid var(--border);
}

.package-features li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 15px;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--light-blue);
    font-weight: 900;
}

.package-button,
.booking-next,
.booking-submit {
    border: 0;
    border-radius: 14px;
    background: var(--dark-blue);
    color: #fff;
    padding: 15px 22px;
    font-weight: 900;
    cursor: pointer;
}

.package-card.is-selected .package-button,
.booking-next:hover,
.booking-submit:hover {
    background: var(--light-blue);
}

.booking-prev {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    color: var(--dark-blue);
    padding: 15px 22px;
    font-weight: 900;
    cursor: pointer;
}

.booking-nav {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 34px;
}

.booking-nav .booking-next {
    margin-left: auto;
}

.booking-time-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 30px;
}

.booking-date-box {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    background: var(--soft);
}

.booking-date-box label,
.booking-inputs label {
    display: block;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--text);
}

.booking-date-box input,
.booking-inputs input,
.booking-inputs textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    background: #fff;
}

.time-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.time-group {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
}

.time-slot {
    width: 100%;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 10px;
    font-weight: 850;
    cursor: pointer;
}

.time-slot.is-selected,
.time-slot:hover {
    background: var(--light-blue);
    border-color: var(--light-blue);
    color: #fff;
}

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

.booking-inputs .full {
    grid-column: 1 / -1;
}

.booking-summary {
    position: sticky;
    top: 24px;
    padding: 30px;
}

.booking-summary h2 {
    font-size: 28px;
}

.summary-box {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 16px;
    background: #fff;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.summary-row span {
    text-align: right;
    color: var(--muted);
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 26px 0;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.summary-total-row strong {
    font-size: 34px;
    color: var(--dark-blue);
}

.booking-submit {
    width: 100%;
    font-size: 17px;
}

.booking-trust {
    margin-top: 18px;
}

.trust-card,
.trust-list {
    border-radius: 18px;
    background: var(--soft);
    border: 1px solid rgba(3, 184, 229, .08);
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    margin-bottom: 18px;
}

.trust-list {
    padding: 18px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-item + .trust-item {
    margin-top: 24px;
}

.trust-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    color: var(--light-blue);
}

.trust-card-featured .trust-icon {
    color: var(--dark-blue);
}

.trust-icon svg {
    width: 34px;
    height: 34px;
    display: block;
}

.trust-icon svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-card-featured .trust-icon svg path:first-child {
    fill: var(--dark-blue);
    stroke: var(--dark-blue);
}

.trust-card-featured .trust-icon svg path:last-child {
    stroke: #fff;
}

.booking-trust strong {
    display: block;
    color: var(--text);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 900;
}

.booking-trust small {
    display: block;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4;
    margin-top: 3px;
}

.booking-loading,
.booking-empty {
    padding: 70px 20px;
    text-align: center;
    border: 1px dashed var(--border);
    border-radius: 20px;
    color: var(--muted);
    background: var(--soft);
}

@media (max-width: 1100px) {
    .booking-page {
        padding: 24px;
    }

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

    .booking-summary {
        position: static;
    }

    .booking-progress {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid,
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-time-layout {
        grid-template-columns: 1fr;
    }
}

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

    .booking-progress,
    .card-grid,
    .package-grid,
    .time-columns,
    .booking-inputs {
        grid-template-columns: 1fr;
    }

    .booking-section {
        padding: 24px;
        min-height: auto;
    }
}

.booking-progress-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-progress-step div {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.booking-progress-step strong {
    font-size: 15px;
    font-weight: 900;
}

.booking-progress-step small {
    font-size: 13px;
    color: inherit;
    opacity: .75;
}


.extra-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.extra-service-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    cursor: pointer;
    background: #fff;
    transition: .2s ease;
}

.extra-service-card:hover,
.extra-service-card.is-selected {
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(3, 184, 229, .14);
}

.extra-service-card input {
    margin-top: 5px;
}

.extra-service-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.extra-service-content strong {
    font-size: 17px;
    color: var(--text);
}

.extra-service-content span {
    color: var(--muted);
}

.summary-extra-services {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
}

.summary-extra-services div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 6px;
}

@media (max-width: 1024px) {
    .extra-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .extra-service-grid {
        grid-template-columns: 1fr;
    }
}


.booking-client-type {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
}

.client-type-option {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 12px 18px;
    cursor: pointer;
    font-weight: 900;
    background: #fff;
}

.client-type-option input {
    display: none;
}

.client-type-option.is-selected {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    color: #fff;
}

.booking-inputs.nested {
    margin: 0;
}


@media (min-width: 1440px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.select-card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.select-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.select-card:hover .select-card-image img {
    transform: scale(1.04);
}

.location-address {
    display: block;
    margin-top: 8px;
}

.location-map-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 22px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #eaf7fc;
    color: var(--dark-blue);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: .2s ease;
}

.location-map-link:hover {
    background: var(--light-blue);
    color: #fff;
}

.location-map-link svg {
    width: 17px;
    height: 17px;
}

.location-map-link svg path,
.location-map-link svg circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.booking-calendar {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    background: #fff;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.calendar-header strong {
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
}

.calendar-nav {
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    color: var(--dark-blue);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
}

.calendar-nav:hover {
    background: var(--soft);
}

.calendar-weekdays,
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.calendar-weekdays {
    margin-bottom: 12px;
}

.calendar-weekdays span {
    text-align: center;
    font-weight: 900;
    color: var(--muted);
}

.calendar-day {
    aspect-ratio: 1;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--text);
    font-weight: 800;
    cursor: pointer;
}

.calendar-day:hover {
    background: var(--soft);
}

.calendar-day.is-muted {
    color: #b7c3d4;
}

.calendar-day.is-disabled {
    opacity: .35;
    pointer-events: none;
}

.calendar-day.is-selected {
    background: var(--dark-blue);
    color: #fff;
    box-shadow: 0 10px 24px rgba(3, 84, 119, .22);
}

.calendar-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 16px;
    background: var(--soft);
    color: var(--muted);
    font-weight: 800;
}

.calendar-note span {
    width: 24px;
    height: 24px;
    border: 2px solid var(--light-blue);
    border-radius: 50%;
    color: var(--light-blue);
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 14px;
}