/* --- 5. HERO SECTION --- */

.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.hero-card {
    min-width: 100%;
    position: relative;
    text-align: center;
}

.hero-card img {
    width: 100%;
    height: 90vh;
    max-height: 700px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    max-width: 90%;
}

.hero-caption h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.paecho-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #b11226;
    color: white;
    /* Increased radius for a rounded/pill look */
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    font-weight: 600;
    text-align: center;
}

.paecho-btn:hover {
    background: #7a0c18;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.paecho-btn.outline {
    background: transparent;
    border: 2px solid #b11226;
    color: #b11226;
}

.paecho-btn.outline:hover {
    background: #b11226;
    color: white;
}


/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media (max-width: 768px) {
    .paecho-btn {
        /* Full width on mobile for easier tapping */
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 10px auto;
        padding: 15px 20px;
        font-size: 1rem;
    }
}


/* HERO SLIDER NAVIGATION */

.hero-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.hero-nav button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.3s;
}

.hero-nav button:hover {
    background: rgba(0, 0, 0, 0.8);
}


/* HERO SLIDER DOTS */

.hero-dots {
    text-align: center;
    margin-top: 15px;
}

.hero-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-dots .active {
    background: #b11226;
}


/* =========================
   IMPACT STATS
   ========================= */

.impact-stats {
    display: flex;
    justify-content: space-around;
    background: #f4f4f4;
    padding: 60px 5%;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item h2 {
    font-size: 2.5rem;
    color: #b11226;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1rem;
    color: #333;
}


/* =========================
   VMG SECTION – UPDATED
   ========================= */

.vmg-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 80px 5%;
    background: #f9f9f9;
    flex-wrap: wrap;
    /* Allows wrapping on smaller screens */
}

.vmg-card {
    /* Each card takes up 30% of the row width */
    flex: 1 1 300px;
    max-width: 400px;
    background: #ffffff;
    color: #333;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.4s, box-shadow 0.4s, background 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vmg-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    background: #fff5f5;
}

.vmg-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #b11226;
    background: #ffe6e6;
    padding: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    transition: transform 0.3s, background 0.3s, color 0.3s;
}

.vmg-card:hover .vmg-icon {
    transform: scale(1.2);
    background: #b11226;
    color: #fff;
}

.vmg-card h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 600;
}

.vmg-card p {
    font-size: 1rem;
    line-height: 1.6;
}


/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media (max-width: 768px) {
    .vmg-section {
        flex-direction: column;
        align-items: center;
        padding: 50px 5%;
    }
    .vmg-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}


/* =========================
   CTA SECTION
   ========================= */

.cta-section {
    background: #333;
    color: white;
    text-align: center;
    padding: 60px 5%;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cta-btns a {
    margin: 0 10px;
}


/* --- FORCE HERO FULL WIDTH ON MOBILE --- */

@media (max-width: 768px) {
    .hero-caption h2 {
        font-size: 1.4rem;
    }
    @media (max-width: 768px) {
        /* Adjusts hero image to be better proportioned for phone screens */
        .hero-card img {
            height: 60vh;
            object-position: center center;
            /* Keeps the focus on the middle of the image */
        }
        .hero-caption {
            bottom: 20px;
            /* Adjusts caption position relative to new height */
            padding: 0 15px;
        }
    }
    .impact-stats {
        flex-direction: column;
        gap: 20px;
    }
    .cta-section h2 {
        font-size: 1.6rem;
    }
    .cta-section p {
        font-size: 1rem;
    }
    .cta-btns a {
        display: block;
        margin: 10px auto;
    }
}