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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../PROJECT FOLDER - Copy/25.jpg') center/cover;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

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

/* Enhanced Color Palette - Emotional & Powerful */
:root {
    --primary-red: #c62828; /* Deep emotional red */
    --primary-blue: #1565c0; /* Trust blue */
    --accent-orange: #ff6f00; /* Hope orange */
    --accent-gold: #ffc107; /* Warm gold */
    --text-dark: #263238; /* Rich dark text */
    --text-light: #546e7a; /* Soft gray */
    --bg-light: #ffebee; /* Light red tint */
    --bg-warm: #fff3e0; /* Warm orange tint */
    --bg-soft: #f5f5f5; /* Soft gray */
    --bg-white: #ffffff;
    --shadow: rgba(38, 50, 56, 0.15);
    --impact-purple: #7b1fa2; /* Deep purple */
    --impact-teal: #00897b; /* Hope teal */
    --emotional-pink: #e91e63; /* Caring pink */
}

/* Top Bar - Style from Reference */
.top-bar {
    background: #1a1a1a;
    color: #ffffff;
    font-size: 0.85rem;
    border-bottom: 1px solid #333;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 35px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-selector span {
    color: #cccccc;
    font-size: 0.8rem;
}

.lang-flag {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    transition: opacity 0.3s ease;
}

.lang-flag:hover {
    opacity: 0.7;
}

.login-btn {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.login-btn:hover {
    color: #ff6b35;
}

/* Main Header - Style from Reference */
.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 35px;
    z-index: 999;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-section {
    flex: 1;
}

.logo-stack {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.brand-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.brand-text .tagline {
    font-size: 0.9rem;
    color: #666666;
    margin: 2px 0 0 0;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-donate {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    text-decoration: none;
    display: inline-block;
}

.btn-donate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-donate:hover::before {
    left: 100%;
}

.btn-donate:hover {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-donate:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-donate.pulse {
    animation: donatePulse 2s infinite;
}

@keyframes donatePulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 53, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }
}

.btn-sponsor {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.btn-sponsor:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.3);
}

/* Navigation Bar - Style from Reference */
.nav-bar {
    background: #1a1a1a;
    border-bottom: 2px solid #ff6b35;
    position: sticky;
    top: 35px;
    z-index: 998;
}

.nav-bar .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.search-input {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    width: 200px;
    transition: all 0.3s ease;
}

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

.search-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
    width: 250px;
}

.search-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.nav-bar .nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    flex: 1;
}

.nav-bar .nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 15px 20px;
    transition: all 0.3s ease;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-bar .nav-link:hover,
.nav-bar .nav-link.active {
    background: #ff6b35;
    color: #ffffff;
}

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

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar-container {
        padding: 0 15px;
    }
    
    .language-selector span {
        display: none;
    }
    
    .header-container {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }
    
    .logo-stack {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .brand-text h1 {
        font-size: 1.3rem;
    }
    
    .brand-text .tagline {
        font-size: 0.8rem;
    }
    
    .cta-buttons {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
    
    .btn-donate,
    .btn-sponsor {
        flex: 1;
        max-width: 150px;
    }
    
    .nav-bar .nav-container {
        padding: 0 15px;
    }
    
    .nav-bar .nav-menu {
        position: fixed;
        top: 35px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 35px);
        background: #1a1a1a;
        flex-direction: column;
        transition: left 0.3s ease;
        padding-top: 50px;
    }
    
    .nav-bar .nav-menu.active {
        left: 0;
    }
    
    .nav-bar .nav-link {
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid #333;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.nav-brand {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 15px 25px;
    border-radius: 8px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-right: 40px;
    flex: 1;
    min-width: 400px;
}

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

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-right: 20px;
}

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

.company-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-left: 15px;
    letter-spacing: -0.01em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* Professional Navigation */
.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(233, 30, 99, 0.15);
    transform: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: transparent;
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Better Image Visibility */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.7), rgba(21, 101, 192, 0.6)),
                url('1M2A9193.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 60%);
}

.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;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.02em;
    color: #ffffff;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
    align-items: center;
}

/* Professional Buttons - Match Reference */
.btn-primary {
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    padding: 12px 24px;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(198, 40, 40, 0.4);
    background: linear-gradient(135deg, var(--emotional-pink), var(--primary-red));
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    padding: 12px 24px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.3px;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.3);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.2rem;
}

.hero-location {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    margin-top: auto;
    font-style: italic;
}


/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--primary-red);
    position: relative;
    text-shadow: none;
    letter-spacing: -0.01em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

/* Story Section */
.story {
    background: linear-gradient(135deg, var(--bg-warm), var(--bg-soft));
    position: relative;
    z-index: 2;
    margin-top: -50px;
    padding-top: 100px;
    border-top: 3px solid var(--accent-gold);
}

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

/* Professional Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

p {
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 400;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 400;
}

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

/* Mission Section */
.mission {
    background: white;
}

.mission-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Professional Cards - NGO Style */
.mission-card, .service-card, .involve-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px var(--shadow);
    border: 1px solid rgba(44, 62, 80, 0.08);
    position: relative;
    overflow: hidden;
}

.mission-card:hover, .service-card:hover, .involve-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.15);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-orange));
}

.mission-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(214, 40, 40, 0.15);
}

.card-icon {
    margin-bottom: 1.5rem;
    color: #c41e3a;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.mission-card p {
    color: #666;
    line-height: 1.6;
}

