/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1e3a, #1a3a2a);
}

.hero-slides { position: relative; height: 100%; z-index: 2; }

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity .9s ease;
    pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 35, .58);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 680px;
}
.hero-content .overline {
    display: block;
    font-size: 12px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
    opacity: 0; transform: translateY(24px);
    transition: opacity .6s .15s, transform .6s .15s;
}
.hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900; color: var(--white);
    margin-bottom: 22px;
    opacity: 0; transform: translateY(24px);
    transition: opacity .6s .35s, transform .6s .35s;
}
.hero-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.82);
    margin-bottom: 36px; max-width: 540px;
    opacity: 0; transform: translateY(24px);
    transition: opacity .6s .55s, transform .6s .55s;
}
.hero-content .hero-btns {
    opacity: 0; transform: translateY(24px);
    transition: opacity .6s .75s, transform .6s .75s;
    display: flex; gap: 14px; flex-wrap: wrap;
}
.hero-slide.active .hero-content .overline,
.hero-slide.active .hero-content h1,
.hero-slide.active .hero-content p,
.hero-slide.active .hero-content .hero-btns {
    opacity: 1; transform: translateY(0);
}

.hero-dots {
    position: absolute;
    bottom: 44px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex; gap: 10px;
}
.hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none; cursor: pointer; padding: 0;
    transition: all .3s;
}
.hero-dot.active { background: var(--accent); transform: scale(1.4); }

.hero-nav {
    position: absolute;
    bottom: 36px; right: 48px;
    z-index: 10; display: flex; gap: 10px;
}
.hero-btn {
    width: 46px; height: 46px;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 50%; background: transparent;
    color: var(--white); font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
}
.hero-btn:hover { background: var(--accent); border-color: var(--accent); }

/* Slide 1 outline button */
.hero-slide .btn-outline-light {
    border-color: rgba(255,255,255,.6);
    color: var(--white);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-image { position: relative; }
.about-image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1a3a2a, #2d6a4f);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.3); font-size: 13px; text-align: center;
}
.about-badge {
    position: absolute;
    bottom: -24px; right: -24px;
    width: 128px; height: 128px;
    background: var(--accent); border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--white); text-align: center;
    font-family: 'Nunito', sans-serif; font-weight: 800;
    box-shadow: 0 8px 28px rgba(232,96,60,.4);
}
.about-badge .badge-number { font-size: 2rem; line-height: 1; }
.about-badge .badge-label  { font-size: 11px; line-height: 1.3; margin-top: 4px; }

