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

:root {
    --primary-color: #1A395B;
    --secondary-color: #2F5481;
    --tertiary-color: #4E7DA6;
    --light-blue: #91B7D9;
    --accent-color: #D5E7F2;
    --lightest-blue: #E9F1F6;
    --warm-cream: #FAF8F5;
    --soft-sand: #F5F1EA;
    --sage-green: #A8B5A0;
    --warm-brown: #8B7355;
    --dark-color: #1A395B;
    --text-dark: #2B2D42;
    --text-charcoal: #3D3D3D;
    --text-light: #FEFFFF;
    --overlay-dark: rgba(26, 57, 91, 0.5);
    --overlay-gradient: rgba(47, 84, 129, 0.4);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--text-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Site-wide max-width container */
.site-container,
section:not(.navbar):not(.footer) {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* ============================================
   NAVIGATION - Clean Rebuild
   ============================================ */

/* Navbar Container */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1rem;
    width: calc(100% - 2rem);
    border-radius: 16px;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo */
.nav-logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--light-blue);
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Desktop Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% - 10px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 240px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    list-style: none;
    padding: 0.75rem 0.5rem;
    padding-top: 1.25rem;
    z-index: 1000;
}

/* Arrow pointer at top */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #3E82C5 0%, #5a9fd4 100%);
    color: white;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-social-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding-right: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.nav-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.nav-social-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.nav-social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.nav-social-link:hover::before {
    opacity: 1;
}

.nav-social-link:hover svg {
    transform: scale(1.15);
}

/* Navigation Buttons */
.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF8E53 0%, #FF6B6B 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ============================================
   MOBILE NAVIGATION (max-width: 1200px)
   ============================================ */

