/* Mobile Sticky Bottom CTA Bar */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 12px 20px;
    z-index: 10000;
}

.mobile-sticky-cta .cta-btn-main {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 12px;
    border-radius: 50px;
    width: 100%;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }

    /* Offset body to avoid content covered by sticky bar */
    body {
        padding-bottom: 80px;
    }

    /* Hide the old large WA float on mobile if sticky bar is active */
    .wa-float {
        display: none !important;
    }
}

/* Header CTA Buttons */
.nav-cta-btn {
    background: #007b9f;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-right: 10px;
}

.nav-cta-btn:hover {
    background: #005f7a;
}

@media (max-width: 768px) {
    .nav-search-mobile {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nav-cta-link,
    .nav-login-link {
        width: 100%;
    }

    .nav-cta-btn,
    .nav-login-btn {
        width: 100%;
        padding: 12px;
    }
}

/* Promo Alert Box Enhancements */
.promo-alert-box {
    margin: 20px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f7fbfc 0%, #edf4f5 100%);
    border-left: 5px solid #007b9f;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.info-important-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff3b30;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.3);
}

.info-important-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 700;
    color: #06284e;
}

.promo-alert-text {
    font-size: 14px;
    line-height: 1.6;
    margin: 10px 0;
    color: #444;
}

.promo-alert-text-small {
    font-size: 13px;
    line-height: 1.5;
    margin: 10px 0;
}

.promo-link-no-style {
    text-decoration: none !important;
}

.info-important-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
    background: #ff9500;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-important-btn:hover {
    background: #e68600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 134, 0, 0.3);
}

.mobile-promo-btn {
    padding: 10px !important;
    font-size: 14px !important;
    margin-top: 10px !important;
}

.mobile-promo-title {
    font-size: 18px !important;
}

/* Visibility Utilities */
@media (min-width: 769px) {
    .hide-on-desktop {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
}