.about-text .overline {
    display: inline-block;
    font-size: 12px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 12px;
}
.about-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 18px; }
.about-text > p { margin-bottom: 14px; }
.about-features { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 16px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-icon {
    width: 38px; height: 38px;
    background: rgba(232,96,60,.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 15px; flex-shrink: 0;
}
.feature-text strong { display: block; color: var(--dark); font-weight: 700; font-size: 15px; }
.feature-text span   { font-size: 13px; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: 8px; text-align: center;
    box-shadow: var(--shadow);
    transition: transform .3s, box-shadow .3s, border-color .3s;
    border-bottom: 3px solid transparent;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 32px rgba(0,0,0,.12);
    border-color: var(--accent);
}
.service-icon {
    width: 76px; height: 76px;
    margin: 0 auto 22px;
    background: rgba(232,96,60,.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 30px;
    transition: background .3s, color .3s;
}
.service-card:hover .service-icon { background: var(--accent); color: var(--white); }
.service-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 12px; }
.service-card p  { font-size: 13.5px; line-height: 1.7; }

/* ============================================================
   VOLUNTEER CTA SECTION
   ============================================================ */
.volunteer-cta {
    background: var(--dark);
    padding: 100px 0;
    text-align: center;
    position: relative; overflow: hidden;
}
.volunteer-cta::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 400px; height: 400px;
    border-radius: 50%; border: 60px solid rgba(255,255,255,.03);
}
.volunteer-cta::after {
    content: '';
    position: absolute; bottom: -80px; left: -80px;
    width: 500px; height: 500px;
    border-radius: 50%; border: 80px solid rgba(255,255,255,.02);
}
.volunteer-cta .overline {
    display: block; font-size: 12px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 16px;
    position: relative; z-index: 1;
}
.volunteer-cta h2 {
    font-size: 2.4rem; font-weight: 900;
    color: var(--white); margin-bottom: 16px;
    position: relative; z-index: 1;
}
.volunteer-cta p {
    color: rgba(255,255,255,.75);
    max-width: 580px; margin: 0 auto 36px;
    position: relative; z-index: 1;
}
.volunteer-cta .btn { position: relative; z-index: 1; }

/* ============================================================
   SMS DONATION SECTION
   ============================================================ */
.sms-section { background: var(--accent); padding: 52px 0; }
.sms-inner {
    display: flex; align-items: center;
    gap: 48px; flex-wrap: wrap;
}
.sms-icon { font-size: 3.5rem; color: var(--white); flex-shrink: 0; opacity: .85; }
.sms-content { flex: 1; min-width: 220px; }
.sms-content h2 { color: var(--white); font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; }
.sms-content p  { color: rgba(255,255,255,.9); }
.sms-content strong { color: var(--white); }
.sms-action { flex-shrink: 0; }
.sms-code {
    display: flex; align-items: center; gap: 14px;
    background: var(--white); padding: 16px 28px; border-radius: 8px;
    font-family: 'Nunito', sans-serif; font-weight: 800;
    margin-bottom: 8px; box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.sms-word   { color: var(--dark); font-size: 1.3rem; letter-spacing: 1px; }
.sms-arrow  { color: var(--text); font-size: 1.4rem; }
.sms-number { color: var(--accent); font-size: 1.6rem; }
.sms-action small { display: block; text-align: center; color: rgba(255,255,255,.7); font-size: 11.5px; }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-wrapper { max-width: 780px; margin: 0 auto; }
.testimonial-slide {
    display: none; text-align: center;
    padding: 48px 40px; background: var(--white);
    border-radius: 12px; box-shadow: var(--shadow);
}
.testimonial-slide.active { display: block; }
.testimonial-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--dark));
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 2rem; font-weight: 800;
    font-family: 'Nunito', sans-serif;
}
.testimonial-stars { color: #f0a500; font-size: 18px; margin-bottom: 18px; letter-spacing: 2px; }
.testimonial-text {
    font-size: 1.05rem; font-style: italic;
    color: var(--dark); margin-bottom: 22px; line-height: 1.85;
}
.testimonial-author strong { color: var(--dark); font-weight: 700; }
.testimonial-author span   { color: var(--text); font-size: 14px; }
.testimonial-dots {
    display: flex; justify-content: center;
    gap: 10px; margin-top: 32px;
}

/* ============================================================
   SUPPORT OPTIONS SECTION (3.5% + 20%)
   ============================================================ */
.support-section {
    background: var(--light-bg);
    padding: 72px 0;
    border-top: 1px solid var(--border);
}
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}
.support-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.support-percent {
    font-family: 'Nunito', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}
.support-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin: 0; }
.support-card p  { color: var(--text); margin: 0; max-width: 380px; }

/* ============================================================
   RESPONSIVE — home-specific overrides
   ============================================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid    { gap: 48px; }
}

@media (max-width: 768px) {
    .about-grid    { grid-template-columns: 1fr; }
    .about-badge   { bottom: -20px; right: 16px; }
    .hero          { min-height: 520px; }
    .sms-inner     { flex-direction: column; text-align: center; gap: 24px; }
    .support-grid  { grid-template-columns: 1fr; }
    .volunteer-cta h2 { font-size: 1.9rem; }
}

@media (max-width: 576px) {
    .services-grid   { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 1.75rem; }
    .hero-nav        { right: 20px; bottom: 28px; }
}