@media (max-width: 1200px) {
    .navbar {
        margin: 0;
        width: 100%;
        border-radius: 0;
    }

    .nav-container {
        height: 80px;
        padding: 0 1.5rem;
    }

    .nav-logo img {
        height: 50px;
    }

    /* Show Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Hamburger Animation - handled by JavaScript */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

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

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

    /* Mobile Menu */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 2rem 1.5rem;
        transition: left 0.3s ease;
        overflow-y: auto;
        gap: 0;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Mobile Nav Links */
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
        align-items: stretch;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(26, 57, 91, 0.1);
    }

    .nav-link {
        padding: 1rem 0;
        width: 100%;
        justify-content: space-between;
        color: var(--primary-color);
        font-weight: 600;
        font-size: 1.125rem;
    }

    .nav-link:hover {
        color: var(--tertiary-color);
    }

    .dropdown-arrow {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
        border-radius: 50%;
        color: white;
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    .nav-item.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        left: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        margin: 0;
        background: linear-gradient(135deg, #E9F1F6 0%, #D6E9F5 100%);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        border-radius: 12px;
        padding: 0;
        width: 100%;
    }

    /* Hide arrow pointer on mobile */
    .dropdown-menu::before {
        display: none;
    }

    .nav-item.active .dropdown-menu {
        max-height: 400px;
        padding: 0.5rem;
        margin: 0.5rem 0 0.75rem 0;
    }

    .nav-item:hover .dropdown-menu {
        transform: none;
        left: auto;
    }

    .dropdown-menu a {
        padding: 0.875rem 1rem;
        color: var(--primary-color);
        font-weight: 500;
        border-radius: 8px;
        margin-bottom: 0.25rem;
    }

    .dropdown-menu a:hover {
        background: linear-gradient(135deg, #3E82C5 0%, #5a9fd4 100%);
        color: white;
    }

    .dropdown-menu li:last-child a {
        margin-bottom: 0;
    }

    /* Mobile Buttons */
    .nav-buttons {
        width: 100%;
        flex-direction: column;
        margin-top: 1.5rem;
        gap: 1rem;
    }

    .nav-social-icons {
        width: 100%;
        justify-content: center;
        border-right: none;
        padding-right: 0;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(26, 57, 91, 0.2);
    }

    .nav-social-link {
        background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
        color: white;
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
        transform: scale(1.1);
    }

    .nav-social-link:hover {
        background: linear-gradient(135deg, #FF8E53 0%, #FFB84D 100%);
        box-shadow: 0 6px 20px rgba(255, 142, 83, 0.5);
        transform: scale(1.15);
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 1.75rem;
    }

    /* Hero Mobile Styles */
    .hero {
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
    }

    .hero-split {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        height: auto !important;
    }

    .hero-left {
        order: 1;
        padding: 7rem 2rem 3rem 2rem !important;
        text-align: center !important;
        justify-content: center;
        min-height: auto !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
    }

    .hero-content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9375rem;
        max-width: 500px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-right {
        order: 2;
        min-height: 350px !important;
        width: 100% !important;
        height: 350px !important;
        max-height: 350px !important;
    }

    .hero-image-container {
        height: 100% !important;
        width: 100% !important;
    }

    .hero-main-image {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    .hero-stats-inline {
        justify-content: center;
        gap: 1.5rem;
    }

    /* Need Help Now CTA Mobile Styles */
    section[style*="padding: 80px 20px"] {
        padding: 60px 20px !important;
    }

    .primary-contact-cta h2 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .primary-contact-cta p {
        font-size: 1rem !important;
    }

    .primary-contact-cta a {
        flex-direction: column !important;
        padding: 24px 30px !important;
        font-size: 1.25rem !important;
    }

    /* Impact Stats Section Mobile */
    section[style*="background: linear-gradient(135deg, #1e3a5f"] {
        padding: 60px 20px !important;
    }

    section[style*="background: linear-gradient(135deg, #1e3a5f"] span {
        font-size: 14px !important;
        padding: 0.4rem 1.25rem !important;
        letter-spacing: 1px !important;
    }

    section[style*="background: linear-gradient(135deg, #1e3a5f"] h2 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
    }

    section[style*="background: linear-gradient(135deg, #1e3a5f"] p {
        font-size: 1rem !important;
        margin-bottom: 40px !important;
    }

    section[style*="background: linear-gradient(135deg, #1e3a5f"] > div > div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 40px !important;
        margin-bottom: 40px !important;
    }

    section[style*="background: linear-gradient(135deg, #1e3a5f"] > div > div[style*="display: flex"] > div {
        text-align: center !important;
    }

    section[style*="background: linear-gradient(135deg, #1e3a5f"] > div > div[style*="display: flex"] > div > div:first-child {
        font-size: 3rem !important;
    }

    section[style*="background: linear-gradient(135deg, #1e3a5f"] a {
        padding: 14px 32px !important;
        font-size: 0.9375rem !important;
    }

    /* Success Stories Mobile */
    .success-stories-section {
        padding: 4rem 1.5rem !important;
    }

    .section-header h2 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .section-header p {
        font-size: 1rem !important;
    }

    .story-card.active {
        grid-template-columns: 1fr !important;
    }

    .story-image-wrapper {
        padding: 2rem !important;
        min-height: 300px !important;
    }

    .story-image {
        width: 100% !important;
        height: 300px !important;
        max-width: 350px !important;
        margin: 0 auto !important;
    }

    .story-content {
        padding: 2.5rem 2rem !important;
    }

    .story-quote {
        font-size: 1.125rem !important;
        margin-bottom: 1.5rem !important;
    }

    .author-name {
        font-size: 2rem !important;
        color: white !important;
    }

    .author-detail {
        font-size: 1.125rem !important;
        color: white !important;
    }

    .slider-arrow {
        width: 50px !important;
        height: 50px !important;
    }

    .slider-prev {
        left: 10px !important;
    }

    .slider-next {
        right: 10px !important;
    }

    .slider-dots {
        margin-top: 2rem !important;
    }

    /* Programs Section Mobile */
    section[style*="background: linear-gradient(to bottom, #ffffff"] {
        padding: 60px 20px !important;
    }

    section[style*="background: linear-gradient(to bottom, #ffffff"] h2 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    section[style*="background: linear-gradient(to bottom, #ffffff"] > div > div:first-child p {
        font-size: 1rem !important;
    }

    section[style*="background: linear-gradient(to bottom, #ffffff"] > div > div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    section[style*="background: linear-gradient(to bottom, #ffffff"] a[style*="text-decoration: none"] {
        margin: 0 auto !important;
        max-width: 100% !important;
    }

    section[style*="background: linear-gradient(to bottom, #ffffff"] h3 {
        font-size: 1.5rem !important;
    }

    section[style*="background: linear-gradient(to bottom, #ffffff"] > div > div:last-child h3 {
        font-size: 1.75rem !important;
    }

    section[style*="background: linear-gradient(to bottom, #ffffff"] > div > div:last-child p {
        font-size: 1rem !important;
        margin-bottom: 24px !important;
    }

    section[style*="background: linear-gradient(to bottom, #ffffff"] > div > div:last-child a {
        padding: 14px 32px !important;
        font-size: 0.9375rem !important;
    }

    /* Instagram Section Mobile */
    .instagram-section {
        padding: 4rem 1.5rem !important;
    }

    .instagram-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .instagram-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .instagram-follow-buttons {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .instagram-follow-btn,
    .facebook-follow-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.875rem 2rem !important;
        font-size: 0.9375rem !important;
    }

    .instagram-feed-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .instagram-post:nth-child(4) {
        display: block !important;
    }

    .instagram-cta {
        padding: 1.5rem !important;
    }

    .instagram-cta p {
        font-size: 1rem !important;
    }

    /* Donation CTA Section Mobile */
    section[style*="background: linear-gradient(135deg, #1A395B"] {
        padding: 60px 20px !important;
    }

    section[style*="background: linear-gradient(135deg, #1A395B"] h2 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    section[style*="background: linear-gradient(135deg, #1A395B"] > div > p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 40px !important;
    }

    section[style*="background: linear-gradient(135deg, #1A395B"] > div > div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 2.5rem !important;
    }

    section[style*="background: linear-gradient(135deg, #1A395B"] > div > div[style*="display: grid"] > div {
        padding: 1.25rem !important;
    }

    section[style*="background: linear-gradient(135deg, #1A395B"] > div > div[style*="display: grid"] span {
        font-size: 2rem !important;
    }

    section[style*="background: linear-gradient(135deg, #1A395B"] > div > div[style*="display: grid"] strong {
        font-size: 1rem !important;
    }

    section[style*="background: linear-gradient(135deg, #1A395B"] > div > div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    section[style*="background: linear-gradient(135deg, #1A395B"] > div > div[style*="display: flex"] a {
        width: 100% !important;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        text-align: center !important;
    }

    /* Get Involved CTA Grid Mobile */
    section[style*="background: linear-gradient(180deg, #FAFAFA"] {
        padding: 60px 20px !important;
    }

    section[style*="background: linear-gradient(180deg, #FAFAFA"] > div > div:first-child h2 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    section[style*="background: linear-gradient(180deg, #FAFAFA"] > div > div:first-child p {
        font-size: 1rem !important;
    }

    section[style*="background: linear-gradient(180deg, #FAFAFA"] > div > div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    section[style*="background: linear-gradient(180deg, #FAFAFA"] a[style*="height: 350px"] {
        height: 300px !important;
    }

    section[style*="background: linear-gradient(180deg, #FAFAFA"] h3 {
        font-size: 1.5rem !important;
    }

    section[style*="background: linear-gradient(180deg, #FAFAFA"] a[style*="height: 350px"] p {
        font-size: 0.9375rem !important;
        line-height: 1.5 !important;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 768px) {
    /* Additional tablet adjustments */
    .instagram-feed-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    section[style*="background: linear-gradient(to bottom, #ffffff"] > div > div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
    }

    .story-card.active {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 70px;
        padding: 0 1rem;
    }

    .nav-logo img {
        height: 40px;
    }

    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        padding: 1.5rem 1rem;
    }

    .nav-link {
        font-size: 1rem;
    }

    /* Hero Small Mobile */
    .hero-left {
        padding: 6rem 1.5rem 2.5rem 1.5rem !important;
    }

    .hero-title {
        font-size: 1.875rem !important;
    }

    .hero-subtitle {
        font-size: 0.9375rem !important;
    }

    .hero-description {
        font-size: 0.9375rem !important;
    }

    .hero-buttons .btn {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }

    /* Read More Stories Button Mobile */
    .btn-hero-primary[href="success-stories.html"] {
        padding: 0.875rem 2rem !important;
        font-size: 1rem !important;
    }

    /* Need Help CTA Small Mobile */
    .primary-contact-cta {
        padding: 40px 20px !important;
    }

    .primary-contact-cta h2 {
        font-size: 1.75rem !important;
    }

    .primary-contact-cta a {
        padding: 20px 24px !important;
        font-size: 1.125rem !important;
    }

    .primary-contact-cta a div[style*="width: 60px"] {
        width: 50px !important;
        height: 50px !important;
    }

    .primary-contact-cta a svg {
        width: 24px !important;
        height: 24px !important;
    }

    /* Impact Stats Small Mobile */
    section[style*="background: linear-gradient(135deg, #1e3a5f"] h2 {
        font-size: 1.75rem !important;
    }

    section[style*="background: linear-gradient(135deg, #1e3a5f"] > div > div[style*="display: flex"] > div > div:first-child {
        font-size: 2.5rem !important;
    }

    section[style*="background: linear-gradient(135deg, #1e3a5f"] > div > div[style*="display: flex"] > div > div:last-child {
        font-size: 0.9375rem !important;
    }

    /* Success Stories Small Mobile */
    .story-image-wrapper {
        padding: 1.5rem !important;
        min-height: 250px !important;
    }

    .story-image {
        height: 250px !important;
    }

    .story-content {
        padding: 2rem 1.5rem !important;
    }

    .story-quote {
        font-size: 1rem !important;
    }

    .slider-arrow {
        width: 44px !important;
        height: 44px !important;
    }

    .slider-arrow svg {
        width: 20px !important;
        height: 20px !important;
    }

    /* Programs Section Small Mobile */
    section[style*="background: linear-gradient(to bottom, #ffffff"] h2 {
        font-size: 1.75rem !important;
    }

    section[style*="background: linear-gradient(to bottom, #ffffff"] h3 {
        font-size: 1.375rem !important;
    }

    section[style*="background: linear-gradient(to bottom, #ffffff"] > div > div:last-child {
        padding: 40px 24px !important;
    }

    section[style*="background: linear-gradient(to bottom, #ffffff"] > div > div:last-child h3 {
        font-size: 1.5rem !important;
    }

    /* Instagram Small Mobile */
    .instagram-title {
        font-size: 1.75rem !important;
    }

    .instagram-subtitle {
        font-size: 0.9375rem !important;
    }

    .instagram-follow-btn,
    .facebook-follow-btn {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.875rem !important;
        gap: 0.5rem !important;
    }

    .instagram-follow-btn svg,
    .facebook-follow-btn svg {
        width: 20px !important;
        height: 20px !important;
    }

    .instagram-feed-grid {
        gap: 0.75rem !important;
    }

    /* Donation CTA Small Mobile */
    section[style*="background: linear-gradient(135deg, #1A395B"] h2 {
        font-size: 1.75rem !important;
    }

    section[style*="background: linear-gradient(135deg, #1A395B"] > div > div[style*="display: grid"] > div {
        padding: 1rem !important;
    }

    section[style*="background: linear-gradient(135deg, #1A395B"] > div > div[style*="display: grid"] span {
        font-size: 1.75rem !important;
    }

    section[style*="background: linear-gradient(135deg, #1A395B"] > div > div[style*="display: grid"] p {
        font-size: 0.9375rem !important;
    }

    section[style*="background: linear-gradient(135deg, #1A395B"] > div > div[style*="display: flex"] a {
        padding: 0.875rem 1.75rem !important;
        font-size: 0.9375rem !important;
    }

    /* Get Involved Small Mobile */
    section[style*="background: linear-gradient(180deg, #FAFAFA"] > div > div:first-child h2 {
        font-size: 1.75rem !important;
    }

    section[style*="background: linear-gradient(180deg, #FAFAFA"] a[style*="height: 350px"] {
        height: 280px !important;
    }

    section[style*="background: linear-gradient(180deg, #FAFAFA"] a[style*="height: 350px"] > div:last-child {
        padding: 1.5rem !important;
    }

    section[style*="background: linear-gradient(180deg, #FAFAFA"] h3 {
        font-size: 1.375rem !important;
    }

    section[style*="background: linear-gradient(180deg, #FAFAFA"] a[style*="height: 350px"] p {
        font-size: 0.875rem !important;
    }
}

