/* Mobile Optimization for Home Page Only */

@media (max-width: 768px) {
    /* Hide Top Bar on Mobile */
    .top-bar {
        display: none;
    }
    
    /* Main Nav Z-Index */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
    }
    

    
    .nav-item {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-item a {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0.5rem;
        border-radius: 8px;
        width: 90%;
        margin: 0.5rem auto;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1003;
        position: relative;
    }
    
    .nav-buttons {
        display: none;
    }
    
    /* Override desktop nav-menu styles */
    .nav-menu {
        display: flex !important;
    }
    
    /* Hero Section Mobile */
    .hero-reach {
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-stats-row {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .stat-box {
       padding: 1rem 1.5rem;
        width: 100% !important;
        min-width: auto !important;
        max-width: none !important;
    }
    
    .stat-num {
        font-size: 1.8rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }
    
    .hero-main-image {
        height: 300px;
        margin-bottom: 1rem;
    }
    
    .floating-card {
        position: static;
        margin: 1rem auto;
        animation: none;
        max-width: 280px;
    }
    
    /* Features Section Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 20px;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .feature-icon-bg {
        width: 70px;
        height: 70px;
        margin: 0 auto 1.5rem;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Main Content Mobile */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .highlight-list {
        text-align: left;
        max-width: 100%;
    }
    
    .highlight-item {
        margin-bottom: 1.2rem;
    }
    
    .highlight-text h4 {
        font-size: 1rem;
    }
    
    .highlight-text p {
        font-size: 0.9rem;
    }
    
    .main-image {
        height: 250px;
        margin-bottom: 1rem;
    }
    
    .stats-overlay {
        position: static;
        margin-top: 1rem;
        gap: 1rem;
        justify-content: center;
        padding: 1rem;
    }
    
    .stats-overlay .stat-item {
        flex: 1;
        min-width: 80px;
    }
    
    .stats-overlay .stat-number {
        font-size: 1.5rem;
    }
    
    .stats-overlay .stat-label {
        font-size: 0.75rem;
    }
    
    /* Speakers Section Mobile */
    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 20px;
    }
    
    .speaker-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .speaker-image img {
        height: 200px;
    }
    
    .speaker-info {
        padding: 1.5rem;
    }
    
    .speaker-info h4 {
        font-size: 1.1rem;
    }
    
    .speaker-title {
        font-size: 0.85rem;
    }
    
    .speaker-topic {
        font-size: 0.8rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 20px;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .author-info h5 {
        font-size: 0.95rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
    
    /* CTA Section Mobile */
    .cta-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .cta-feature {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .btn-primary-xl {
        width: 100%;
        max-width: 280px;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .cta-note {
        font-size: 0.85rem;
        margin-top: 1rem;
    }
    
    /* Section Headers Mobile */
    .section-header-center,
    .testimonials-header {
        padding: 0 20px;
        text-align: center;
    }
    
    .section-header-center h2,
    .testimonials-header h2 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-header-center p,
    .testimonials-header p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* General Mobile Spacing */
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-reach {
        padding: 80px 0 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats-row {
        gap: 0.5rem;
    }
    
    .stat-box {
        min-width: 70px;
        padding: 0.8rem 0.5rem;
    }
    
    .stat-num {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}