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

:root {
    --primary-color: #2563eb;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-dark: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.75;
    font-size: 17px;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

h1 { 
    font-size: 4rem; 
    font-weight: 800;
    letter-spacing: -0.03em;
}
h2 { 
    font-size: 3rem; 
    font-weight: 700;
    letter-spacing: -0.02em;
}
h3 { 
    font-size: 2rem; 
    font-weight: 600;
}
h4 { 
    font-size: 1.5rem; 
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* ============================================
   NAVIGATION STYLES - ALWAYS VISIBLE
   ============================================ */

/* Navbar Container - ALWAYS VISIBLE */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 70px;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 0.3rem 0;
    background: rgba(255, 255, 255, 0.98);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2563eb;
    transition: all 0.3s;
}

.logo a:hover .logo-image {
    transform: scale(1.05);
    border-color: #1d4ed8;
}

.logo-text h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.logo-text span {
    font-size: 0.75rem;
    color: #4a5568;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
}

/* Logo Responsive */
@media (max-width: 992px) {
    .logo-image {
        height: 38px;
        width: 38px;
    }
    
    .logo-text h2 {
        font-size: 1rem;
    }
    
    .logo-text span {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 35px;
        width: 35px;
    }
    
    .logo-text h2 {
        font-size: 0.9rem;
    }
    
    .logo-text span {
        font-size: 0.55rem;
    }
}

@media (max-width: 480px) {
    .logo {
        gap: 8px;
    }
    
    .logo a {
        gap: 8px;
    }
    
    .logo-image {
        height: 32px;
        width: 32px;
    }
    
    .logo-text h2 {
        font-size: 0.8rem;
    }
    
    .logo-text span {
        font-size: 0.5rem;
        letter-spacing: 0.5px;
    }
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu .nav-link {
    display: block;
    padding: 0.6rem 1rem;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.nav-menu .nav-link:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.06);
}

.nav-menu .nav-link.active {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
    font-weight: 600;
}

.nav-menu .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
}

.nav-menu .nav-link i.fa-chevron-down {
    font-size: 0.6rem;
    margin-left: 0.3rem;
    transition: transform 0.3s;
}

.nav-menu .dropdown.active > .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    list-style: none;
    margin: 0;
    z-index: 100;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    color: #4a5568;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.88rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(37, 99, 235, 0.06);
    color: #2563eb;
}

.dropdown-menu a.active {
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    font-weight: 600;
}

