/* =========================
   TABLETS (max-width: 1024px)
========================= */
@media (max-width: 1024px) {

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image img {
        margin: 30px auto 0;
    }

    .navbar ul {
        gap: 15px;
    }
}

/* =========================
   MOBILE (max-width: 768px)
========================= */
@media (max-width: 768px) {

    /* Header */
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .navbar ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Hero */
    .hero {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

    section h2 {
        font-size: 26px;
    }

    /* Cards */
    .country-cards,
    .service-cards,
    .features {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* =========================
   SMALL MOBILE (max-width: 480px)
========================= */
@media (max-width: 480px) {

    .hero-text h1 {
        font-size: 26px;
    }

    .btn-gold,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .stat-box h3 {
        font-size: 26px;
    }
}
