/* ============================================
   WILDLIFE ACTIVITIES PAGE — wa-page
   All styles scoped under .wa-page to prevent bleed
   ============================================ */

/* === CSS VARIABLES === */
.wa-page {
    --forest:  #0a2e1a;
    --emerald: #059669;
    --gold:    #f1c40f;
    --cream:   #f9f6ef;
    --fog:     #e8f0e9;
    --ink:     #0f1c10;
    --white:   #ffffff;
    --ease:    cubic-bezier(0.16, 1, 0.3, 1);

    background: var(--cream);
    color: var(--ink);
    font-family: 'Open Sans', sans-serif;
}

/* === LAYOUT === */
.wa-section { padding: 25px 0; }
.wa-wrap    { padding: 0 5%; max-width: 1400px; margin: 0 auto; }

/* === SCROLL REVEAL === */
.wa-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.wa-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === SECTION TITLES === */
.wa-section-title {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 800;
    color: var(--forest);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.wa-section-subtitle {
    font-size: clamp(14px, 1.2vw, 16px);
    color: #64748b;
    margin-bottom: 30px;
    max-width: 700px;
}
.wa-title-bar {
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 28px;
}

/* ============================================
   INTRO SPLIT — text + info card
   ============================================ */
.wa-intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}
.wa-intro-lead {
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.85;
    color: #374151;
}
.wa-intro-lead p { margin-bottom: 18px; }

.wa-board-card {
    background: var(--forest);
    color: var(--white);
    border-radius: 20px;
    padding: 89px;
    box-shadow: 0 20px 50px rgba(10,46,26,0.25);
    position: relative;
    overflow: hidden;
}
.wa-board-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    background: rgba(5,150,105,0.15);
    border-radius: 50%;
}
.wa-board-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.wa-board-card p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.88);
    margin: 0;
}

/* ============================================
   DIVISIONS TABLE
   ============================================ */
.wa-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
}
.wa-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 700px;
}
.wa-table thead {
    background: var(--forest);
    color: var(--white);
}
.wa-table thead th {
    padding: 16px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: left;
}
.wa-table tbody tr {
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s ease;
}
.wa-table tbody tr:last-child { border-bottom: none; }
.wa-table tbody tr:hover { background: var(--fog); }
.wa-table td {
    padding: 16px 20px;
    font-size: 0.9rem;
    color: #374151;
    vertical-align: top;
    line-height: 1.6;
}
.wa-table td:first-child { font-weight: 700; color: var(--forest); }
.wa-table .wa-contact-block { display: flex; flex-direction: column; gap: 4px; }
.wa-table .wa-contact-block span { font-size: 0.85rem; color: #6b7280; }
.wa-table .wa-contact-block span i { color: var(--emerald); margin-right: 6px; width: 14px; }

/* ============================================
   FUNCTIONS TIMELINE
   ============================================ */
.wa-functions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.wa-fn-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 28px 28px 24px;
    border: 1px solid #e5e7eb;
    border-left: 4px solid var(--emerald);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.35s var(--ease);
}
.wa-fn-card:hover {
    border-left-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(10,46,26,0.1);
}
.wa-fn-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--fog);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    font-size: 1.1rem;
    transition: background 0.3s ease, color 0.3s ease;
}
.wa-fn-card:hover .wa-fn-icon {
    background: var(--forest);
    color: var(--gold);
}
.wa-fn-num {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--emerald);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}
.wa-fn-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #374151;
    font-weight: 500;
}

/* ============================================
   ACTIVITY SECTIONS ACCORDION
   ============================================ */
.wa-accordion { display: flex; flex-direction: column; gap: 16px; }
.wa-accordion-item {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}
.wa-accordion-item.open {
    box-shadow: 0 10px 40px rgba(10,46,26,0.1);
    border-color: var(--emerald);
}
.wa-accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
    text-align: left;
    transition: background 0.2s ease;
}
.wa-accordion-trigger:hover { background: var(--fog); }
.wa-accordion-item.open .wa-accordion-trigger { background: var(--forest); }

.wa-accordion-icon-wrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--fog);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    font-size: 1.2rem;
    transition: background 0.3s ease, color 0.3s ease;
}
.wa-accordion-item.open .wa-accordion-icon-wrap {
    background: rgba(241,196,15,0.2);
    color: var(--gold);
}

.wa-accordion-title {
    flex: 1;
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 800;
    color: var(--forest);
    transition: color 0.3s ease;
}
.wa-accordion-item.open .wa-accordion-title { color: var(--white); }

.wa-accordion-chevron {
    font-size: 1rem;
    color: var(--emerald);
    transition: transform 0.4s var(--ease), color 0.3s ease;
}
.wa-accordion-item.open .wa-accordion-chevron {
    transform: rotate(180deg);
    color: var(--gold);
}

.wa-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}
.wa-accordion-item.open .wa-accordion-body {
    max-height: 1000px;
}
.wa-accordion-content {
    padding: 0 28px 28px 94px; /* align with text after icon */
    font-size: 0.97rem;
    line-height: 1.85;
    color: #374151;
}
.wa-accordion-content p { margin-bottom: 14px; }
.wa-accordion-content p:last-child { margin-bottom: 0; }

/* ============================================
   MANAGEMENT CALLOUT STRIP
   ============================================ */
.wa-callout {
    background: linear-gradient(135deg, var(--forest) 0%, #1a5c35 100%);
    border-radius: 20px;
    padding: 36px 40px;
    color: var(--white);
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin: 0;
    box-shadow: 0 16px 50px rgba(10,46,26,0.2);
}
.wa-callout-icon {
    font-size: 2.2rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 4px;
}
.wa-callout-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.wa-callout-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

/* ============================================
   RESPONSIVE — Added 2026-05-19 — DO NOT MOVE UP
   ============================================ */
@media (max-width: 1024px) {
    .wa-intro-grid {
        grid-template-columns: 1fr;
    }
    .wa-functions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .wa-accordion-content {
        padding: 0 20px 24px 20px;
    }
    .wa-callout {
        flex-direction: column;
        gap: 16px;
        padding: 24px 24px;
    }
    .wa-board-card { padding: 24px; }
}

@media (max-width: 480px) {
    .wa-accordion-trigger { padding: 18px 20px; gap: 12px; }
    .wa-fn-card { padding: 20px 18px; }
    .wa-wrap { padding: 0 4%; }
}
