@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Bitter:wght@600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: #333;
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-h);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-circle img {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8px;
    font-weight: bold;
    text-transform: lowercase;
    line-height: 1;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav {
    margin: 0 16px;
}

.main-nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 14px;
}

.main-nav a:hover,
.main-nav a.active {
    color: #8B5CF6;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.donate-btn {
    background: #8B5CF6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    font-size: 12px;
}

.donate-btn:hover {
    background: #7C3AED;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #666;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }

    .header-content {
        gap: 16px;
    }

    .main-nav ul {
        gap: 18px;
    }

    .content-grid,
    .shaping-content,
    .volunteer-content,
    .help-content {
        gap: 32px;
    }

    .projects-grid,
    .news-grid,
    .initiative-grid,
    .reach-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-numbers {
        gap: 22px;
    }

    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Hero Section */
.hero {
    /* background: url(assets/banner-video.mp4) no-repeat center center;
    background-size: cover; */
    /* height: 100dvb;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center; */
    position: relative;
    height: 100vh; /* Full screen height */
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 26, 38, 0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 64px;
}

.hero-panel {
    max-width: 620px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 26px;
    padding: 34px 36px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.hero-panel h1 {
    font-size: clamp(30px, 4.6vw, 62px);
    line-height: 1.05;
    color: #40424a;
    margin-bottom: 14px;
    font-weight: 700;
}

.hero-panel p {
    color: #44515f;
    font-size: 20px;
    line-height: 1.45;
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-yellow,
.btn-green {
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-yellow {
    background: #f5c12b;
    color: #1f2a33;
}

.btn-green {
    background: #11866c;
    color: #ffffff;
}

.btn-yellow:hover,
.btn-green:hover {
    transform: translateY(-1px);
    filter: brightness(0.96);
}

.ramadan-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 25px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.from-text {
    font-size: 14px;
    margin-right: 8px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
}

.hero-image {
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.decorative-lanterns {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.lantern {
    position: absolute;
    width: 60px;
    height: 80px;
    background: linear-gradient(145deg, #FFD700, #FFA500);
    border-radius: 30px 30px 0 0;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.lantern::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #FFD700;
    border-radius: 50%;
}

.lantern-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.lantern-2 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.lantern-3 {
    top: 50%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Empowering Section */
.empowering-section {
    padding: 80px 0;
    background: #fff;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.text-content h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.2;
}

.text-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #666;
}

.values {
    margin-bottom: 40px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.value-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon.compassion {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
}

.value-icon.community {
    background: linear-gradient(135deg, #4ECDC4, #6EE2DD);
}

.value-icon.accountability {
    background: linear-gradient(135deg, #45B7D1, #67C3DB);
}

.value-text h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.value-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.cta-button {
    background: #8B5CF6;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    text-transform: uppercase;
}

.cta-button:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.empowering-image {
    min-height: 500px;
}

.empowering-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    padding: 80px 0;
    color: white;
    position: relative;
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.stats-badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin-top: 20px;
    line-height: 1.2;
}

.stats-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.main-stat {
    grid-column: 1;
    grid-row: 1 / 3;
}

.main-stat .stat-number {
    font-size: 72px;
    font-weight: bold;
    color: #A7F3D0;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #A7F3D0;
    display: block;
}

.stat-plus {
    font-size: 24px;
    color: #A7F3D0;
}

.stat-static {
    font-size: 28px;
    font-weight: 700;
    color: #A7F3D0;
    display: block;
}

.stat-item p {
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.9;
}

.profile-images {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.3);
    object-fit: cover;
}

/* Founder Message Section */
.founder-message-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.founder-header {
    text-align: center;
    margin-bottom: 60px;
}

.founder-header h2 {
    font-size: 36px;
    font-weight: bold;
    margin-top: 20px;
    color: #1d4fb8;
    text-transform: capitalize;
}

.founder-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 100%;
    width: 100%;
}

.founder-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-left: 4px solid #00c8e8;
    align-items: center;
    width: 100%;
}

.founder-image {
    width: 100%;
}

.founder-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
}

.founder-message {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.founder-message h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1d4fb8;
    margin-bottom: 10px;
}

.founder-message p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.founder-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.founder-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1d4fb8;
    margin: 0 0 5px 0;
}

.founder-details p {
    font-size: 14px;
    color: #8b8b8b;
    margin: 0;
}

.carousel-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #00c8e8;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.carousel-nav:hover {
    background: #0fa8c4;
    transform: scale(1.1);
}

/* Shaping Section */
.shaping-section {
    padding: 80px 0;
    background: #F8F9FA;
    position: relative;
    overflow: hidden;
}

.shaping-section::after {
    content: "";
    position: absolute;
    right: 40px;
    bottom: 30px;
    width: 290px;
    height: 290px;
    background: url("assets/logo.png") no-repeat center;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.shaping-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.section-badge {
    background: #E5E7EB;
    color: #6B7280;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-badge.purple {
    background: #EDE9FE;
    color: #8B5CF6;
}

.section-badge.green {
    background: #D1FAE5;
    color: #059669;
}

.section-badge.blue {
    background: #DBEAFE;
    color: #2563EB;
}

.shaping-left h2 {
    font-size: 36px;
    font-weight: bold;
    margin: 20px 0;
    color: #333;
    line-height: 1.2;
}

.shaping-left p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.shaping-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tab-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    cursor: pointer;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    padding-left: 20px;
}

.tab-item.active {
    border-left-color: #8B5CF6;
}

.tab-number {
    font-size: 18px;
    font-weight: bold;
    color: #999;
    min-width: 30px;
}

.tab-item.active .tab-number {
    color: #8B5CF6;
}

.tab-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}

.tab-item.active .tab-title {
    color: #8B5CF6;
}

.tab-item:not(.active) .tab-title {
    color: #999;
}

.shaping-right {
    position: relative;
    max-height: 620px;
}

.tab-content {
    display: none;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-height: 740px;
    overflow: hidden;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
}

.tab-content h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.tab-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.tab-content img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-top: 20px;
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    background: #F9FAFB;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects-header h2 {
    font-size: 36px;
    font-weight: bold;
    margin-top: 20px;
    color: #333;
    text-transform: uppercase;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
}

.project-card.expandable {
    transform-origin: center;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(139, 92, 246, 0.9));
    color: white;
    padding: 40px 20px 20px;
}

