/* ============================================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    :root {
        --header-height: 80px;
    }

    .container {
        padding: 0 24px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .stat-number {
        font-size: 3rem;
    }

    .card {
        padding: 28px;
    }
}

/* ============================================================
   RESPONSIVE — Mobile (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    /* ---------- HEADER & NAV ---------- */
    .mobile-toggle {
        display: block;
    }

    .nav-list {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        display: block;
        padding: 14px 24px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-list a:hover,
    .nav-list a.active-link {
        background: rgba(99, 102, 241, 0.05);
    }

    .header-actions {
        gap: 10px;
    }

    .lang-switch {
        gap: 2px;
    }

    .lang-btn {
        padding: 4px 8px;
        font-size: 0.75rem;
    }

    .logo-img {
        height: 50px;
    }

    .header.scrolled .logo-img {
        height: 40px;
    }

    /* ---------- HERO ---------- */
    .hero {
        min-height: 500px;
        text-align: center;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    /* ---------- SECTIONS ---------- */
    .section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* ---------- FEATURE CARDS ---------- */
    .features-grid,
    .card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card {
        padding: 24px;
    }

    .card h3 {
        font-size: 1.2rem;
    }

    /* ---------- GALLERY ---------- */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .project-image {
        height: 200px;
    }

    .btn-gallery {
        padding: 14px 28px;
        font-size: 1rem;
    }

    /* ---------- TOUR CAROUSEL ---------- */
    .tour-carousel {
        flex-direction: column;
    }

    .tour-nav {
        display: none;
    }

    .tour-dots {
        gap: 8px;
    }

    /* ---------- VIDEO SECTION ---------- */
    .video-container {
        border-radius: 12px;
    }

    /* ---------- STATS ---------- */
    .stats-section {
        padding: 50px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-card {
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .stat-desc {
        font-size: 0.8rem;
    }

    /* ---------- SERVICES ---------- */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 24px;
    }

    /* ---------- HOW IT WORKS ---------- */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* ---------- PRICING ---------- */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .price {
        font-size: 2.5rem;
    }

    .price-note {
        font-size: 0.85rem;
    }

    /* ---------- FAQ ---------- */
    .faq-container {
        gap: 10px;
    }

    .faq-question {
        padding: 16px 20px 8px 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 0.9rem;
    }

    /* ---------- CONTACT FORM ---------- */
    .contact-form {
        padding: 24px 16px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }

    /* ---------- FOOTER ---------- */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo-img {
        height: 60px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* ---------- BACK TO TOP ---------- */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    /* ---------- CURSOR GLOW (disable on mobile) ---------- */
    .cursor-glow {
        display: none;
    }
}

/* ============================================================
   RESPONSIVE — Small Phone (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
    :root {
        --header-height: 60px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    .section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 16px 8px;
    }

    .card {
        padding: 20px;
    }

    .pricing-grid {
        max-width: 100%;
    }

    .price {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .logo-img {
        height: 40px;
    }

    /* Radar preloader scales down */
    .radar-wrap {
        width: 100px;
        height: 100px;
    }

    .radar-ring.r1 {
        width: 100px;
        height: 100px;
    }

    .radar-ring.r2 {
        width: 72px;
        height: 72px;
    }

    .radar-ring.r3 {
        width: 46px;
        height: 46px;
    }

    .radar-cross {
        width: 100px;
        height: 100px;
    }

    .radar-sweep {
        width: 50px;
        height: 50px;
    }

    .preloader-text {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .preloader-subtext {
        font-size: 0.75rem;
    }
}