/* ========================================
   MOBILE-ONLY CSS - CLEAN VERSION
   Applied only on devices <= 991px
   Desktop remains 100% unchanged
   ======================================== */

@media screen and (max-width: 991px) {
    
    /* BASE TYPOGRAPHY */
    html {
        font-size: 16px;
    }
    
    body {
        font-size: 1rem;
        line-height: 1.6;
        overflow-x: hidden;
    }
    
    /* CONTAINER */
    .container {
        padding: 0 20px;
    }
    
    /* HEADER & LOGO */
    .header {
        padding: 15px 0;
    }
    
    .logo-img {
        max-height: 75px;
        width: auto;
    }
    
    /* HAMBURGER MENU - FORCE DISPLAY */
    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        padding: 8px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }
    
    .mobile-toggle span {
        width: 28px;
        height: 3px;
        background: #7B3088;
        display: block !important;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    /* FORCE HIDE DESKTOP NAV */
    .nav-list {
        display: none !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: white !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 1000 !important;
        list-style: none !important;
    }
    
    /* SHOW NAV WHEN ACTIVE - HIGHEST PRIORITY */
    .nav.active .nav-list {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* NAV LIST ITEMS - FORCE VISIBILITY */
    .nav-list li {
        width: 100% !important;
        list-style: none !important;
        display: block !important;
        visibility: visible !important;
    }
    
    /* NAV LINKS - FORCE VISIBILITY */
    .nav-list li a,
    .nav-list a,
    .nav-link {
        display: block !important;
        padding: 16px 20px !important;
        font-size: 16px !important;
        color: #333 !important;
        text-decoration: none !important;
        border-bottom: 1px solid #f0f0f0 !important;
        transition: all 0.3s ease !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
    }
    
    .nav-list a:hover,
    .nav-link:hover {
        background: #f8f9fa;
        color: #7B3088;
        padding-left: 25px;
    }
    
    /* DROPDOWN */
    .dropdown-menu {
        position: static !important;
        display: none;
        background: #f8f9fa;
        padding: 0;
        box-shadow: none !important;
        transform: none !important;
    }
    
    /* Show dropdown on hover/focus */
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu {
        display: block !important;
    }
    
    .dropdown-menu li {
        width: 100%;
        list-style: none;
    }
    
    .dropdown-menu a {
        padding-left: 40px !important;
        font-size: 15px !important;
        background: #f8f9fa !important;
    }
    
    .dropdown-menu a:hover {
        background: #e9ecef !important;
        padding-left: 45px !important;
    }
    
    /* REGISTER BUTTON IN NAV */
    .nav .btn,
    .nav .btn-primary {
        display: block;
        margin: 15px 20px;
        width: calc(100% - 40px);
        text-align: center;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    /* TYPOGRAPHY */
    h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.875rem;
    }
    
    h3 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    h4 {
        font-size: 1.25rem;
        line-height: 1.4;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    /* HERO SECTION */
    .hero {
        min-height: 70vh;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-date {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hero-btns .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* COUNTDOWN */
    .countdown {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .countdown-item {
        flex: 0 0 calc(50% - 10px);
        min-width: 140px;
        padding: 20px 10px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.875rem;
    }
    
    /* STATS */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    /* BUTTONS */
    .btn {
        padding: 14px 28px;
        font-size: 16px;
        min-height: 48px;
        line-height: 1.4;
    }
    
    /* SECTIONS */
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* GRIDS */
    .about-grid,
    .awards-grid,
    .features-grid,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* CARDS */
    .award-card,
    .feature-item,
    .unique-item {
        padding: 25px;
    }
    
    /* ICONS - BIGGER FOR MOBILE */
    i.fa, i.fas, i.far, i.fab,
    .fa, .fas, .far, .fab {
        font-size: 1.5rem;
    }
    
    .feature-icon i,
    .unique-icon i {
        font-size: 2rem;
    }
    
    /* SOCIAL MEDIA ICONS - BIGGER */
    .social-links {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 1.5rem;
    }
    
    .social-links a {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 1.75rem;
        background: #f8f9fa;
        color: #7B3088;
        transition: all 0.3s ease;
        border: 2px solid #e0e0e0;
    }
    
    .social-links a:hover {
        background: #7B3088;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(123, 48, 136, 0.3);
    }
    
    .social-links a i {
        font-size: 1.75rem;
    }
    
    .social-links .x-icon {
        font-size: 1.75rem;
    }
    
    /* FOOTER */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-logo {
        height: 75px;
        width: auto;
    }
    
    .footer-column h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .footer-column p,
    .footer-column a {
        font-size: 0.95rem;
    }
    
    /* FORMS */
    .form-group {
        margin-bottom: 20px;
    }
    
    input,
    textarea,
    select {
        font-size: 16px;
        padding: 14px;
        min-height: 48px;
    }
    
    label {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    /* CTA SECTIONS */
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cta-content .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* TABLET SPECIFIC (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .countdown-item {
        flex: 0 0 calc(25% - 15px);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* SMALL MOBILE (< 480px) */
@media screen and (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .countdown-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .countdown-number {
        font-size: 1.75rem;
    }
    
    .social-links a {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .social-links a i {
        font-size: 1.5rem;
    }
}
