.sticky-enrol-btn {
    position: fixed;
    bottom: 28px;
    left: 24px;
    z-index: 2900;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.45), 0 2px 6px rgba(0,0,0,0.18);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    animation: stickySlideIn 0.5s 0.4s both;
    max-width: calc(100vw - 48px);
}

.sticky-enrol-btn i {
    font-size: 18px;
    flex-shrink: 0;
    animation: stickyPulse 2.2s 1.2s ease-in-out infinite;
}

.sticky-enrol-btn span {
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-enrol-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 54px;
    border: 2px solid rgba(249,115,22,0.4);
    animation: stickyRing 2.2s 1.2s ease-out infinite;
    pointer-events: none;
}

.sticky-enrol-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.55), 0 4px 10px rgba(0,0,0,0.2);
}

.sticky-enrol-btn:active {
    transform: translateY(0) scale(0.98);
}

@keyframes stickySlideIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes stickyPulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.2); }
}

@keyframes stickyRing {
    0%   { opacity: 0.8; transform: scale(1); }
    100% { opacity: 0;   transform: scale(1.35); }
}

@media (max-width: 480px) {
    .sticky-enrol-btn {
        left: 12px;
        right: 12px;
        bottom: 16px;
        width: calc(100% - 24px);
        max-width: none;
        justify-content: center;
        font-size: 13px;
        padding: 13px 16px;
    }
}
.footer-reg-link {
    cursor: pointer !important;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-reg-link:hover {
    color: #F5A623 !important;
    text-decoration: underline;
}

.email-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
}

.email-modal-card {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 620px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: emailModalFadeIn 0.25s ease-out;
}

.email-modal-card .contact-form-panel {
    width: 100% !important;
    max-width: 100% !important;
}

.email-modal-card .qr-form-container {
    display: block !important;
    grid-template-columns: 1fr !important;
}

@keyframes emailModalFadeIn {
    from { opacity: 0; transform: translateY(15px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.email-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.2s ease;
}

.email-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: rotate(90deg);
}

.email-modal-content {
    padding: 16px;
}