/* =========================================
   BOOKING PAGE
========================================= */

.booking-hero {
    background: #151515;
    padding: 50px 8% 45px;
    min-height: auto;
}

.booking-hero > div {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-hero h1 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 10px;
}

.booking-hero p {
    color: #dddddd;
    font-size: 17px;
    margin: 0;
}


/* =========================================
   MAIN BOOKING SECTION
========================================= */

.primium-booking {
    background: #151515;
    padding: 60px 8% 80px;
    color: #ffffff;
}

.booking-heading {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.booking-heading span {
    display: inline-block;
    color: #d4af37;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.booking-heading h2 {
    position: relative;
    display: inline-block;
    margin: 0 0 35px;
    padding-bottom: 18px;
    color: #e4b93f;
    font-size: 42px;
    font-weight: 700;
}

.booking-heading h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #d4af37;
}

.booking-heading p {
    max-width: 750px;
    margin: 0 auto;
    color: #e5e5e5;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================
   APPOINTMENT FORM
========================================= */

.appointment-form {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: #1c1c1c;
    border: 1px solid #333333;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #f2f2f2;
    font-size: 15px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 16px;
    background: #242424;
    border: 1px solid #3d3d3d;
    border-radius: 6px;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8f8f8f;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}


/* =========================================
   WOMEN / MEN BUTTONS
========================================= */

.gender-buttons {
    display: flex;
    gap: 15px;
}

.gender-btn {
    flex: 1;
    padding: 14px 20px;
    background: #242424;
    border: 1px solid #444444;
    border-radius: 6px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.gender-btn:hover {
    border-color: #d4af37;
}

.gender-btn.active {
    background: #d4af37;
    border-color: #d4af37;
    color: #111111;
    font-weight: 600;
}


/* =========================================
   SERVICE SUMMARY
========================================= */

.booking-summary {
    display: none;
    margin: 25px 0;
    padding: 25px;
    background: #202020;
    border: 1px solid #3a3a3a;
    border-left: 4px solid #d4af37;
    border-radius: 8px;
}

.booking-summary.show {
    display: block;
}

.booking-summary h3 {
    margin: 0 0 20px;
    color: #d4af37;
}

.booking-summary > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #353535;
}

.booking-summary > div:last-child {
    border-bottom: none;
}

.booking-summary span {
    color: #bdbdbd;
}

.booking-summary strong {
    color: #ffffff;
    text-align: right;
}


/* =========================================
   APPOINTMENT SUMMARY CARD
========================================= */

.booking-summary-card {
    display: none;
    margin-top: 30px;
    padding: 30px;
    background: #1b1b1b;
    border: 1px solid #3a3a3a;
    border-top: 3px solid #d4af37;
    border-radius: 10px;
}

.booking-summary-card.show {
    display: block;
}

.summary-title {
    text-align: center;
    margin-bottom: 25px;
}

.summary-title span {
    color: #d4af37;
    font-size: 12px;
    letter-spacing: 2px;
}

.summary-title h3 {
    margin: 8px 0 0;
    color: #ffffff;
    font-size: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid #333333;
}

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

.summary-row span {
    color: #aaaaaa;
}

.summary-row strong {
    color: #ffffff;
    text-align: right;
}


/* =========================================
   CONFIRM BOOKING BUTTON
========================================= */

.booking-submit {
    margin-top: 30px;
    text-align: center;
}

.booking-submit .btn,
#confirmBooking {
    width: 100%;
    padding: 16px 30px;
    background: #d4af37;
    border: none;
    border-radius: 6px;
    color: #151515;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.booking-submit .btn:hover,
#confirmBooking:hover {
    background: #e5c252;
    transform: translateY(-2px);
}


/* =========================================
   CONTACT METHOD
========================================= */

.contact-method {
    padding: 70px 8%;
    background: #111111;
    text-align: center;
    color: #ffffff;
}

.contact-method h2 {
    margin: 0 0 12px;
    font-size: 30px;
}

.contact-method > p {
    margin: 0 0 35px;
    color: #bdbdbd;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 15px;
    background: #1c1c1c;
    border: 1px solid #333333;
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.contact-option strong {
    margin: 10px 0 5px;
}

.contact-option small {
    color: #aaaaaa;
}

.contact-icon {
    font-size: 30px;
}

.selected-contact {
    margin: 30px auto 0;
    color: #bdbdbd;
}

.selected-contact strong {
    color: #d4af37;
}


/* =========================================
   BOOKING INFO
========================================= */

.booking-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 70px 8%;
    background: #151515;
}

.booking-info-card {
    padding: 35px 25px;
    background: #1c1c1c;
    border: 1px solid #333333;
    border-radius: 10px;
    text-align: center;
    color: #ffffff;
}

.booking-icon {
    font-size: 35px;
    margin-bottom: 15px;
}

.booking-info-card h3 {
    margin: 0 0 12px;
    color: #d4af37;
}

.booking-info-card p {
    color: #bdbdbd;
}