/* Hero Section - Dramatic Split Screen */
.hero {
    position: relative;
    height: 100vh;
    max-height: 850px;
    overflow: hidden;
    background: white;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

/* Left Side - Content */
.hero-left {
    display: flex;
    align-items: center;
    padding: 6rem 3rem 2rem 4rem;
    background: white;
    position: relative;
}

.hero-content-wrapper {
    max-width: 600px;
    animation: fadeInUp 1s ease;
}

.hero-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--tertiary-color);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.04em;
}

.hero-title-highlight {
    display: block;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-charcoal);
    line-height: 1.6;
    margin-bottom: 1.75rem;
    opacity: 0.8;
}

.hero-stats-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-inline {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-inline .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-inline .stat-text {
    font-size: 0.875rem;
    color: var(--text-charcoal);
    opacity: 0.7;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: var(--text-light);
    padding: 1.25rem 3rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.35);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #FF8E53 0%, #FF6B6B 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.45);
}

.btn-hero-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1.25rem 3rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0;
}

.btn-hero-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26, 57, 91, 0.2);
}

/* Right Side - Image */
.hero-right {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 57, 91, 0.15) 0%, rgba(78, 125, 166, 0.05) 50%, transparent 100%);
}

/* Need Help Now CTA */
.help-cta-section {
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--light-blue) 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.help-cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.4;
}