/* What We Do Section */
.what-we-do {
    background: linear-gradient(135deg, var(--bg-soft), var(--bg-warm));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow);
    border: 1px solid var(--bg-warm);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.15);
    border-color: var(--accent-orange);
}

.service-icon {
    margin-bottom: 1.5rem;
    color: var(--accent-orange);
    filter: drop-shadow(2px 4px 8px rgba(249, 115, 22, 0.2));
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    background: var(--bg-warm);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Impact Section */
.impact {
    background: white;
}

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

/* Professional Statistics - Girls Not Brides Style */
.impact-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--impact-purple));
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #c41e3a;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

.impact-text ul {
    list-style: none;
}

.impact-text li {
    padding: 1rem 0;
    color: #555;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

/* Reach Section */
.reach {
    background: linear-gradient(135deg, #1e3a8a, #c41e3a);
    color: white;
}

.reach .section-title {
    color: white;
}

.reach .section-title::after {
    background: linear-gradient(135deg, #ff8c42, #ffd700);
}

.reach-content {
    text-align: center;
}

.reach-map {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.location-dots {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.location-dot {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.location-dot:hover {
    transform: scale(1.2);
}

.location-dot::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #ff8c42;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.location-dot span {
    display: block;
    margin-top: 20px;
    font-weight: 600;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 140, 66, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 140, 66, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 140, 66, 0);
    }
}

/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, var(--bg-soft), var(--bg-warm));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1.5rem 1rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Team Section */
.team {
    background: linear-gradient(135deg, var(--bg-warm), var(--bg-soft));
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.team-member {
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f47c2c;
    margin: auto;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.team-member p {
    color: #666;
    font-weight: 500;
}

/* Get Involved Section */
.get-involved {
    background: linear-gradient(135deg, var(--bg-soft), var(--bg-warm));
}

.involve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.involve-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow);
    border: 1px solid var(--bg-warm);
}

.involve-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.involve-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.involve-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Donation Section */
.donation {
    background: rgb(128, 120, 120);
}

.donation-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.bank-details {
    background: linear-gradient(135deg, #878787, #e9ecef);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.bank-details h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1e3a8a;
}

.bank-info {
    text-align: left;
    margin-bottom: 2rem;
}

.bank-info p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.1rem;
}

.bank-info strong {
    color: #333;
    display: inline-block;
    min-width: 150px;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--bg-warm), var(--bg-soft));
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgb(195, 184, 184);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    color: #c41e3a;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.contact-details p {
    color: #666;
    margin-bottom: 0.3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    color: #c41e3a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff8c42;
}

/* Professional Footer - Better Readability */
.footer {
    background: linear-gradient(135deg, var(--text-dark), #1a1a1a);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-gold), var(--emotional-pink));
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-logo p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-contact p {
    color: #999;
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-red, #c62828);
    transform: translateX(5px);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.twitter {
    background: #000000;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-icon:hover svg {
    transform: scale(1.2);
}

.footer-motto {
    font-style: italic;
    color: #999;
    font-size: 0.9rem;
    margin-top: 20px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a:hover {
        transform: translateX(0);
        transform: scale(1.05);
    }
}

/* Login Modal */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.login-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 15px;
    padding: 0;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-red), var(--emotional-pink));
    color: white;
    padding: 25px 30px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

#loginForm {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.forgot-password {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--emotional-pink);
    text-decoration: underline;
}

.login-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--emotional-pink));
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(198, 40, 40, 0.3);
}

.signup-link {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.signup-link p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.signup-link a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signup-link a:hover {
    color: var(--emotional-pink);
    text-decoration: underline;
}

/* Donation Modal */
.donate-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.donate-modal.active {
    display: flex;
}

.donate-content {
    padding: 30px;
    max-height: 80vh;
    overflow-y: auto;
}

.impact-statement {
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 600;
}

.donation-amounts h3,
.donation-methods h3,
.selected-impact h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.amount-btn {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.amount-btn:hover {
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.amount-btn.selected {
    background: linear-gradient(135deg, var(--primary-red), var(--emotional-pink));
    color: white;
    border-color: var(--primary-red);
}

.amount-btn .currency {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.amount-btn .amount {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.amount-btn .impact-text {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

.custom-amount input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.custom-amount input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.method-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.method-btn {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.method-btn:hover {
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.method-btn.active {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.method-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 8px;
}

.method-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.selected-impact {
    background: var(--bg-warm);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-red);
}

.selected-impact p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.donate-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--emotional-pink));
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.donate-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(198, 40, 40, 0.4);
}

.donation-trust {
    text-align: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    font-size: 0.85rem;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #fff3e0, #ffebee);
    padding: 80px 20px;
}

.testimonials-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

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

.testimonial-content {
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 3rem;
    color: var(--primary-red, #c62828);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffa500;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
    min-height: 80px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red, #c62828), var(--emotional-pink, #e91e63));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-red, #c62828);
    margin-bottom: 3px;
}

.author-info p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* Hide carousel controls for grid layout */
.carousel-controls {
    display: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-red, #c62828), var(--emotional-pink, #e91e63));
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(198, 40, 40, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(198, 40, 40, 0.4);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.fade-in-delay.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.fade-in-delay-2.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-3 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.6s;
}

.fade-in-delay-3.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(255, 255, 255, 0.05);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .impact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .impact-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-motto {
        justify-content: flex-start;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

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

    section {
        padding: 60px 0;
    }

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

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

    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 1rem;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .involve-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .location-dots {
        flex-direction: column;
        align-items: center;
    }
}
