.font-inter { font-family: 'Inter', sans-serif; }
        .font-bebas { font-family: 'Bebas Neue', cursive; }
        .gradient-text {
            color: #f97316;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        .animate-float { animation: float 3s ease-in-out infinite; }
        .animate-fadeInUp { animation: fadeInUp 1s ease-out; }
        .animate-slideInRight { animation: slideInRight 1s ease-out; }
        .delay-1000 { animation-delay: 1s; }
        
        /* Refined Animated Text Styles */
        .animated-word {
            position: relative;
            display: inline-block;
            color: #f97316;
            font-weight: 700;
            transform: scale(1);
            transition: all 0.4s ease-in-out;
        }
        
        /* Subtle glow effect - same as passion style */
        .passion-glow {
            animation: passionGlow 3s ease-in-out infinite;
        }
        
        @keyframes passionGlow {
            0%, 100% { 
                opacity: 1;
                transform: scale(1);
            }
            50% { 
                opacity: 0.9;
                transform: scale(1.02);
            }
        }
        
        /* Simple fade transition for word changes */
        .word-fade {
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        
        .word-fade.active {
            opacity: 1;
        }
/*-----------------------------------
Trial Locations Section CSS
------------------------------------*/
 .font-bebas { 
        font-family: 'Bebas Neue', sans-serif; 
    }
    
    .gradient-text {
        background: linear-gradient(135deg, #f97316, #ea580c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    @keyframes float {
        0%, 100% { 
            transform: translateY(0px) rotate(0deg); 
        }
        50% { 
            transform: translateY(-12px) rotate(3deg); 
        }
    }
    
    @keyframes fadeInUp {
        0% { 
            opacity: 0; 
            transform: translateY(30px); 
        }
        100% { 
            opacity: 1; 
            transform: translateY(0); 
        }
    }
    
    .floating {
        animation: float 6s ease-in-out infinite;
    }
    
    .floating-delayed {
        animation: float 6s ease-in-out infinite;
        animation-delay: -3s;
    }

/*-----------------------------------
Player Selection Section CSS
------------------------------------*/
  .font-bebas { 
        font-family: 'Bebas Neue', sans-serif; 
    }
    
    .gradient-text {
        background: linear-gradient(135deg, #f97316, #ea580c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

/*-----------------------------------
FAQ Section CSS
------------------------------------*/
  .font-bebas { 
        font-family: 'Bebas Neue', sans-serif; 
    }
    
    .gradient-text {
        background: linear-gradient(135deg, #f97316, #ea580c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
    }

    .faq-answer.active {
        max-height: 200px;
    }

    .faq-question svg {
        transition: transform 0.3s ease-in-out;
    }

    .faq-question.active svg {
        transform: rotate(180deg);
    }

/*-----------------------------------
Footer Section CSS - Simplified & Clean
------------------------------------*/

/* Basic Font & Text Styles */
.font-bebas { 
    font-family: 'Bebas Neue', sans-serif; 
}

.gradient-text {
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Layout Structure */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

footer {
    margin-top: auto;
}

/* Basic Animations */
@keyframes footerPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes pulse-whatsapp {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.animate-pulse {
    animation: footerPulse 2s infinite;
}

/* Smooth Transitions */
footer a, footer button {
    transition: all 0.3s ease;
}

/*-----------------------------------
Floating WhatsApp Button
------------------------------------*/
.floating-whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-text {
    background: white;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    border: 1px solid #e5e7eb;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    font-family: system-ui, sans-serif;
}

.floating-whatsapp-container:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-fab {
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.whatsapp-ico {
    width: 32px;
    height: 32px;
    fill: white;
}

/*-----------------------------------
Scroll to Top Button - Fixed Spacing
------------------------------------*/
.scroll-top-btn,
#scrollToTopBtn {
    position: fixed;
    bottom: 100px; /* 80px above WhatsApp */
    right: 20px;
    width: 44px;
    height: 44px;
    background: #f97316;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.scroll-top-btn.show,
#scrollToTopBtn.show {
    opacity: 0.9;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover,
#scrollToTopBtn:hover {
    background: #ea580c;
    transform: scale(1.1);
    opacity: 1 !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/*-----------------------------------
Copyright Bar
------------------------------------*/
.bottom-copyright-bar {
    background: #111827;
}

.copyright-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.copyright-text {
    flex: 1;
    text-align: left;
}

.copyright-p {
    color: #9CA3AF;
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}

.layood-link {
    color: #f97316;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.layood-link:hover {
    color: #ea580c;
}

.policy-link {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #f97316;
}

/*-----------------------------------
Mobile Responsive
------------------------------------*/
@media (max-width: 768px) {
    /* Footer */
    footer {
        padding-bottom: 90px;
    }
    
    footer .grid {
        gap: 2rem;
    }

    /* Floating Elements */
    .floating-whatsapp-container {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    
    .whatsapp-fab {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-text {
        font-size: 13px;
        padding: 6px 12px;
    }

    .scroll-top-btn,
    #scrollToTopBtn {
        bottom: 85px; /* 70px above WhatsApp */
        right: 15px;
        width: 40px;
        height: 40px;
    }

    /* Copyright */
    .copyright-container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .copyright-text {
        text-align: center;
    }

    .copyright-p {
        font-size: 11px;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    /* Hide WhatsApp text on small screens */
    .whatsapp-text {
        display: none;
    }
    
    footer {
        padding-bottom: 80px;
    }

    .scroll-top-btn,
    #scrollToTopBtn {
        bottom: 75px; /* 60px above WhatsApp */
        right: 15px;
    }

    .copyright-p {
        font-size: 10px;
    }
}

/*-----------------------------------
Clean Up & Utilities
------------------------------------*/
/* Prevent text selection on buttons */
.whatsapp-fab,
.scroll-top-btn,
#scrollToTopBtn {
    user-select: none;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.whatsapp-fab:focus,
.scroll-top-btn:focus,
#scrollToTopBtn:focus {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .floating-whatsapp-container,
    .scroll-top-btn,
    #scrollToTopBtn {
        display: none !important;
    }
}