.booking-info-card a {
    color: #d4af37;
    text-decoration: none;
}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 900px) {

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

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


@media (max-width: 600px) {

    .booking-hero {
        padding: 35px 20px;
    }

    .booking-hero h1 {
        font-size: 30px;
    }

    .primium-booking {
        padding: 45px 20px 60px;
    }

    .booking-heading h2 {
        font-size: 32px;
    }

    .appointment-form {
        padding: 25px 18px;
    }

    .gender-buttons {
        flex-direction: column;
    }

    .contact-method {
        padding: 50px 20px;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .booking-summary > div,
    .summary-row {
        flex-direction: column;
        gap: 5px;
    }

    .booking-summary strong,
    .summary-row strong {
        text-align: left;
    }
}

/* =========================================
   WECHAT POPUP
========================================= */

.wechat-modal {
    display: none;
    position: fixed;
    inset: 0;

    z-index: 999999;

    width: 100%;
    height: 100%;

    padding: 20px;
    box-sizing: border-box;

    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.82);
}


.wechat-modal.show {
    display: flex !important;
}


.wechat-box {
    position: relative;

    width: 100%;
    max-width: 400px;

    padding: 35px 30px 30px;

    box-sizing: border-box;

    background: #1c1c1c;

    border: 1px solid #d4af37;
    border-radius: 15px;

    color: #ffffff;
    text-align: center;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}


.wechat-close {
    position: absolute;

    top: 10px;
    right: 15px;

    width: 40px;
    height: 40px;

    padding: 0;

    border: none;
    background: transparent;

    color: #ffffff;

    font-size: 30px;
    cursor: pointer;
}


.wechat-close:hover {
    color: #d4af37;
}


.wechat-box h2 {
    margin: 10px 0 15px;

    color: #d4af37;
}


.wechat-box p {
    color: #cccccc;
    line-height: 1.6;
}


.wechat-qr {
    display: block;

    width: 100%;
    max-width: 260px;

    margin: 20px auto;

    padding: 10px;

    background: #ffffff;
    border-radius: 10px;

    box-sizing: border-box;
}


.wechat-box h3 {
    color: #d4af37;
}

/* =========================================
   BOOKING SUMMARY
========================================= */

.booking-summary-card {
    display: none;
}


.booking-summary-card.show {
    display: block;

    animation: showBookingSummary 0.4s ease;
}


@keyframes showBookingSummary {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   COPY SUMMARY
========================================= */

.copy-summary-area {
    margin-top: 25px;

    text-align: center;
}


.copy-summary-btn {
    width: 100%;

    padding: 14px 20px;

    border: none;
    border-radius: 8px;

    background: #d4af37;

    color: #111;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}


.copy-summary-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 6px 20px rgba(
            212,
            175,
            55,
            0.25
        );
}


.copy-message {
    min-height: 20px;

    margin-top: 10px;

    color: #d4af37;

    font-size: 14px;
    font-weight: 600;
}

/* =========================================
   BOOKING CONFIRM NOTICE
========================================= */

.booking-confirm-notice {
    margin: 18px 0;
    padding: 16px 18px;
    background: #fffaf0;
    border: 1px solid rgba(184, 134, 11, 0.25);
    border-radius: 14px;
    line-height: 1.6;
}

.booking-confirm-notice .notice-title {
    font-size: 16px;
    font-weight: 700;
    color: #8a6500;
    margin-bottom: 8px;
}

.booking-confirm-notice .notice-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.booking-confirm-notice .notice-step {
    font-size: 14px;
    color: #222;
    margin: 8px 0;
}

.booking-confirm-notice .notice-note {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(184, 134, 11, 0.15);
    font-size: 13px;
    color: #666;
}

/* =========================================================
   CONFIRM BOOKING BUTTON
   ========================================================= */

.confirm-booking-button {
    width: 100%;
    min-height: 52px;
    margin-top: 12px;

    padding: 14px 20px;

    border: 1px solid #d4af37;
    border-radius: 10px;

    background: #111;
    color: #d4af37;

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    transition: all 0.25s ease;
}

.confirm-booking-button:hover {
    background: #d4af37;
    color: #111;
    transform: translateY(-1px);
}

.confirm-booking-button:active {
    transform: translateY(0);
}
/* =========================
   BOOKING HERO - LUXURY STYLE
========================= */

.booking-hero {
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.42),
            rgba(0, 0, 0, 0.58)
        ),
        url("")
        center center / cover no-repeat;

    position: relative;
    overflow: hidden;
}

.booking-hero .hero-content {
    max-width: 850px;
    padding: 40px 24px;
    position: relative;
    z-index: 2;
}

.booking-hero h1 {
    margin: 0 0 18px;

    font-family: "Poppins", sans-serif;
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;

    color: #ffffff;

    text-shadow:
        0 3px 15px rgba(0, 0, 0, 0.45);
}

.booking-hero h1::after {
    content: "";
    display: block;

    width: 75px;
    height: 3px;

    margin: 22px auto 0;

    background: linear-gradient(
        90deg,
        #b8860b,
        #f5d36a,
        #b8860b
    );

    border-radius: 10px;
}

.booking-hero p {
    max-width: 650px;
    margin: 0 auto;

    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.9;

    color: #f0e5d5;
    letter-spacing: 0.3px;
}

/* Subtle gold glow */
.booking-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at center,
        rgba(212, 175, 55, 0.08),
        transparent 65%
    );

    pointer-events: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .booking-hero {
        min-height: 400px;
    }

    .booking-hero .hero-content {
        padding: 30px 20px;
    }

    .booking-hero h1 {
        font-size: 34px;
    }

    .booking-hero p {
        font-size: 14px;
        line-height: 1.8;
    }
}