/* Tablet Styles */
@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-hero h1 {
        font-size: 2.5rem;
    }

    .service-item {
        gap: 1.5rem;
    }

    .service-content h2 {
        font-size: 1.6rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-form-container,
    .contact-info {
        padding: 1.5rem;
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--background);
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu .cta-button {
        display: inline-block;
        width: auto;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .services-hero {
        padding: 6rem 0 3rem;
    }

    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .service-icon {
        margin: 0 auto;
    }

    .service-content ul li {
        text-align: left;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .contact-hero {
        padding: 6rem 0 3rem;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-section {
        padding: 3rem 0;
    }

    .contact-form-container h2,
    .contact-info h2 {
        font-size: 1.8rem;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-item i {
        margin-bottom: 0.5rem;
    }

    .social-links-section {
        text-align: center;
    }

    .map-container {
        height: 300px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .services-overview {
        padding: 3rem 0;
    }

    .services-overview h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .services-hero h1 {
        font-size: 1.8rem;
    }

    .services-detailed {
        padding: 3rem 0;
    }

    .service-item {
        margin-bottom: 1.5rem;
    }

    .service-content h2 {
        font-size: 1.4rem;
    }

    .service-cta {
        width: 100%;
        text-align: center;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .contact-form-container,
    .contact-info {
        padding: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
    }

    .info-group {
        gap: 1rem;
    }

    .info-item i {
        font-size: 1.2rem;
        padding: 0.8rem;
    }

    .map-container {
        height: 250px;
    }
}

/* Landscape Mode Fixes */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 4rem 0 2rem;
    }

    .nav-menu.active {
        max-height: 80vh;
        overflow-y: auto;
    }
}

/* High Resolution Screens */
@media screen and (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
} 