* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Color palette */
            --clc-white: #ffffff;
            --clc-primary: #6B2D6B; /* deep purple */
            --clc-primary-navy: #4A1F4A;
            --clc-accent-gold: #FF8C42;
            --clc-text: #222222;
            --clc-gray-800: #2b2b2b;
            --clc-gray-600: #6b6b6b;

            /* Font stacks */
            --clc-font-body: 'Source Sans Pro', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            --clc-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
            --clc-font-accent: 'Playfair Display', serif;

            /* Spacing & sizes */
            --clc-spacing-4: 1rem;
            --clc-text-xs: 0.75rem;
            --clc-text-sm: 0.875rem;
            --clc-text-base: 1rem;
            --clc-text-xl: 1.25rem;
            --clc-radius-lg: 15px;
            --clc-shadow-md: 0 6px 24px rgba(0,0,0,0.08);
        }

        body {
            /* Modern, readable font for body across the site */
            font-family: 'Source Sans Pro', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #222;
            -webkit-font-smoothing:antialiased;
            -moz-osx-font-smoothing:grayscale;
        }

        /* Navigation Bar */
        nav {
            background: var(--clc-white);
            padding: 1rem 5%;
            box-shadow: 0 2px 15px rgba(30, 136, 229, 0.1);
            /* Make navbar flow with the page (not sticky/fixed) */
            position: relative;
            width: 100%;
            z-index: 50;
        }

        /* nav-container now provided by assets/CSS/base.css */
        /* logo text styles moved to base.css for consistency */
        /* nav-links container now provided by assets/CSS/base.css; link styles remain below */

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: var(--clc-text-base);
            transition: color 0.3s;
            position: relative;
            font-family: var(--clc-font-body);
        }

        .nav-links a:hover {
            color: var(--clc-primary-navy);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--clc-accent-gold);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
  width: 30px; /* Or whatever size you want your clickable area */
  height: 30px;
  display: flex;
  flex-direction: column; /* To stack the spans vertically */
  justify-content: space-around; /* To distribute the spans */
  align-items: center; /* To center the spans horizontally */
  cursor: pointer; /* To indicate it's clickable */
}

.hamburger span {
  display: block;
  width: 30px; /* Width of the hamburger lines */
  height: 5px; /* Height/thickness of the hamburger lines */
  background-color: #333; /* Color of the hamburger lines */
  border-radius: 2px; /* Slightly rounded corners */
}

@media (min-width: 769px) {
  .hamburger {
    display: none; /* Hidden on large screens */
  }
}
 
