body {
    
    width: 100%;
}

@media (max-width: 1024px) {
    .hero-title { font-size: 56px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

    /* Mobile Menu Styles */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-color);
        flex-direction: column;
        padding: 20px 0;
        border-bottom: 1px solid var(--border-color);
        gap: 20px;
        text-align: center;
        display: flex;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .navbar .btn { display: none; }
    .mobile-menu-btn { display: block; }
    
    /* Hero Sections (Home & Service Page) */
    .hero,
    .page-hero {
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 0 0 0;
        min-height: auto;
    }
    
    .hero-bg,
    .page-hero .hero-bg {
        position: relative;
        width: 100%;
        height: 55vh;
        order: 1;
    }
    
    .hero-overlay,
    .page-hero .hero-overlay {
        background: linear-gradient(to bottom, rgba(var(--bg-color-rgb), 0.4) 0%, rgba(var(--bg-color-rgb), 0.2) 20%, rgba(var(--bg-color-rgb), 0.8) 75%, var(--bg-color) 100%);
    }

    .hero-container,
    .page-hero .hero-container {
        order: 2;
        margin-top: -80px;
        padding-bottom: 60px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title,
    .page-hero .hero-title {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .hero-desc,
    .page-hero .hero-desc { 
        max-width: 100%; 
        margin: 0 auto 30px; 
        font-size: 16px;
    }
    
    .hero-actions,
    .page-hero .hero-actions { 
        justify-content: center; 
        gap: 15px;
    }
    
    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }
    
    .hero-feature {
        flex: 1 1 calc(50% - 10px);
        padding: 15px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .contact-card { padding: 40px 20px; }
    .contact-card h2 { font-size: 28px; }
    
    .faq-grid { grid-template-columns: 1fr; }
    .faq-question { padding: 20px; font-size: 16px; }
    .faq-answer { padding: 0 20px; font-size: 15px; }
    .faq-item.active .faq-answer { padding: 0 20px 20px; }
    
    .service-gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title,
    .page-hero .hero-title { font-size: 32px; }
    
    .hero-actions,
    .page-hero .hero-actions { 
        flex-direction: column; 
        width: 100%; 
        gap: 15px;
    }
    
    .hero-actions .btn,
    .page-hero .hero-actions .btn { 
        width: 100%; 
        padding: 15px 28px;
        justify-content: center;
    }
    
    .hero-actions .play-btn {
        justify-content: center;
    }
    
    /* Exactly 2 cards per row for services on mobile */
    .services-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }
    
    .service-card { 
        border-radius: 16px; 
        aspect-ratio: 1 / 1;
        display: block;
    }
    .service-img { 
        height: 100%; 
        min-height: 0;
    }
    .service-content { 
        padding: 12px; 
        flex-direction: row; 
        text-align: left; 
        gap: 8px; 
        justify-content: flex-start;
    }
    .service-icon {
        width: 24px;
        height: 24px;
        margin: 0;
        background: transparent;
        border: 1px solid rgba(var(--white-rgb), 0.5);
    }
    .service-icon svg {
        width: 14px;
        height: 14px;
    }
    .service-title { 
        font-size: 13px; 
        margin-bottom: 0; 
    }
    .service-title span { 
        margin-top: 2px; 
        font-size: 9px;
    }
    
    /* One large image per row for gallery */
    .gallery-grid { grid-template-columns: 1fr; gap: 20px; }
    .gallery-item { height: auto; aspect-ratio: 4/3; }
    
        .features-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .feature-item { padding: 20px 10px; }
    .feature-item h3 { font-size: 14px; margin-bottom: 5px; }
    .feature-item p { font-size: 11px; line-height: 1.4; }
    .feature-icon { width: 40px; height: 40px; margin-bottom: 10px; }
    .feature-icon svg { width: 18px; height: 18px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .contact-actions { flex-direction: column; width: 100%; gap: 15px; }
}

@media (max-width: 768px) {
    .full-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .full-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
