.elementor-9452 .elementor-element.elementor-element-bc4cd99{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-9452 .elementor-element.elementor-element-bc4cd99:not(.elementor-motion-effects-element-type-background), .elementor-9452 .elementor-element.elementor-element-bc4cd99 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F9FAFC;}#elementor-popup-modal-9452 .dialog-widget-content{animation-duration:1.2s;background-color:#F9FAFC;box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}#elementor-popup-modal-9452{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-9452 .dialog-message{width:1000px;height:800px;align-items:flex-start;padding:40px 40px 40px 40px;}#elementor-popup-modal-9452 .dialog-close-button{display:flex;}@media(max-width:767px){.elementor-9452 .elementor-element.elementor-element-bc4cd99{--width:500px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-9452 .elementor-element.elementor-element-69bdd48{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-69bdd48 *//* 🔷 FORM CONTAINER */
.booking-form-wrapper {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.2);
}

/* 🧱 SECTION HEADINGS */
.booking-form-wrapper strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
    opacity: 0.8;
}

/* 🧾 INPUT FIELDS */
.booking-form-wrapper .form-control {
    width: 100%;
    height: 52px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.85);
    font-size: 14px;
    transition: all 0.3s ease;
}

/* TEXTAREA */
.booking-form-wrapper textarea.form-control {
    height: 120px;
    resize: none;
}

/* 🧠 INPUT FOCUS */
.booking-form-wrapper .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13,110,253,0.15);
    background: #fff;
    outline: none;
}

/* 🔽 SELECT FIELD */
.booking-form-wrapper select.form-control {
    appearance: none;
    background: rgba(255,255,255,0.85);
    cursor: pointer;
}

/* 🧩 TRUST TEXT */
.booking-form-wrapper small {
    font-size: 13px;
    color: #555;
}

/* 🔲 CTA CONTAINER */
.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

/* 🔳 CTA ITEM */
.cta-item {
    flex: 1;
    min-width: 180px;
}

/* 🔵 PRIMARY BUTTON */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 48px;

    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff !important;

    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    border: none;

    cursor: pointer;
    text-align: center;

    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(13,110,253,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13,110,253,0.4);
}

/* 🟠 WHATSAPP BUTTON (FINAL CLEAN VERSION) */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 48px;
    padding: 0 22px;

    background: #EC8A14;
    color: #fff !important;

    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;

    line-height: 1;
    white-space: nowrap;

    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(236,138,20,0.35);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(236,138,20,0.45);
    color: #fff;
}

/* 📱 TABLET */
@media (max-width: 768px) {
    .booking-form-wrapper {
        padding: 20px;
    }

    .booking-form-wrapper .form-control {
        height: 48px;
    }

    .booking-form-wrapper textarea.form-control {
        height: 100px;
    }
}

/* 📱 MOBILE */
@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
    }
}/* End custom CSS */