/* ===================================
   Glory and Shine Evangelical Mission
   Custom Stylesheet
   =================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Based on church logo */
    --navy: #1a3a5c;
    --navy-dark: #0f2540;
    --navy-light: #2a5a8c;
    
    /* Gold/Amber - Glory and Shine theme */
    --gold: #d4a853;
    --gold-light: #e8c97a;
    --gold-dark: #b8860b;
    --amber: #f5a623;
    
    /* Flame Colors */
    --flame-orange: #ff6b35;
    --flame-yellow: #ffb347;
    
    /* Neutrals */
    --white: #ffffff;
    --cream: #fef9f0;
    --cream-dark: #f5efe6;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #6c757d;
    --gray-700: #495057;
    --gray-900: #212529;
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Source Sans 3', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.3;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 58, 92, 0.98);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
}

.logo-svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    padding: 10px 16px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-light);
}

.nav-cta {
    background: var(--gold);
    color: var(--navy-dark) !important;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 168, 83, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(212, 168, 83, 0.05) 0%, transparent 60%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a853' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 0 24px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 168, 83, 0.2);
    border: 1px solid var(--gold);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    margin-bottom: 16px;
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.title-sub {
    display: block;
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 8px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-tagline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--gold-light);
    font-weight: 300;
    margin-bottom: 16px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-scripture {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    max-width: 500px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-3px);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===================================
   Service Times Section
   =================================== */
.service-times {
    background: var(--navy);
    padding: 60px 0;
    position: relative;
}

.service-times::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--flame-orange), var(--gold));
}

.times-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.time-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

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

.time-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    color: var(--gold);
}

.time-icon svg {
    width: 100%;
    height: 100%;
}

.time-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.time-card .time {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.time-card .desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===================================
   Section Styles
   =================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 168, 83, 0.15);
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--gray-500);
    font-size: 1.1rem;
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .lead {
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.value {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.value:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 1.5rem;
    border-radius: 12px;
    flex-shrink: 0;
}

.value h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.value p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 20px;
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 3px solid var(--navy);
    border-radius: 25px;
    z-index: -1;
}

.frame-content {
    background: var(--cream-dark);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
}

.church-svg {
    width: 180px;
    height: 180px;
    margin-bottom: 20px;
}

.frame-text {
    font-family: var(--font-heading);
    color: var(--navy);
    font-size: 1.1rem;
}

/* ===================================
   Event Banner
   =================================== */
.event-banner {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--flame-orange) 0%, var(--gold-dark) 50%, var(--gold) 100%);
}

.banner-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.banner-content {
    position: relative;
    text-align: center;
    color: var(--white);
}

.banner-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--white);
    color: var(--flame-orange);
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.banner-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.banner-theme {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
}

.theme-text {
    font-size: 1.25rem;
    font-weight: 600;
}

.theme-yoruba {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-dark);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.theme-verse {
    font-size: 1rem;
    opacity: 0.9;
}

.banner-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 16px 24px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.detail svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.detail div {
    text-align: left;
}

.detail strong {
    display: block;
    font-size: 1.1rem;
}

.detail span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.banner-features {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.banner-features span {
    padding: 8px 20px;
    background: var(--navy);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.banner-minister {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

.banner-host {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    background: var(--cream);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

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

.service-card.featured {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.service-card.featured .card-content {
    color: var(--white);
}

.service-card.featured h3,
.service-card.featured .card-time {
    color: var(--white);
}

.service-card.featured .card-time {
    color: var(--gold-light);
}

.service-card.featured .card-desc {
    color: rgba(255, 255, 255, 0.8);
}

.service-card.featured .card-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.featured .card-features li::before {
    color: var(--gold);
}

.card-accent {
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--flame-orange));
}

.service-card.featured .card-accent {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.card-content {
    padding: 30px;
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--white);
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.card-time {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 16px;
}

.card-desc {
    color: var(--gray-500);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.card-features {
    list-style: none;
}

.card-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-weight: bold;
}

/* ===================================
   Leadership Section
   =================================== */
.leadership {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

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

.leader-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.leader-image {
    height: 250px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.image-placeholder svg {
    width: 60px;
    height: 60px;
}

.image-placeholder.female {
    background: rgba(212, 168, 83, 0.2);
}

.leader-info {
    padding: 30px;
}

.leader-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.leader-role {
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.leader-bio {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===================================
   YouTube Section
   =================================== */
.youtube-section {
    padding: 80px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.youtube-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
}

.youtube-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.youtube-text {
    color: var(--white);
}

.youtube-text .section-tag {
    background: rgba(212, 168, 83, 0.2);
    color: var(--gold-light);
}

.youtube-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.youtube-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-youtube {
    background: #ff0000;
    color: var(--white);
    padding: 16px 32px;
}

.btn-youtube:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.btn-youtube svg {
    width: 24px;
    height: 24px;
}

.youtube-visual {
    display: flex;
    justify-content: center;
}

.video-frame {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: 16px;
    border: 3px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: var(--transition);
}

.video-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 168, 83, 0.2);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: var(--transition);
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

.video-frame p {
    color: var(--gold-light);
    font-size: 0.9rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--cream);
    border-radius: 12px;
    transition: var(--transition);
}

.info-card:hover {
    background: var(--cream-dark);
    transform: translateX(10px);
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    color: var(--white);
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.info-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-card p a {
    color: var(--navy);
    font-weight: 500;
}

.info-card p a:hover {
    color: var(--gold-dark);
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 350px;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 2px dashed var(--gold);
    border-radius: 16px;
}

.map-pin {
    width: 60px;
    height: 60px;
    color: var(--flame-orange);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.map-pin svg {
    width: 100%;
    height: 100%;
}

.map-text {
    text-align: center;
}

.map-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.map-text p {
    color: var(--gray-500);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--navy-dark);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
}

.footer-tagline {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-verse {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 600;
}

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

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

.footer-col a,
.footer-col li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .youtube-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: var(--transition);
        gap: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-cta {
        margin-top: 20px;
        text-align: center;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .times-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .leaders-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-details {
        flex-direction: column;
        align-items: center;
    }
    
    .detail {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .service-times {
        padding: 40px 0;
    }
    
    .time-card {
        padding: 20px;
    }
}

/* ===================================
   Animations on Scroll
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

