/* ======================================= */
/* LARGE DEVICES */
/* ======================================= */

@media(max-width: 1200px) {

    .hero-content h1 {
        font-size: 54px;
    }

    .section-title h2,
    .section-title-left h2 {
        font-size: 38px;
    }

    .page-banner h1 {
        font-size: 48px;
    }

}

/* ======================================= */
/* TABLETS */
/* ======================================= */

@media(max-width: 992px) {

    /* NAVBAR */
    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* HERO */
    .hero {
        height: auto;
        padding: 140px 0;
    }

    .hero-content h1 {
        font-size: 46px;
    }

    .hero-content p {
        font-size: 18px;
    }

    /* GRID LAYOUTS */
    .two-column,
    .card-grid,
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* FOOTER */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* NEWSLETTER */
    .newsletter-form {
        flex-direction: column;
    }

}

/* ======================================= */
/* MOBILE DEVICES */
/* ======================================= */

@media(max-width: 768px) {

    /* CONTAINER */
    .container {
        width: 92%;
    }

    /* HERO */
    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 17px;
    }

    /* PAGE BANNER */
    .page-banner {
        padding: 100px 20px;
    }

    .page-banner h1 {
        font-size: 40px;
    }

    /* SECTION TITLES */
    .section-title h2,
    .section-title-left h2 {
        font-size: 32px;
    }

    /* GRID */
    .two-column,
    .card-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* HERO STATS */
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-box {
        width: 100%;
        max-width: 300px;
    }

    /* ABOUT STATS */
    .about-stats {
        flex-direction: column;
    }

    /* CONTACT FORM */
    .contact-form-wrapper {
        padding: 30px 20px;
    }

    /* GALLERY */
    .gallery-overlay h3 {
        font-size: 18px;
    }

    /* BUTTONS */
    .btn,
    .btn-dark,
    .submit-btn {
        width: 100%;
        text-align: center;
    }

    /* WHATSAPP BUTTON */
    .whatsapp-float {
        right: 20px;
        bottom: 20px;
        padding: 14px 18px;
        font-size: 14px;
    }

}

/* ======================================= */
/* SMALL MOBILE DEVICES */
/* ======================================= */

@media(max-width: 480px) {

    /* HERO */
    .hero-content h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 16px;
    }

    /* PAGE BANNER */
    .page-banner h1 {
        font-size: 32px;
    }

    /* LOGO */
    .logo {
        font-size: 24px;
    }

    /* NAVIGATION */
    nav ul {
        gap: 15px;
    }

    nav ul li a {
        font-size: 14px;
    }

    /* SECTION */
    .section {
        padding: 70px 0;
    }

    /* CARD */
    .card h3 {
        font-size: 20px;
    }

    /* NEWSLETTER */
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

}