/* ========================================
   GIDAN DAWA FOUNDATION - MAIN STYLES
   Bright Colorful Theme with Dark Mode
   ======================================== */


   /* Scroll Top Button */
    .scroll-top-btn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--gradient-primary);
        border: none;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        box-shadow: var(--shadow-lg);
        display: none;
        z-index: 999;
        transition: var(--transition);
    }

    .scroll-top-btn:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
    }


:root {
    /* Primary Colors - Bright and Vibrant */
    --primary-color: #FF6B35;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    --success-color: #95E1D3;
    --info-color: #38A3A5;
    --warning-color: #FFB830;
    --danger-color: #FC5130;
    
    /* Gradient Colors */
    --gradient-1: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --gradient-2: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    --gradient-3: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F35D5D 50%, #FA5E97 100%);
    
    /* Text Colors */
    --text-dark: #2D3436;
    --text-muted: #636E72;
    --text-light: #B2BEC3;
    
    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-gray: #E9ECEF;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* Dark Mode Variables */
body.dark-mode {
    --primary-color: #FF8C61;
    --secondary-color: #5FD9CF;
    --text-dark: #F8F9FA;
    --text-muted: #B2BEC3;
    --bg-white: #1A1A2E;
    --bg-light: #16213E;
    --bg-gray: #0F1624;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.5);
}

/* ========================================
   BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   THEME TOGGLE BUTTON
   ======================================== */

.theme-toggle-btn {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.theme-toggle-btn:hover {
    transform: scale(1.1) rotate(15deg);
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background-color: var(--bg-white) !important;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.brand-logo {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.brand-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    background-color: var(--bg-white);
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateX(5px);
}

.dropdown-item i {
    margin-right: 10px;
    width: 20px;
}

.btn-donate {
    background: var(--gradient-primary);
    border: none;
    color: white !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: var(--radius-lg);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #4ECDC4 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,133.3C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.text-gradient {
    background: linear-gradient(90deg, #FFE66D, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animate-fade-in {
    animation: fadeInUp 1s ease;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-section {
    background-color: var(--bg-white);
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.stat-card {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    border-radius: var(--radius-lg);
    padding: 0.7rem 2rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.btn-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.btn-link i {
    transition: var(--transition);
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* ========================================
   SECTIONS
   ======================================== */

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-image-wrapper {
    position: relative;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge i {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.about-badge span {
    font-weight: 600;
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    background: linear-gradient(90deg, var(--bg-light), transparent);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.feature-item h5 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ========================================
   SERVICE CARDS
   ======================================== */

.services-section {
    background-color: var(--bg-light);
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto;
}

.bg-gradient-1 {
    background: var(--gradient-1);
}

.bg-gradient-2 {
    background: var(--gradient-2);
}

.bg-gradient-3 {
    background: var(--gradient-3);
}

.service-card h4 {
    color: var(--text-dark);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-card {
    position: relative;
    z-index: 2;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(135deg, #2D3436 0%, #1A1A2E 100%);
    padding: 4rem 0 2rem;
    color: var(--text-light);
}

.footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    background: var(--gradient-primary);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,133.3C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.breadcrumb {
    background: none;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item.active {
    color: white;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--bg-white);
        padding: 1rem;
        border-radius: var(--radius-md);
        margin-top: 1rem;
        box-shadow: var(--shadow-md);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .theme-toggle-btn {
        top: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 767px) {
    .brand-name {
        font-size: 0.9rem;
    }
    
    .brand-subtitle {
        font-size: 0.65rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}


/* ========================================
   SERVICE DETAIL PAGES
   ======================================== */

.service-header-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
}

.service-header-food {
    background: var(--gradient-1);
}

.service-header-hygiene {
    background: var(--gradient-2);
}

.service-header-legal {
    background: var(--gradient-3);
}

.program-item {
    display: flex;
    align-items: start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.program-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.program-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.program-item h5 {
    margin-bottom: 0.5rem;
}

.testimonial-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-dark);
}

.sidebar-widget {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.stat-item h5 {
    margin-bottom: 0;
    color: var(--text-dark);
}

.stat-item p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
}

.contact-list i {
    margin-right: 10px;
    color: var(--primary-color);
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.7rem 0;
    display: flex;
    align-items: center;
}

.service-features i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.impact-metric {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.impact-metric:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.impact-metric:hover .metric-number {
    color: white;
}

.metric-label {
    font-weight: 500;
}

.fact-list {
    list-style: none;
    padding: 0;
}

.fact-list li {
    padding: 0.7rem 0;
    display: flex;
    align-items: start;
}

.fact-list i {
    margin-right: 10px;
    margin-top: 5px;
}

.resource-list {
    list-style: none;
    padding: 0;
}

.resource-list li {
    margin-bottom: 0.7rem;
}

.resource-list a {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    padding: 0.7rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.resource-list a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.resource-list i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.service-detail-card {
    display: flex;
    align-items: start;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.service-detail-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 1.5rem;
}

.service-detail-content h4 {
    margin-bottom: 0.7rem;
}

.focus-area {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.focus-area:hover {
    background: var(--gradient-3);
    color: white;
    transform: translateY(-5px);
}

.focus-area i {
    font-size: 2rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.focus-area:hover i {
    color: white;
}

.focus-area h5 {
    margin-bottom: 0.5rem;
}

.focus-area:hover h5,
.focus-area:hover p {
    color: white;
}

.emergency-contact {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: var(--radius-md);
}

.emergency-contact i {
    font-size: 2rem;
    margin-right: 1rem;
}

.rights-list {
    list-style: none;
    padding: 0;
}

.rights-list li {
    padding: 0.7rem 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.rights-list li:last-child {
    border-bottom: none;
}

.rights-list i {
    color: var(--success-color);
    margin-right: 10px;
}

.success-count {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.success-count h2 {
    margin-bottom: 0.5rem;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-control,
.form-select {
    border: 2px solid var(--bg-gray);
    padding: 0.7rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.office-hours {
    list-style: none;
    padding: 0;
}

.office-hours li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.office-hours li:last-child {
    border-bottom: none;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.social-link-large {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    transition: var(--transition);
}

.social-link-large:hover {
    transform: translateX(5px);
    color: white;
}

.social-link-large.facebook:hover {
    background: #1877F2;
}

.social-link-large.twitter:hover {
    background: #1DA1F2;
}

.social-link-large.instagram:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
}

.social-link-large.linkedin:hover {
    background: #0A66C2;
}

.social-link-large i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ========================================
   GALLERY PAGE
   ======================================== */

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.filter-btn {
    padding: 0.7rem 2rem;
    background: var(--bg-light);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
}

.gallery-item {
    transition: var(--transition);
}

.gallery-item.hide {
    display: none;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.gallery-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    color: white;
    margin-bottom: 0.5rem;
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* ========================================
   DONATION PAGE
   ======================================== */

.donation-form-wrapper {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.donation-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.donation-type-card {
    position: relative;
}

.donation-type-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.donation-type-card label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.donation-type-card input[type="radio"]:checked + label {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
}

.donation-type-card label i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.amount-card {
    position: relative;
}

.amount-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.amount-card label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    height: 100%;
}

.amount-card input[type="radio"]:checked + label {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.amount-card .currency {
    font-size: 0.9rem;
    opacity: 0.8;
}

.amount-card .amount {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.amount-card small {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.custom-amount-card label {
    padding: 1.5rem;
}

.custom-amount-card i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.impact-item {
    display: flex;
    align-items: start;
    margin-bottom: 1rem;
}

.impact-item i {
    font-size: 1.2rem;
    margin-right: 10px;
    margin-top: 3px;
}

.help-list {
    list-style: none;
    padding: 0;
}

.help-list li {
    display: flex;
    align-items: start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.help-list li:last-child {
    border-bottom: none;
}

.help-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.donor-list {
    max-height: 300px;
    overflow-y: auto;
}

.donor-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.donor-item:last-child {
    border-bottom: none;
}

.donor-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin-right: 1rem;
    font-size: 0.9rem;
}

.donor-item strong {
    display: block;
    margin-bottom: 0.2rem;
}

.trust-section {
    background-color: var(--bg-light);
}

.trust-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ========================================
   TEAM SECTION
   ======================================== */

.team-section {
    background-color: var(--bg-light);
}

.team-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h5 {
    margin-bottom: 0.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

.info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.info-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

/* ========================================
   IMPACT SECTION
   ======================================== */

.impact-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.impact-card {
    text-align: center;
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ========================================
   DARK MODE SPECIFIC STYLES
   ======================================== */

body.dark-mode .navbar {
    background-color: var(--bg-white) !important;
}

body.dark-mode .dropdown-menu {
    background-color: var(--bg-white);
}

body.dark-mode .dropdown-item {
    color: var(--text-dark);
}

body.dark-mode .service-card,
body.dark-mode .stat-card,
body.dark-mode .team-card,
body.dark-mode .contact-info-card,
body.dark-mode .sidebar-widget,
body.dark-mode .contact-form-wrapper,
body.dark-mode .donation-form-wrapper,
body.dark-mode .info-card {
    background: var(--bg-white);
}

body.dark-mode .footer {
    background: var(--bg-gray);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .navbar,
    .footer,
    .theme-toggle-btn,
    .btn {
        display: none;
    }
}