.project-content h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.project-content p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
    opacity: 0.95;
}

.project-btn {
    background: white;
    color: #8B5CF6;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 12px;
}

.project-btn:hover {
    background: #F3F4F6;
    transform: translateY(-2px);
}

/* Volunteer Section */
.volunteer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 100%);
}

.volunteer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.volunteer-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.volunteer-text h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin: 20px 0 40px;
    text-transform: uppercase;
}

.volunteer-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    background: rgba(255,255,255,0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: #9AE6B4;
    color: #1A202C;
    font-weight: bold;
}

.accordion-item.active .accordion-header {
    background: #68D391;
}

.accordion-icon {
    font-size: 24px;
    font-weight: bold;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    background: white;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 200px;
}

.accordion-content p {
    color: #666;
    line-height: 1.6;
}

/* Help Section */
.help-section {
    padding: 80px 0;
    background: #fff;
}

.help-header {
    text-align: left;
    margin-bottom: 40px;
}

.help-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2b2b2b;
    margin: 0;
    font-family: var(--font-family-h);
}

.help-slider {
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: thin;
}

.help-grid {
    display: flex;
    gap: 30px;
    align-items: stretch;
    scroll-snap-type: x mandatory;
    padding-right: 10px;
}

.help-grid-item {
    flex: 0 0 320px;
    scroll-snap-align: start;
    display: flex;
}

.help-grid-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 440px;
}

.help-grid-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.help-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f5f5f5;
    border-bottom: 1px solid #ececec;
}

.help-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.help-grid-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2b2b2b;
    padding: 22px 22px 10px;
    margin: 0;
    font-family: var(--font-family-h);
}

.help-grid-card p {
    font-size: 15px;
    color: #5a5a5a;
    padding: 0 22px 26px;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    transition: all 0.3s;
}

.pagination-btn:hover {
    background: #0f2f73;
    transform: scale(1.1);
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: #F8F9FA;
}

.news-header {
    text-align: center;
    margin-bottom: 60px;
}

.news-header h2 {
    font-size: 36px;
    font-weight: bold;
    margin-top: 20px;
    color: #333;
    text-transform: uppercase;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.news-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 12px;
    color: #999;
}

