/* ============================================
   ANIMAL WELFARE PAGE STYLES
   ============================================ */

/* ---------- Vantara Introduction ---------- */
.vantara-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.vantara-content h2 {
    margin-bottom: 24px;
}

.vantara-content p {
    margin-bottom: 16px;
}

.vantara-highlights {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vh-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.vh-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(45, 90, 61, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-green);
}

.vh-item h4 {
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 4px;
}

.vh-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.vantara-visual {
    position: relative;
}

.vantara-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.vantara-image-main img {
    width: 100%;
    height: 480px;
    object-fit: contain;
    background: var(--neutral-light);
}

.vantara-badge-float {
    position: absolute;
    bottom: -30px;
    left: -30px;
    padding: 24px 32px;
    text-align: center;
    z-index: 2;
}

.vbf-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-green);
    line-height: 1;
    margin-bottom: 4px;
}

.vbf-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ---------- Rescue Stats ---------- */
.rescue-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.rescue-stat {
    text-align: center;
    padding: 40px 24px;
}

.rs-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.rescue-stat .stat-number {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 4px;
}

.rs-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-top: 12px;
    line-height: 1.6;
}

/* ---------- Species Grid ---------- */
.species-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.species-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 36px 28px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid var(--neutral-grey);
}

.species-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-gold-light);
}

.sc-icon-wrap {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.08), rgba(200, 169, 110, 0.08));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sc-emoji {
    font-size: 2rem;
}

.species-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.species-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.sc-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--neutral-grey);
}

.sc-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-green);
}

.sc-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ---------- Cattle Welfare ---------- */
.cattle-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cattle-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cattle-image img {
    width: 100%;
    height: 440px;
    object-fit: contain;
    background: var(--neutral-light);
}

.cattle-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0. 0. 0, 0.7));
    text-align: center;
}

.cattle-img-overlay .stat-number {
    color: white;
    font-size: 2rem;
}

.cattle-img-overlay .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.cattle-content h2 {
    margin-bottom: 20px;
}

.cattle-content p {
    margin-bottom: 16px;
}

.cattle-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.cf-item {
    text-align: center;
    padding: 20px 12px;
    background: rgba(45, 90, 61, 0.04);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(45, 90, 61, 0.1);
}

.cf-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-green);
    margin-bottom: 4px;
}

.cf-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------- Approach Timeline ---------- */
.approach-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-gold), var(--secondary-green));
}

.approach-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}

.approach-step:last-child {
    margin-bottom: 0;
}

.as-number {
    width: 72px;
    height: 72px;
    min-width: 72px;
    background: linear-gradient(135deg, var(--secondary-green), var(--secondary-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 25px rgba(45, 90, 61, 0.25);
}

.as-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.as-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ---------- CTA ---------- */
.aw-cta-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.aw-cta-block h2 {
    margin-bottom: 16px;
}

.aw-cta-block p {
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.aw-cta-block .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .vantara-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .cattle-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .rescue-grid {
        grid-template-columns: 1fr;
    }

    .species-grid {
        grid-template-columns: 1fr;
    }

    .cattle-facts {
        grid-template-columns: 1fr;
    }

    .approach-timeline::before {
        display: none;
    }

    .approach-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .vantara-badge-float {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
    }

    .vantara-image-main img {
        height: 300px;
    }

    .cattle-image img {
        height: 300px;
    }
}
