body {
    background-color: #fefcfa;
}

html,
body {
    height: 100%;
    margin: 0;
}

.page-wrapper {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

/* ============================= */
/* BOOKING SECTION */
/* ============================= */
.booking-section {
    padding: 50px 6%;
}

.booking-container {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    padding: 70px;
    border-radius: 35px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.booking-subtitle {
    display: block;
    text-align: center;
    color: #1b9c91;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.booking-title {
    text-align: center;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.1;
    color: #14365a;
    margin-bottom: 18px;
    font-family: 'Times New Roman', Times, serif;
}

.booking-text {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

.booking-text strong {
    color: #14365a;
}

/* FORM */
.booking-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 35px;
}

.booking-group {
    display: flex;
    flex-direction: column;
}

.booking-group.full-width,
.booking-response,
.booking-btn {
    grid-column: 1 / -1;
}

.booking-group label {
    font-size: 1rem;
    font-weight: 700;
    color: #092248;
    margin-bottom: 10px;
}

.booking-group input,
.booking-group select,
.booking-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #d9e1ec;
    border-radius: 15px;
    background: #ffffff;
    color: #092248;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: 0.25s ease;
}

.booking-group input:focus,
.booking-group select:focus,
.booking-group textarea:focus {
    border-color: #1b9c91;
    box-shadow: 0 0 0 4px rgba(27,156,145,0.12);
}

.booking-group textarea {
    min-height: 160px;
    resize: vertical;
}

/* NOTES */
.service-note {
    margin-top: 12px;
    padding: 14px 16px;
    background: #f1f7ef;
    border-left: 4px solid #1f5a33;
    border-radius: 12px;
    color: #333;
    font-size: 0.94rem;
    line-height: 1.7;
}

.service-note strong {
    color: #155a35;
}

.service-note em {
    color: #666;
}

/* TIME SLOTS */
.time-slot-btn {
    appearance: none;
    -webkit-appearance: none;
}

.time-slots {
    min-height: 54px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.time-slot-btn {
    padding: 12px 18px;
    border: 1px solid #d9e1ec;
    border-radius: 999px;
    background: #ffffff;
    color: #14365a;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.time-slot-btn:hover,
.time-slot-btn.active {
    background: #1b9c91;
    color: #ffffff;
    border-color: #1b9c91;
}

/* RESPONSE */

.booking-response {
    display: none;
    padding: 15px 18px;
    border-radius: 12px;
    font-weight: 600;
}

.booking-response.success {
    display: block;
    background: #eef8f0;
    color: #1f5a33;
}

.booking-response.error {
    display: block;
    background: #fff0f0;
    color: #9b1c1c;
}

/* BUTTON */
.booking-btn {
    width: 100%;
    border: none;
    padding: 17px 30px;
    border-radius: 999px;
    background: #1BA39C;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(31,90,51,0.22);
    transition: 0.25s ease;
}

.booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(31,90,51,0.28);
}

/* HONEYPOT */
.honeypot {
    display: none !important;
}

/* ============================= */
/* CONSENT */
/* ============================= */
.consent-group {
    grid-column: 1 / -1;
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.consent-item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    text-align: left;
}

.consent-item input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: #1BA39C;
    cursor: pointer;
}

.consent-item label {
    flex: 1;
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.consent-item a {
    color: #1ba39cd4;
    text-decoration: none;
}

.consent-item a:hover {
    color: #00bfff;
}

/* MOBILE */
@media (max-width: 600px) {

    .consent-item label {
        font-size: 0.9rem;
    }

}

/* MOBILE */
@media (max-width: 850px) {
    .booking-container {
        padding: 45px 25px;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .booking-title {
        font-size: 3rem;
    }
}

@media (max-width: 500px) {
    .booking-section {
        padding: 60px 4%;
    }

    .booking-container {
        border-radius: 22px;
        padding: 35px 18px;
    }

    .booking-text {
        font-size: 1rem;
    }

    .time-slot {
        width: 100%;
        text-align: center;
    }
}