/* Donate Buttons in Nav */
.nav-donate-btn {
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.nav-donate-btn.btn-primary {
    background: #2563eb !important;
    color: white !important;
}

.nav-donate-btn.btn-primary:hover {
    background: #001a62 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.nav-donate-btn.btn-donate {
    background: #059669 !important;
    color: white !important;
}

.nav-donate-btn.btn-donate:hover {
    background: #047857 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

/* Hamburger Menu - FIXED */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px 5px;
    z-index: 1001;
    background: none;
    border: none;
    outline: none;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #1a202c;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   NAVIGATION RESPONSIVE - FIXED
   ============================================ */

@media (max-width: 992px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 2rem 2rem;
        gap: 0.25rem;
        overflow-y: auto;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        align-items: stretch;
        display: flex !important;
        margin: 0;
        list-style: none;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu > li {
        width: 100%;
    }
    
    .nav-menu .nav-link {
        padding: 0.8rem 1rem;
        font-size: 1rem;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 8px;
    }
    
    .nav-menu .nav-link.active::after {
        display: none;
    }
    
    .nav-menu .nav-link.active {
        background: rgba(37, 99, 235, 0.08);
        color: #2563eb;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
        background: #f8fafc;
        border-radius: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 0.6rem 1rem 0.6rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Overlay when menu is open */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .nav-menu {
        padding: 70px 1.25rem 1.5rem;
        width: 90%;
        max-width: 320px;
    }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
    color: white;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 15px;
        right: 15px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/CHOIR.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    padding: 0 20px;
    margin-top: 120px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 4px 20px rgba(0,0,0,0.4);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    letter-spacing: -0.01em;
    text-shadow: 1px 2px 10px rgba(0,0,0,0.3);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    z-index: 3;
    animation: bounce 2s infinite;
}

/* Mission Section */
.mission {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000c26f6 0%, #010923 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('IMG-20260110-WA0022.jpg');
    opacity: 0.3;
}

.mission-content {
    position: relative;
    z-index: 2;
}

.mission-tag {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mission-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 800;
}

.mission-text {
    font-size: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 300;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pillar {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.pillar:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.pillar-icon i {
    font-size: 2rem;
    color: var(--white);
}

.pillar h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.pillar p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--light-color);
}

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

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    width: 100%;
}

.note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
}

/* Programs Section */
.programs {
    padding: 6rem 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.program-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.program-image {
    width: calc(100% + 5rem);
    height: 250px;
    margin: -2.5rem -2.5rem 1.5rem -2.5rem;
    overflow: hidden;
    display: block;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

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

.program-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.program-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.program-card h3 {
    margin-bottom: 1rem;
}

.program-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.program-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.program-features i {
    color: var(--secondary-color);
}

/* Parallax Sections */
.parallax-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem 0;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.parallax-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.parallax-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 2rem;
    align-items: center;
    min-height: 500px;
}

.parallax-content.reverse {
    grid-template-columns: 3fr 2fr;
}

.parallax-spacer {
    /* Empty column for spacing */
}

.parallax-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.parallax-text h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.parallax-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.parallax-text h2 strong {
    color: var(--primary-color);
}

.parallax-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.parallax-text .btn {
    margin-top: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

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

.gallery-item: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) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

/* Impact Section */
.impact {
    padding: 6rem 0;
    background: var(--dark-color);
    color: var(--white);
}

.impact .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.impact .section-header h2,
.impact .section-header p {
    color: var(--white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.impact-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.impact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.impact-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Donate Section */
.donate-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

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

.donate-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.donate-content > p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.donate-featured-option {
    background: rgba(255, 255, 255, 0.98);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 3rem auto;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
}

.donate-featured-option .featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.donate-featured-option h3 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.donate-featured-option p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.donate-featured-option .btn-primary {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
}

.donate-options-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.donate-option {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
    max-width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.donate-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.donate-option h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.donate-option > p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.payment-platforms-horizontal {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.platform-btn-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.platform-btn-sm:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.mobile-money-info {
    background: rgba(102, 126, 234, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.mobile-money-info p {
    margin: 0.25rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.mobile-money-info strong {
    color: var(--primary-color);
}

.mail-address {
    background: rgba(102, 126, 234, 0.1);
    padding: 1rem;
    border-radius: 8px;
}

.mail-address p {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Sponsor Section */
.sponsor {
    padding: 6rem 0;
    background: var(--light-color);
    text-align: center;
}

.sponsor-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.sponsor-content .lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

.sponsor-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.benefit {
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.benefit h4 {
    margin-bottom: 0.5rem;
}

.benefit p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Volunteer Section */
.volunteer {
    padding: 5rem 0;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.volunteer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.volunteer-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-card {
    padding: 2rem;
    background: var(--light-color);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-card h3 i {
    color: var(--primary-color);
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.social-links a,
.social-icons a {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover,
.social-icons a:hover {
    transform: translateY(-5px);
    background: var(--dark-color);
}

.contact-form {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ============================================
   ADDITIONAL PAGE STYLES
   ============================================ */

/* Page Header */
.page-header {
    position: relative;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/gidudu_hero_section.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.25rem;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

/* Vision & Mission */
.vision-mission {
    padding: 6rem 0;
    background: var(--light-color);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.vm-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.vm-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.vm-card h2 {
    margin-bottom: 1rem;
}

.vm-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* About Detailed */
.about-detailed {
    padding: 6rem 0;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.content-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.content-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.content-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

/* Core Values */
.core-values {
    padding: 6rem 0;
    background: var(--light-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-number {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Founder Section */
.founder {
    padding: 6rem 0;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.founder-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.founder-bio h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.founder-bio .lead {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.founder-bio p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.founder-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.founder-social a {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.founder-social a:hover {
    transform: translateY(-5px);
    background: var(--dark-color);
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

/* Faith Page Styles */
.faith-values {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.faith-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid var(--primary-color);
}

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

.faith-number {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

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

.faith-card p {
    color: var(--text-color);
    line-height: 1.8;
}

/* Stories Page */
.stories-intro {
    padding: 4rem 0;
    background: white;
}

.stories-intro .intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.stories-intro .lead {
    font-size: 1.3rem;
    color: var(--text-color);
    line-height: 1.8;
}

.stories-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stories-grid {
    display: grid;
    gap: 4rem;
    margin-top: 3rem;
}

.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.story-card:nth-child(even) .story-image {
    order: 2;
}

.story-card:nth-child(even) .story-content {
    order: 1;
}

.story-image {
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

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

.story-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0 0 0;
    font-style: italic;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Sponsor Page */
.sponsorship-info {
    padding: 6rem 0;
    background: white;
}

.sponsorship-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-color);
}

.children-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.children-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.child-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.child-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.child-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.child-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.child-card:hover .child-image img {
    transform: scale(1.1);
}

.child-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.child-card:hover .child-overlay {
    opacity: 1;
}

.child-info {
    padding: 2rem;
}

.child-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.child-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.child-details span {
    color: var(--text-color);
    font-size: 0.9rem;
}

.child-details i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.child-info p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.children-filters {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.filter-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 800px;
}

.search-input,
.filter-select {
    padding: 0.75rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Inter', sans-serif;
}

.search-input {
    flex: 1;
    min-width: 250px;
}

.filter-select {
    min-width: 150px;
    cursor: pointer;
}

.search-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ============================================
   HOSPITAL PAGE STYLES
   ============================================ */

.hospital-intro {
    margin-bottom: 4rem;
    text-align: center;
}

.intro-text {
    max-width: 900px;
    margin: 2rem auto 0;
}

.intro-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hospital-main {
    margin-bottom: 4rem;
}

.hospital-content {
    max-width: 900px;
    margin: 2rem auto;
}

.hospital-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2.5rem auto;
    max-width: 900px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.highlight-box h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-box ul {
    list-style: none;
    padding-left: 0;
}

.highlight-box ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
}

.highlight-box ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.3rem;
}

.services-section {
    margin-bottom: 4rem;
    background: var(--light-color);
    padding: 4rem 2rem;
    border-radius: 12px;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-icon i {
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.medical-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    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.9), rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 2rem 1.5rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.need-section {
    margin-bottom: 4rem;
    background: #fff5f5;
    padding: 4rem 2rem;
    border-radius: 12px;
    border-left: 5px solid #ef4444;
}

.needs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.need-item {
    background: white;
    padding: 1.75rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.need-item i {
    font-size: 2.5rem;
    color: #ef4444;
    margin-bottom: 1rem;
}

.need-item h4 {
    font-size: 1rem;
    color: var(--dark-color);
    margin: 0;
}

.additional-needs {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 3rem;
    box-shadow: var(--shadow-md);
}

.additional-needs ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.additional-needs ul li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--light-color);
    border-radius: 8px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.additional-needs ul li i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.cta-section {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.cta-section .section-title {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-emphasis {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-top: 2rem !important;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* CTA Hospital Styles */
.cta-hospital {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.cta-hospital h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-hospital p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-hospital .btn-white {
    background: white;
    color: #2563eb;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    margin: 0 10px;
}

.cta-hospital .btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-hospital .btn-outline-white {
    background: transparent;
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid white;
    display: inline-block;
    margin: 0 10px;
}

.cta-hospital .btn-outline-white:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .about-grid,
    .parallax-content,
    .parallax-content.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .parallax-spacer {
        display: none;
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsor-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .content-layout,
    .founder-content {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    
    body {
        font-size: 16px;
    }
    
    .mission-content h2 {
        font-size: 2.2rem;
    }

    .mission-text {
        font-size: 1.15rem;
    }

    .mission-pillars {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: -0.02em;
    }

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

    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-lg {
        padding: 16px 40px;
        font-size: 16px;
    }

    .programs-grid,
    .impact-grid,
    .donate-options,
    .sponsor-benefits,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .parallax-bg {
        background-attachment: scroll;
    }
    
    .parallax-text {
        padding: 2rem;
    }
    
    .parallax-text h2 {
        font-size: 2rem;
    }
    
    .sponsorship-benefits {
        grid-template-columns: 1fr;
    }
    
    .children-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .search-input,
    .filter-select {
        width: 100%;
        min-width: auto;
    }
    
    .story-card {
        grid-template-columns: 1fr !important;
    }
    
    .story-card:nth-child(even) .story-image,
    .story-card:nth-child(even) .story-content {
        order: 0;
    }
    
    .story-content {
        padding: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

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

    .medical-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item img {
        height: 200px;
    }

    .highlight-box {
        padding: 2rem 1.5rem;
    }

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

    .intro-text p,
    .hospital-content p {
        font-size: 1rem;
    }

    .cta-hospital h2 {
        font-size: 1.8rem;
    }
    
    .cta-hospital .btn-white,
    .cta-hospital .btn-outline-white {
        display: block;
        margin: 0.5rem auto;
        width: 80%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 14px 32px;
        font-size: 15px;
    }

    .donate-card.featured {
        transform: scale(1);
    }
    
    .parallax-text h2 {
        font-size: 1.6rem;
    }
    
    .parallax-text p {
        font-size: 1rem;
    }
}