/* CSS RESET & VARIABLES */
:root {
    --primary-green: #00804d;
    --primary-dark: #07221d;
    --secondary-amber: #e59819;
    --accent-blue: #1e50a2;
    --accent-orange: #f26522;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --nav-height-desktop: 72px;
    --nav-height-mobile: 68px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.1);
    --shadow-lg: 0 16px 32px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f4f6f8;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* NAVBAR HEADER */
header.navbar-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #071c26;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    height: var(--nav-height-desktop);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .navbar-container {
        height: var(--nav-height-mobile);
        padding: 0 16px;
    }
}

.brand-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-green);
    background: #fff;
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    line-height: 1.1;
}

.brand-subtext {
    color: #34d399;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

@media (max-width: 900px) {
    .nav-menu { display: none; }
    .mobile-hamburger { display: block !important; }
}

.nav-link {
    color: #e2e8f0;
    font-size: 0.92rem;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: #34d399;
}

.btn-donate-nav {
    background: linear-gradient(135deg, #e59819 0%, #d97706 100%);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(229, 152, 25, 0.35);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-donate-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(229, 152, 25, 0.5);
    background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
}

.mobile-hamburger {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-drawer {
    display: none;
    position: fixed;
    top: var(--nav-height-mobile);
    left: 0;
    width: 100%;
    background-color: #071c26;
    padding: 20px 24px 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-drawer.open {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    color: #f1f5f9;
    font-size: 1.05rem;
    font-weight: 600;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* HERO SECTION WITH FIXED SOCIAL MEDIA DRAWER / WIDGET */
.hero-single-section {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--nav-height-desktop));
    min-height: 520px;
    max-height: 680px;
    overflow: hidden;
    background-color: #031219;
    display: flex;
    align-items: center;
}

.hero-static-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.42);
}

.hero-content-container {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    color: #ffffff;
    width: 100%;
}

.hero-tagline {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #34d399;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
    max-width: 680px;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero-title span {
    color: #f59e0b;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #e2e8f0;
    max-width: 620px;
    margin-bottom: 32px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.85rem !important;
        margin-bottom: 12px;
    }
    .hero-description {
        font-size: 0.92rem !important;
        margin-bottom: 20px;
    }
    .hero-tagline {
        font-size: 0.8rem !important;
    }
    .hero-content-container {
        padding: 0 16px;
    }
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #00804d 0%, #005a36 100%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(0, 128, 77, 0.4);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00a362 0%, #007044 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 128, 77, 0.6);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-play-story {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 18px;
    border-radius: 30px;
    transition: var(--transition);
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
}

.play-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* HERO SOCIAL DRAWER
   DESKTOP = RIGHT SIDE + VERTICAL + CENTER
   MOBILE = HORIZONTAL + CURRENT POSITION
*/

.hero-social-drawer {
    position: absolute;
    right: 24px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    
    z-index: 100;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    

    -webkit-backdrop-filter: blur(12px);
    
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px;
    border-radius: 30px;
    
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    transition: transform 0.4s ease, opacity 0.4s ease;
}


/* DESKTOP SOCIAL ICONS - VERTICAL */
.hero-social-icons-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
}


/* INDIVIDUAL SOCIAL ICON */
.hero-social-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    
    border-radius: 50%;
    color: #ffffff;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 1rem;
    flex-shrink: 0;
    
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.12);
}


/* HOVER COLORS */
.hero-social-icon.fb:hover {
    background: #1877f2;
}

.hero-social-icon.insta:hover {
    background: linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
}

.hero-social-icon.yt:hover {
    background: #ff0000;
}

.hero-social-icon.in:hover {
    background: #0a66c2;
}

.hero-social-icon.wa:hover {
    background: #25d366;
}


/* MOBILE TOGGLE BUTTON */
.hero-social-toggle-btn {
    display: none;
    
    background: rgba(255,255,255,0.15);
    border: none;
    color: #34d399;
    
    width: 36px;
    height: 36px;
    
    border-radius: 50%;
    cursor: pointer;
    
    align-items: center;
    justify-content: center;
    
    font-size: 0.9rem;
    margin-right: 6px;
    
    flex-shrink: 0;
}


/* =========================================
   MOBILE VERSION
   HORIZONTAL - SAME AS BEFORE
   ========================================= */

@media (max-width: 768px) {

    .hero-social-drawer {
        right: 12px;
        top: auto;
        bottom: 20px;
        transform: none;
        
        padding: 6px;
        
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .hero-social-icons-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .hero-social-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        flex-shrink: 0;
    }

    .hero-social-toggle-btn {
        display: flex;
    }

    .hero-social-drawer.collapsed .hero-social-icons-wrapper {
        display: none;
    }
}
/* STATS BAR */
.stats-section {
    background: #ffffff;
    margin-top: -30px;
    position: relative;
    z-index: 30;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 24px 20px;
    border: 1px solid #e2e8f0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

@media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .stats-grid { grid-template-columns: repeat(1, 1fr); gap: 20px; }
    .stats-section { margin-top: 0; border-radius: 0; }
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
    border-right: 1px solid #f1f5f9;
}

