/* Responsive Styles */

/* Tablet - 768px and below */
@media screen and (max-width: 768px) {
    /* Navigation */
    .hamburger {
        display: flex;
    }

    .est-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
        letter-spacing: 1px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .nav-menu a {
        display: block;
        width: 100%;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero {
        padding: 60px 0;
    }

    /* Page Hero */
    .page-hero {
        height: 300px;
    }

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

    .hero-overlay p {
        font-size: 1.2rem;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Content */
    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

    /* Section Spacing */
    .services,
    .content,
    .contact {
        padding: 40px 0;
    }

    .section-intro h2,
    .services h2,
    .contact h2 {
        font-size: 2rem;
    }

    /* Features Grid */
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

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

    .logo {
        gap: 8px;
    }

    .logo img {
        height: 40px;
    }

    .est-badge {
        font-size: 0.55rem;
        padding: 2px 6px;
        letter-spacing: 0.5px;
    }

    /* Typography */
    .hero-content h1 {
        font-size: 1.5rem;
    }

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

    .hero-overlay h1 {
        font-size: 1.5rem;
    }

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

    .section-intro h2,
    .services h2,
    .contact h2 {
        font-size: 1.75rem;
    }

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

    /* Buttons */
    .cta-button,
    .whatsapp-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    /* Page Hero */
    .page-hero {
        height: 250px;
    }

    /* Service Cards */
    .service-card h3 {
        font-size: 1.3rem;
    }

    /* Feature Items */
    .feature-item {
        padding: 1.5rem;
    }

    .feature-item h3 {
        font-size: 1.3rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-section h3 {
        font-size: 1.5rem;
    }

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

    /* Contact Info */
    .contact-info h3 {
        font-size: 1.5rem;
    }

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

    /* Footer */
    .footer-section h4 {
        font-size: 1.1rem;
    }

    footer {
        padding: 2rem 0 1rem;
    }
}

/* Large Desktop - 1400px and above */
@media screen and (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

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

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

/* Landscape Mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 40px 0;
    }

    .page-hero {
        height: 250px;
    }

    .hero-content h1,
    .hero-overlay h1 {
        font-size: 1.5rem;
    }

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

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    footer,
    .whatsapp-btn,
    .cta-button {
        display: none;
    }

    body {
        background-color: white;
        color: black;
    }

    .hero,
    .page-hero {
        break-inside: avoid;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000;
        --secondary-color: #0066cc;
        --text-color: #000;
    }

    .service-card,
    .feature-item {
        border: 2px solid currentColor;
    }
}

