/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking-section {
    background: #05010a;
    padding: 100px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.booking-header {
    text-align: center;
    margin-bottom: clamp(40px, 8vh, 80px);
}

.booking-header .heading-tag {
    justify-content: center;
}

.booking-main-title {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.03em;
    max-width: 900px;
    margin: 0 auto;
}

/* --- CALENDLY FRAME --- */
.calendly-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.calendly-glass-frame {
    background: #111;
    border-radius: 24px;
    border: 12px solid #111;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 40px 100px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(165, 148, 253, 0.1);
    overflow: hidden;

    /* ← REMOVE opacity:0 and transform, start fully visible */
    opacity: 1;
    transform: translateY(0);
}

.frame-tag {
    position: absolute;
    top: -12px;
    right: 40px;
    background: var(--purple-main, #632C9B);
    color: #fff;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    z-index: 10;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .booking-section {
        padding-top: 80px;
    }

    .calendly-inline-widget {
        height: 950px !important;
    }

    .frame-tag {
        right: 50%;
        transform: translateX(50%);
        white-space: nowrap;
        top: -10px;
    }
}

@media (max-width: 360px) {
    .booking-main-title {
        font-size: 1.7rem;
    }

    .calendly-card-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .calendly-glass-frame {
        width: 340px;
        min-width: 340px;
        transform: scale(0.85);
        transform-origin: top center;
        border-width: 6px;
    }

    .booking-section {
        padding-bottom: 0;
    }

    .calendly-inline-widget {
        height: 1000px !important;
    }
}

@media (max-width: 300px) {
    .calendly-glass-frame {
        transform: scale(0.75);
    }
}