/* ===================================
   MOBILE RESPONSIVE - CLEAN & FIXED
   =================================== */

/* ===================================
   PREVENT SCROLL BOUNCE ON MOBILE
   =================================== */
@media (max-width: 768px) {
    body {
        overscroll-behavior-y: none;
    }

    /* Loader is handled by JS - no CSS override needed */
}

/* ===================================
   MOBILE NAVIGATION
   =================================== */
@media (max-width: 768px) {
    .nav-right {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        cursor: pointer;
        z-index: 1002;
        position: relative;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--white);
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }

    .nav-menu {
        position: fixed !important;
        display: flex !important;
        flex-direction: column !important;
        top: 0 !important;
        right: -100% !important;
        width: 100% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background-image: url('../assets/icons/logo.svg') !important;
        background-repeat: no-repeat !important;
        background-position: center 40px !important;
        background-size: 100px !important;
        background-color: var(--dark-green) !important;
        padding: 140px 40px 40px !important;
        gap: 0 !important;
        margin: 0 !important;
        z-index: 1001 !important;
        overflow-y: auto !important;
        box-shadow: -5px 0 25px rgba(0,0,0,0.5) !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .nav-menu.active { right: 0 !important; }

    .nav-menu li {
        list-style: none !important;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.3s ease;
        margin: 0 !important;
        padding: 0 !important;
    }

    .nav-menu.active li { opacity: 1; transform: translateX(0); }
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }

    .nav-menu .nav-link {
        display: block !important;
        font-size: 16px !important;
        padding: 15px 0 !important;
        color: var(--white) !important;
        text-decoration: none !important;
        width: 100% !important;
        border-bottom: 1px solid rgba(203,180,132,0.1) !important;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active { color: var(--gold) !important; }

    .mobile-social-icons {
        display: flex !important;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(203,180,132,0.2);
        opacity: 0;
        transition: opacity 0.3s ease 0.4s;
    }

    .nav-menu.active .mobile-social-icons { opacity: 1; }

    .mobile-social-icons a {
        color: var(--white) !important;
        font-size: 20px;
        transition: color 0.3s ease;
    }

    .mobile-social-icons a:hover { color: var(--gold) !important; }

    .mobile-contact-btn {
        display: block !important;
        width: 100%;
        text-align: center;
        padding: 14px 20px !important;
        background-color: transparent !important;
        border: 2px solid var(--gold) !important;
        color: var(--gold) !important;
        text-decoration: none !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        letter-spacing: 1px;
        margin-top: 20px;
        opacity: 0;
        transition: all 0.3s ease 0.45s;
    }

    .nav-menu.active .mobile-contact-btn { opacity: 1; }
    .mobile-contact-btn:hover { background-color: var(--gold) !important; color: var(--dark-green) !important; }
}

/* ===================================
   ABOUT PAGE
   =================================== */
@media (max-width: 768px) {
    .about-stryde-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px;
        align-items: center;
    }

    .about-image-container {
        width: 100% !important;
        position: relative !important;
        display: flex;
        justify-content: center;
    }

    .about-main-image {
        width: 100% !important;
        max-width: 350px !important;
        height: 380px !important;
        border-radius: 180px 0 180px 180px;
    }

    .success-result-card {
        position: absolute !important;
        bottom: 20px !important;
        right: 50% !important;
        transform: translateX(50%) !important;
        max-width: 260px !important;
        padding: 15px 20px !important;
        z-index: 10 !important;
    }

    .percentage-circle { width: 70px !important; height: 70px !important; }
    .percentage-circle svg { width: 70px !important; height: 70px !important; }
    .percentage-text { font-size: 20px !important; }
    .badge-title { font-size: 15px !important; }
    .badge-subtitle { font-size: 11px !important; }

    .about-text-content {
        width: 100% !important;
        text-align: center;
    }

    .about-text-content h2 { font-size: 32px; margin-bottom: 20px; }
    .about-text-content p { font-size: 14px; line-height: 1.8; text-align: left; }
}

