:root {
    --primary-blue: #000034;
    --secondary-blue: #000034;
    --accent-yellow: #F8C100;
    --dark-blue: #000034;
    --light-blue: #E6F2FF;
    --accent-green: #00923F;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-blue);
}

.nav-logo img {
    height: 50px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.lang-switcher {
    list-style: none;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--accent-yellow);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.lang-flag {
    font-size: 1.25rem;
}

.lang-text {
    font-size: 0.875rem;
}

/* Flag buttons language switcher */
.lang-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-flag-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.1);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.lang-flag-btn .flag-emoji {
    font-size: 18px;
}

.lang-flag-btn:hover {
    transform: translateY(-2px);
    border-color: var(--accent-yellow);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.lang-flag-btn.active {
    border-color: var(--accent-yellow);
    background: rgba(248,193,0,0.12);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 0%;
    z-index: 0;
}

.hero-image {
    will-change: transform, opacity;
    contain: paint;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 20px 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-yellow);
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hero-info-item i {
    font-size: 2rem;
    color: var(--accent-yellow);
}

.hero-info-item div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hero-info-item strong {
    font-size: 1rem;
    font-weight: 600;
}

.hero-info-item span {
    font-size: 0.875rem;
    opacity: 0.9;
}

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

.hero-keywords {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0.75rem auto 1.25rem;
    list-style: none;
}

.hero-keywords li a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.25);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.hero-keywords li a:hover {
    background: var(--accent-yellow);
    color: var(--text-dark);
    border-color: var(--accent-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(253,185,19,0.35);
}

.church-intro {
    background: var(--light-bg);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.church-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(248, 193, 0, 0.18), transparent 55%),
                radial-gradient(circle at bottom right, rgba(0, 146, 63, 0.14), transparent 50%);
    pointer-events: none;
}

.church-intro .container {
    position: relative;
    z-index: 1;
}


.intro-card {
    background: var(--white);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    padding: 64px 68px;
    max-width: 1120px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.intro-header {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.75rem;
}

.intro-badge {
    align-self: flex-start;
    background: rgba(0, 0, 52, 0.08);
    color: var(--primary-blue);
    padding: 0.45rem 1.15rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.intro-card h2 {
    font-size: clamp(2.4rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0;
}

.intro-lead {
    font-size: 1.18rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 46ch;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 3rem;
    align-items: start;
}

.intro-copy {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.intro-section {
    display: grid;
    gap: 0.75rem;
    padding-left: 1.1rem;
    border-left: 3px solid rgba(0, 0, 52, 0.12);
}

.intro-subheading {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-blue);
}

.intro-section p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-dark);
    margin: 0;
}

.intro-welcome-text {
    display: grid;
    gap: 0.75rem;
    padding-left: 1.1rem;
    border-left: 3px solid rgba(0, 146, 63, 0.35);
}

.intro-quote {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.intro-highlights {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.highlight-card {
    background: linear-gradient(135deg, rgba(0,0,52,0.85), rgba(0,146,63,0.8));
    color: var(--white);
    border-radius: 18px;
    padding: 1.6rem;
    box-shadow: 0 18px 35px rgba(0,0,0,0.18);
    display: grid;
    gap: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card i {
    font-size: 1.75rem;
    color: var(--accent-yellow);
}

.highlight-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.highlight-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 40px rgba(0,0,0,0.22);
}

.intro-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: rgba(0, 0, 52, 0.04);
    transition: all 0.3s ease;
}

.btn-link::after {
    content: '\f08e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.9rem;
}

.btn-link:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 52, 0.18);
}