.news-category {
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.news-category.blog {
    background: #10B981;
    color: white;
}

.news-category.fundraising {
    background: #F59E0B;
    color: white;
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-newsletter {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
}

.newsletter-section h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.newsletter-section p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form button {
    background: #10B981;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #059669;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-info p {
    margin-bottom: 8px;
    opacity: 0.9;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-certifications {
    margin-bottom: 20px;
}

.footer-certifications span {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    opacity: 0.7;
}

.cert-badges {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cert-badge img {
    width: 40px;
    height: 20px;
    object-fit: cover;
    border-radius: 4px;
}

.cert-badge span {
    font-size: 10px;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: left;
    font-size: 12px;
    opacity: 0.8;
}

.footer-certification {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 160px;
}

.footer-certification img {
    max-width: 160px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: white;
}

.footer-decorative {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 100"><path fill="rgba(255,255,255,0.1)" d="M0,100 C300,20 600,80 900,40 C1050,20 1150,60 1200,40 L1200,100 Z"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.manage-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.manage-consent i {
    font-size: 30px;
    color: #ffffff;
}

.manage-consent a {
    background: #16c728;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    padding: 10px 0px 0px 0px;
    padding: 10px 15px;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
}

.manage-consent a:hover {
    background: #059669;
}

.donate-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.donate-sidebar-btn {
    background: #1d4fb8;
    color: white;
    border: none;
    padding: 15px 8px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px 0 0 10px;
    text-transform: uppercase;
    font-size: 12px;
}

/* Brand Theme Overrides */
:root {
    --font-family: "Inter-VariableFont", "Inter", sans-serif;
    --font-family-h: "Bitter-SemiBold", "Bitter", "Inter-VariableFont", "Inter", sans-serif;
    --top-strip-height: 46px;
    --main-header-height: 82px;
    --header-height: calc(var(--top-strip-height) + var(--main-header-height));
    --brand-primary: #25b5d7;
    --brand-primary-dark: #0e98bc;
    --brand-secondary: #162f45;
    --brand-secondary-soft: #244965;
    --brand-bg: #f2fbfe;
    --brand-text: #1f2a33;
    --brand-muted: #5c6974;
    --brand-header-bg: #27b5d8;
    --brand-accent-yellow: #f5c12b;
    --brand-accent-yellow-dark: #e0ac17;
    --brand-accent-green: #11866c;
    --brand-accent-green-dark: #0d735b;
}

body {
    color: var(--brand-text);
    background: #fff;
    padding-top: var(--header-height);
}

.main-header {
    min-height: var(--header-height);
    border-bottom: 0;
    background: #ffffff;
    box-shadow: 0 3px 14px rgba(10, 35, 52, 0.12);
}

.header-top-strip {
    height: var(--top-strip-height);
    background: var(--brand-primary);
    color: #ffffff;
}

.top-strip-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.top-strip-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-strip-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family);
}

.top-strip-item i {
    margin-right: 8px;
}

.top-strip-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-strip-right a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.top-strip-right a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

.header-content {
    min-height: var(--main-header-height);
    padding: 0;
    position: relative;
    gap: 18px;
}

.logo-circle img {
    width: 200px;
}

.main-nav {
    margin: 0 6px;
}

.main-nav ul {
    gap: 28px;
    align-items: center;
    flex-wrap: nowrap;
}

.main-nav a {
    color: #1f2a33;
    font-weight: 600;
    font-size: 15px;
    text-transform: none;
    white-space: nowrap;
}

.hero {
    height: min(calc(100dvh - var(--header-height)), 56vw);
    min-height: 320px;
    max-height: 680px;
    background-position: center top;
}

.hero::before {
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 0;
}

.hero-copy {
    max-width: 980px;
    color: #ffffff;
}

.hero-copy h1 {
    font-size: clamp(34px, 4.2vw, 62px);
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-subtitle {
    max-width: 960px;
    margin: 0 auto 28px;
    font-size: clamp(16px, 1.35vw, 30px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
}

.hero-actions {
    justify-content: center;
    gap: 14px;
}

.hero-btn {
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 28px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    transition: all 0.22s ease;
}

.hero-btn-primary {
    background: var(--brand-accent-yellow);
    color: #1f2a33;
}

.hero-btn-primary:hover {
    background: var(--brand-accent-yellow-dark);
}

.hero-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.95);
    color: #ffffff;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1024px) {
    .hero {
        height: min(calc(100dvh - var(--header-height)), 62vw);
        min-height: 260px;
    }
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--brand-primary);
}

.donate-btn {
    background: var(--brand-accent-yellow);
    color: #1f2a33;
    border-radius: 24px;
    text-transform: none;
    font-size: 16px;
    font-weight: 600;
    padding: 11px 24px;
}

.donate-btn:hover {
    background: var(--brand-accent-yellow-dark);
}

.header-search {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #262f37;
    font-size: 22px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button {
    background: var(--brand-accent-green);
}

.cta-button:hover {
    background: var(--brand-accent-green-dark);
}

.cta-button:hover {
    box-shadow: 0 10px 24px rgba(17, 134, 108, 0.25);
}

.text-content h2,
.shaping-left h2,
.projects-header h2,
.volunteer-text h2,
.help-text h2,
.news-header h2,
.tab-content h3,
.help-card h3 {
    color: var(--brand-secondary);
}

.text-content p,
.value-text p,
.tab-content p,
.help-text p,
.news-content p,
.accordion-content p {
    color: var(--brand-muted);
}

.stats-section {
    background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-secondary-soft) 100%);
}

