/* =============================================
   GAMBLE & BROWN — Book Now Page Styles
   ============================================= */

.booking-section {
    background-color: #F5F0EA;
    padding: 90px 0 110px;
}

/* ── Main Grid Layout ── */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 20, 15, 0.12);
}

/* ══════════════════════════════════════════
   LEFT INFO PANEL
══════════════════════════════════════════ */
.booking-info-panel {
    background: var(--coffee);
    padding: 60px 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* decorative circle glow */
.booking-info-panel::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(167, 130, 75, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.booking-info-panel::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(167, 130, 75, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.booking-info-top {
    position: relative;
    z-index: 2;
}

.booking-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(167, 130, 75, 0.15);
    border: 1px solid rgba(167, 130, 75, 0.3);
    color: var(--biscuit-light);
    font-family: 'Poppins', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 40px;
    margin-bottom: 28px;
}

.booking-info-badge i {
    font-size: 10px;
}

.booking-info-title {
    font-family: 'Lato', sans-serif;
    font-size: 34px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.booking-info-title span {
    color: var(--biscuit-light);
}

.booking-info-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 44px;
}

/* Info detail rows */
.booking-detail-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    z-index: 2;
}

.booking-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.booking-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(167, 130, 75, 0.15);
    border: 1px solid rgba(167, 130, 75, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--biscuit-light);
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.booking-detail-item:hover .booking-detail-icon {
    background: rgba(167, 130, 75, 0.3);
    border-color: rgba(167, 130, 75, 0.5);
}

.booking-detail-text strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2px;
    letter-spacing: 0.02em;
}

.booking-detail-text span {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* Decorative divider line */
.booking-info-divider {
    height: 1px;
    background: rgba(167, 130, 75, 0.2);
    margin: 40px 0;
    position: relative;
    z-index: 2;
}

/* Bottom note */
.booking-info-note {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.booking-info-note i {
    color: var(--biscuit);
    margin-right: 5px;
}

/* Phone link hover */
.booking-phone-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.booking-phone-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--biscuit-light);
    transition: width 0.3s ease;
}

.booking-phone-link:hover {
    color: var(--biscuit-light);
    text-shadow: 0 0 12px rgba(197, 160, 110, 0.4);
}

.booking-phone-link:hover::after {
    width: 100%;
}

/* ══════════════════════════════════════════
   RIGHT FORM PANEL
══════════════════════════════════════════ */
.booking-form-panel {
    background: #ffffff;
    padding: 60px 55px;
}

.booking-form-heading {
    margin-bottom: 36px;
}

.booking-form-eyebrow {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--biscuit);
    margin-bottom: 8px;
}

.booking-form-title {
    font-family: 'Lato', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--coffee);
    margin: 0;
    letter-spacing: 0.01em;
}

/* Floating label inputs */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.booking-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-field {
    position: relative;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
    width: 100%;
    padding: 20px 18px 8px 18px;
    border-radius: 12px;
    border: 1.5px solid rgba(167, 130, 75, 0.18);
    background: #faf7f3;
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    color: var(--coffee);
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    border-color: var(--biscuit);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(167, 130, 75, 0.1);
}

.booking-field label {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    color: #a08a7b;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

/* Float label up when input has content or is focused */
.booking-field input:focus + label,
.booking-field input:not(:placeholder-shown) + label,
.booking-field select:focus + label,
.booking-field select:valid + label,
.booking-field textarea:focus + label,
.booking-field textarea:not(:placeholder-shown) + label {
    top: 12px;
    transform: translateY(0);
    font-size: 10.5px;
    color: var(--biscuit);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Textarea-specific label handling */
.booking-field.is-textarea label {
    top: 20px;
    transform: none;
}

.booking-field.is-textarea textarea:focus + label,
.booking-field.is-textarea textarea:not(:placeholder-shown) + label {
    top: 10px;
    transform: none;
}

.booking-field textarea {
    height: 130px;
    resize: none;
    padding-top: 26px;
    line-height: 1.6;
}

/* Select arrow */
.booking-select-wrap {
    position: relative;
}

.booking-select-wrap::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: var(--biscuit);
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Date/time custom indicator color */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(56%) sepia(21%) saturate(928%) hue-rotate(5deg) brightness(92%) contrast(85%);
    cursor: pointer;
}

/* Input icons */
.booking-field-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(167, 130, 75, 0.35);
    font-size: 13px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.booking-field:focus-within .booking-field-icon {
    color: var(--biscuit);
}

/* Submit button */
.booking-submit-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.booking-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 50px;
    background: var(--coffee);
    color: #ffffff;
    border: 2px solid var(--coffee);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(30, 20, 15, 0.15);
}

.booking-submit-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.booking-submit-btn:hover {
    background: var(--biscuit);
    border-color: var(--biscuit);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(167, 130, 75, 0.3);
}

.booking-submit-btn:hover i {
    transform: translateX(4px);
}

.booking-privacy-note {
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    color: #a08a7b;
    line-height: 1.5;
}

.booking-privacy-note i {
    color: var(--biscuit);
    margin-right: 4px;
}

/* ── Responsive ── */
@media (max-width: 1099.98px) {
    .booking-form-panel {
        padding: 50px 40px;
    }

    .booking-info-panel {
        padding: 50px 40px;
    }

    .booking-info-title {
        font-size: 28px;
    }
}

@media (max-width: 899.98px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .booking-info-panel {
        padding: 50px 40px;
    }

    .booking-detail-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}

@media (max-width: 767.98px) {
    .booking-section {
        padding: 60px 0 80px;
    }

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

    .booking-form-panel {
        padding: 40px 25px;
    }

    .booking-info-panel {
        padding: 40px 25px;
    }

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

    .booking-submit-wrap {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-submit-btn {
        justify-content: center;
        width: 100%;
    }
}