@media (max-width: 480px) {
    .about-main-image { height: 320px !important; }
    .success-result-card { max-width: 90% !important; padding: 12px 15px !important; }
    .percentage-circle { width: 60px !important; height: 60px !important; }
    .percentage-circle svg { width: 60px !important; height: 60px !important; }
    .percentage-text { font-size: 18px !important; }
}

/* ===================================
   TESTIMONIALS PAGE
   =================================== */
@media (max-width: 768px) {
    .testimonials-grid { gap: 50px; }

    .testimonial-card,
    .testimonial-card:nth-child(even) {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 25px !important;
        padding: 40px 30px !important;
        align-items: center !important;
    }

    .testimonial-name { order: 1 !important; text-align: center !important; width: 100% !important; margin: 0 !important; }
    .testimonial-name h3 { font-size: 22px !important; margin-bottom: 8px !important; color: var(--gold) !important; }
    .testimonial-name p { font-size: 14px !important; color: var(--cream) !important; opacity: 0.9 !important; }

    .testimonial-image-wrapper { order: 2 !important; width: 220px !important; margin: 0 !important; position: relative !important; }
    .testimonial-image { width: 220px !important; height: 280px !important; border-radius: 110px 0 110px 110px !important; }

    .quote-mark { font-size: 80px !important; top: -15px !important; left: 50% !important; right: auto !important; transform: translateX(-50%) !important; }

    .testimonial-content { order: 3 !important; width: 100% !important; margin: 0 !important; }
    .testimonial-content p { text-align: left !important; font-size: 14px !important; line-height: 1.8 !important; margin-bottom: 18px !important; color: var(--cream) !important; }
    .testimonial-content p:last-child { margin-bottom: 0 !important; }
}

@media (max-width: 480px) {
    .testimonial-card,
    .testimonial-card:nth-child(even) { padding: 35px 25px !important; }
    .testimonial-image-wrapper { width: 200px !important; }
    .testimonial-image { width: 200px !important; height: 250px !important; }
    .testimonial-name h3 { font-size: 20px !important; }
    .testimonial-name p { font-size: 13px !important; }
    .testimonial-content p { font-size: 13px !important; }
}

/* ===================================
   SERVICES PAGE
   =================================== */
@media (max-width: 768px) {
    .additional-services-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px;
    }

    .services-image-circle { order: 1 !important; width: 280px !important; height: 350px !important; margin: 0 auto 40px !important; }
    .additional-services-list { order: 2 !important; width: 100%; }

    .services-cta-box { order: 3 !important; width: 100% !important; padding: 30px 25px !important; margin-top: 20px !important; }
    .cta-text { font-size: 18px !important; text-align: center !important; margin-bottom: 20px !important; }
    .services-cta-box .btn-primary { width: 100% !important; padding: 14px 30px !important; }

    .section-title-dark { font-size: 36px; margin-bottom: 50px; }
    .service-item { gap: 20px; padding-bottom: 30px; }
    .service-number { font-size: 28px; min-width: 50px; }
    .service-details h3 { font-size: 20px; }
    .service-details p { font-size: 14px; }
}

@media (max-width: 480px) {
    .services-image-circle { width: 250px !important; height: 300px !important; }
    .cta-text { font-size: 16px !important; }
    .section-title-dark { font-size: 30px; }
}

/* ===================================
   GLOBAL MOBILE
   =================================== */
@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .hero h1, .about-hero h1, .testimonials-hero h1,
    .services-hero h1, .contact-hero h1 {
        font-size: 40px;
        letter-spacing: 2px;
    }

    .hero-subtitle { font-size: 14px; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }

    .hero h1, .about-hero h1, .testimonials-hero h1,
    .services-hero h1, .contact-hero h1 {
        font-size: 32px;
    }
}
