        :root {
            --primary: #1F5C4D;
            --primary-dark: #164439;
            --primary-light: #2a7a66;
            --secondary: #D16E00;
            --secondary-light: #e88a1f;
            --dark: #0f1419;
            --dark-surface: #1a1f25;
            --light: #f8f9fa;
            --light-surface: #ffffff;
            --text-dark: #1a1a1a;
            --text-light: #f0f0f0;
            --text-muted: #6b7280;
            --gold: #c9a227;
            --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 32px;
        }

        .dark {
            --light: #0f1419;
            --light-surface: #1a1f25;
            --text-dark: #f0f0f0;
            --text-muted: #9ca3af;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Source Sans 3', sans-serif;
            background: var(--light);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.3;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .animate-fadeInUp {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .animate-slideInLeft {
            animation: slideInLeft 0.8s ease-out forwards;
        }

        .animate-slideInRight {
            animation: slideInRight 0.8s ease-out forwards;
        }

        .delay-1 {
            animation-delay: 0.1s;
        }

        .delay-2 {
            animation-delay: 0.2s;
        }

        .delay-3 {
            animation-delay: 0.3s;
        }

        .delay-4 {
            animation-delay: 0.4s;
        }

        .delay-5 {
            animation-delay: 0.5s;
        }

        /* Header & Navigation */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(31, 92, 77, 0.95);
            backdrop-filter: blur(20px);
            transition: all 0.4s ease;
        }

        .header.scrolled {
            background: rgba(31, 92, 77, 0.98);
            box-shadow: var(--shadow-md);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            color: white;
        }

        .logo-icon {
            width: 56px;
            height: 56px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary);
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text span:first-child {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .logo-text span:last-child {
            font-size: 11px;
            opacity: 0.9;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            padding: 10px 18px;
            font-size: 15px;
            font-weight: 500;
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 6px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 20px;
            height: 2px;
            background: var(--secondary);
            transition: transform 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            transform: translateX(-50%) scaleX(1);
        }

        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .nav-cta {
            background: var(--secondary) !important;
            color: white !important;
            padding: 12px 24px !important;
            border-radius: var(--radius-md) !important;
            font-weight: 600 !important;
            box-shadow: 0 4px 15px rgba(209, 110, 0, 0.4);
            transition: all 0.3s ease !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            background: var(--secondary-light) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(209, 110, 0, 0.5);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(135deg, rgba(31, 92, 77, 0.92) 0%, rgba(15, 45, 38, 0.95) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.08;
            background-image:
                radial-gradient(circle at 20% 80%, var(--secondary) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, var(--gold) 0%, transparent 40%),
                radial-gradient(circle at 40% 40%, var(--primary-light) 0%, transparent 60%);
        }

        .hero-cross {
            position: absolute;
            font-size: 400px;
            color: rgba(255, 255, 255, 0.03);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: float 6s ease-in-out infinite;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
            padding: 0 24px;
            max-width: 900px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 14px;
            margin-bottom: 32px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
        }

        .hero-badge i {
            color: var(--secondary);
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            margin-bottom: 24px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .hero-verse {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
            line-height: 1.8;
            font-style: italic;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.6s forwards;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.8s forwards;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: var(--radius-md);
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: white;
            color: var(--primary);
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
        }

        .btn-secondary {
            background: var(--secondary);
            color: white;
            box-shadow: 0 4px 20px rgba(209, 110, 0, 0.4);
        }

        .btn-secondary:hover {
            background: var(--secondary-light);
            transform: translateY(-3px);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }

        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            opacity: 0.7;
            animation: float 2s ease-in-out infinite;
            cursor: pointer;
        }

        .hero-scroll i {
            font-size: 28px;
        }

        /* Section Styles */
        section {
            padding: 100px 24px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient-primary);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* About Section */
        .about {
            background: var(--light-surface);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image-main {
            width: 100%;
            height: 500px;
            background: var(--gradient-primary);
            border-radius: var(--radius-xl);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .about-image-main i {
            font-size: 180px;
            color: rgba(255, 255, 255, 0.15);
        }

        .about-image-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--secondary);
            color: white;
            padding: 20px 30px;
            border-radius: var(--radius-lg);
            text-align: center;
            box-shadow: var(--shadow-lg);
        }

        .about-image-badge span {
            display: block;
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
        }

        .about-image-badge small {
            font-size: 13px;
            opacity: 0.9;
        }

        .about-content h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 24px;
        }

        .about-content p {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 20px;
            text-align: justify;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin: 32px 0;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: var(--light);
            border-radius: var(--radius-sm);
        }

        .about-feature i {
            color: var(--secondary);
            font-size: 18px;
        }

        .about-feature span {
            font-weight: 500;
        }

        /* Values Section */
        .values {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .values::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(209, 110, 0, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .values .section-badge {
            background: rgba(255, 255, 255, 0.2);
        }

        .values .section-title {
            color: white;
        }

        .values .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .value-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-lg);
            padding: 40px 24px;
            text-align: center;
            transition: all 0.4s ease;
        }

        .value-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-8px);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 32px;
            color: var(--secondary);
        }

        .value-card h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
        }

        .value-card p {
            font-size: 0.95rem;
            opacity: 0.85;
            line-height: 1.6;
        }

        /* Programs Section */
        .programs {
            background: var(--light);
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .program-card {
            background: var(--light-surface);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }

        .program-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .program-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            color: white;
        }

        .program-card h3 {
            font-size: 1.15rem;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .program-day {
            color: var(--secondary);
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 8px;
        }

        .program-time {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Activities Section */
        .activities {
            background: var(--light-surface);
        }

        .activities-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .activity-card {
            position: relative;
            height: 350px;
            border-radius: var(--radius-xl);
            overflow: hidden;
            cursor: pointer;
        }

        .activity-bg {
            position: absolute;
            inset: 0;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .activity-bg i {
            font-size: 100px;
            color: rgba(255, 255, 255, 0.15);
        }

        .activity-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 32px;
            transition: all 0.4s ease;
        }

        .activity-card:hover .activity-overlay {
            background: linear-gradient(to top, rgba(209, 110, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
        }

        .activity-card h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .activity-card p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95rem;
        }

        /* Project Section */
        .project {
            background: linear-gradient(135deg, var(--secondary) 0%, #b85d00 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .project::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .project-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .project-content h2 {
            font-size: 2.5rem;
            margin-bottom: 24px;
        }

        .project-content p {
            font-size: 1.1rem;
            opacity: 0.95;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .project-features {
            margin: 32px 0;
        }

        .project-feature {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
            padding: 16px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-md);
        }

        .project-feature i {
            font-size: 20px;
        }

        .project-box {
            background: white;
            border-radius: var(--radius-xl);
            padding: 40px;
            color: var(--text-dark);
            box-shadow: var(--shadow-lg);
        }

        .project-box-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .project-box-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 32px;
            color: white;
        }

        .project-box h3 {
            font-size: 1.5rem;
            color: var(--secondary);
        }

        .bank-info {
            background: var(--light);
            border-radius: var(--radius-md);
            padding: 20px;
            margin-bottom: 16px;
        }

        .bank-info-label {
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .bank-info-value {
            font-family: monospace;
            font-size: 1.1rem;
            background: white;
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            border-left: 4px solid var(--secondary);
        }

        .project-cta {
            text-align: center;
            margin-top: 24px;
        }

        /* Verses Section */
        .verses {
            background: var(--light);
        }

        .verses-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .verse-card {
            background: var(--light-surface);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
            border-top: 4px solid transparent;
        }

        .verse-card:nth-child(1) {
            border-top-color: #1a237e;
        }

        .verse-card:nth-child(2) {
            border-top-color: #4a148c;
        }

        .verse-card:nth-child(3) {
            border-top-color: #00695c;
        }

        .verse-card:nth-child(4) {
            border-top-color: #283593;
        }

        .verse-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .verse-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 24px;
            color: white;
        }

        .verse-card:nth-child(1) .verse-icon {
            background: #1a237e;
        }

        .verse-card:nth-child(2) .verse-icon {
            background: #4a148c;
        }

        .verse-card:nth-child(3) .verse-icon {
            background: #00695c;
        }

        .verse-card:nth-child(4) .verse-icon {
            background: #283593;
        }

        .verse-card h4 {
            color: var(--primary);
            font-size: 1.1rem;
            margin-bottom: 12px;
        }

        .verse-card p {
            color: var(--text-muted);
            font-style: italic;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Contact Section */
        .contact {
            background: var(--dark);
            color: white;
        }

        .contact .section-title {
            color: white;
        }

        .contact .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-form {
            background: var(--dark-surface);
            border-radius: var(--radius-xl);
            padding: 40px;
        }

        .contact-form h3 {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            font-size: 14px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-sm);
            color: white;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--secondary);
            background: rgba(255, 255, 255, 0.12);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-info-card {
            background: var(--dark-surface);
            border-radius: var(--radius-lg);
            padding: 32px;
        }

        .contact-info-card h3 {
            font-size: 1.3rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 16px;
        }

        .contact-item i {
            color: var(--secondary);
            font-size: 18px;
            margin-top: 4px;
        }

        .contact-item p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--secondary);
            transform: translateY(-4px);
        }

        /* Footer */
        .footer {
            background: #0a0c0f;
            color: white;
            padding: 60px 24px 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 24px;
        }

        .footer-logo-icon {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: 700;
            font-family: 'Playfair Display', serif;
        }

        .footer-logo span {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            animation: none;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--light-surface);
            border-radius: var(--radius-xl);
            max-width: 500px;
            width: 100%;
            overflow: hidden;
            animation: fadeInUp 0.4s ease-out;
        }

        .modal-header {
            background: var(--gradient-primary);
            color: white;
            padding: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h3 {
            font-size: 1.3rem;
        }

        .modal-close {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .modal-close:hover {
            opacity: 1;
        }

        .modal-body {
            padding: 32px 24px;
        }

        .modal-contact-option {
            display: block;
            padding: 20px;
            border-radius: var(--radius-md);
            margin-bottom: 16px;
            text-decoration: none;
            color: white;
            text-align: center;
            transition: all 0.3s ease;
        }

        .modal-contact-option:hover {
            transform: translateY(-4px);
        }

        .modal-contact-option.whatsapp {
            background: #25d366;
        }

        .modal-contact-option.phone {
            background: var(--primary);
        }

        .modal-contact-option.email {
            background: var(--secondary);
        }

        .modal-contact-option i {
            font-size: 32px;
            margin-bottom: 8px;
            display: block;
        }

        .modal-contact-option span {
            font-weight: 600;
            font-size: 1.1rem;
        }

        .modal-contact-option small {
            display: block;
            opacity: 0.9;
            margin-top: 4px;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background: var(--primary-dark);
            padding: 24px;
            z-index: 999;
            transform: translateY(-100%);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-menu a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 16px;
            font-size: 16px;
            font-weight: 500;
            border-radius: var(--radius-sm);
            transition: background 0.3s ease;
        }

        .mobile-menu a:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Responsive */
        @media (max-width: 1024px) {

            .values-grid,
            .programs-grid,
            .verses-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-grid,
            .project-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-image {
                order: -1;
            }

            .activities-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .mobile-menu {
                display: block;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-verse {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .values-grid,
            .programs-grid,
            .verses-grid {
                grid-template-columns: 1fr;
            }

            .activities-grid {
                grid-template-columns: 1fr;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            section {
                padding: 60px 16px;
            }

            .about-image-main {
                height: 350px;
            }

            .about-image-badge {
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: 16px;
            }

            .logo-text span:last-child {
                display: none;
            }
        }

        /* Dark mode adjustments */
        .dark .program-card,
        .dark .verse-card {
            background: var(--dark-surface);
        }

        .dark .about-feature {
            background: var(--dark-surface);
        }

        .dark .bank-info {
            background: rgba(255, 255, 255, 0.05);
        }

        .dark .bank-info-value {
            background: rgba(255, 255, 255, 0.1);
        }