.main-footer {
    background: linear-gradient(135deg, #1f2024 0%, #17181b 100%);
}

.main-stat .stat-number,
.stat-number,
.stat-plus {
    color: #c1d8ff;
}

.section-badge,
.stats-badge {
    background: linear-gradient(135deg, rgba(37, 181, 215, 0.16), rgba(14, 152, 188, 0.18));
    color: var(--brand-secondary);
}

.section-badge.purple,
.section-badge.green,
.section-badge.blue {
    background: linear-gradient(135deg, rgba(37, 181, 215, 0.16), rgba(14, 152, 188, 0.18));
    color: var(--brand-secondary);
}

.stats-section .stats-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(193, 216, 255, 0.22));
    color: #f3f7ff;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.stats-section .stats-text h2 {
    color: #f3f7ff;
}

.stats-section .stat-item p,
.stats-section .stat-static {
    color: #f3f7ff;
}

.tab-item.active {
    border-left-color: var(--brand-accent-green);
}

.tab-item.active .tab-number,
.tab-item.active .tab-title {
    color: var(--brand-accent-green);
}

.tab-icon {
    background: linear-gradient(135deg, var(--brand-accent-green), var(--brand-accent-green-dark));
    font-size: 30px;
}

.value-icon {
    color: #fff;
    font-size: 20px;
}

.value-icon.compassion,
.value-icon.community,
.value-icon.accountability {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
}

.projects-section,
.news-section,
.shaping-section,
.volunteer-section {
    background: var(--brand-bg);
}

.project-content {
    background: linear-gradient(transparent, rgba(8, 26, 63, 0.9));
}

.project-btn {
    background: var(--brand-accent-yellow);
    color: #1f2a33;
}

.project-btn:hover {
    background: var(--brand-accent-yellow-dark);
    color: #1f2a33;
}

.accordion-header {
    background: #d7f4fb;
    color: #144059;
}

.accordion-item.active .accordion-header {
    background: #bfe9f4;
}