.help-cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.help-cta-content {
    text-align: center;
    color: white;
}

.help-cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.help-cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.btn-help-cta {
    background: white;
    color: var(--primary-color);
    padding: 1.25rem 3.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid transparent;
}

.btn-help-cta:hover {
    background: var(--primary-color);
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* Programs Section */
.programs-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--lightest-blue) 0%, #FFFFFF 100%);
}

.programs-container {
    max-width: 1600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-charcoal);
    opacity: 0.75;
    max-width: 600px;
    margin: 0 auto;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.program-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.program-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 57, 91, 0) 0%, rgba(26, 57, 91, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.program-tag {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.program-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--light-blue) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.program-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.program-description {
    font-size: 1rem;
    color: var(--text-charcoal);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.program-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.program-features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-charcoal);
    font-size: 0.9375rem;
    opacity: 0.8;
}

.program-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tertiary-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.program-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    font-size: 1rem;
}

.program-link:hover {
    color: var(--tertiary-color);
    gap: 0.5rem;
}

/* Programs CTA */
.programs-cta {
    text-align: center;
    background: white;
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.programs-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.programs-cta p {
    font-size: 1.125rem;
    color: var(--text-charcoal);
    opacity: 0.75;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Donation CTA Section */
.donation-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.donation-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.donation-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.donation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.donation-text {
    color: white;
}

.donation-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.donation-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.donation-impact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.impact-item p {
    color: white;
    font-size: 0.9375rem;
    margin: 0;
}

.impact-item strong {
    color: var(--light-blue);
    font-weight: 700;
}

/* Donation Card */
.donation-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.donation-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.donation-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.donation-header p {
    font-size: 0.9375rem;
    color: var(--text-charcoal);
    opacity: 0.7;
}

.donation-card-content {
    text-align: center;
}

.donation-message {
    font-size: 1rem;
    color: var(--text-charcoal);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.85;
}

.btn-donate {
    width: 100%;
    padding: 1.125rem;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    display: block;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.35);
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.45);
    background: linear-gradient(135deg, #FF8E53 0%, #FF6B6B 100%);
}

.donation-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-charcoal);
    opacity: 0.7;
    margin-top: 1.25rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }
}


