 /* BOOKING SECTION */
.booking-section {
    padding: 140px 20px;
    background:
        linear-gradient(
            to bottom,
            #ffffff,
            #f4f7ff
        );
}

.booking-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT INFO */
.booking-info {
    padding-right: 20px;
}

.booking-label {
    display: inline-block;
    background: var(--brand-blue);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 18px;
}

.booking-info h2 {
    font-size: 40px;
    color: var(--brand-blue);
    margin-bottom: 16px;
}

.booking-info p {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.booking-points {
    list-style: none;
    padding: 0;
}

.booking-points li {
    padding-left: 26px;
    margin-bottom: 14px;
    position: relative;
    color: var(--text-dark);
}

.booking-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--brand-red);
}

/* RIGHT FORM */
.booking-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}

.booking-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14.5px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Full width fields */
.booking-form textarea,
.booking-form button {
    grid-column: span 2;
}

.booking-form textarea {
    resize: none;
    height: 120px;
}

/* Focus */
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 2px rgba(0,58,143,0.15);
}

/* BUTTON */
.booking-form .btn {
    background: var(--brand-red);
    color: #fff;
    padding: 14px;
    border-radius: 30px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(230,0,35,0.35);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .booking-info h2 {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .booking-form form {
        grid-template-columns: 1fr;
    }

    .booking-form textarea,
    .booking-form button {
        grid-column: span 1;
    }
}
.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.booking-steps .step {
    font-size: 13px;
    color: #aaa;
    position: relative;
}

.booking-steps .step.active {
    color: var(--brand-blue);
    font-weight: 600;
}

.booking-steps .step::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #ddd;
}

.booking-steps .step.active::after {
    background: var(--brand-yellow);
}
input.error, textarea.error, select.error {
    border-color: var(--brand-red);
    animation: shake 0.3s;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
}
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
.booking-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    max-width: 420px;
    text-align: center;
    animation: pop 0.4s ease;
}

@keyframes pop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
