/* ============================================
   RESPONSIVE DESIGN - ADDITIONAL STYLES
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2, .section-title {
        font-size: 1.75rem;
    }
    
    .logo-link {
        width: 80px !important;
        height: 80px !important;
        margin-top: 0 !important;
        margin-bottom: -15px !important; 
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .features-grid,
    .services-grid,
    .blog-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .modal-container {
        width: 95%;
        padding: 1rem;
    }
    
    .service-modal-container {
        width: 95%;
        padding: 1rem;
    }

    /* Services section header row: stack vertically */
    .services-section-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem;
    }

    .services-section-header h3 {
        font-size: 1.5rem !important;
    }

    /* Force grids to 1 column on small screens */
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .stat-item .counter,
    .stat-item .rating {
        font-size: 1.25rem;
    }
    
    .stat-item p {
        font-size: 0.75rem;
    }
    
    .feature-card,
    .service-card {
        padding: 1.25rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .btn-primary,
    .btn-outline {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .container {
        max-width: 1280px;
    }
}

/* Print Styles */
@media print {
    .sticky-header,
    .footer,
    .whatsapp-float,
    .sticky-booking,
    .cta-banner {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}