/* ========================================
   SAGAR BASUMATARY – CAMPAIGN WEBSITE
   Color Scheme: Orange #FF9933 / Green #138808 / White #FFF
   ======================================== */

/* --- VARIABLES --- */
:root {
    --primary: #FF9933;
    --primary-dark: #e68529;
    --secondary: #138808;
    --secondary-dark: #0e6606;
    --white: #ffffff;
    --bg-earth: #f8f6f2;
    --bg-dark: #1b1b1b;
    --text-dark: #222222;
    --text-body: #555555;
    --text-light: #999999;
    --border: #e8e4de;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10);
    --transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
}

/* --- RESET --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
}

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.bg-earth {
    background-color: var(--bg-earth);
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header.light .section-tag {
    color: rgba(255, 255, 255, 0.8);
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-header.center {
    margin-bottom: 60px;
}

.section-header.light .section-heading {
    color: var(--white);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.35);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    background: var(--white);
    color: var(--secondary);
    border-radius: 4px;
    font-weight: 700;
}

.btn-sm:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary);
}

.logo span {
    color: var(--primary);
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.92rem;
    position: relative;
    padding: 4px 0;
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

.header-cta {
    font-size: 0.85rem;
    padding: 10px 24px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    padding: 160px 0 80px;
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-img {
    position: relative;
    width: 100%;
}

.hero-img img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-height: 550px;
    object-fit: cover;
    display: block;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 74.5%;
    /* ~560:417 ratio for FB video */
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


.hero-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--secondary);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.badge-label {
    font-size: 0.8rem;
    line-height: 1.3;
    font-weight: 600;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ========================================
   ABOUT
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

.about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary);
    border-radius: var(--radius);
    z-index: -1;
}

.about-text p {
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-item h4 {
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 600;
}

/* ========================================
   KEY AREAS
   ======================================== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.area-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border-bottom: 4px solid transparent;
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary);
}

.area-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 153, 51, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.area-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.area-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.area-card p {
    font-size: 0.95rem;
}

/* ========================================
   CONTRIBUTIONS
   ======================================== */
.contrib-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contrib-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 5px solid var(--secondary);
    transition: var(--transition);
}

.contrib-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.contrib-card.highlight {
    border-left-color: var(--primary);
    background: linear-gradient(135deg, #fff9f0, #ffffff);
}

.contrib-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.4;
    flex-shrink: 0;
    line-height: 1;
}

.contrib-body h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contrib-body p {
    margin-bottom: 12px;
}

.contrib-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(19, 136, 8, 0.1);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.contrib-badge i {
    font-size: 1.1rem;
}

/* ========================================
   VISION
   ======================================== */
.vision {
    background: var(--secondary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.vision::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vision-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px 28px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.vision-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.vision-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.vision-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.vision-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.1rem;
}

.gallery-item.color-fill {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item.color-fill.green {
    background: var(--secondary);
}

.gallery-item.color-fill.orange {
    background: var(--primary);
}

.gallery-placeholder {
    text-align: center;
    color: var(--white);
}

.gallery-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 8px;
    display: block;
}

.gallery-placeholder span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* ========================================
   VOICES (TESTIMONIALS)
   ======================================== */
.voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.voice-card {
    background: var(--bg-earth);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.voice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.voice-video {
    aspect-ratio: 16/9;
    position: relative;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), #1aa00d);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: 8px;
}

.video-placeholder i {
    font-size: 3rem;
}

.video-placeholder p {
    font-size: 0.85rem;
    opacity: 0.8;
}

.voice-text {
    padding: 24px;
}

.voice-text p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 1rem;
}

.voice-author {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

/* ========================================
   VOLUNTEER
   ======================================== */
.volunteer {
    padding: 0;
}

.volunteer-bg {
    background: var(--secondary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.volunteer-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08));
}

.volunteer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.volunteer-text {
    color: var(--white);
}

.volunteer-text h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
}

.volunteer-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

.section-tag.light {
    color: rgba(255, 255, 255, 0.7);
}

