/* ==========================================
   Upcoming Events & Interactive FAQ Styles
   ========================================== */

/* ---------- Split-Screen Events & Calendar ---------- */
.events-section-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-top: 45px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    background: var(--white);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 20px;
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.event-date-box {
    background: linear-gradient(135deg, var(--army-green), var(--army-green-dark));
    color: var(--white);
    border-radius: var(--border-radius-md);
    min-width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

.event-date-day {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.event-date-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.event-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-details h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--army-green-dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.event-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.event-meta {
    font-size: 0.8rem;
    color: var(--emerald-green);
    margin-top: 5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(9, 127, 97, 0.15);
}

.calendar-card {
    background: linear-gradient(145deg, var(--army-green-dark), #262a10);
    color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.calendar-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.calendar-card i.calendar-icon {
    font-size: 3.5rem;
    color: var(--light-cream);
    margin-bottom: 20px;
}

.calendar-card h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.calendar-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 280px;
}

.calendar-card .btn-light-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    text-decoration: none;
}

.calendar-card .btn-light-outline:hover {
    background: var(--white);
    color: var(--army-green-dark);
}

/* ---------- FAQ Accordion ---------- */
.faq-container {
    max-width: 850px;
    margin: 45px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-header {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 22px 28px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--army-green-dark);
    cursor: pointer;
    transition: var(--transition);
}

.faq-header i.chevron-icon {
    font-size: 1rem;
    color: var(--emerald-green);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 28px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Active States */
.faq-item.active {
    border-color: rgba(9, 127, 97, 0.2);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-header {
    color: var(--emerald-green);
}

.faq-item.active .faq-header i.chevron-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-body {
    padding-bottom: 22px;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .events-section-split {
        grid-template-columns: 1fr;
    }
}