.btn-link:hover::after {
    color: var(--accent-yellow);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #e5a500;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 185, 19, 0.4);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.about {
    padding: 6rem 0;
    background: var(--white);
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.mission {
    padding: 6rem 0;
    background: var(--light-bg);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.mission-video {
    margin: 2rem 0 3rem;
}

.mission-video-player {
    width: 100%;
    height: clamp(240px, 45vw, 560px);
    display: block;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    background: #000;
    object-fit: cover;
    object-position: top center;
}

.mission-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

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

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

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

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

.ministries {
    padding: 6rem 0;
    background: var(--white);
}

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

.ministry-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.ministry-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.ministry-photo-women {
    object-position: center 30%;
}

.ministry-photo-youth {
    object-position: center 35%;
}

.ministry-photo-prayer {
    object-position: center 42%;
}

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

.ministry-content {
    padding: 2rem;
}

.ministry-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.ministry-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.ministry-leader {
    font-size: 0.875rem;
    color: var(--accent-yellow);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.scripture-verse {
    position: relative;
    max-width: min(780px, 92vw);
    margin: 3rem auto;
    padding: 0 1.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.scripture-verse .scripture-text {
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    line-height: 1.6;
    color: var(--primary-blue);
    font-weight: 600;
}

.scripture-verse .scripture-ref {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(60, 43, 27, 0.55);
}


.scripture-verse.scroll-scripture {
    padding: clamp(2.1rem, 3.8vw, 2.6rem) clamp(1.6rem, 4.4vw, 2.5rem);
    background:
        radial-gradient(circle at 9% 16%, rgba(168, 132, 82, 0.12) 0%, rgba(168, 132, 82, 0) 42%),
        radial-gradient(circle at 91% 84%, rgba(155, 118, 70, 0.10) 0%, rgba(155, 118, 70, 0) 40%),
        linear-gradient(180deg, #f7efd7 0%, #f2e3c2 50%, #ecd8b5 100%);
    border-radius: 20px;
    border: 1px solid rgba(150, 110, 66, 0.16);
    box-shadow: 0 18px 36px rgba(58, 42, 28, 0.14), inset 0 0 0 1px rgba(255, 245, 220, 0.5), inset 0 0 12px rgba(142, 108, 67, 0.12), inset 0 -18px 36px rgba(170, 130, 82, 0.08);
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    color: #2b1a0e;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transform-origin: center;
    animation: parchment-unroll-x 2.1s cubic-bezier(0.21, 0.82, 0.25, 1) var(--scroll-delay, 0s) forwards;
    animation-play-state: paused;
    opacity: 0;
}

.scripture-verse.scroll-scripture::before,
.scripture-verse.scroll-scripture::after {
    content: '';
    position: absolute;
    top: -2%;
    bottom: -2%;
    width: clamp(14px, 3.2vw, 26px);
    background:
        radial-gradient(circle at 50% -10%, rgba(0, 0, 0, 0.16) 14%, rgba(0, 0, 0, 0) 44%),
        radial-gradient(circle at 50% 110%, rgba(0, 0, 0, 0.16) 14%, rgba(0, 0, 0, 0) 44%),
        linear-gradient(90deg, rgba(74, 48, 23, 0.85) 0%, rgba(201, 157, 104, 0.95) 50%, rgba(74, 48, 23, 0.85) 100%);
    border-radius: 14px;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.12), inset 0 0 10px rgba(0, 0, 0, 0.12);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.scripture-verse.scroll-scripture::before {
    left: clamp(-12px, -1.2vw, -6px);
}

.scripture-verse.scroll-scripture::after {
    right: clamp(-12px, -1.2vw, -6px);
}

.scroll-scripture .scroll-text {
    font-size: clamp(1.6rem, 3.1vw, 2.2rem);
    font-weight: 600;
    color: #2a1a0d;
    line-height: 1.66;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 0 rgba(255, 245, 225, 0.25);
    opacity: 0;
    transform: translateX(18px);
    transition: opacity 1.1s ease-out, transform 1.1s ease-out;
    transition-delay: 0.35s;
}

.scroll-scripture .scroll-ref {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(120, 92, 58, 0.9);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    transition-delay: 0.65s;
}

.scroll-scripture.scroll-active {
    animation-play-state: running;
}

.scroll-scripture.scroll-active .scroll-text,
.scroll-scripture.scroll-active .scroll-ref {
    opacity: 1;
    transform: translateX(0);
}

.scroll-scripture.scroll-no-motion,
.scroll-scripture.scroll-no-motion::before,
.scroll-scripture.scroll-no-motion::after {
    animation: none !important;
}

.scroll-scripture.scroll-no-motion {
    opacity: 1;
}

.scroll-scripture.scroll-no-motion .scroll-text,
.scroll-scripture.scroll-no-motion .scroll-ref {
    opacity: 1;
    transform: none;
}

@keyframes parchment-unroll-x {
    0% {
        transform: scaleX(0.12) scaleY(0.98);
        opacity: 0;
        filter: blur(6px) saturate(0.6);
    }
    35% {
        transform: scaleX(0.6) scaleY(1.01);
        opacity: 0.6;
        filter: blur(3px) saturate(0.85);
    }
    68% {
        transform: scaleX(1.04) scaleY(1);
        opacity: 0.98;
        filter: blur(0) saturate(1);
    }
    100% {
        transform: scaleX(1) scaleY(1);
        opacity: 1;
        filter: blur(0) saturate(1);
    }
}

.food-donations {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
}

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

.food-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.food-time {
    font-size: 1.25rem;
    color: var(--accent-yellow);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.food-time i {
    font-size: 1.5rem;
}

.food-text p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
}

.food-icon-display {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4rem;
    backdrop-filter: blur(10px);
}

.food-icon-display i {
    font-size: 10rem;
    color: var(--accent-yellow);
}

.food-image .food-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    background: #000;
}

.service-times {
    padding: 6rem 0;
    background: var(--white);
}

.service-schedule {
    max-width: 800px;
    margin: 0 auto;
}

.service-day {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.day-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-yellow);
}

.day-header i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.day-header h3 {
    font-size: 2rem;
    color: var(--primary-blue);
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.service-details h4 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.service-time {
    color: var(--text-light);
    font-weight: 600;
}

.service-includes {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--accent-yellow);
}

.service-includes h4 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-includes li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
}

.service-includes i {
    color: var(--accent-yellow);
    font-size: 1.125rem;
}

.location {
    padding: 6rem 0;
    background: var(--light-bg);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.location-info {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.location-address {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.location-address i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.location-address h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

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

.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-map iframe {
    display: block;
}

.nearby-cities-note {
    margin-top: 1.5rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-left: 4px solid var(--accent-green);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
    box-shadow: var(--shadow);
}

@media (max-width: 968px) {
    .nearby-cities-note {
        margin-top: 1rem;
        padding: 0.9rem 1rem;
    }
}

.contact {
    padding: 6rem 0;
    background: var(--white);
}

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

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

.contact-form {
    margin-top: 2rem;
    text-align: left;
}

.contact-form form {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

form#visitorForm {
    scroll-margin-top: 100px;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.form-group {
    flex: 1 1 240px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full {
    flex: 1 1 100%;
}

.contact-form label {
    font-weight: 600;
    color: var(--primary-blue);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    background: #fff;
}

.captcha-alt {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.scroll-select {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0.4rem;
    background: #fff;
    font-size: 1rem;
    color: var(--text-dark);
    max-height: 72px;
    overflow-y: auto;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(248,193,0,0.2);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,0,0,0.12);
}

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.faq-item h3::before {
    content: "\f059";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-blue);
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(248,193,0,0.14);
    border: 2px solid rgba(248,193,0,0.35);
}

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

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.footer {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

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

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

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.7;
}

.footer-address p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--accent-yellow);
}

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

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

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

.footer-social a:hover {
    background: var(--accent-yellow);
    color: var(--text-dark);
    transform: translateY(-3px);
}

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

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .lang-switcher {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .lang-btn {
        width: 100%;
        justify-content: center;
    }

    .lang-group {
        justify-content: center;
    }
    
    .intro-card {
        padding: 48px 36px;
    }

    .intro-header {
        text-align: center;
        align-items: center;
    }

    .intro-lead {
        max-width: none;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .intro-copy {
        gap: 1.75rem;
    }

    .intro-links {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-info-item {
        width: 100%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        order: 1;
    }
    
    .about-image {
        order: 2;
    }
    
    .food-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .food-text {
        order: 1;
    }
    
    .food-image {
        order: 2;
    }
    
    .food-icon-display {
        padding: 2rem;
    }
    
    .food-icon-display i {
        font-size: 6rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-includes ul {
        grid-template-columns: 1fr;
    }

    .scripture-verse {
        margin: 3.5rem auto;
    }

    .scripture-verse.scroll-scripture {
        padding: clamp(2.55rem, 6vw, 3.2rem) clamp(1.8rem, 5vw, 2.6rem);
    }
}

@media (max-width: 640px) {
    .hero {
        margin-top: 70px;
        min-height: 80vh;
        padding: 0;
    }
    .hero-image { background-position: center 10%; }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.15;
    }
    
    .hero-subtitle { font-size: 1rem; }
    
    .hero-text { font-size: 1rem; }

    .hero-content { padding: 110px 18px 60px; }

    .hero-buttons { flex-direction: column; gap: 12px; }

    .intro-card {
        padding: 42px 24px;
    }

    .intro-card h2 {
        font-size: 2.1rem;
    }

    .intro-copy {
        gap: 1.5rem;
    }

    .intro-section,
    .intro-welcome-text {
        padding-left: 0.9rem;
    }

    .intro-lead,
    .intro-section p,
    .intro-welcome-text p {
        font-size: 1rem;
    }
    
    .intro-highlights {
        grid-template-columns: 1fr;
    }

    .intro-links {
        width: 100%;
    }

    .btn-link {
        width: 100%;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-text h2,
    .food-text h2 {
        font-size: 2rem;
    }
    
    .mission-grid,
    .ministries-grid {
        grid-template-columns: 1fr;
    }

    .ministry-photo-women {
        object-position: center 20%;
    }
    
    .ministry-photo-youth {
        object-position: center 28%;
    }

    .ministry-photo-prayer {
        object-position: center 34%;
    }
    
    .service-day {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .scripture-verse {
        margin: 3rem auto;
        padding: 0 1.2rem;
    }

    .scripture-verse.scroll-scripture {
        padding: clamp(2.25rem, 11vw, 2.8rem) clamp(1.2rem, 12vw, 1.9rem);
        border-radius: 24px;
    }

    .scroll-scripture .scroll-text {
        font-size: clamp(1.35rem, 5.4vw, 1.8rem);
    }

    .scroll-scripture .scroll-ref {
        font-size: 0.82rem;
        letter-spacing: 0.08em;
    }

    .form-row {
        flex-direction: column;
        gap: 0.6rem;
        margin-bottom: 0.6rem;
    }

    .form-group {
        gap: 0.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-scripture {
        animation: none !important;
    }

    .scroll-scripture::before,
    .scroll-scripture::after {
        animation: none !important;
    }
}
