/* Book a Day popup overlay */

.book-a-day-overlay {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
}

.book-a-day-overlay.is-open {
    display: flex;
}

.book-a-day-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.62);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.book-a-day-overlay__panel {
    position: relative;
    z-index: 2;
    width: min(920px, calc(100vw - 24px));
    max-height: calc(100vh - 40px);
    overflow: auto;
    /* border-radius: 18px; */
    background: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
    animation: bookADayPopupIn 0.28s ease;
}

@keyframes bookADayPopupIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.book-a-day-overlay__close {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 6;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #555;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.book-a-day-overlay__close:hover {
    background: #f5f5f5;
    color: #222;
    transform: scale(1.04);
}

.book-a-day-modal__content {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: none;
}

.book-a-day-modal__layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    min-height: 560px;
    align-items: stretch;
}

.book-a-day-modal__intro {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #fff;
    color: #222;
    border-right: 1px solid #f2f2f2;
}

.book-a-day-modal__intro-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    min-height: 100%;
    height: 100%;
    padding: 36px 28px 30px;
}

.book-a-day-modal__intro-top {
    display: flex;
    flex-direction: column;
}

.book-a-day-modal__logo {
    display: block;
    width: min(220px, 100%);
    height: auto;
    margin-bottom: 24px;
}

.book-a-day-modal__badge {
    display: inline-block;
    width: fit-content;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.book-a-day-modal__title {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #222;
        margin-top:30%;

}

.book-a-day-modal__subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 24px;
}

.book-a-day-modal__highlights {
    list-style: none;
    margin: 0;
    padding: 0;
}

.book-a-day-modal__highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 10px;
    color: #444;
}

.book-a-day-modal__highlights i {
    color: #c98862;
    opacity: 1;
}

.book-a-day-modal__intro-social {
    margin-top: auto;
    padding-top: 8px;
}

.book-a-day-modal__social-label {
    display: block;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
}

.book-a-day-modal__social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.book-a-day-modal__social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e3e3e3;
    background: #fff;
    color: #555;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.book-a-day-modal__social-links a:hover,
.book-a-day-modal__social-links a:focus-visible {
    background: #faf3ee;
    border-color: #c98862;
    color: #a86f45;
    transform: translateY(-2px);
    outline: none;
}

.book-a-day-modal__form-wrap {
    padding: 28px 28px 24px;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.book-a-day-modal__steps {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.book-a-day-modal__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 72px;
    color: #aaa;
}

.book-a-day-modal__step-item span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #e5e5e5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    background: #fff;
    transition: all 0.2s ease;
}

.book-a-day-modal__step-item small {
    font-size: 11px;
    font-weight: 600;
}

.book-a-day-modal__step-item.is-active span,
.book-a-day-modal__step-item.is-done span {
    border-color: #c98862;
    background: #c98862;
    color: #fff;
}

.book-a-day-modal__step-item.is-active {
    color: #a86f45;
}

.book-a-day-modal__step-line {
    flex: 1 1 auto;
    height: 2px;
    background: #ececec;
    min-width: 20px;
}

.book-a-day-modal__form {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.book-a-day-modal__panel {
    display: none;
    flex: 1 1 auto;
}

.book-a-day-modal__panel.is-active {
    display: block;
    animation: bookADayFadeIn 0.28s ease;
}

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

.book-a-day-modal__panel-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 6px;
}

.book-a-day-modal__panel-text {
    font-size: 14px;
    color: #777;
    margin: 0 0 20px;
    line-height: 1.5;
}

.book-a-day-modal__field {
    margin-bottom: 16px;
}

.book-a-day-modal__field label,
.book-a-day-modal__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.book-a-day-modal__input,
.book-a-day-modal__textarea {
    width: 100%;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: #222;
    background: #fff;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.book-a-day-modal__input:focus,
.book-a-day-modal__textarea:focus {
    outline: none;
    border-color: #c98862;
    box-shadow: 0 0 0 3px rgba(201, 136, 98, 0.15);
}

.book-a-day-modal__textarea {
    resize: vertical;
    min-height: 88px;
}

.book-a-day-modal__contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.book-a-day-modal__contact-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.book-a-day-modal__contact-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    padding: 0 10px;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.18s ease;
}

.book-a-day-modal__contact-option input:checked + span {
    border-color: #c98862;
    background: #faf3ee;
    color: #a86f45;
}

.book-a-day-modal__slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.book-a-day-modal__slot input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.book-a-day-modal__slot span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.18s ease;
}

.book-a-day-modal__slot input:checked + span {
    border-color: #c98862;
    background: #faf3ee;
    color: #a86f45;
}

.book-a-day-modal__error {
    display: block;
    min-height: 18px;
    margin-top: 4px;
    font-size: 12px;
    color: #c0392b;
}

.book-a-day-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #f2f2f2;
}

.book-a-day-modal__btn {
    border: 0;
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.book-a-day-modal__btn--ghost {
    background: #f5f5f5;
    color: #555;
}

.book-a-day-modal__btn--primary {
    background: linear-gradient(135deg, #c98862, #b8734a);
    color: #fff;
}

.book-a-day-modal__btn:hover:not(:disabled) {
    opacity: 0.92;
    transform: translateY(-1px);
}

.book-a-day-modal__btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.book-a-day-modal__success {
    text-align: center;
    padding: 32px 12px 12px;
}

.book-a-day-modal__success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #faf3ee;
    color: #c98862;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.book-a-day-modal__done-btn {
    margin-top: 18px;
    min-width: 140px;
}

.book-a-day-modal__honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

body.book-a-day-modal-open {
    overflow: hidden;
}

@media (max-width: 767px) {
    .book-a-day-modal__layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .book-a-day-modal__intro-inner {
        padding: 28px 22px 22px;
        gap: 22px;
    }

    .book-a-day-modal__logo {
        width: min(190px, 100%);
        margin-bottom: 18px;
    }

    .book-a-day-modal__title {
        font-size: 1.35rem;
    }

    .book-a-day-modal__highlights {
        display: none;
    }

    .book-a-day-modal__intro-social {
        padding-top: 0;
    }

    .book-a-day-modal__form-wrap {
        padding: 22px 18px 18px;
    }

    .book-a-day-modal__contact-options {
        grid-template-columns: 1fr;
    }

    .book-a-day-modal__slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .book-a-day-modal__steps small {
        display: none;
    }
}