/* Instagram Feed Section */
.instagram-section {
    background: white;
    padding: 6rem 2rem;
    position: relative;
}

.instagram-container {
    max-width: 1600px;
    margin: 0 auto;
}

.instagram-header {
    text-align: center;
    margin-bottom: 3rem;
}

.instagram-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.instagram-subtitle {
    font-size: 1.25rem;
    color: var(--text-charcoal);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.instagram-follow-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #E1306C 0%, #F56040 50%, #FCAF45 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.instagram-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.facebook-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: #1877f2;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.facebook-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
    background: #166fe5;
}

/* Impact Stats Fun Button */
.impact-stats-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 1;
}

.impact-stats-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
}

.impact-stats-button:hover::before {
    width: 300px;
    height: 300px;
}

.impact-stats-button:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Animated Stats */
.animated-stat {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite, gradientShift 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.5));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

@keyframes gradientShift {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.5)) brightness(1);
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 142, 83, 0.8)) brightness(1.2);
    }
}

.animated-stat.counting {
    animation: countingPulse 0.1s ease-in-out infinite;
    background: linear-gradient(135deg, #FFB84D 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255, 184, 77, 0.8));
}

@keyframes countingPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Success Stories Slider Section */
.success-stories-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, white 0%, #F8F9FA 100%);
    position: relative;
    overflow: hidden;
}

