/* ==================== 
   TABLET & MEDIUM DEVICES (768px - 1024px)
===================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }
}

/* ==================== 
   MOBILE DEVICES (Small - 768px)
===================== */

@media (max-width: 768px) {
    /* HEADER & NAV */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-green);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 2rem 0;
    }

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

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

    /* HERO SECTION */
    .hero {
        height: 60vh;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    /* SECTIONS */
    section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    /* ABOUT SECTION */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

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

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    /* SERVICES GRID */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* PRODUCTS GRID */
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .product-card {
        padding: 1rem;
    }

    .product-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .product-card h3 {
        font-size: 1rem;
    }

    .product-card p {
        font-size: 0.85rem;
    }

    /* CONTACT SECTION */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* FOOTER */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* WHATSAPP BUTTON */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
        font-size: 1.5rem;
    }
}

/* ==================== 
   SMALL MOBILE (Below 480px)
===================== */

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }

    .hero {
        height: 50vh;
    }

    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 0;
    }

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

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .card {
        padding: 1rem;
    }

    .card h3 {
        font-size: 1rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer {
        padding: 2rem 0 0.8rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.85rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .contact-card {
        padding: 1rem;
    }

    .contact-card h3 {
        font-size: 1rem;
    }

    .contact-card p {
        font-size: 0.9rem;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* ==================== 
   PRINT STYLES
===================== */

@media print {
    .hamburger,
    .whatsapp-float {
        display: none;
    }

    body {
        font-size: 12pt;
        color: black;
    }

    a {
        text-decoration: underline;
    }
}
