@charset "utf-8";
/* CSS Document */
  
/* ================================
POPUP OVERLAY
================================ */
.popup-overlay {
    display: none;

    position: fixed;
    z-index: 9999;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.75);

    overflow-y: auto;
}

/* ================================
POPUP BOX
================================ */
.popup-container {
    position: relative;

    width: 90%;
    max-width: 1000px;

    margin: 5% auto;

    background: #ffffff;

    border-radius: 14px;

    display: flex;
    flex-wrap: wrap;

    overflow: hidden;

    box-shadow: 0 0 30px rgba(0,0,0,0.4);

    animation: popupFade 0.4s ease;
}

/* ================================
PANES
================================ */
.popup-pane {
    flex: 1 1 400px;

    padding: 35px;
    box-sizing: border-box;
}

/* LEFT */
.form-pane {
    background: #f5f5f5;
}

/* RIGHT */
.payment-pane {
    background: #ffffff;
    text-align: center;
}

/* ================================
FORM
================================ */
.form-pane h2,
.payment-pane h2 {
    margin-top: 0;
    margin-bottom: 25px;

    font-size: 28px;
}

.form-pane input,
.form-pane textarea {
    width: 100%;

    padding: 12px;
    margin-bottom: 15px;

    border: 1px solid #cccccc;
    border-radius: 6px;

    font-size: 16px;

    box-sizing: border-box;
}

.form-pane textarea {
    height: 120px;
    resize: vertical;
}

.form-pane button {
    width: 100%;

    padding: 14px;

    border: none;
    border-radius: 6px;

    background: #000000;
    color: #ffffff;

    font-size: 18px;
    cursor: pointer;

    transition: 0.3s;
}

.form-pane button:hover {
    background: #444444;
}

/* ================================
PAYMENT LINK
================================ */
.payment-link {
    display: inline-block;

    margin-top: 10px;
    margin-bottom: 25px;

    padding: 12px 18px;

    background: #000000;
    color: #ffffff;

    text-decoration: none;

    border-radius: 6px;

    transition: 0.3s;
}

.payment-link:hover {
    background: #444444;
}

/* ================================
QR IMAGE
================================ */
.qr-image {
    width: 180px;
    max-width: 100%;

    height: auto;

    margin-top: 10px;
}

/* ================================
CLOSE BUTTON
================================ */
.popup-close {
    position: absolute;

    top: 10px;
    right: 18px;

    font-size: 42px;
    line-height: 1;

    color: #000000;

    cursor: pointer;

    z-index: 10000;
}

/* ================================
ANIMATION
================================ */
@keyframes popupFade {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
MOBILE
================================ */
@media (max-width: 768px) {

    .popup-container {
        flex-direction: column;
        margin-top: 10%;
    }

    .popup-pane {
        padding: 25px;
    }

    .form-pane h2,
    .payment-pane h2 {
        font-size: 24px;
    }
}

.book-now-btn {
    display: inline-block;

    text-decoration: none;

    transition: 0.3s;
}

.book-now-btn img {
    display: block;

    width: 92px;
    height: 44px; /* adjust size if needed */

    transition: 0.3s;
}

.book-now-btn:hover img {
    opacity: 0.85;
    transform: scale(1.03);
}