/* ═══════════════════════════════════════
   WILDLIFE PAGE STYLES — HIGH END ANIMATIONS
   ═══════════════════════════════════════ */

.wl-page {
    background: #f8fafc;
    color: #1e293b;
    padding-bottom: 80px;
    overflow: hidden;
}

.wl-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ── REVEAL ANIMATIONS ── */
.wl-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.wl-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ── FEATURE SECTIONS (INTRO / AMUR FALCON) ── */
.wl-feature {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 80px 0;
}
.wl-feature:nth-child(even) {
    flex-direction: row-reverse;
}
@media (max-width: 992px) {
    .wl-feature, .wl-feature:nth-child(even) {
        flex-direction: column;
        gap: 30px;
    }
}

.wl-feature-img-wrap {
    flex: 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
}
.wl-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease, ease);
}
.wl-feature-img-wrap:hover .wl-feature-img {
    transform: scale(1.05);
}

.wl-feature-text {
    flex: 1;
}
.wl-feature-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--forest, #064e3b);
    margin-bottom: 20px;
    line-height: 1.2;
}
.wl-feature-subtitle {
    font-size: 1.2rem;
    color: var(--gold, #f1c40f);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: block;
}
.wl-feature-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

/* ── CATEGORY BENTO GRID ── */
.wl-cat-section {
    margin: 80px 0;
}
.wl-cat-header {
    text-align: center;
    margin-bottom: 50px;
}
.wl-cat-header h2 {
    font-size: 2.2rem;
    color: var(--forest, #064e3b);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.wl-cat-header i {
    color: var(--emerald, #10b981);
}

.wl-species-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .wl-species-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .wl-species-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .wl-species-grid {
        grid-template-columns: 1fr;
    }
}

.wl-species-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(20px);
    opacity: 0;
}
.wl-species-card.active {
    transform: translateY(0);
    opacity: 1;
}
.wl-species-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.12);
    border-color: var(--emerald, #10b981);
}

.wl-species-img-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #e2e8f0;
}
.wl-species-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.wl-species-card:hover .wl-species-img {
    transform: scale(1.1);
}

.wl-status-badge {
    display: inline-block;
    background: var(--gold, #f1c40f);
    color: #000;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.wl-species-info {
    padding: 24px;
}
.wl-species-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--forest, #064e3b);
    margin-bottom: 8px;
}
.wl-species-sci {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    margin-bottom: 12px;
}
.wl-species-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

/* ── EMPTY STATE ── */
.wl-empty {
    text-align: center;
    padding: 100px 20px;
    background: #fff;
    border-radius: 24px;
    border: 2px dashed #cbd5e1;
    color: #64748b;
}
.wl-empty i {
    font-size: 3rem;
    color: var(--emerald, #10b981);
    margin-bottom: 20px;
}
.wl-empty h3 {
    font-size: 1.5rem;
    color: var(--forest, #064e3b);
    margin-bottom: 10px;
}