/* Make navbar sticky ONLY on mobile */
@media (max-width: 768px) {
nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: var(--clc-white);
    padding-top: env(safe-area-inset-top); /* prevents overlap on devices with notch / dynamic bars */
  }
 
}



        /* hamburger menu visibility/behavior provided by assets/CSS/base.css; keep page-specific toggles in JS if needed */

        /* Hero Section */
        /* Modern church-style hero: background image with warm gradient overlay */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
            background-image: url(/assets/images/empty-christian-church-building.jpg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: scroll;
            will-change: transform;
            contain: paint;
        }

        .hero-background {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%);
        }

        /* Animated gradient background elements */
        .hero-background::before {
            content: '';
            position: absolute;
            inset: -50% -50% -50% -50%;
            background: 
                radial-gradient(circle at center, rgba(255,140,66,0.15) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 40%);
            animation: orbMove 20s ease-in-out infinite;
            transform-origin: center;
        }

        .hero-background::after {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                linear-gradient(45deg, rgba(255,140,66,0.1) 0%, transparent 40%),
                linear-gradient(-45deg, rgba(107,45,107,0.2) 0%, transparent 40%);
            animation: shimmer 8s ease-in-out infinite;
        }
        @keyframes gradientMove {
            0%, 100% { background-position: 0% 0%; }
            50% { background-position: 100% 100%; }
        }

        @keyframes orbMove {
            0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.5; }
            50% { transform: rotate(180deg) scale(1.1); opacity: 0.8; }
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.7; transform: translateY(0) scale(1); }
            50% { opacity: 1; transform: translateY(-20px) scale(1.05); }
        }

        /* Subtle decorative vignette - appears last */
        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.6) 100%);
            z-index: 2;
            pointer-events: none;
            opacity: 0;
            animation: fadeIn 0.3s ease-out 0.4s forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 700px;
            width: 75%;
            padding: 1.5rem 3.5rem;
            animation: fadeInUp 1s ease-out;
            display: grid;
            gap: 0.8rem;
            border-radius: 0;
            background: rgba(255, 255, 255, 0.05);
            border: none;
            box-shadow: inset 0 0 40px rgba(156, 39, 176, 0.15), 0 20px 60px rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-welcome {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #BA68C8;
            font-family: 'Source Sans Pro', sans-serif;
            opacity: 0.95;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.8rem, 7.5vw, 4.5rem);
            font-weight: 700;
            margin: 0 0 1.2rem 0;
            line-height: 1.15;
            color: #FFFFFF;
            text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
        }

        .hero h1::after {
            content: '';
            display: none;
        }

        .hero-tagline {
            font-size: clamp(1.15rem, 2.3vw, 1.6rem);
            font-style: italic;
            margin-bottom: 2.5rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.95);
            font-family: 'Source Sans Pro', sans-serif;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .btn {
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: #9C27B0;
            color: white;
            box-shadow: 0 10px 30px rgba(156, 39, 176, 0.4);
        }

        .btn-primary:hover {
            background: #BA68C8;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(156, 39, 176, 0.5);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            color: #FFFFFF;
            border: 2px solid rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            color: #FFFFFF;
            border-color: #FFFFFF;
            transform: translateY(-3px);
        }

        .hero-service-times {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 1.8rem 3.5rem;
            border-radius: 12px;
            border: 1px solid rgba(156, 39, 176, 0.4);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            animation: glow 3s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        .hero-service-times::before {
            content: '';
            display: none;
        }

        .service-time-label {
            font-size: 1.05rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
            color: #BA68C8;
            font-weight: 800;
            text-shadow: none;
        }

        .service-time-main {
            font-size: 1.6rem;
            font-weight: 700;
            font-family: var(--clc-font-heading);
            color: #FFFFFF;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
            50% { box-shadow: 0 8px 32px rgba(255,140,66,0.3); }
        }

        @keyframes shimmer {
            0% { transform: translateX(0); }
            100% { transform: translateX(50%); }
        }

        /* Welcome Section */
        .welcome-section {
            padding: 5rem 5%;
            background: white;
        }

        .welcome-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .welcome-content h2 {
            font-size: 2.5rem;
            color: #6B2D6B;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .welcome-content h3 {
            font-size: 1.5rem;
            color: #FF8C42;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .welcome-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1rem;
        }

        .welcome-content .highlight {
            font-weight: 600;
            color: #6B2D6B;
        }

        .welcome-list {
            margin: 2rem 0;
            padding-left: 0;
            list-style: none;
        }

        .welcome-list li {
            padding: 1rem 0;
            padding-left: 2rem;
            position: relative;
            font-size: 1.05rem;
            color: #555;
            line-height: 1.6;
        }

        .welcome-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #FF8C42;
            font-weight: bold;
            font-size: 1.3rem;
        }

        .welcome-image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .image-placeholder {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #6B2D6B 0%, #8B4789 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            text-align: center;
            padding: 2rem;
        }

        .cta-button {
            margin-top: 2rem;
        }

        /* Vision Section */
        .vision-section {
            padding: 7rem 5%;
            background: linear-gradient(180deg, #F3E5F5 0%, #F8F5FC 100%);
            color: #333;
            position: relative;
            overflow: hidden;
            border-top: 8px solid #9C27B0;
            border-bottom: 8px solid #9C27B0;
        }

        .vision-section::before {
            content: '';
            position: absolute;
            bottom: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(156, 39, 176, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .vision-section::after {
            content: '';
            position: absolute;
            top: -30%;
            left: -15%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(156, 39, 176, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .vision-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .vision-header {
            text-align: center;
            margin-bottom: 5rem;
            padding-bottom: 2rem;
            border-bottom: 3px solid #9C27B0;
        }

        .vision-header h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: #1565C0;
        }

        .vision-header .subtitle {
            font-size: 1.2rem;
            color: #9C27B0;
            font-style: italic;
            font-weight: 500;
        }

        .vision-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .vision-card {
            background: #F8F9FA;
            border: none;
            border-radius: 12px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            border-top: 5px solid #9C27B0;
        }

        .vision-card:hover {
            transform: translateY(-8px);
            background: #FFFFFF;
            box-shadow: 0 12px 30px rgba(156, 39, 176, 0.2);
        }

        .vision-card-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .vision-card h3 {
            font-size: 1.5rem;
            color: #1565C0;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .vision-card p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #555;
        }

        .vision-main {
            text-align: center;
            background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
            border: none;
            border-radius: 12px;
            padding: 3rem 2rem;
            margin-bottom: 3rem;
            color: #FFFFFF;
        }

        .vision-main h3 {
            font-size: 2rem;
            color: #FFFFFF;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .vision-main p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.95);
        }
        .vision-main .subtitle {
            max-width: 800px;
            margin: 0 auto;
        }

        .scripture-verse {
            text-align: center;
            max-width: 900px;
            margin: 4rem auto 0;
            padding: 4rem 3rem;
            background: #FFFFFF;
            border-radius: 15px;
            border: 5px solid #7B1FA2;
            outline: 3px solid rgba(156, 39, 176, 0.3);
            outline-offset: 6px;
            box-shadow: 0 14px 35px rgba(123, 31, 162, 0.25), inset 0 0 20px rgba(156, 39, 176, 0.08);
            position: relative;
            overflow: hidden;
        }

        .scripture-verse::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 4rem;
            color: rgba(156, 39, 176, 0.2);
            font-weight: bold;
            font-family: Georgia, serif;
        }

        .scripture-verse::after {
            content: '"';
            position: absolute;
            bottom: 10px;
            right: 20px;
            font-size: 4rem;
            color: rgba(156, 39, 176, 0.2);
            font-weight: bold;
            font-family: Georgia, serif;
        }

        .scripture-verse p {
            font-size: 1.4rem;
            font-style: italic;
            line-height: 2;
            margin-bottom: 1.5rem;
            color: #2C3E50;
            font-weight: 500;
            position: relative;
            z-index: 1;
            font-family: 'Playfair Display', serif;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .scripture-verse cite {
            font-size: 1.1rem;
            color: #9C27B0;
            font-weight: 700;
            position: relative;
            z-index: 1;
            letter-spacing: 1px;
        }

        /* Service Times Section */
        .services-section {
            padding: 5rem 5%;
            background: #f9f9f9;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 3rem;
            color: #6B2D6B;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #666;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            margin-bottom: 4rem;
            align-items: stretch;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-top: 4px solid #6B2D6B;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(107, 45, 107, 0.15);
        }

        .service-card.featured {
            border-top: 4px solid #FF8C42;
            background: linear-gradient(135deg, #FFF 0%, #FFF5EE 100%);
        }

        .service-day {
            display: inline-block;
            background: #6B2D6B;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .service-card.featured .service-day {
            background: #FF8C42;
        }

        .service-title {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .service-time {
            font-size: 1.8rem;
            color: #6B2D6B;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .service-card.featured .service-time {
            color: #FF8C42;
        }

        .service-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }

        /* Programs Section */
        .programs-section {
            padding: 5rem 5%;
            background: white;
        }

        .programs-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
        }

        .program-card {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .program-card:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .program-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #6B2D6B 0%, #8B4789 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.2rem;
        }

        .program-content {
            padding: 1.5rem;
            background: white;
        }

        .program-title {
            font-size: 1.5rem;
            color: #6B2D6B;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .program-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.7;
        }

        .social-section h4 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
            color: #FF8C42;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .social-link {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
        }

        .social-link:hover {
            background: #FF8C42;
            border-color: #FF8C42;
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 10px 25px rgba(255, 140, 66, 0.4);
        }

        .map-section {
            height: 400px;
            background: #1a1a1a;
            position: relative;
            overflow: hidden;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            position: relative;
        }

        .map-placeholder::before {
            content: '📍';
            font-size: 4rem;
            position: absolute;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* FOOTER SECTION */
        footer {
            background: #0a0a0a;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .footer-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a0a 100%);
            z-index: 0;
        }

        .footer-background::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(107, 45, 107, 0.15) 0%, transparent 70%);
            animation: footerPulse 15s ease-in-out infinite;
        }

        .footer-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 140, 66, 0.05) 50%, transparent 100%);
            animation: footerSlide 10s linear infinite;
        }

        @keyframes footerPulse {
            0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
            50% { transform: scale(1.3) rotate(180deg); opacity: 0.7; }
        }

        @keyframes footerSlide {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .footer-top {
            padding: 5rem 5% 3rem;
            position: relative;
            z-index: 2;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
        }

        .footer-logo-section {
            animation: fadeInLeft 1s ease-out;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .footer-logo-icon {
            background: linear-gradient(135deg, #6B2D6B 0%, #8B4789 100%);
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.1rem;
            letter-spacing: 1px;
            box-shadow: 0 5px 20px rgba(107, 45, 107, 0.4);
            animation: logoFloat 3s ease-in-out infinite;
        }

    /* footer-logo-icon img rules moved to assets/CSS/base.css */


        @keyframes logoFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .footer-logo-text h3 {
            font-size: 1.5rem;
            margin-bottom: 0.3rem;
            font-weight: 700;
        }

        .footer-logo-text p {
            font-size: 0.8rem;
            color: #FF8C42;
            font-style: italic;
        }

        .footer-description {
            font-size: 1rem;
            line-height: 1.8;
            color: #aaa;
            margin-bottom: 2rem;
        }

        .footer-mission {
            background: rgba(107, 45, 107, 0.2);
            border-left: 4px solid #FF8C42;
            padding: 1.5rem;
            border-radius: 10px;
            font-style: italic;
            color: #ddd;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Footer Columns */
        .footer-column {
            animation: fadeInUp 1s ease-out;
            animation-fill-mode: both;
        }

        .footer-column:nth-child(2) { animation-delay: 0.2s; }
        .footer-column:nth-child(3) { animation-delay: 0.4s; }
        .footer-column:nth-child(4) { animation-delay: 0.6s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer-column h4 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: #FF8C42;
            font-weight: 700;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #FF8C42 0%, transparent 100%);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            padding-left: 20px;
        }

        .footer-links a::before {
            content: '→';
            position: absolute;
            left: 0;
            opacity: 0;
            transition: all 0.3s ease;
            color: #FF8C42;
        }

        .footer-links a:hover {
            color: #FF8C42;
            transform: translateX(10px);
        }

        .footer-links a:hover::before {
            opacity: 1;
            left: 0;
        }

        /* Contact Info in Footer */
        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
            color: #aaa;
            transition: all 0.3s ease;
        }

        .footer-contact-item:hover {
            color: #FF8C42;
            transform: translateX(5px);
        }

        .footer-contact-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .footer-contact-item a {
            color: inherit;
            text-decoration: none;
        }

        /* Footer Bottom */
        .footer-bottom {
            padding: 2rem 5%;
            position: relative;
            z-index: 2;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
        }

        .footer-bottom-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-copyright {
            color: #888;
            font-size: 0.95rem;
        }

        .footer-copyright strong {
            color: #FF8C42;
        }

        /* Footer Social Media */
        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social-link {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            cursor: pointer;
            text-decoration: none;
        }

        .footer-social-link:hover {
            background: #FF8C42;
            border-color: #FF8C42;
            transform: translateY(-10px) rotate(360deg) scale(1.1);
            box-shadow: 0 15px 30px rgba(255, 140, 66, 0.5);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #6B2D6B 0%, #8B4789 100%);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(107, 45, 107, 0.4);
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 15px 40px rgba(107, 45, 107, 0.6);
        }

        /* Responsive Footer */
        @media (max-width: 1024px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }

            .footer-logo-section {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .footer-bottom-container {
                flex-direction: column;
                text-align: center;
            }

            .footer-top {
                padding: 3rem 5% 2rem;
            }
        }
        /* Responsive Footer */
        @media (max-width: 1024px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }

            .footer-logo-section {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .footer-bottom-container {
                flex-direction: column;
                text-align: center;
            }

            .footer-top {
                padding: 3rem 5% 2rem;
            }
        }
        @media (max-width: 1024px) {
            .contact-content {
                grid-template-columns: 1fr;
            }

            .contact-form-wrapper,
            .contact-info-wrapper {
                padding: 3rem;
            }

            .contact-hero h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .contact-form-wrapper,
            .contact-info-wrapper {
                padding: 2rem;
            }

            .contact-hero {
                padding: 3rem 5%;
            }
        }
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }

            .services-grid,
            .programs-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .vision-header h2 {
                font-size: 2rem;
            }

            .vision-main h3 {
                font-size: 1.5rem;
            }

            .vision-main p {
                font-size: 1.1rem;
            }

            .vision-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 968px) {
            .welcome-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .welcome-content h2 {
                font-size: 2rem;
            }

            .welcome-image {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-welcome {
                font-size: 1rem;
            }

            .hero-tagline {
                font-size: 1.3rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .service-time-main {
                font-size: 1.1rem;
            }
        }
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .programs-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .programs-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== COMPREHENSIVE MOBILE RESPONSIVE DESIGN ========== */

        /* Tablet Breakpoint (768px - 1024px) */
        @media (max-width: 1024px) {
            /* Hero Section Adjustments */
            .hero {
                height: 80vh;
                background-attachment: scroll;
            }

            .hero-content {
                width: 90%;
                max-width: 600px;
                padding: 1.2rem 2rem;
            }

            .hero h1 {
                font-size: clamp(2.2rem, 6vw, 3.8rem);
            }

            .hero-tagline {
                font-size: clamp(1rem, 2vw, 1.5rem);
                margin-bottom: 1.5rem;
            }

            .hero-buttons {
                gap: 1rem;
                margin-bottom: 2rem;
            }

            .btn {
                padding: 1rem 2.5rem;
                font-size: 1.1rem;
            }

            .hero-service-times {
                padding: 1.5rem 2.5rem;
            }

            .service-time-label {
                font-size: 0.95rem;
            }

            .service-time-main {
                font-size: 1.4rem;
            }

            /* Vision Section */
            .vision-section {
                padding: 4rem 5%;
            }

            .vision-header h2 {
                font-size: 2.5rem;
            }

            .vision-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .vision-main {
                padding: 2.5rem 1.5rem;
            }

            .vision-main h3 {
                font-size: 1.75rem;
            }

            .scripture-verse {
                max-width: 800px;
                padding: 2.5rem 2rem;
                margin: 2.5rem auto 0;
            }

            .scripture-verse p {
                font-size: 1.2rem;
            }

            .scripture-verse::before,
            .scripture-verse::after {
                font-size: 3rem;
            }

            /* Services Section */
            .services-grid {
                gap: 1.2rem;
            }

            .service-card {
                padding: 1.8rem;
            }

            /* Programs Section */
            .programs-grid {
                gap: 1.2rem;
            }

            .program-card {
                padding: 1.5rem;
            }

            .program-image {
                height: 180px;
                font-size: 3rem;
            }

            /* Welcome Section */
            .welcome-content h2 {
                font-size: 2.2rem;
            }

            .welcome-content p {
                font-size: 1rem;
            }
        }

        /* Mobile Breakpoint (480px - 768px) */
        @media (max-width: 768px) {
            /* Base responsive adjustments */
            body {
                font-size: 14px;
            }

            /* Navigation */
            nav {
                padding: 0.8rem 4%;
            }

            .nav-links {
                display: none;
            }

            /* Hero Section - Major Changes */
            .hero {
                height: 60vh;
                min-height: 500px;
                background-attachment: scroll;
                background-size: cover;
            }

            .hero-background {
                background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 100%);
            }

            .hero-background::before {
                animation: none;
            }

            .hero-background::after {
                animation: none;
            }

            .hero-content {
                width: 95%;
                max-width: 100%;
                padding: 1rem 1.5rem;
                gap: 0.6rem;
                background: rgba(255, 255, 255, 0.08);
                box-shadow: inset 0 0 30px rgba(156, 39, 176, 0.1), 0 10px 40px rgba(0, 0, 0, 0.4);
            }

            .hero-welcome {
                font-size: 1.1rem;
                letter-spacing: 1.5px;
                margin-bottom: 0.3rem;
            }

            .hero h1 {
                font-size: clamp(1.8rem, 5.5vw, 2.8rem);
                margin: 0.5rem 0 0.8rem 0;
            }

            .hero-tagline {
                font-size: clamp(0.95rem, 2.2vw, 1.2rem);
                margin-bottom: 1.2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 0.8rem;
                margin-bottom: 1.2rem;
            }

            .btn {
                width: 90%;
                max-width: 280px;
                padding: 0.9rem 1.5rem;
                font-size: 1rem;
            }

            .btn-secondary {
                border: 2px solid rgba(255, 255, 255, 0.5);
            }

            .hero-service-times {
                flex-direction: column;
                padding: 1.2rem 2rem;
                gap: 0.5rem;
            }

            .service-time-label {
                font-size: 0.9rem;
                letter-spacing: 1px;
            }

            .service-time-main {
                font-size: 1.25rem;
            }

            /* Welcome Section */
            .welcome-section {
                padding: 3rem 4%;
            }

            .welcome-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .welcome-image {
                order: -1;
                max-height: 300px;
            }

            .welcome-content h2 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }

            .welcome-content p {
                font-size: 0.95rem;
                line-height: 1.6;
                margin-bottom: 1rem;
            }

            .cta-button {
                margin-top: 1rem;
            }

            /* Vision Section - Major Changes */
            .vision-section {
                padding: 2.5rem 4%;
                border-top: 5px solid #9C27B0;
                border-bottom: 5px solid #9C27B0;
            }

            .vision-section::before {
                width: 300px;
                height: 300px;
                bottom: -40%;
                right: -20%;
            }

            .vision-section::after {
                width: 250px;
                height: 250px;
                top: -30%;
                left: -15%;
            }

            .vision-container {
                max-width: 100%;
            }

            .vision-header {
                margin-bottom: 2rem;
                padding-bottom: 1rem;
            }

            .vision-header h2 {
                font-size: 1.8rem;
                margin-bottom: 0.8rem;
            }

            .vision-header .subtitle {
                font-size: 1rem;
            }

            .vision-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
                margin-top: 1.5rem;
            }

            .vision-card {
                padding: 1.5rem;
                border-top: 4px solid #9C27B0;
            }

            .vision-card-icon {
                font-size: 2.5rem;
                margin-bottom: 0.8rem;
            }

            .vision-card h3 {
                font-size: 1.3rem;
                margin-bottom: 0.8rem;
            }

            .vision-card p {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            .vision-main {
                padding: 1.8rem 1.2rem;
                margin-bottom: 1.5rem;
            }

            .vision-main h3 {
                font-size: 1.4rem;
                margin-bottom: 0.8rem;
            }

            .vision-main p {
                font-size: 1rem;
            }

            /* Scripture Verse */
            .scripture-verse {
                max-width: 100%;
                margin: 1.5rem auto 0;
                padding: 1.5rem 1.2rem;
                border: 4px solid #7B1FA2;
                outline: 2px solid rgba(156, 39, 176, 0.25);
                outline-offset: 4px;
                box-shadow: 0 8px 25px rgba(123, 31, 162, 0.2), inset 0 0 15px rgba(156, 39, 176, 0.05);
            }

            .scripture-verse::before,
            .scripture-verse::after {
                font-size: 2.5rem;
                display: none;
            }

            .scripture-verse p {
                font-size: 1rem;
                line-height: 1.8;
                margin-bottom: 1rem;
                max-width: 100%;
            }

            .scripture-verse cite {
                font-size: 1rem;
            }

            /* Services Section */
            .services-section {
                padding: 3rem 4%;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }

            .service-card {
                padding: 1.5rem;
                border: 1px solid #e0e0e0;
                border-radius: 10px;
            }

            .service-card h3 {
                font-size: 1.2rem;
                margin-bottom: 0.8rem;
            }

            .service-card p {
                font-size: 0.95rem;
            }

            .service-icon {
                font-size: 2rem;
                margin-bottom: 0.8rem;
            }

            /* Programs Section */
            .programs-section {
                padding: 3rem 4%;
            }

            .programs-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }

            .program-card {
                padding: 1.2rem;
                border-radius: 10px;
                background: white;
                border: 1px solid #e0e0e0;
            }

            .program-image {
                height: 150px;
                font-size: 2.8rem;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 1rem;
                background: #f5f5f5;
                border-radius: 8px;
            }

            .program-content {
                padding: 1rem;
            }

            .program-content h3 {
                font-size: 1.2rem;
                margin-bottom: 0.5rem;
            }

            .program-content p {
                font-size: 0.9rem;
            }

            /* Footer */
            .footer-top {
                padding: 2rem 4%;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .footer-logo-section {
                grid-column: auto;
                text-align: center;
            }

            .footer-section h3 {
                font-size: 1.1rem;
                margin-bottom: 0.8rem;
            }

            .footer-section p,
            .footer-section a {
                font-size: 0.9rem;
            }

            .footer-bottom-container {
                padding: 1.5rem 4%;
                flex-direction: column;
                text-align: center;
                gap: 0.8rem;
            }

            .footer-bottom-container p {
                font-size: 0.85rem;
            }
        }

        /* Small Mobile Breakpoint (Below 480px) */
        @media (max-width: 480px) {
            html {
                font-size: 13px;
            }

            /* Navigation */
            nav {
                padding: 0.6rem 3%;
            }

            /* Hero Section - Extra Small */
            .hero {
                height: 55vh;
                min-height: 400px;
            }

            .hero-content {
                width: 98%;
                padding: 0.8rem 1rem;
                gap: 0.4rem;
            }

            .hero-welcome {
                font-size: 0.95rem;
                letter-spacing: 1px;
                margin-bottom: 0.2rem;
            }

            .hero h1 {
                font-size: clamp(1.5rem, 4.5vw, 2.2rem);
                margin: 0.3rem 0 0.6rem 0;
                line-height: 1.2;
            }

            .hero-tagline {
                font-size: clamp(0.85rem, 2vw, 1rem);
                margin-bottom: 0.8rem;
            }

            .hero-buttons {
                gap: 0.6rem;
                margin-bottom: 0.8rem;
            }

            .btn {
                width: 100%;
                max-width: 260px;
                padding: 0.8rem 1.2rem;
                font-size: 0.9rem;
                border-radius: 40px;
            }

            .hero-service-times {
                padding: 1rem 1.5rem;
                gap: 0.3rem;
                font-size: 0.9rem;
            }

            .service-time-label {
                font-size: 0.8rem;
            }

            .service-time-main {
                font-size: 1.1rem;
            }

            /* Welcome Section */
            .welcome-section {
                padding: 2rem 3%;
            }

            .welcome-content h2 {
                font-size: 1.5rem;
                margin-bottom: 0.8rem;
            }

            .welcome-content p {
                font-size: 0.9rem;
                margin-bottom: 0.8rem;
            }

            /* Vision Section */
            .vision-section {
                padding: 2rem 3%;
                border-top: 4px solid #9C27B0;
                border-bottom: 4px solid #9C27B0;
            }

            .vision-header h2 {
                font-size: 1.5rem;
                margin-bottom: 0.6rem;
            }

            .vision-header .subtitle {
                font-size: 0.9rem;
            }

            .vision-grid {
                gap: 1rem;
                margin-top: 1.2rem;
            }

            .vision-card {
                padding: 1.2rem;
                border-top: 3px solid #9C27B0;
            }

            .vision-card-icon {
                font-size: 2rem;
                margin-bottom: 0.6rem;
            }

            .vision-card h3 {
                font-size: 1.1rem;
                margin-bottom: 0.6rem;
            }

            .vision-card p {
                font-size: 0.85rem;
                line-height: 1.5;
            }

            .vision-main {
                padding: 1.4rem 1rem;
                margin-bottom: 1.2rem;
            }

            .vision-main h3 {
                font-size: 1.2rem;
                margin-bottom: 0.6rem;
            }

            .vision-main p {
                font-size: 0.95rem;
            }

            /* Scripture Verse */
            .scripture-verse {
                margin: 1.2rem auto 0;
                padding: 1.2rem 1rem;
                border: 3px solid #7B1FA2;
                outline: none;
                box-shadow: 0 6px 20px rgba(123, 31, 162, 0.15);
            }

            .scripture-verse p {
                font-size: 0.95rem;
                line-height: 1.7;
                margin-bottom: 0.8rem;
            }

            .scripture-verse cite {
                font-size: 0.9rem;
            }

            /* Services Section */
            .services-section {
                padding: 2rem 3%;
            }

            .section-header h2 {
                font-size: 1.5rem;
            }

            .services-grid {
                gap: 1rem;
            }

            .service-card {
                padding: 1.2rem;
            }

            .service-card h3 {
                font-size: 1.1rem;
                margin-bottom: 0.6rem;
            }

            .service-icon {
                font-size: 1.8rem;
                margin-bottom: 0.6rem;
            }

            /* Programs Section */
            .programs-section {
                padding: 2rem 3%;
            }

            .programs-grid {
                gap: 1rem;
            }

            .program-card {
                padding: 1rem;
            }

            .program-image {
                height: 120px;
                font-size: 2.5rem;
                margin-bottom: 0.8rem;
            }

            .program-content {
                padding: 0.8rem;
            }

            .program-content h3 {
                font-size: 1rem;
                margin-bottom: 0.4rem;
            }

            .program-content p {
                font-size: 0.85rem;
            }

            /* Footer */
            .footer-top {
                padding: 1.5rem 3%;
            }

            .footer-container {
                gap: 1.2rem;
            }

            .footer-section h3 {
                font-size: 1rem;
                margin-bottom: 0.6rem;
            }

            .footer-section p,
            .footer-section a {
                font-size: 0.85rem;
            }

            .footer-bottom-container {
                padding: 1.2rem 3%;
                gap: 0.6rem;
            }

            .footer-bottom-container p {
                font-size: 0.8rem;
            }
        }

        /* Extra Small (Under 400px) */
        @media (max-width: 400px) {
            .hero {
                height: 50vh;
                min-height: 350px;
            }

            .hero h1 {
                font-size: clamp(1.3rem, 4vw, 1.8rem);
            }

            .btn {
                max-width: 240px;
                padding: 0.7rem 1rem;
                font-size: 0.85rem;
            }

            .vision-section {
                padding: 1.5rem 3%;
            }

            .vision-header h2 {
                font-size: 1.3rem;
            }

            .services-section,
            .programs-section {
                padding: 1.5rem 3%;
            }
        }