.success-stories-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 142, 83, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.success-stories-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(62, 130, 197, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

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

.success-stories-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.success-stories-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-stories-section .section-subtitle {
    color: var(--tertiary-color);
    font-size: 1.25rem;
    font-weight: 500;
}

.stories-slider {
    position: relative;
    margin-top: 3rem;
}

.slider-track {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    touch-action: pan-y pinch-zoom;
}

.story-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
    opacity: 0;
    transform: translateX(100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.story-card:hover {
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.story-card.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.story-card.prev {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
}

.story-card.next {
    transform: translateX(100%);
    opacity: 0;
    z-index: 1;
}

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

.story-image-wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2F5481 100%);
}

.story-image {
    width: 350px;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.story-card:hover .story-image {
    transform: scale(1.05);
}

.story-bubble {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    animation: float 3s ease-in-out infinite;
}

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

.quote-icon {
    color: white;
    opacity: 0.9;
}

.story-content {
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-author {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2F5481 100%);
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
    margin-bottom: 2rem;
}

.author-name {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    color: white !important;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.author-detail {
    font-size: 1.25rem !important;
    color: white !important;
    font-weight: 700 !important;
    font-style: italic;
}

.story-quote {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0;
    position: relative;
    font-style: italic;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
    color: white;
}

.slider-arrow:hover {
    background: linear-gradient(135deg, #FF8E53 0%, #FFB84D 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.slider-prev {
    left: -30px;
}

.slider-next {
    right: -30px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    opacity: 0.7;
    transform: scale(1.2);
}

.slider-dot.active {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.slider-dot.active::before {
    border-color: rgba(255, 107, 107, 0.3);
    transform: translate(-50%, -50%) scale(1.2);
}

/* Donors & Beneficiaries Testimonials Section */
.testimonials-section {
    padding: 6rem 2rem;
    background: white;
}

.testimonials-container {
    max-width: 1600px;
    margin: 0 auto;
}

.testimonials-grid {
    position: relative;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    display: none;
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 20px rgba(26, 57, 91, 0.08);
    transition: all 0.5s ease;
    border: 1px solid rgba(26, 57, 91, 0.08);
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: testimonialFadeIn 0.5s ease;
}

.testimonial-card.active {
    display: flex;
}

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

.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(26, 57, 91, 0.15);
    border-color: var(--light-blue);
}

.testimonial-image-wrapper {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--lightest-blue);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-image {
    border-color: var(--light-blue);
    transform: scale(1.05);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.quote-mark {
    font-size: 5rem;
    line-height: 0.8;
    color: var(--light-blue);
    font-family: Georgia, serif;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-charcoal);
    margin-bottom: 2rem;
    flex: 1;
}

.testimonial-author {
    padding-top: 1.5rem;
    border-top: 2px solid var(--lightest-blue);
}

.author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.author-location {
    font-size: 0.9375rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.author-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--light-blue) 100%);
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.beneficiary-badge {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
}

/* Testimonial Slider Controls */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--lightest-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary-color);
}

.testimonial-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
    left: -80px;
}