.stat-card:last-child {
    border-right: none;
}

.stat-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stat-icon-green { background: #e6f4ea; color: #00804d; }
.stat-icon-blue { background: #e8f0fe; color: #1a73e8; }
.stat-icon-olive { background: #fef3c7; color: #d97706; }
.stat-icon-orange { background: #ffedd5; color: #ea580c; }
.stat-icon-red { background: #ffe4e6; color: #e11d48; }

.stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
    line-height: 1.3;
}

/* SECTION HEADER UNIVERSAL */
.section-header-block {
    text-align: center;
    margin-bottom: 48px;
}

.section-subhead {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 8px;
    display: inline-block;
}

.section-main-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #0f172a;
    position: relative;
    display: inline-block;
}

.section-main-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-green);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* INITIATIVES SECTION */
.initiatives-section {
    padding: 80px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .initiatives-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .initiatives-grid { grid-template-columns: 1fr; }
}

.initiative-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.initiative-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.card-img-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.initiative-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.card-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    border: 2px solid #ffffff;
}

.badge-education { background: #00804d; }
.badge-health { background: #1e50a2; }
.badge-sports { background: #f26522; }
.badge-environment { background: #059669; }

.initiative-card-body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.initiative-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.initiative-card-desc {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 16px;
}

.initiative-card-hover-text {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 0.88rem;
    color: #059669;
    font-weight: 600;
    line-height: 1.4;
    background: #f0fdf4;
    padding: 0 12px;
    border-radius: 6px;
}

.initiative-card:hover .initiative-card-hover-text {
    max-height: 100px;
    opacity: 1;
    padding: 10px 12px;
    margin-bottom: 16px;
}

.initiative-link {
    margin-top: auto;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

/* 6-PHOTO COLLAGE GRID IN INITIATIVE POPUP MODAL */
.initiative-modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

@media (max-width: 480px) {
    .initiative-modal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.initiative-modal-img {
    width: 100%;
    height: 85px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.initiative-modal-img:hover {
    transform: scale(1.05);
}

/* ABOUT US & KALAM CARD SECTION */
.about-and-quote-section {
    padding: 60px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.about-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

@media (max-width: 992px) {
    .about-quote-grid { grid-template-columns: 1fr; }
}

.about-box-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 24px;
}

@media (max-width: 600px) {
    .about-box-card {
        flex-direction: column;
        padding: 24px;
        align-items: center;
        text-align: center;
    }
    .about-img-frame {
        margin: 0 auto 16px auto !important;
    }
    .checklist-grid {
        justify-content: center;
    }
}

.about-img-frame {
    width: 180px;
    height: 220px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.about-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-subtitle {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary-green);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.about-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.25;
}

.about-text {
    font-size: 0.92rem;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.5;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1e293b;
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #10b981;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* KALAM QUOTE CARD */
.kalam-quote-card {
    background: linear-gradient(135deg, #092c30 0%, #03181b 100%);
    border-radius: 20px;
    padding: 36px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.quote-bg-symbol {
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 4rem;
    color: rgba(229, 152, 25, 0.4);
    font-family: Georgia, serif;
    line-height: 1;
}

.kalam-card-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    z-index: 2;
}

@media (max-width: 600px) {
    .kalam-card-inner {
        flex-direction: column-reverse;
        text-align: center;
        align-items: center;
    }
    .kalam-img-wrapper {
        margin: 0 auto 16px auto !important;
    }
}

.quote-text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-paragraph {
    font-size: 0.98rem;
    font-style: italic;
    line-height: 1.6;
    color: #f1f5f9;
    margin-bottom: 16px;
}

.quote-author {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f59e0b;
}

.quote-role {
    font-size: 0.78rem;
    color: #94a3b8;
}

.kalam-img-wrapper {
    width: 150px;
    height: 180px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.kalam-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OUR WORK GALLERY SECTION */
.work-gallery-section {
    padding: 80px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.work-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
}

@media (max-width: 600px) {
    .work-header-flex { flex-direction: column; align-items: flex-start; gap: 16px; }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.gallery-item {
    position: relative;
    height: 160px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 128, 77, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: #ffffff;
    font-size: 1.5rem;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* 50-PHOTO COLLAGE GRID INSIDE ALL WORK MODAL */
.collage-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
    max-height: 65vh;
    overflow-y: auto;
    padding-right: 6px;
}

@media (max-width: 600px) {
    .collage-grid-container {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 8px;
    }
}

.collage-item {
    position: relative;
    height: 110px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collage-item:hover img {
    transform: scale(1.12);
}

/* OUR TEAM SECTION & CAROUSEL CARDS */
.team-section {
    padding: 80px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.team-subsection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.team-subsection-title {
    font-size: 1.4rem;
    color: #0f172a;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-subsection-title i {
    color: var(--primary-green);
}

.team-nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.team-nav-btn:hover {
    background: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-green);
}

.team-page-indicator {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    padding: 0 6px;
}

.team-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

@media (max-width: 1024px) {
    .team-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .team-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.team-member-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    padding: 12px;
}

.team-member-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.team-member-photo-frame {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #f1f5f9;
}

.team-member-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 4px;
}

.team-member-role {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-green);
}

/* OFFICE DETAILS CARD */
.office-block {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.office-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.office-title i {
    color: var(--primary-green);
}

.office-address {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 8px;
}

.office-phone {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-green);
}


/* JOIN HANDS & MEMBERSHIP CARDS */
.join-hands-section {
    background: #092338;
    color: #ffffff;
    padding: 70px 24px;
}

.join-hands-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.membership-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    margin-top: 20px;
}

@media (max-width: 900px) {
    .membership-cards-grid { grid-template-columns: 1fr; }
}

.membership-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.membership-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-green);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.membership-card.featured {
    background: rgba(255, 255, 255, 0.09);
    border: 2px solid var(--secondary-amber);
}

.membership-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #10b981;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

.membership-badge.featured-badge {
    background: var(--secondary-amber);
}

.membership-title {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
}

.membership-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #34d399;
    margin-bottom: 16px;
}

.membership-price span {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

.membership-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.membership-features li {
    font-size: 0.88rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.membership-features li i {
    color: #34d399;
}

.partner-logos-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.partner-pill {
    background: #ffffff;
    color: #0f172a;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.partner-pill i {
    color: var(--primary-green);
}

/* CONTACT US SECTION */
.contact-section {
    padding: 80px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
}

.contact-item-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #e6f4ea;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}

.contact-item-val {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-top: 2px;
}

.contact-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 128, 77, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* FOOTER */
footer.footer-section {
    background: #061320;
    color: #94a3b8;
    padding: 70px 24px 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 1024px) {
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-container { grid-template-columns: 1fr; }
}

.footer-col-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-item a {
    color: #94a3b8;
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-link-item a:hover {
    color: #34d399;
    padding-left: 4px;
}

.social-icons-row {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.newsletter-input-group {
    display: flex;
    margin-top: 14px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 10px 0 0 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    outline: none;
}

.newsletter-btn {
    background: var(--primary-green);
    color: #ffffff;
    padding: 0 20px;
    border-radius: 0 10px 10px 0;
    border: none;
    cursor: pointer;
    font-weight: 700;
}

.footer-bottom-bar {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* SCROLL TO TOP */
.scroll-top-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-green);
    color: #ffffff;
    border: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

/* MODAL POPUPS (FULL MOBILE RESPONSIVE) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content-card {
    background: #ffffff;
    border-radius: 20px;
    max-width: 580px;
    width: 100%;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    max-height: 88vh;
    overflow-y: auto;
}

@media (max-width: 600px) {
    .modal-content-card {
        padding: 20px 16px;
        border-radius: 16px;
    }
}

.modal-content-card.large-modal {
    max-width: 680px;
}

.modal-overlay.active .modal-content-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    color: #64748b;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-icon-header {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e6f4ea;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 18px;
}

.modal-title {
    text-align: center;
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 8px;
}

@media (max-width: 600px) {
    .modal-title { font-size: 1.4rem; }
}

.modal-meaningful-msg {
    text-align: center;
    font-size: 0.92rem;
    color: #475569;
    font-style: italic;
    background: #f8fafc;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 24px;
    border-left: 4px solid var(--primary-green);
    line-height: 1.5;
}

.donation-card-box {
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    background: #fafafa;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 600px) {
    .donation-card-box { padding: 16px; }
}

.donation-card-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #e6f4ea;
    color: var(--primary-green);
    font-size: 0.82rem;
    font-weight: 800;
    border-radius: 20px;
    margin-bottom: 12px;
}

/* 4 DONATION AMOUNT CHIPS */
.donate-chips-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

@media (max-width: 580px) {
    .donate-chips-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.donate-chip {
    border: 2px solid #cbd5e1;
    padding: 14px 8px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: #1e293b;
    background: #ffffff;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.donate-chip .chip-currency {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 700;
}

.donate-chip .chip-label {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.donate-chip.selected, .donate-chip:hover {
    border-color: var(--primary-green);
    background: #f0fdf4;
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-pay-highlight {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, #e59819 0%, #d97706 100%);
    font-size: 1.05rem;
    padding: 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    animation: buttonPulse 3s infinite;
}

.dyp-pay-highlight {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, #252018 0%, #2f1510 100%);
    font-size: 1.05rem;
    padding: 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    animation: buttonPulse 1s infinite;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 0 0 rgba(229, 152, 25, 0.5); }
    70% { box-shadow: 0 0 0 14px rgba(229, 152, 25, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 152, 25, 0); }
}

/* SUCCESS POPUP */
.success-checkmark {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #10b981;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 20px;
}

/* LIGHTBOX MODAL WITH NEXT/PREV ARROWS */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox-modal.active { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90%; max-height: 82vh; border-radius: 12px; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: #ffffff; font-size: 2.2rem; cursor: pointer; z-index: 3010; }

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3010;
    transition: var(--transition);
}

.lightbox-arrow:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.lightbox-arrow.prev { left: 20px; }
.lightbox-arrow.next { right: 20px; }

@media (max-width: 600px) {
    .lightbox-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .lightbox-arrow.prev { left: 10px; }
    .lightbox-arrow.next { right: 10px; }
}
