/* Utilities */
.text-red { color: var(--red); }
.text-yellow { color: var(--yellow); }
.text-dark { color: var(--dark); }
.bg-red { background-color: var(--red); }
.bg-yellow { background-color: var(--yellow); }
.bg-dark { background-color: var(--dark); }
.bg-light { background-color: var(--bg-light); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.uppercase-sub { font-size: 0.9rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 10px; }
.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 20px; }
.mt-4 { margin-top: 30px; }
.mt-5 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 10px; }
.mb-4 { margin-bottom: 30px; }
.mb-5 { margin-bottom: 40px; }
.p-0 { padding: 0 !important; }
.p-3 { padding: 20px; }
.py-4 { padding: 40px 0; }
.px-5 { padding-left: 40px; padding-right: 40px; }
.w-100 { width: 100%; }
.shadow-lg { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.rounded-image { border-radius: 10px; }
.align-center { align-items: center; }

/* Mission / Home Section */
.mission-box {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}
.icon-lg { font-size: 2.5rem; margin-bottom: 15px; }

/* Impact Grid */
.impact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 3px solid transparent;
    transition: var(--transition);
}
.impact-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--red);
}
.impact-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin: 0 auto 20px;
}

/* Stats */
.stat-number { font-size: 3.5rem; line-height: 1; margin-bottom: 5px; }

/* Video Cards */
.video-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.video-thumbnail { position: relative; }
.play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; cursor: pointer; transition: var(--transition);
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }
.video-info { padding: 20px; }

/* Progress Bars */
.progress-item { margin-bottom: 15px; }
.progress-header { display: flex; justify-content: space-between; font-size: 0.9rem; font-weight: 600; margin-bottom: 5px; }
.progress-bg { height: 8px; background: #E2E8F0; border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 4px; }

/* Testimonials */
.testimonial-card {
    background: var(--white); padding: 30px; border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); border-left: 4px solid var(--red);
}

/* Forms */
.custom-form .form-group { margin-bottom: 15px; text-align: left; }
.custom-form label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 0.9rem; }
.custom-form input, .custom-form select, .newsletter-form input {
    width: 100%; padding: 12px 15px;
    border: 1px solid var(--border); border-radius: 5px;
    font-family: var(--font-body); font-size: 1rem; transition: var(--transition);
}
.custom-form input:focus, .custom-form select:focus, .newsletter-form input:focus {
    outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

/* Newsletter Box */
.newsletter-box {
    max-width: 500px; margin: 0 auto; background: var(--white);
    padding: 40px; border-radius: 10px; box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}
.newsletter-form input { margin-bottom: 15px; }

/* Team Section */
.team-member { margin-bottom: 40px; }
.team-divider { border: 0; height: 1px; background: var(--border); margin: 40px 0; }

/* Gallery */
.gallery-filters button {
    background: transparent; border: none; cursor: pointer; padding: 10px 15px;
    border-bottom: 2px solid transparent; transition: var(--transition);
}
.gallery-filters button.active, .gallery-filters button:hover { border-bottom-color: var(--red); }
.gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.gallery-item img { border-radius: 8px; width: 100%; height: 250px; object-fit: cover; }

/* Contact Section */
.contact-form-container {
    background: var(--bg-light); padding: 40px; border-radius: 10px;
}

@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .video-playlist-container { flex-direction: column; height: auto !important; }
    .playlist-sidebar, .video-player-area { width: 100% !important; }
    .playlist-sidebar { height: 300px; }
}
@media (max-width: 576px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-filters button { display: block; width: 100%; margin: 5px 0 !important; }
}
