/* ================= responsive.css ================= */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-top: 70px;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== TABLET (max 900px) ===== */
@media (max-width: 900px) {
    .support-cards {
        flex-direction: column;
        gap: 20px;
    }
    .support-card {
        width: 100%;
    }
}

/* ===== MOBILE (max 768px) ===== */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    /* Hero section */
    .hero-section {
        width: 100%;
        overflow: hidden;
        min-height: auto !important;
        height: auto !important;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding: 30px 16px;
        width: 100%;
        box-sizing: border-box;
        gap: 0 !important;
    }

    .hero-left {
        width: 100%;
        margin: 0;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .hero-right {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .btn {
        width: fit-content;
        min-width: 140px;
        text-align: center;
    }

    .stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding-bottom: 20px;
    }

    .stat-item {
        text-align: center;
    }

    /* Support cards */
    .support-cards {
        flex-direction: column;
        gap: 20px;
    }

    .support-card {
        width: 100%;
    }

    /* Testimonials */
    .testimonials-container,
    .photo-content {
        flex-direction: column;
        padding: 20px;
    }

    .testimonials-cards {
        width: 100%;
    }

    .testimonial-card {
        width: 100%;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }
}

/* ===== SMALL PHONES (max 480px) ===== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}