        :root {
            --primary-blue: #0a2463;
            --secondary-blue: #1e40af;
            --accent-teal: #0d9488;
            --accent-gold: #d4af37;
            --white: #ffffff;
            --light-gray: #f8fafc;
            --warm-light: #fef7ed;
            --dark-gray: #1e293b;
            --text-dark: #0f172a;
            --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            --gradient-accent: linear-gradient(135deg, var(--accent-teal), var(--accent-gold));
            --border-radius: 12px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--white);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .section-padding {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: var(--dark-gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .btn::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: 0.5s;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: 0 5px 15px rgba(10, 36, 99, 0.2);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(10, 36, 99, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }
        
        .btn-secondary:hover {
            background: var(--primary-blue);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        .btn-accent {
            background: var(--gradient-accent);
            color: var(--white);
            box-shadow: 0 5px 15px rgba(13, 148, 136, 0.2);
        }
        
        .btn-accent:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(13, 148, 136, 0.3);
        }
        
        /* Header Styles - More Compact */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            transition: var(--transition);
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.4rem;
            margin-right: 12px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .logo:hover .logo-icon {
            transform: rotate(5deg) scale(1.05);
        }
        
        .logo-text h1 {
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin-bottom: 0;
            font-weight: 700;
        }
        
        .logo-text span {
            color: var(--accent-teal);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 5px;
        }
        
        nav ul li {
            position: relative;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark-gray);
            font-weight: 500;
            font-size: 0.9rem;
            transition: var(--transition);
            position: relative;
            display: flex;
            align-items: center;
            padding: 10px 15px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        nav ul li a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0.1;
            transition: var(--transition);
        }
        
        nav ul li a:hover::before {
            left: 0;
        }
        
        nav ul li a i {
            margin-left: 5px;
            font-size: 0.7rem;
            transition: var(--transition);
        }
        
        nav ul li a:hover {
            color: var(--primary-blue);
        }
        
        nav ul li a:hover i {
            transform: rotate(180deg);
        }
        
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 200px;
            box-shadow: var(--shadow-hover);
            border-radius: var(--border-radius);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 100;
            padding: 10px 0;
        }
        
        .dropdown li {
            margin: 0;
            width: 100%;
        }
        
        .dropdown li a {
            padding: 10px 20px;
            display: block;
            border-radius: 0;
        }
        
        .dropdown li a:hover {
            background: rgba(10, 36, 99, 0.05);
        }
        
        nav ul li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(5px);
        }
        
        .nav-cta {
            margin-left: 15px;
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.2rem;
            cursor: pointer;
            color: var(--primary-blue);
            background: rgba(10, 36, 99, 0.05);
            width: 40px;
            height: 40px;
            border-radius: 8px;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .mobile-menu:hover {
            background: rgba(10, 36, 99, 0.1);
            transform: rotate(90deg);
        }
        
        /* Hero Section - More Compact */
        .hero {
            height: 85vh;
            min-height: 600px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            margin-top: 70px;
        }
        
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 36, 99, 0.85), rgba(13, 148, 136, 0.75));
            z-index: -1;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            padding: 0 20px;
        }
        
        .hero h2 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.1;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.4s both;
        }
        
        .verse {
            font-style: italic;
            font-size: 1.1rem;
            opacity: 0.9;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 15px 25px;
            border-radius: var(--border-radius);
            display: inline-block;
            border-left: 4px solid var(--accent-gold);
            animation: fadeInUp 1s ease 0.6s both;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Impact Metrics - More Compact */
        .impact-metrics {
            background: var(--white);
            padding: 60px 0;
        }
        
        .metrics-intro {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .metrics-intro h3 {
            font-size: 1.8rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        
        .metrics-intro p {
            font-size: 1.1rem;
            color: var(--dark-gray);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .metrics-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .metric-item {
            text-align: center;
            padding: 30px 15px;
            border-radius: var(--border-radius);
            background: var(--light-gray);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .metric-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-accent);
        }
        
        .metric-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .metric-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: var(--white);
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(10, 36, 99, 0.2);
        }
        
        .metric-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            display: block;
            line-height: 1;
            margin-bottom: 8px;
            font-family: 'Playfair Display', serif;
        }
        
        .metric-label {
            font-size: 1rem;
            color: var(--dark-gray);
            font-weight: 600;
        }
        
        /* About Section - More Compact */
        .about {
            background: var(--warm-light);
            position: relative;
            overflow: hidden;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: var(--gradient-accent);
            opacity: 0.05;
            border-radius: 50%;
            transform: translate(30%, -30%);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
            position: relative;
            z-index: 1;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 1rem;
            line-height: 1.7;
        }
        
        .about-image {
            flex: 1;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transform: perspective(1000px) rotateY(-5deg);
            transition: var(--transition);
        }
        
        .about-image:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .mission-highlight {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 20px;
            border-radius: var(--border-radius);
            margin-top: 20px;
            text-align: center;
            box-shadow: var(--shadow);
        }
        
        .mission-highlight p {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 0;
        }
        
        /* Director Video Section - More Compact */
        .director-video {
            background: var(--white);
            position: relative;
        }
        
        .director-video::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 200px;
            height: 200px;
            background: var(--gradient-primary);
            opacity: 0.05;
            border-radius: 50%;
            transform: translate(-30%, 30%);
        }
        
        .director-container {
            display: flex;
            align-items: center;
            gap: 40px;
            position: relative;
            z-index: 1;
        }
        
        .director-text {
            flex: 1;
        }
        
        .director-text h3 {
            font-size: 1.8rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        
        .director-text p {
            margin-bottom: 20px;
            font-size: 1rem;
            line-height: 1.7;
        }
        
        .director-video-wrapper {
            flex: 1;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transform: perspective(1000px) rotateY(5deg);
            transition: var(--transition);
        }
        
        .director-video-wrapper:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .director-video-wrapper iframe {
            width: 100%;
            height: 280px;
            border: none;
            display: block;
        }
        
        /* What We Do - More Compact */
        .services-slideshow {
            background: var(--warm-light);
            position: relative;
            overflow: hidden;
        }
        
        .services-slideshow::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 250px;
            height: 250px;
            background: var(--gradient-accent);
            opacity: 0.05;
            border-radius: 50%;
            transform: translate(30%, -30%);
        }
        
        .slideshow-container {
            position: relative;
            height: 450px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .service-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease;
            display: flex;
            align-items: center;
        }
        
        .service-slide.active {
            opacity: 1;
        }
        
        .service-image {
            width: 50%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }
        
        .service-content {
            width: 50%;
            padding: 30px;
            background: rgba(255, 255, 255, 0.95);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .service-content h3 {
            color: var(--primary-blue);
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        
        .service-content p {
            margin-bottom: 20px;
            color: var(--dark-gray);
            font-size: 1rem;
            line-height: 1.7;
        }
        
        .slideshow-nav {
            display: flex;
            justify-content: center;
            margin-top: 25px;
            gap: 10px;
        }
        
        .slide-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .slide-dot.active {
            background: var(--primary-blue);
            transform: scale(1.2);
        }
        
        /* Voices of Impact - More Compact */
        .videos-section {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .videos-section::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 250px;
            height: 250px;
            background: var(--gradient-primary);
            opacity: 0.05;
            border-radius: 50%;
            transform: translate(-30%, 30%);
        }
        
        .videos-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 25px;
            position: relative;
            z-index: 1;
        }
        
        .video-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        
        .video-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
        
        .video-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-accent);
            z-index: 1;
        }
        
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
        }
        
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .video-content {
            padding: 20px;
            position: relative;
        }
        
        .video-content h3 {
            color: var(--primary-blue);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .video-content p {
            color: var(--dark-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* Stories of Hope - More Compact */
        .stories {
            background: var(--warm-light);
            position: relative;
            overflow: hidden;
        }
        
        .stories::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: var(--gradient-accent);
            opacity: 0.05;
            border-radius: 50%;
            transform: translate(30%, -30%);
        }
        
        .stories-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            position: relative;
            z-index: 1;
        }
        
        .story-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 25px 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .story-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-accent);
        }
        
        .story-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .story-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--white);
            font-size: 1.5rem;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(10, 36, 99, 0.2);
        }
        
        .story-card:hover .story-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .story-card h3 {
            margin-bottom: 15px;
            color: var(--primary-blue);
            font-size: 1.3rem;
        }
        
        .story-card p {
            margin-bottom: 20px;
            font-size: 1rem;
            line-height: 1.6;
            font-style: italic;
            color: var(--dark-gray);
        }
        
        .story-author {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 5px;
            color: var(--primary-blue);
        }
        
        .story-role {
            font-size: 0.85rem;
            color: var(--dark-gray);
        }
        
        /* Events Calendar - More Compact */
        .events-calendar {
            background: var(--white);
            position: relative;
        }
        
        .events-calendar::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 200px;
            height: 200px;
            background: var(--gradient-primary);
            opacity: 0.05;
            border-radius: 50%;
            transform: translate(-30%, 30%);
        }
        
        .calendar-container {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }
        
        .calendar-widget {
            flex: 1;
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 20px;
            box-shadow: var(--shadow);
        }
        
        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .calendar-header h3 {
            color: var(--primary-blue);
            margin-bottom: 0;
            font-size: 1.3rem;
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 5px;
        }
        
        .calendar-day {
            text-align: center;
            padding: 8px 3px;
            border-radius: 5px;
            font-weight: 500;
            font-size: 0.9rem;
        }
        
        .calendar-day.header {
            font-weight: 600;
            color: var(--primary-blue);
            background: rgba(10, 36, 99, 0.1);
        }
        
        .calendar-day.event {
            background: var(--accent-teal);
            color: var(--white);
            cursor: pointer;
            position: relative;
        }
        
        .calendar-day.event::after {
            content: '';
            position: absolute;
            bottom: 3px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            background: var(--white);
            border-radius: 50%;
        }
        
        .upcoming-events {
            flex: 1;
        }
        
        .event-item {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 20px;
            margin-bottom: 15px;
            box-shadow: var(--shadow);
            display: flex;
            gap: 15px;
            transition: var(--transition);
        }
        
        .event-item:hover {
            transform: translateX(5px);
        }
        
        .event-date {
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 8px;
            padding: 12px;
            text-align: center;
            min-width: 70px;
        }
        
        .event-date .day {
            font-size: 1.5rem;
            font-weight: 700;
            display: block;
        }
        
        .event-date .month {
            font-size: 0.8rem;
            text-transform: uppercase;
        }
        
        .event-details h3 {
            margin-bottom: 8px;
            color: var(--primary-blue);
            font-size: 1.1rem;
        }
        
        .event-meta {
            display: flex;
            gap: 10px;
            margin-bottom: 8px;
            flex-wrap: wrap;
        }
        
        .event-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.85rem;
            color: var(--dark-gray);
        }
        
        .view-more-events {
            text-align: center;
        }
        
        /* Donate Section - More Compact */
        /* .donate-section {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .donate-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            z-index: 0;
        }
        
        .donate-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .donate-section h2 {
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .donate-section p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .donate-options {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .donate-option {
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius);
            padding: 20px 15px;
            width: 160px;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .donate-option:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.2);
        }
        
        .donate-option i {
            font-size: 1.8rem;
            margin-bottom: 12px;
            color: var(--accent-gold);
        }
        
        .donate-option h4 {
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        
        .donate-option p {
            font-size: 0.85rem;
            margin-bottom: 0;
            opacity: 0.8;
        } */
        /* Donate Section - Compact */
