/* Tablet Devices */
@media (max-width: 992px) {
  :root {
    --fs-5xl: 2.5rem;
    --fs-4xl: 2rem;
    --fs-3xl: 1.75rem;
  }

  .top-utility-content {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }

  .contact-info {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    padding: var(--spacing-3xl) var(--spacing-xl);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
    z-index: 9999;
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-toggle {
    display: block;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  :root {
    --fs-5xl: 2rem;
    --fs-4xl: 1.75rem;
    --fs-3xl: 1.5rem;
    --spacing-3xl: 2rem;
  }

  .container {
    padding: 0 var(--spacing-md);
  }

  .section {
    padding: var(--spacing-2xl) 0;
  }

  .btn {
    width: 100%;
  }

  .sticky-whatsapp {
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  :root {
    --fs-5xl: 1.75rem;
    --fs-4xl: 1.5rem;
    --fs-3xl: 1.25rem;
  }

  .social-links {
    gap: var(--spacing-sm);
  }
}

/* Mobile Specific Fixes */
@media (max-width: 768px) {
    .hero-banner {
        padding: 60px 0 !important;
    }

    .hero-banner h1 {
        font-size: 2rem !important;
    }

    .hero-banner .lead {
        font-size: 1rem !important;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-step {
        flex-direction: column;
        text-align: center;
    }

    .target-audience {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .youtube-container iframe {
        height: 250px;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-form input,
    .subscribe-form button {
        width: 100%;
    }

    .enrollment-notification {
        max-width: 90%;
        right: -100%;
    }

    .enrollment-notification.show {
        right: 5%;
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .target-audience {
        grid-template-columns: 1fr;
    }

    .course-card {
        margin-bottom: var(--spacing-lg);
    }

@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: calc(50% - 0.75rem);
    }
}
@media (max-width: 576px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 16px);
        min-width: calc(100% - 16px);
    }
    .testi-arrow { display: none; }
}
}
