/* =========================================================
   PREMIUM BOOKING SECTION
========================================================= */

.arez-booking-section {

    position: relative;

    padding: 120px 5% 0;

    background: #000;

    overflow: visible;

    z-index: 8;
}



/* =========================================================
   BACKGROUND GLOW EFFECTS
========================================================= */

.booking-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

    opacity: 0.15;

    pointer-events: none;
}

.booking-glow-1 {

    width: 500px;

    height: 500px;

    background: #F8DA50;

    top: -200px;

    left: -150px;
}

.booking-glow-2 {

    width: 450px;

    height: 450px;

    background: #DCA629;

    bottom: -180px;

    right: -100px;
}



/* =========================================================
   MAIN CONTAINER
========================================================= */

.booking-container {

    position: relative;

    z-index: 50;

    max-width: 1350px;

    margin-left: auto;
    margin-right: auto;

    margin-top: 140px;

    margin-bottom: -260px;

    padding: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 70px;

    border-radius: 30px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(18,18,18,0.96),
            rgba(8,8,8,0.98)
        );

    backdrop-filter: blur(20px);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.75);
}



/* =========================================================
   BACKGROUND IMAGE OVERLAY
========================================================= */

.booking-container::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        url("https://arez-tech.com/assets/images1/Foooterimage.webp");

    background-size: cover;

    background-position: center;

    opacity: 0.18;

    z-index: -2;
}

.booking-container::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(0,0,0,0.85),
            rgba(0,0,0,0.6)
        );

    z-index: -1;
}



/* =========================================================
   LEFT CONTENT
========================================================= */

.booking-content {

    flex: 1;

    max-width: 540px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}



/* =========================================================
   TAG
========================================================= */

.booking-tag {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 24px;

    margin-bottom: 28px;

    border-radius: 100px;

    background:
        rgba(248,218,80,0.08);

    border:
        1px solid rgba(248,218,80,0.15);

    color: #F8DA50;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;
}



/* =========================================================
   HEADING
========================================================= */

.booking-content h2 {

    font-size: clamp(42px, 5vw, 72px);

    line-height: 1.08;

    font-weight: 800;

    color: #fff;

    margin-bottom: 28px;
}



/* =========================================================
   GOLD TEXT
========================================================= */

.gold-text {

    color: #F8DA50;
}



/* =========================================================
   SUBTEXT
========================================================= */

.booking-subtext {

    font-size: 18px;

    line-height: 1.8;

    color: rgba(255,255,255,0.72);

    margin-bottom: 35px;
}



/* =========================================================
   FEATURES
========================================================= */

.booking-features {

    display: flex;

    flex-direction: column;

    gap: 18px;

    margin-bottom: 38px;
}

.booking-feature {

    display: flex;

    align-items: center;

    gap: 14px;

    color: #fff;

    font-size: 16px;
}

.booking-feature i {

    color: #F8DA50;

    font-size: 18px;
}



/* =========================================================
   NOTE
========================================================= */

.booking-note {

    color: #F8DA50;

    font-size: 18px;

    font-weight: 600;

    letter-spacing: 0.3px;
}



/* =========================================================
   CALENDLY WRAPPER
========================================================= */

.booking-widget-wrapper {

    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;
}



/* =========================================================
   FLOATING ANIMATION
========================================================= */

@keyframes floatingCalendly {

    0% {

        transform:
            translateY(0px)
            rotate(0deg);
    }

    50% {

        transform:
            translateY(-16px)
            rotate(0.4deg);
    }

    100% {

        transform:
            translateY(0px)
            rotate(0deg);
    }
}



/* =========================================================
   CALENDLY CONTAINER
========================================================= */

.booking-widget {

    width: fit-content;

    height: fit-content;

    padding: 0;

    border-radius: 24px;

    overflow: hidden;

    background: transparent;

    box-shadow: none;

    border: none;

    display: flex;

    align-items: center;

    justify-content: center;

    animation:
        floatingCalendly 5s ease-in-out infinite;
}



/* =========================================================
   CALENDLY INLINE
========================================================= */

.calendly-inline-widget {

    width: 480px !important;

    min-width: 480px !important;

    height: 640px !important;

    min-height: 640px !important;

    border: none !important;

    outline: none !important;

    box-shadow: none !important;

    border-radius: 24px;

    overflow: hidden !important;

    background: transparent !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;
}



/* =========================================================
   FORCE CALENDLY IFRAME
========================================================= */

.calendly-inline-widget iframe {

    width: 480px !important;

    height: 640px !important;

    min-height: 640px !important;

    border: none !important;

    outline: none !important;

    box-shadow: none !important;

    border-radius: 24px !important;

    overflow: hidden !important;

    display: block !important;

    margin: auto !important;
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .booking-container {

        flex-direction: column;

        padding: 50px 30px;

        gap: 50px;

        margin-bottom: -160px;
    }

    .booking-content {

        text-align: center;

        align-items: center;

        max-width: 100%;
    }

    .booking-features {

        align-items: center;
    }
}



@media (max-width: 768px) {

    .arez-booking-section {

        padding: 100px 20px 0;
    }

    .booking-container {

        padding: 40px 20px;

        margin-top: 40px;

        margin-bottom: 0;

        gap: 40px;

        border-radius: 24px;
    }

    .booking-content h2 {

        font-size: 42px;
    }

    .booking-subtext {

        font-size: 16px;
    }

    .calendly-inline-widget {

        width: 100% !important;

        min-width: 100% !important;

        height: 620px !important;

        min-height: 620px !important;
    }

    .calendly-inline-widget iframe {

        width: 100% !important;

        height: 620px !important;

        min-height: 620px !important;
    }
}