.testimonial-next {
    right: -80px;
}

/* Testimonial Slider Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--light-blue);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot:hover {
    background: var(--light-blue);
    transform: scale(1.2);
}

.testimonial-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.3);
}

.instagram-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.instagram-post:nth-child(4) {
    display: none;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-post:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.85) 0%, rgba(245, 96, 64, 0.85) 50%, rgba(252, 175, 69, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-cta {
    text-align: center;
    padding: 2rem;
    background: var(--lightest-blue);
    border-radius: 20px;
}

.instagram-cta p {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 500;
}

/* Testimonials & Instagram Responsive */
@media (max-width: 1024px) {
    .testimonial-prev {
        left: -60px;
    }

    .testimonial-next {
        right: -60px;
    }
}

@media (max-width: 900px) {
    .testimonial-prev {
        left: 10px;
    }

    .testimonial-next {
        right: 10px;
    }

    .testimonial-arrow {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 1.5rem;
    }

    .testimonials-grid {
        margin-top: 3rem;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .quote-mark {
        font-size: 4rem;
    }

    .story-card.active {
        grid-template-columns: 1fr;
    }

    .story-content {
        padding: 3rem 2rem;
    }

    .story-quote {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }

    .story-author .author-name {
        font-size: 1.125rem;
    }

    .slider-arrow {
        width: 50px;
        height: 50px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .success-stories-section {
        padding: 4rem 1.5rem;
    }

    .instagram-section {
        padding: 4rem 1.5rem;
    }

    .instagram-title {
        font-size: 2.25rem;
    }

    .instagram-subtitle {
        font-size: 1.125rem;
    }

    .instagram-follow-btn {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }

    .instagram-feed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .instagram-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .instagram-section {
        padding: 3rem 1rem;
    }

    .instagram-title {
        font-size: 1.75rem;
    }

    .instagram-subtitle {
        font-size: 1rem;
    }

    .instagram-follow-btn {
        width: 100%;
        justify-content: center;
    }

    .instagram-feed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* Footer Styles */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0 0 0;
    position: relative;
    overflow: hidden;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-about {
    max-width: 350px;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--light-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.footer-social a:hover {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--light-blue);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: var(--light-blue);
}

.footer-bottom {
    padding: 2rem 0;
    background: transparent;
    margin-top: 2rem;
}

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

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-tagline-bottom {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-column:nth-child(4),
    .footer-column:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0 0;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0 0 0;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-top {
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .footer-logo {
        height: 60px;
    }

    .footer-heading {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 70px;
        padding: 0 1rem;
    }

    .nav-logo img {
        height: 40px;
    }

    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        padding: 1.5rem;
    }

    .hero-left {
        padding: 6rem 1.5rem 2rem 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.9375rem;
    }

    .hero-right {
        min-height: 400px;
    }

    .help-cta-section {
        padding: 2.5rem 1rem;
    }

    .help-cta-title {
        font-size: 1.75rem;
    }

    .help-cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn-help-cta {
        width: 100%;
        padding: 1rem 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .donation-title {
        font-size: 1.75rem;
    }
}

