/* RESPONSIVE DESIGN STYLES */

/* Desktop Large (1920px and above) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .section-title {
        font-size: var(--font-5xl);
    }
}

/* Laptop (1024px - 1919px) */
@media (max-width: 1919px) and (min-width: 1024px) {
    .container {
        max-width: 1140px;
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: var(--font-3xl);
    }
    
    .section-subtitle {
        font-size: var(--font-base);
    }
}

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    :root {
        --spacing-xs: 0.375rem;
        --spacing-sm: 0.75rem;
        --spacing-md: 1rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-2xl: 2.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: var(--font-2xl);
    }
    
    .section-subtitle {
        font-size: var(--font-sm);
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: var(--font-sm);
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 80vh;
    }
    
    .hero-content {
        padding: var(--spacing-lg);
    }
    
    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .service-card {
        padding: var(--spacing-lg);
    }
    
    /* Gallery Grid Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    /* Pricing Grid Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    /* Team Grid Mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    /* Stats Grid Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    /* Blogs Grid Mobile */
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    /* Contact Section Mobile */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .info-card {
        padding: var(--spacing-md);
    }
    
    .contact-form {
        padding: var(--spacing-lg);
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    /* Back to Top Button Mobile */
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 1rem;
        right: 1rem;
        font-size: 1rem;
    }
    
    /* Lightbox Mobile */
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: var(--font-xl);
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-link,
    .social-link,
    .info-link {
        min-height: 44px;
        min-width: 44px;
    }
    
    .hamburger {
        padding: 0.75rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .back-to-top,
    .social-media,
    .contact-form,
    .btn-admin {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .hero-overlay {
        opacity: 0.3;
    }
}
