/* ==========================================
   BUSINESS KIT SECTION
   ========================================== */

.business-kit-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 2rem;
}

/* Kit Images */
.kit-image {
    max-width: 90%;
    height: auto;
    display: block;
}

/* Desktop Kit - Show by default */
.kit-desktop {
    display: block;
}

/* Mobile Kit - Hide by default */
.kit-mobile {
    display: none;
}

/* ==========================================
   RESPONSIVE - MOBILE
   ========================================== */
@media (max-width: 768px) {
    .business-kit-container {
        padding: 5rem;
    }

    /* Hide Desktop Kit on mobile */
    .kit-desktop {
        display: none;
    }

    /* Show Mobile Kit on mobile */
    .kit-mobile {
        display: block;
    }

    /* Make mobile image fill more of the screen */
    .kit-image {
        max-width: 100%;
    }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .kit-image {
        max-width: 85%;
    }
}

/* ==========================================
   FIXED BUTTON - BUSINESS KIT SECTION
   ========================================== */

/* Business Kit button glow effect - same as team/workshop buttons */
#glow-on-hover-trans-business-kit {
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

#glow-on-hover-trans-business-kit:hover:before {
    opacity: 1;
    filter: blur(10px);
    transition: filter .3s ease-in-out;
}

#glow-on-hover-trans-business-kit:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(0px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 1;
    transition: opacity .3s ease-in-out;
    transition: filter .3s ease-in-out;
    border-radius: 10px;
}

#glow-on-hover-trans-business-kit:active:after {
    background: transparent;
}

#glow-on-hover-trans-business-kit:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #FAFAFA;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 10px;
}

/* Use the glowing animation from workshop.css */
@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/* Ensure smooth transitions for the fixed book button when in business-kit section */
body.business-kit-active .fixed-book-btn-container {
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

