/* Responsive Styles */

/* Desktop - 1024px */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--gap-md);
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-content {
        gap: var(--gap-lg);
    }
    
    .hero-card {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Tablet - 768px */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-list {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        box-shadow: var(--shadow);
        flex-direction: column;
        padding: var(--gap-md);
        gap: var(--gap-sm);
        display: none;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--gap-lg);
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--gap-lg);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header h2 {
        font-size: var(--font-size-2xl);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Mobile Medium - 425px */
@media (max-width: 425px) {
    .container {
        padding: 0 var(--gap-sm);
    }
    
    .header-content {
        height: 70px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero {
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: var(--font-size-2xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-lg);
        bottom: 15px;
        right: 15px;
    }
    
    .section-header h2 {
        font-size: var(--font-size-xl);
    }
    
    .contact-form,
    .hero-card {
        padding: var(--gap-sm);
    }
}

/* Mobile Small - 375px */
@media (max-width: 375px) {
    .hero-title {
        font-size: var(--font-size-xl);
    }
    
    .about-text h2 {
        font-size: var(--font-size-xl);
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: var(--font-size-lg);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: var(--font-size-lg);
    }
    
    .service-card h3 {
        font-size: var(--font-size-lg);
    }
}

/* Mobile Extra Small - 320px */
@media (max-width: 320px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: var(--font-size-lg);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: var(--font-size-lg);
    }
    
    .hero-card,
    .contact-form {
        padding: 12px;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: var(--font-size-base);
        bottom: 10px;
        right: 10px;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: var(--gap-2xl) 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--gap-sm);
    }
    
    .hero-card {
        display: none;
    }
}

/* Print styles */
@media print {
    .whatsapp-float,
    .menu-toggle,
    .btn {
        display: none;
    }
    
    .hero {
        background: var(--color-secondary);
        color: white;
        padding: var(--gap-lg) 0;
        min-height: auto;
    }
    
    .footer {
        page-break-inside: avoid;
    }
}