.volunteer-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-earth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.15);
    background: var(--white);
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-card i {
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-card h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.contact-card p {
    font-size: 0.95rem;
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 380px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.4rem;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-logo span {
    color: var(--primary);
}

.footer-about {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 360px;
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-col a,
.footer-col p {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-col p i {
    margin-right: 8px;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger child reveals */
.reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.reveal:nth-child(4) {
    transition-delay: 0.3s;
}



/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 4/3;
    }

    .voices-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 60px 0;
    }

    /* Header */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: var(--transition);
        z-index: 999;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .nav-link {
        font-size: 1.3rem;
    }

    .header-cta {
        display: none;
    }

    .hamburger {
        display: block;
    }

    /* Hero */
    .hero {
        padding: 100px 0 50px;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .hero-text {
        display: contents;
    }

    .hero-tag {
        order: 1;
        justify-content: center;
        margin-bottom: 0;
        font-size: 0.8rem;
    }

    .hero h1 {
        order: 2;
        margin-bottom: 0;
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .hero-img {
        order: 3;
        margin: 8px 0;
    }

    .hero-video-wrapper {
        border-radius: 10px;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    }

    .hero-desc {
        order: 4;
        margin: 0 auto 10px;
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 8px;
    }

    .hero-btns {
        order: 5;
        justify-content: center;
        margin-bottom: 16px;
        gap: 10px;
    }

    .hero-btns .btn {
        padding: 12px 24px;
        font-size: 0.88rem;
    }

    .hero-badge {
        left: 8px;
        bottom: 8px;
        padding: 10px 14px;
        gap: 8px;
        border-radius: 8px;
    }

    .hero-badge .badge-number {
        font-size: 1.5rem;
        line-height: 1;
    }

    .hero-badge .badge-label {
        font-size: 0.65rem;
    }

    .hero-wave svg {
        height: 50px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-accent {
        display: none;
    }



    .about-text .section-heading {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-item {
        padding: 10px 12px;
        gap: 8px;
    }

    .stat-item i {
        font-size: 1.2rem;
    }

    .stat-item h4 {
        font-size: 0.8rem;
    }

    /* Areas */
    .areas-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .area-card {
        padding: 24px 16px;
    }

    .area-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
    }

    .area-icon i {
        font-size: 1.4rem;
    }

    .area-card h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .area-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Section headers */
    .section-header.center {
        margin-bottom: 36px;
    }

    .section-heading {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 12px;
    }

    .section-tag {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }

    /* Contributions */
    .contrib-card {
        flex-direction: column;
        padding: 20px 18px;
        gap: 12px;
        border-left-width: 4px;
    }

    .contrib-num {
        font-size: 1.8rem;
    }

    .contrib-body h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .contrib-body p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .contrib-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
        gap: 6px;
    }

    .contrib-badge i {
        font-size: 0.95rem;
    }

    /* Vision */
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vision-card {
        padding: 28px 20px;
    }

    .vision-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .vision-card h3 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .vision-card p {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .btn-sm {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-item {
        border-radius: 8px;
    }

    /* Voices */
    .voices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .voice-text {
        padding: 16px;
    }

    .voice-text p {
        font-size: 0.92rem;
        margin-bottom: 8px;
    }

    .voice-author {
        font-size: 0.82rem;
    }

    /* Volunteer */
    .volunteer-bg {
        padding: 50px 0;
    }

    .volunteer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .volunteer-text {
        text-align: center;
    }

    .volunteer-text h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 10px;
    }

    .volunteer-desc {
        font-size: 0.92rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .volunteer-form {
        padding: 24px 18px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.82rem;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-info {
        gap: 14px;
    }

    .contact-card {
        padding: 18px;
        gap: 12px;
    }

    .contact-card i {
        font-size: 1.4rem;
    }

    .contact-card h4 {
        font-size: 0.95rem;
    }

    .contact-card p {
        font-size: 0.88rem;
    }

    .contact-map {
        min-height: 240px;
    }

    .contact-map iframe {
        min-height: 240px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
        margin-bottom: 28px;
    }

    .footer-logo {
        font-size: 1.2rem;
    }

    .footer-about {
        max-width: 100%;
        font-size: 0.82rem;
    }

    .footer-col h4 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .footer-col a,
    .footer-col p {
        font-size: 0.82rem;
        margin-bottom: 8px;
    }

    .footer-bottom {
        padding-top: 18px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .section {
        padding: 48px 0;
    }

    .hero {
        padding: 90px 0 40px;
    }

    .hero h1 {
        font-size: 1.65rem;
        line-height: 1.25;
    }

    .hero-tag {
        font-size: 0.72rem;
    }

    .hero-desc {
        font-size: 0.88rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 0 4px;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .section-heading {
        font-size: 1.4rem;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .area-card {
        padding: 20px 14px;
        display: flex;
        flex-direction: row;
        text-align: left;
        gap: 14px;
    }

    .area-icon {
        margin: 0;
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .area-icon i {
        font-size: 1.2rem;
    }

    .area-card h3 {
        font-size: 0.95rem;
    }

    .area-card p {
        font-size: 0.82rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }



    .contrib-card {
        padding: 16px 14px;
    }

    .contrib-body h3 {
        font-size: 1rem;
    }

    .contrib-body p {
        font-size: 0.85rem;
    }

    .contrib-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .vision-card {
        padding: 22px 16px;
    }

    .volunteer-form {
        padding: 20px 14px;
    }

    .contact-card {
        padding: 14px;
    }

    .footer-bottom p {
        font-size: 0.72rem;
        line-height: 1.5;
    }

    .btn {
        font-size: 0.85rem;
        padding: 11px 22px;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.45rem;
    }

    .hero-badge {
        padding: 8px 10px;
        gap: 6px;
    }

    .hero-badge .badge-number {
        font-size: 1.2rem;
    }

    .hero-badge .badge-label {
        font-size: 0.6rem;
    }

    .section-heading {
        font-size: 1.25rem;
    }
}