﻿:root
{
    --theme-bg1: #5ce1e6;
    --theme-bg2: #05347e;
    --theme-clr: #5ce1e6;
    --theme-bg-dark-azure: #0a3539;
    --apex-glow: 0 0 20px #5ce1e6, 0 0 40px #5ce1e6;
    --apex-glow-strong: 0 0 30px #5ce1e6, 0 0 60px #5ce1e6;
    --apex-gradient: linear-gradient(90deg, #5ce1e6, #05347e);
    --apex-gradient-reverse: linear-gradient(90deg, #05347e, #5ce1e6);
}

/* =========== ULTRA MODERN GLOW EFFECTS =========== */
.apex-marketing-page
{
    background: radial-gradient(ellipse at center, #000000 0%, #021232 70%, #0a1a3a 100%);
    overflow-x: hidden;
}

.glow-text
{
    text-shadow: 0 0 20px #5ce1e6, 0 0 40px #5ce1e6, 0 0 60px #5ce1e6;
    animation: pulse-glow 2s infinite alternate;
}

.glow-border
{
    border: 2px solid transparent;
    border-radius: 15px;
    background: linear-gradient(#000, #000) padding-box, linear-gradient(90deg, #5ce1e6, #05347e, #5ce1e6) border-box;
    position: relative;
}

.glow-border::after
{
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #5ce1e6, #05347e, #5ce1e6);
    border-radius: 17px;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.6;
    animation: border-glow 3s infinite alternate;
}

.hero-glow
{
    position: relative;
}

.hero-glow::before
{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(92, 225, 230, 0.1) 0%, rgba(5, 52, 126, 0.05) 50%, transparent 70%);
    z-index: 0;
}

.exit-icon
{
    animation: shake 0.5s ease-in-out infinite alternate;
}

@keyframes shake
{
    0%
    {
        transform: rotate(-5deg);
    }

    100%
    {
        transform: rotate(5deg);
    }
}

/* =========== ANIMATIONS =========== */
@keyframes pulse-glow
{
    0%
    {
        text-shadow: 0 0 10px #5ce1e6, 0 0 20px #5ce1e6;
    }

    100%
    {
        text-shadow: 0 0 20px #5ce1e6, 0 0 40px #5ce1e6, 0 0 60px #5ce1e6;
    }
}

@keyframes border-glow
{
    0%
    {
        opacity: 0.4;
        filter: blur(10px);
    }

    100%
    {
        opacity: 0.7;
        filter: blur(20px);
    }
}

@keyframes float
{
    0%, 100%
    {
        transform: translateY(0);
    }

    50%
    {
        transform: translateY(-20px);
    }
}

.float-animation
{
    animation: float 6s ease-in-out infinite;
}

/* =========== SECTION STYLES =========== */
.section-title
{
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-title::after
{
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #5ce1e6, transparent);
}

.stat-card
{
    background: rgba(5, 52, 126, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(92, 225, 230, 0.2);
}

.stat-card:hover
{
    transform: translateY(-10px);
    border-color: #5ce1e6;
    box-shadow: 0 15px 30px rgba(92, 225, 230, 0.2);
}

.testimonial-card
{
    background: linear-gradient(145deg, rgba(5, 52, 126, 0.3), rgba(2, 18, 50, 0.5));
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid #5ce1e6;
    transition: transform 0.3s ease;
}

.testimonial-card:hover
{
    transform: translateY(-5px);
}

.pricing-card
{
    background: linear-gradient(180deg, rgba(5, 52, 126, 0.3) 0%, rgba(2, 18, 50, 0.6) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid rgba(92, 225, 230, 0.3);
}

.pricing-card.popular
{
    border-color: #5ce1e6;
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(92, 225, 230, 0.3);
}

.pricing-card.popular::before
{
    content: 'MOST POPULAR';
    position: absolute;
    top: 20px;
    right: -35px;
    background: #5ce1e6;
    color: #05347e;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.cta-button
{
    background: linear-gradient(90deg, #5ce1e6, #05347e);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button::after
{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::after
{
    left: 100%;
}

.cta-button:hover
{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(92, 225, 230, 0.4);
}

.before-after-container
{
    position: relative;
    width: 100%;
    height: 400px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #5ce1e6;
}

.before-after-slider
{
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #5ce1e6;
    cursor: ew-resize;
    transform: translateX(-50%);
    z-index: 10;
}

.before-after-slider::before
{
    content: '⇄';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #5ce1e6;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(92, 225, 230, 0.5);
}

.scroll-down
{
    width: 30px;
    height: 50px;
    border: 2px solid #5ce1e6;
    border-radius: 15px;
    position: relative;
}

.scroll-down::before
{
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #5ce1e6;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown
{
    0%
    {
        top: 10px;
        opacity: 1;
    }

    100%
    {
        top: 30px;
        opacity: 0;
    }
}

.profit-card
{
    transition: transform 0.3s ease;
}

.profit-card:hover
{
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 0, 0.1);
}

.avatar-circle
{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #05347e;
}

.pulse-animation
{
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse
{
    0%
    {
        transform: scale(1);
    }

    50%
    {
        transform: scale(1.05);
    }

    100%
    {
        transform: scale(1);
    }
}

.objection-card
{
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(92, 225, 230, 0.2);
    transition: all 0.3s ease;
}

.objection-card:hover
{
    background: rgba(92, 225, 230, 0.1);
    transform: translateY(-10px);
    border-color: #5ce1e6;
}

.objection-icon
{
    width: 80px;
    height: 80px;
    background: rgba(92, 225, 230, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid #5ce1e6;
}

.progress-fixed
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.progress-container
{
    width: 100%;
    height: 4px;
    background: rgba(0,0,0,0.3);
}

.progress-bar
{
    height: 100%;
    background: linear-gradient(90deg, #5ce1e6, #05347e);
    width: 0%;
    transition: width 0.3s ease;
}

.sticky-whatsapp
{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    animation: floatWhatsApp 3s ease-in-out infinite;
}

.whatsapp-btn
{
    background: var(--theme-bg1);
    color: var(--theme-bg-dark-azure) !important;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(92, 225, 230, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover
{
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(92, 225, 230, 0.6);
    color: white;
}

.whatsapp-btn i
{
    font-size: 24px;
    margin-right: 10px;
}

.whatsapp-text
{
    font-weight: bold;
    margin-right: 10px;
}

.whatsapp-badge
{
    background: red;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    animation: pulseBadge 2s infinite;
}

@keyframes floatWhatsApp
{
    0%, 100%
    {
        transform: translateY(0);
    }

    50%
    {
        transform: translateY(-10px);
    }
}

@keyframes pulseBadge
{
    0%, 100%
    {
        opacity: 1;
    }

    50%
    {
        opacity: 0.7;
    }
}

.ai-faq-interface
{
    background: rgba(5, 52, 126, 0.3);
    border-radius: 15px;
}

.typing-indicator
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.typing-indicator span
{
    width: 8px;
    height: 8px;
    background: #5ce1e6;
    border-radius: 50%;
    animation: typing 1s infinite;
}

.typing-indicator span:nth-child(2)
{
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3)
{
    animation-delay: 0.4s;
}

@keyframes typing
{
    0%, 100%
    {
        opacity: 0.3;
    }

    50%
    {
        opacity: 1;
    }
}

.accordion-button:not(.collapsed)
{
    background: rgba(92, 225, 230, 0.2) !important;
    color: #5ce1e6 !important;
}

/* =========== ACCESSIBILITY IMPROVEMENTS =========== */
.cta-button:focus, .whatsapp-btn:focus
{
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.whatsapp-screenshot-container
{
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.whatsapp-screenshot-container:hover
{
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 255, 0, 0.2);
}

.whatsapp-badge-overlay
{
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #25D366;
}

.success-story-card
{
    background: linear-gradient(145deg, rgba(5, 52, 126, 0.3), rgba(2, 18, 50, 0.5));
    border-radius: 15px;
    border: 1px solid rgba(92, 225, 230, 0.3);
    transition: all 0.3s ease;
}

.success-story-card:hover
{
    transform: translateY(-5px);
    border-color: #5ce1e6;
    box-shadow: 0 15px 30px rgba(92, 225, 230, 0.2);
}

.success-avatar
{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-screenshot-btn
{
    transition: all 0.3s ease;
}

.view-screenshot-btn:hover
{
    background: #25D366;
    color: white;
}

/* Modal Styles */
#screenshotModal .modal-content
{
    border: 2px solid #25D366;
}

#screenshotModal .modal-header
{
    background: rgba(37, 211, 102, 0.1);
}

.mentorship-promise-card
{
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.mentorship-promise-card:hover
{
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.2);
}

.mentorship-promise-card .hidden-content
{
    max-height: 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease;
}

.mentorship-promise-card.expanded .hidden-content,
.mentorship-promise-card:hover .hidden-content
{
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
    display: block;
}

/* Hover Hint */
.hover-hint
{
    animation: pulse-hint 2s infinite;
}

@keyframes pulse-hint
{
    0%, 100%
    {
        opacity: 0.6;
    }

    50%
    {
        opacity: 1;
    }
}

/* Hover Indicator */
.hover-indicator
{
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: bounce 2s infinite;
}

.mentorship-promise-card:hover .hover-indicator
{
    opacity: 1;
}

@keyframes bounce
{
    0%, 100%
    {
        transform: translateX(-50%) translateY(0);
    }

    50%
    {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Button Styles */
.btn-outline-lime
{
    color: #00ff00;
    border-color: #00ff00;
    background: transparent;
}

.btn-outline-lime:hover
{
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
}

/* Ensure all cards are same height initially */
.objection-card
{
    height: 100%;
    display: flex;
    flex-direction: column;
}

.objection-card .visible-content
{
    flex: 1;
}

.setup-step
{
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 8px;
}

.step-number
{
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #5ce1e6, #05347e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    margin-right: 10px;
    flex-shrink: 0;
}

.step-content
{
    flex: 1;
}

.fb-reviews-container
{
    background: #0a3539 !important;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facebook-review-card
{
    background: linear-gradient(145deg, rgba(5, 52, 126, 0.3), rgba(2, 18, 50, 0.5));
    border-radius: 15px;
    border-left: 4px solid #1877f2; /* Facebook blue */
    transition: all 0.3s ease;
}

.facebook-review-card:hover
{
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.2);
}

.star-rating
{
    font-size: 0.9rem;
}

/* Facebook Button */
.btn-outline-primary
{
    color: #1877f2;
    border-color: #1877f2;
}

.btn-outline-primary:hover
{
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}

/* Review Tabs Update */
.review-tabs
{
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.review-tabs button
{
    flex: 0 0 auto;
}

.review-tabs button.active
{
    background: #05347e;
    color: white;
    border-color: #5ce1e6;
}

.fb-reviews-container
{
    background: rgba(5, 52, 126, 0.3);
    min-height: 400px;
    border-radius: 15px;
}

.facebook-review-card
{
    background: linear-gradient(145deg, rgba(5, 52, 126, 0.2), rgba(2, 18, 50, 0.4));
    border-radius: 10px;
    border-left: 4px solid #1877f2;
    transition: all 0.3s ease;
}

.facebook-review-card:hover
{
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.2);
    background: linear-gradient(145deg, rgba(5, 52, 126, 0.3), rgba(2, 18, 50, 0.5));
}

.star-rating
{
    font-size: 0.9rem;
}

.facebook-badge
{
    width: 30px;
    height: 30px;
    background: rgba(24, 119, 242, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Loading animation */
#fbReviewsFallback
{
    animation: fadeIn 1s ease-in-out;
}

.coaching-feature
{
    background: rgba(0, 255, 0, 0.05);
    padding: 6px 10px;
    border-radius: 8px;
    border-left: 2px solid #00ff00;
}

.coaching-feature:hover
{
    background: rgba(0, 255, 0, 0.1);
}

#faqAccordion
{
    padding: 10px !important;
}
.accordion-item
{
    padding: 10px !important;
}

@keyframes fadeIn
{
    from
    {
        opacity: 0;
    }

    to
    {
        opacity: 1;
    }
}

.btn-theme
{
    background-color: var(--theme-bg1) !important;
    color: var(--theme-bg-dark-azure) !important;
    opacity: 1 !important;
}

.btn-outline-theme-clr-main
{
    border: 1px solid var(--theme-bg1) !important;
    color: var(--theme-bg1) !important;
    opacity: 1 !important;
}
.btn-theme:hover
{
    opacity: 0.7 !important;
}
.btn-outline-theme-clr-main:hover
{
    background: var(--theme-bg1) !important;
    color: var(--theme-bg-dark-azure) !important;
}

.btn-link.btn-sm
{
    padding: 0.1rem 0.5rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-link.btn-sm:hover
{
    transform: translateX(5px);
    text-decoration: underline !important;
}

.btn-link.clr-lime
{
    color: #00ff00 !important;
}

.btn-link.theme-clr
{
    color: #5ce1e6 !important;
}

.btn-link.clr-lime:hover, .btn-link.theme-clr:hover
{
    opacity: 0.8;
}

.modal-backdrop
{
    z-index: 1040;
}

.modal
{
    z-index: 1050;
}

.modal-open .modal
{
    overflow-x: hidden;
    overflow-y: auto;
}

/* Ensure modal backdrop is removed when hidden */
.modal-backdrop.fade.show
{
    opacity: 0.5;
}

.modal-backdrop.fade
{
    opacity: 0;
}

/* Make the container responsive */
@media (max-width: 768px)
{
    .fb-reviews-container
    {
        padding: 15px !important;
    }

    .facebook-review-card
    {
        padding: 15px !important;
    }
}

/* Mobile Responsiveness */
@media (max-width: 992px)
{
    .mentorship-promise-card .hidden-content
    {
        max-height: 0 !important;
        opacity: 0 !important;
        display: none !important;
    }

    .mentorship-promise-card.expanded .hidden-content
    {
        max-height: 1000px !important;
        opacity: 1 !important;
        display: block !important;
    }

    .hover-indicator
    {
        display: none;
    }
}

/* Desktop Hover Effects */
@media (min-width: 992px)
{
    .mentorship-promise-card .toggle-mentorship-details
    {
        display: none;
    }

    .hover-hint
    {
        display: block;
    }

    .mentorship-promise-card .hidden-content
    {
        display: block;
    }
}

/* Mobile: Show button, hide hover hint */
@media (max-width: 991px)
{
    .mentorship-promise-card .toggle-mentorship-details
    {
        display: inline-block;
    }

    .hover-hint
    {
        display: none;
    }

    .mentorship-promise-card .hidden-content
    {
        display: none;
    }
}

/* =========== RESPONSIVE =========== */
@media (max-width: 768px)
{
    .pricing-card.popular
    {
        transform: scale(1);
    }

    .hero-glow::before
    {
        width: 200%;
        height: 200%;
    }
}

/* =========== MOBILE OPTIMIZATIONS =========== */
@media (max-width: 576px)
{
    .stat-card
    {
        padding: 1rem;
    }

    .display-3
    {
        font-size: 2.5rem !important;
    }

    .display-4
    {
        font-size: 2rem !important;
    }

    .cta-button
    {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .before-after-container
    {
        height: 250px;
    }

    .avatar-circle
    {
        display:none;
    }

    #SocialCards
    {
        display: none;
    }
    #FollowIcons
    {
        margin-bottom:100px !important;
    }
}

.custom-video-player
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.custom-video-player.active
{
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.video-backdrop
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.video-container
{
    position: relative;
    z-index: 2;
    background: linear-gradient(145deg, #0a1a3a, #021232);
    border-radius: 20px;
    border: 2px solid #5ce1e6;
    box-shadow: 0 0 50px rgba(92, 225, 230, 0.3);
    width: 100%;
    max-width: 900px;
    overflow: hidden;
    animation: slideUp 0.4s ease-out;
}

.video-header
{
    background: linear-gradient(90deg, #05347e, #0a1a3a);
    padding: 20px;
    border-bottom: 2px solid #5ce1e6;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-title
{
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.video-close-btn
{
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #5ce1e6;
    color: #5ce1e6;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.video-close-btn:hover
{
    background: #5ce1e6;
    color: #05347e;
    transform: rotate(90deg);
}

.video-frame-wrapper
{
    padding: 20px;
    background: #000;
}

.video-footer
{
    padding: 20px;
    background: rgba(5, 52, 126, 0.3);
    border-top: 2px solid #5ce1e6;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeIn
{
    from
    {
        opacity: 0;
    }

    to
    {
        opacity: 1;
    }
}

@keyframes slideUp
{
    from
    {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

    to
    {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive */
@media (max-width: 768px)
{
    .custom-video-player
    {
        padding: 10px;
    }

    .video-container
    {
        max-width: 95%;
    }

    .video-header
    {
        padding: 15px;
    }

    .video-title
    {
        font-size: 1.2rem;
    }

    .video-frame-wrapper
    {
        padding: 10px;
    }

    .video-footer
    {
        padding: 15px;
        flex-direction: column;
    }

    .video-footer .btn
    {
        width: 100%;
    }
}

/* Ensure body doesn't scroll when video is open */
body.video-open
{
    overflow: hidden;

}

.social-card
{
    display: block;
    background: linear-gradient(145deg, rgba(5, 52, 126, 0.3), rgba(2, 18, 50, 0.5));
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.social-card::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--social-color), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.social-card:hover::before
{
    transform: scaleX(1);
}

.social-card:hover
{
    transform: translateY(-10px);
    border-color: var(--social-color);
    box-shadow: 0 15px 30px rgba(var(--social-rgb), 0.3);
}

.social-icon
{
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--social-rgb), 0.1);
    border: 2px solid var(--social-color);
    transition: all 0.3s ease;
}

.social-card:hover .social-icon
{
    background: var(--social-color);
    transform: scale(1.1);
}

.social-card:hover .social-icon i
{
    color: white;
}

.social-icon i
{
    font-size: 2rem;
    color: var(--social-color);
    transition: all 0.3s ease;
}

.social-title
{
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.social-desc
{
    color: var(--social-color);
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.social-stats
{
    margin: 20px 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(var(--social-rgb), 0.2);
}

.stat-item
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--social-color);
    font-size: 0.9rem;
}

.stat-item i
{
    font-size: 1.1rem;
}

.social-cta
{
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(var(--social-rgb), 0.3);
    color: var(--social-color);
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-card:hover .social-cta
{
    color: white;
}

/* Individual Social Platform Colors */
.social-card.facebook
{
    --social-color: #1877f2;
    --social-rgb: 24, 119, 242;
}

.social-card.tiktok
{
    --social-color: #000000;
    --social-rgb: 0, 0, 0;
}

.social-card.instagram
{
    --social-color: #e4405f;
    --social-rgb: 228, 64, 95;
}

.social-card.youtube
{
    --social-color: #ff0000;
    --social-rgb: 255, 0, 0;
}

/* Social Links */
.social-links
{
    display: flex;
    gap: 15px;
}

.social-link
{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link.facebook
{
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
    border-color: #1877f2;
}

.social-link.tiktok
{
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
    border-color: #000000;
}

.social-link.instagram
{
    background: rgba(228, 64, 95, 0.1);
    color: #e4405f;
    border-color: #e4405f;
}

.social-link.youtube
{
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border-color: #ff0000;
}

.social-link:hover
{
    transform: translateY(-5px) scale(1.1);
    color: white;
}

.social-link.facebook:hover
{
    background: #1877f2;
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
}

.social-link.tiktok:hover
{
    background: #000000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-link.instagram:hover
{
    background: #e4405f;
    box-shadow: 0 10px 20px rgba(228, 64, 95, 0.3);
}

.social-link.youtube:hover
{
    background: #ff0000;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px)
{
    .social-card
    {
        padding: 20px 15px;
    }

    .social-icon
    {
        width: 60px;
        height: 60px;
    }

    .social-icon i
    {
        font-size: 1.5rem;
    }

    .social-title
    {
        font-size: 1.3rem;
    }

    .social-links
    {
        gap: 10px;
    }

    .social-link
    {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* =========== PRINT OPTIMIZATION =========== */
@media print
{
    .apex-marketing-page
    {
        background: white !important;
        color: black !important;
    }

    .glow-text, .glow-border, .float-animation
    {
        animation: none !important;
        text-shadow: none !important;
    }

    .progress-fixed, .sticky-whatsapp, #particles-js
    {
        display: none !important;
    }
}

/* =========== PERFORMANCE OPTIMIZATIONS =========== */
@media (prefers-reduced-motion: reduce)
{
    *,
    *::before,
    *::after
    {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
