/* ===== Responsive Styles ===== */

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
    .nav-links {
        gap: 15px;
    }

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

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

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

    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .hero {
        height: 70vh;
        padding: 20px;
    }

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

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

    .service-cards {
        grid-template-columns: 1fr;
    }

    .testimonial {
        width: 100%;
    }

    .contact form {
        width: 100%;
        padding: 0 10px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .brand {
        font-size: 1.2rem;
    }

    .btn {
        padding: 8px 18px;
        font-size: 0.9rem;
    }

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

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