.help-card.purple,
.help-card.green,
.help-card.dark {
    background: linear-gradient(135deg, #0a1f4f, #123c8f);
}

.help-card h3,
.help-card p,
.help-card .card-number {
    color: #ffffff;
}

.help-card p {
    opacity: 0.95;
}

.news-category.blog,
.news-category.fundraising {
    background: var(--brand-accent-green);
    color: #fff;
}

.social-links a i,
.contact-info i {
    color: #39c4e5;
    width: 18px;
    margin-right: 8px;
}

.footer-logo .logo-circle img {
    object-fit: contain;
}

.card-btn {
    border-color: rgba(57, 196, 229, 0.45);
    background: rgba(57, 196, 229, 0.2);
}

.newsletter-form button {
    background: var(--brand-accent-green);
}

.newsletter-form button:hover {
    background: var(--brand-accent-green-dark);
}

.donate-sidebar-btn {
    background: var(--brand-accent-yellow);
    color: #1f2a33;
}

.donate-sidebar-btn:hover {
    background: var(--brand-accent-yellow-dark);
    color: #1f2a33;
}

/* Scroll Animations */
.expandable {
    transition: all 0.3s ease;
}

.expandable.expanded {
    transform: scale(1.05);
}

.expandable.collapsed {
    transform: scale(0.95);
    opacity: 0.8;
}

/* About Page */
.about-page {
    background: #fff;
}

.about-hero {
    padding: 80px 0 50px;
    background: linear-gradient(135deg, #f4fbfd 0%, #e9f9fc 100%);
    border-bottom: 1px solid rgba(0, 200, 232, 0.18);
}

.about-hero h1 {
    margin: 14px 0 14px;
    font-size: clamp(32px, 4.5vw, 52px);
    color: var(--brand-secondary);
    line-height: 1.1;
}

.about-hero p {
    max-width: 860px;
    color: var(--brand-muted);
    font-size: 17px;
}

.about-section {
    padding: 70px 0;
}

.about-section.alt {
    background: var(--brand-bg);
}

.about-title {
    color: var(--brand-secondary);
    font-size: clamp(28px, 3.3vw, 42px);
    margin-bottom: 26px;
    line-height: 1.2;
}

.about-intro {
    color: var(--brand-muted);
    margin-bottom: 28px;
    max-width: 950px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-card {
    background: #fff;
    border: 1px solid rgba(0, 200, 232, 0.18);
    border-radius: 16px;
    padding: 28px;
}

.about-card h2 {
    color: var(--brand-secondary);
    margin-bottom: 14px;
}

.about-card p {
    color: var(--brand-muted);
    margin-bottom: 14px;
}

.about-card p:last-child {
    margin-bottom: 0;
}

.focus-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.focus-item {
    background: #fff;
    border: 1px solid rgba(0, 200, 232, 0.2);
    border-radius: 12px;
    padding: 16px 18px;
    color: var(--brand-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.focus-item i {
    color: var(--brand-primary);
}

.initiative-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.initiative-card {
    background: #fff;
    border: 1px solid rgba(0, 200, 232, 0.2);
    border-radius: 14px;
    padding: 20px;
}

.initiative-card h3 {
    color: var(--brand-secondary);
    font-size: 20px;
    margin-bottom: 8px;
}

.initiative-card p {
    color: var(--brand-muted);
}

.policy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.policy-card {
    background: #fff;
    border: 1px solid rgba(0, 200, 232, 0.2);
    border-radius: 14px;
    padding: 24px;
}

.policy-card h3 {
    color: var(--brand-secondary);
    margin-bottom: 10px;
}

.policy-card ul {
    margin-left: 18px;
    color: var(--brand-muted);
}

.policy-card li {
    margin-bottom: 8px;
}

.policy-card p {
    color: var(--brand-muted);
}

.policy-card.full-width {
    grid-column: 1 / -1;
}

/* Contact Page */
.contact-page {
    background: #fff;
}

.contact-hero {
    padding: 80px 0 50px;
    background: linear-gradient(135deg, #f4fbfd 0%, #e9f9fc 100%);
    border-bottom: 1px solid rgba(0, 200, 232, 0.18);
}

.contact-hero h1 {
    margin: 14px 0 14px;
    font-size: clamp(32px, 4.5vw, 52px);
    color: var(--brand-secondary);
    line-height: 1.1;
}

.contact-hero p {
    max-width: 760px;
    color: var(--brand-muted);
    font-size: 17px;
}

.contact-section {
    padding: 70px 0;
}

.contact-section.alt {
    background: var(--brand-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 20px;
}

.contact-card {
    background: #fff;
    border: 1px solid rgba(0, 200, 232, 0.2);
    border-radius: 16px;
    padding: 26px;
}

.contact-card.info-card {
    background: linear-gradient(180deg, #ffffff 0%, #f5fdff 100%);
    border-color: rgba(0, 200, 232, 0.34);
    box-shadow: 0 10px 30px rgba(0, 38, 65, 0.07);
    animation: cardFadeUp 0.55s ease-out both;
}

.contact-card h2 {
    color: var(--brand-secondary);
    margin-bottom: 12px;
}

.contact-list p {
    color: var(--brand-muted);
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-card.info-card .contact-list p {
    border-bottom: 1px dashed rgba(0, 200, 232, 0.22);
    padding-bottom: 10px;
}

.contact-card.info-card .contact-list p:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bank-heading {
    margin-top: 18px;
}

.bank-details p {
    display: grid;
    grid-template-columns: 18px minmax(130px, 170px) 1fr;
    column-gap: 10px;
    align-items: start;
}

.bank-details strong {
    color: var(--brand-secondary);
    font-size: 13px;
    letter-spacing: 0.2px;
}

.bank-details span {
    color: var(--brand-text);
    word-break: break-word;
}

.contact-card.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 38, 65, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-list i {
    color: var(--brand-primary);
    margin-top: 4px;
}

.bank-details i {
    margin-top: 3px;
}

.contact-form .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

.contact-form label {
    margin-bottom: 6px;
    color: var(--brand-secondary);
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid rgba(0, 200, 232, 0.25);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    color: var(--brand-text);
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(0, 200, 232, 0.14);
}

.contact-title {
    color: var(--brand-secondary);
    font-size: clamp(28px, 3.3vw, 42px);
    margin-bottom: 24px;
}

.reach-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.reach-item {
    background: #fff;
    border: 1px solid rgba(0, 200, 232, 0.2);
    border-radius: 14px;
    padding: 22px;
}

.reach-item i {
    font-size: 22px;
    color: var(--brand-primary);
    margin-bottom: 10px;
}

.reach-item h3 {
    color: var(--brand-secondary);
    margin-bottom: 8px;
}

.reach-item p {
    color: var(--brand-muted);
}

@keyframes cardFadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Programs Page */
.programs-page {
    background: #fff;
}

.programs-hero {
    padding: 80px 0 50px;
    background: linear-gradient(135deg, #f4fbfd 0%, #e9f9fc 100%);
    border-bottom: 1px solid rgba(0, 200, 232, 0.18);
}

.programs-hero h1 {
    margin: 14px 0;
    font-size: clamp(32px, 4.5vw, 52px);
    color: var(--brand-secondary);
    line-height: 1.1;
}

.programs-hero p {
    max-width: 840px;
    color: var(--brand-muted);
    font-size: 17px;
}

.programs-intro {
    padding: 60px 0 70px;
    background: #fff;
}

.programs-intro-card {
    background: linear-gradient(180deg, #ffffff 0%, #f6fcfe 100%);
    border: 1px solid rgba(0, 200, 232, 0.22);
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 20px;
}

.programs-intro-card h2 {
    color: var(--brand-secondary);
    font-size: clamp(28px, 3.3vw, 40px);
    margin: 12px 0;
}

.programs-intro-card p {
    color: var(--brand-muted);
    max-width: 980px;
}

.program-detail-grid {
    display: grid;
    gap: 16px;
}

.program-detail-card {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    background: #fff;
    border: 1px solid rgba(0, 200, 232, 0.22);
    border-radius: 16px;
    overflow: hidden;
}

.program-detail-card.reverse {
    grid-template-columns: 1fr 1.05fr;
}

.program-detail-card.reverse img {
    order: 2;
}

.program-detail-card.reverse .program-detail-content {
    order: 1;
}

.program-detail-card img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.program-detail-content {
    padding: 24px;
}

.program-detail-content h3 {
    color: var(--brand-secondary);
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-detail-content h3 i {
    color: var(--brand-primary);
}

.program-detail-content p {
    color: var(--brand-muted);
}

.program-points {
    margin: 12px 0 16px 20px;
    color: var(--brand-muted);
}

.program-points li {
    margin-bottom: 8px;
}

.programs-summary {
    padding: 70px 0;
    background: var(--brand-bg);
}

.programs-summary h2 {
    color: var(--brand-secondary);
    font-size: clamp(28px, 3.3vw, 42px);
    margin-bottom: 24px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.summary-card {
    background: #fff;
    border: 1px solid rgba(0, 200, 232, 0.2);
    border-radius: 14px;
    padding: 22px;
}

.summary-card h3 {
    color: var(--brand-secondary);
    margin-bottom: 8px;
}

.summary-card p {
    color: var(--brand-muted);
}

/* Gallery Page */
.gallery-page {
    background: #fff;
}

.gallery-hero {
    padding: 80px 0 50px;
    background: linear-gradient(135deg, #f4fbfd 0%, #e9f9fc 100%);
    border-bottom: 1px solid rgba(0, 200, 232, 0.18);
}

.gallery-hero h1 {
    margin: 14px 0;
    font-size: clamp(32px, 4.5vw, 52px);
    color: var(--brand-secondary);
    line-height: 1.1;
}

.gallery-hero p {
    max-width: 760px;
    color: var(--brand-muted);
    font-size: 17px;
}

.gallery-section {
    padding: 70px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gallery-card {
    background: #fff;
    border: 1px solid rgba(0, 200, 232, 0.2);
    border-radius: 14px;
    overflow: hidden;
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.gallery-card h3 {
    padding: 12px 14px;
    color: var(--brand-secondary);
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --top-strip-height: 52px;
        --main-header-height: 68px;
    }

    .hero {
        height: auto;
        min-height: 0;
        max-height: none;
        aspect-ratio: 2 / 1;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center top;
        background-color: #eaf9fc;
    }

    .hero-copy h1 {
        font-size: clamp(30px, 9.2vw, 40px);
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .hero-actions {
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-btn {
        font-size: 15px;
        padding: 11px 18px;
    }

    .header-top-strip {
        overflow: hidden;
    }

    .top-strip-content {
        justify-content: center;
    }

    .top-strip-left {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .top-strip-item {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        font-size: 11px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
    }

    .top-strip-item i {
        margin-right: 0;
        flex-shrink: 0;
    }

    .top-strip-right {
        display: none;
    }

    .main-nav {
        display: none;
        margin: 0;
    }

    .main-nav.mobile-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid rgba(0, 200, 232, 0.2);
        box-shadow: 0 10px 22px rgba(8, 56, 69, 0.12);
    }

    .main-nav.mobile-open ul {
        flex-direction: column;
        gap: 0;
        padding: 8px 20px;
    }

    .main-nav.mobile-open a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 200, 232, 0.12);
    }

    .main-nav.mobile-open a:hover,
    .main-nav.mobile-open a.active {
        color: var(--brand-secondary);
    }

    .main-nav.mobile-open li:last-child a {
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .header-actions {
        gap: 12px;
    }

    .header-search {
        display: none;
    }

    .donate-btn {
        padding: 8px 14px;
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .content-grid,
    .stats-content,
    .shaping-content,
    .volunteer-content,
    .help-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-numbers {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-stat {
        grid-column: 1;
        grid-row: 1;
    }
    
    .projects-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-newsletter {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-certification {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }
    
    .cert-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .help-slider {
        padding-bottom: 8px;
    }

    .help-grid {
        gap: 20px;
    }

    .help-grid-item {
        flex-basis: 280px;
    }

    .help-grid-card h3 {
        font-size: 18px;
        padding: 15px 15px 8px;
    }

    .help-grid-card {
        height: 380px;
    }

    .help-grid-card p {
        padding: 0 15px 15px;
        font-size: 13px;
    }

    .help-header h2 {
        font-size: 28px;
    }

    .help-grid {
        scroll-snap-type: x mandatory;
    }

    .founder-card {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }

    .founder-image img {
        height: 220px;
    }

    .founder-carousel {
        gap: 15px;
    }

    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .founder-header h2 {
        font-size: 28px;
    }

    .about-hero {
        padding: 56px 0 36px;
    }

    .about-grid,
    .focus-list,
    .initiative-grid,
    .policy-grid,
    .contact-grid,
    .reach-grid,
    .summary-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .programs-intro {
        padding: 46px 0 56px;
    }

    .programs-intro-card {
        padding: 22px;
    }

    .program-detail-card,
    .program-detail-card.reverse {
        grid-template-columns: 1fr;
    }

    .program-detail-card.reverse img,
    .program-detail-card.reverse .program-detail-content {
        order: initial;
    }

    .program-detail-card img {
        min-height: 210px;
    }

    .contact-hero {
        padding: 56px 0 36px;
    }

    .programs-hero,
    .gallery-hero {
        padding: 56px 0 36px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .text-content h2,
    .stats-text h2,
    .shaping-left h2,
    .projects-header h2,
    .volunteer-text h2,
    .help-header h2,
    .news-header h2 {
        font-size: 28px;
    }

    .about-hero h1,
    .contact-hero h1,
    .programs-hero h1,
    .gallery-hero h1 {
        font-size: 34px;
    }

    .about-card,
    .policy-card,
    .contact-card,
    .initiative-card,
    .reach-item,
    .help-card {
        padding: 18px;
    }

    .bank-details p {
        grid-template-columns: 18px 1fr;
        row-gap: 4px;
    }

    .bank-details strong,
    .bank-details span {
        grid-column: 2;
    }

    .help-grid-item {
        flex-basis: 85%;
    }

    .help-grid-card {
        height: 360px;
    }

    .donate-sidebar {
        display: none;
    }
}