/* Add this to footerButton.css */
@media (min-width: 992px) {
    .desktop-footer {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        max-width: 1400px;
        /* Line 11: Darker gradient starting with black */
        background: linear-gradient(90deg, #0a0a0a 0%, #006828 100%);
        border-radius: 6px;
        /* Line 13: Tight vertical padding to remove extra bg space */
        padding: 0px 16px;
        z-index: 9999;
        display: block !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    }

    .desktop-footer .conference-footer-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: white;
        height: 60px; /* Forces elements to align to a specific height */
    }

    /* Line 27: Scaled up logo */
    .desktop-footer .garcx-logo {
        width: 140px !important;
        height: auto !important;
    }

    /* Line 34: Scaled up dates */
    .desktop-footer .conf-dates {
        font-size: 14px;
        font-weight: 600;
        margin: 0 20px;
        white-space: nowrap !important;
    }

    /* Line 41: Bold larger title */
    .desktop-footer .conf-title {
        font-size: 18px;
        font-weight: 700;
        flex-grow: 1;
        text-align: center;
        margin: 0 20px;
    }

    .desktop-footer .conf-cta-footer {
        background: #E56000;
        color: white;
        border: none;
        border-radius: 999px;
        /* Line 51: Larger button */
        padding: 0 28px;
        height: 48px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }

    .desktop-footer .conf-cta-footer svg {
        width: 22px;
        height: 22px;
        stroke-width: 3;
        flex-shrink: 0;
    }

    .desktop-footer .footer-left-group {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.desktop-footer .footer-right-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .desktop-footer .conf-close {
        background: #ffffff;
        border: none;
        border-radius: 50%;
        color: #000000;
        font-size: 20px;
        cursor: pointer;
        margin-left: 10px !important;
        opacity: 0.7;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .desktop-footer .conf-close:hover {
        opacity: 1.0;
    }
}
/*Desktop View*/
.minimized-conf-btn {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 300px;
    height: 50px;
    background-color: #E56000;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.minimized-conf-btn:hover {
    background-color: #cc5600;
}

.minimized-conf-btn svg {
    margin-right: 10px;
    animation: arrow-bounce 1.5s infinite ease-in-out;
}

/* Desktop capsule button */
.minimized-conf-btn {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 320px;
    height: 50px;
    background-color: #E56000;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

/* Arrow animation usage */
.minimized-conf-btn svg {
    animation: arrow-fade-slide 1.8s infinite ease-in-out;
}

/* ✅ WRITE THIS AT THE BOTTOM */
@keyframes arrow-fade-slide {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    40% {
        opacity: 0;
        transform: translateX(-8px);
    }
    60% {
        opacity: 0;
        transform: translateX(8px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}



/*Mobile View - REMOVED TO PREVENT CONFLICT WITH FOOTER.JS */
/* All mobile styles are now handled directly inside Footer.js 
   to ensure the Dark Stacked Layout works correctly.
*/
