/* ===== RESPONSIVE DESIGN ===== */

/* Tablet - 768px and below */
@media (max-width: 768px) {

    /* Header */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .nav-menu a {
        color: var(--dark) !important;
    }

    /* Hero Section */
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 350px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    /* Courses */
    .courses-grid {
        grid-template-columns: 1fr;
    }

    /* Story */
    .story-content {
        grid-template-columns: 1fr;
    }

    .story-image {
        order: -1;
    }

    .story-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    /* Reasons */
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-item {
        height: 200px;
    }

    /* Testimonials */
    .testimonial-card {
        min-width: 280px;
    }

    /* FAQ & Form */
    .faq-form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-container {
        padding: 30px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Float Buttons */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
        font-size: 26px;
    }

    .enquire-sticky {
        font-size: 12px;
        padding: 12px 20px;
    }

    /* Popup */
    .popup-content {
        padding: 30px;
        max-width: 90%;
    }

    .popup-content h2 {
        font-size: 24px;
    }

    .offer-text {
        font-size: 26px;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {

    /* Typography */
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-desc {
        font-size: 13px;
    }

    /* Logo */
    .om-symbol {
        font-size: 28px;
    }

    .brand-name {
        font-size: 16px;
    }

    .brand-subtitle {
        font-size: 10px;
    }

    /* About */
    .about-image img {
        height: 300px;
    }

    .experience-badge {
        bottom: -15px;
        right: -15px;
        padding: 20px;
    }

    .badge-number {
        font-size: 28px;
    }

    /* Story Stats */
    .story-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 36px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    /* Course Card */
    .course-price {
        font-size: 28px;
    }

    /* Popup */
    .popup-content {
        padding: 25px;
    }

    .popup-icon {
        font-size: 50px;
    }

    .popup-content h2 {
        font-size: 20px;
    }

    .offer-text {
        font-size: 22px;
    }

    /* Float Buttons */
    .enquire-sticky {
        padding: 10px 15px;
        font-size: 11px;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 24px;
        bottom: 15px;
        left: 15px;
    }
}