.donate-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.donate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    z-index: 0;
}

.donate-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.donate-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.donate-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Quick Donate Form */
.quick-donate-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.amount-option {
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
}

.amount-option:hover,
.amount-option.active {
    background: var(--accent-gold);
    color: var(--primary-blue);
    border-color: var(--accent-gold);
}

.donate-input-group {
    display: flex;
    gap: 10px;
}

.donate-input-group input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
}

.donate-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Donation Options */
.donate-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.donate-option {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.donate-option:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.donate-option i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.donate-option h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.donate-option p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.btn-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--white);
}

/* Simple Modal */
.simple-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.simple-modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--dark-gray);
    cursor: pointer;
}

.modal-content h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-content input {
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
}

.modal-content input:focus {
    outline: none;
    border-color: var(--accent-teal);
}

/* Responsive */
@media (max-width: 768px) {
    .amount-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .donate-input-group {
        flex-direction: column;
    }
    
    .donate-options {
        grid-template-columns: 1fr;
    }
    
    .quick-donate-form {
        padding: 20px;
    }
}
        /* News Section - More Compact */
        .news {
            background: var(--warm-light);
            position: relative;
        }
        
        .news::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: var(--gradient-accent);
            opacity: 0.05;
            border-radius: 50%;
            transform: translate(30%, -30%);
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }
        
        .news-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .news-image {
            height: 180px;
            overflow: hidden;
        }
        
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .news-card:hover .news-image img {
            transform: scale(1.05);
        }
        
        .news-content {
            padding: 20px;
        }
        
        .news-date {
            color: var(--accent-teal);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
        }
        
        .news-card h3 {
            margin-bottom: 12px;
            color: var(--primary-blue);
            font-size: 1.2rem;
        }
        
        .news-excerpt {
            margin-bottom: 15px;
            color: var(--dark-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .view-more {
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        /* Footer - More Compact */
        footer {
            background: var(--dark-gray);
            color: var(--white);
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230a2463" fill-opacity="0.1" d="M0,128L48,138.7C96,149,192,171,288,165.3C384,160,480,128,576,133.3C672,139,768,181,864,181.3C960,181,1056,139,1152,128C1248,117,1344,139,1392,149.3L1440,160L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
            background-size: cover;
            background-position: bottom;
            z-index: 0;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }
        
        .footer-column h3 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.2rem;
            position: relative;
            display: inline-block;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
        }
        
        .footer-links a i {
            margin-right: 8px;
            font-size: 0.8rem;
        }
        
        .footer-links a:hover {
            color: var(--accent-teal);
            transform: translateX(3px);
        }
        
        .footer-contact-map {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .footer-map {
            height: 150px;
            border-radius: var(--border-radius);
            overflow: hidden;
            margin-top: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .footer-map iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: var(--border-radius);
        }
        
        .newsletter-compact {
            margin-top: 15px;
        }
        
        .newsletter-compact h4 {
            font-size: 1rem;
            margin-bottom: 12px;
            color: var(--white);
        }
        
        .newsletter-form-compact {
            display: flex;
            gap: 8px;
        }
        
        .newsletter-input-compact {
            flex: 1;
            padding: 10px 12px;
            border: none;
            border-radius: 30px;
            font-size: 0.85rem;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
        }
        
        .newsletter-input-compact::placeholder {
            color: #ccc;
        }
        
        .newsletter-btn {
            background: var(--gradient-accent);
            color: var(--white);
            border: none;
            border-radius: 30px;
            padding: 10px 15px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }
        
        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 3px 10px rgba(13, 148, 136, 0.4);
        }
        
        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        
        .social-icon {
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            color: var(--white);
            text-decoration: none;
            font-size: 0.9rem;
        }
        
        .social-icon:hover {
            background: var(--gradient-accent);
            transform: translateY(-3px);
        }
        
        .give-btn {
            margin-top: 20px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbb;
            font-size: 0.85rem;
            position: relative;
            z-index: 1;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(10, 36, 99, 0.3);
            z-index: 1000;
            transition: var(--transition);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--gradient-accent);
            transform: translateY(-3px) scale(1.05);
        }
        
        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: #25D366;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
            z-index: 1000;
            transition: var(--transition);
            text-decoration: none;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            nav ul li a {
                padding: 8px 12px;
                font-size: 0.85rem;
            }
            
            .hero h2 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 992px) {
            .about-content, .director-container, .calendar-container {
                flex-direction: column;
            }
            
            .videos-container {
                grid-template-columns: 1fr;
            }
            
            .service-slide {
                flex-direction: column;
            }
            
            .service-image, .service-content {
                width: 100%;
                height: 50%;
            }
            
            .slideshow-container {
                height: 600px;
            }
            
            .hero h2 {
                font-size: 2.5rem;
            }
            
            nav ul {
                display: none;
            }
            
            .nav-cta {
                display: none;
            }
            
            .mobile-menu {
                display: flex;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--white);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
                z-index: 1001;
                padding: 80px 30px 30px;
                overflow-y: auto;
            }
            
            nav.active {
                right: 0;
            }
            
            nav ul {
                flex-direction: column;
                display: flex;
                gap: 0;
            }
            
            nav ul li {
                margin: 12px 0;
            }
            
            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: transparent;
                margin-top: 12px;
                margin-left: 15px;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            nav ul li:hover .dropdown {
                max-height: 300px;
            }
            
            .hero {
                height: 80vh;
                min-height: 500px;
            }
            
            .hero h2 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .metrics-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stories-container, .services-grid, .news-grid {
                grid-template-columns: 1fr;
            }
            
            .videos-container {
                grid-template-columns: 1fr;
            }
            
            .newsletter-form-compact {
                flex-direction: column;
            }
            
            .donate-options {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-contact-map {
                flex-direction: column;
            }
        }
        
        @media (max-width: 576px) {
            .metrics-container {
                grid-template-columns: 1fr;
            }
            
            .metric-number {
                font-size: 2.2rem;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .slideshow-container {
                height: 500px;
            }
            
            .videos-container {
                grid-template-columns: 1fr;
            }
            
            .video-card {
                min-width: 100%;
            }
            
            .section-padding {
                padding: 50px 0;
            }
        }