:root {
    --navy-dark: #0c1733;
    --navy-blue: #1a2844;
    --orange-primary: #ff6b35;
    --orange-hover: #ff8555;
    --white: #ffffff;
    --cream: #f8f9fa;
    --gray-text: #333333;
}

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

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

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--orange-primary);
}

.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: #00bcd4;
    color: var(--white);
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 70px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-overlay-left {
    position: absolute;
    bottom: 50px;
    left: 40px;
    color: white;
    z-index: 20;
    max-width: 600px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    text-align: left;
}

.hero-overlay-left h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-overlay-left p {
    font-size: clamp(0.9rem, 1.8vw, 1.4rem);
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.3;
}

.hero-overlay-left .tagline {
    font-size: clamp(0.85rem, 1.8vw, 1.2rem);
    font-style: italic;
    opacity: 0.95;
    margin-bottom: 15px;
}

.hero-cta-buttons-bottom {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 25px;
}

.hero-cta-primary {
    padding: 12px 28px;
    background: var(--orange-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.3s;
    border: 2px solid var(--orange-primary);
}

.hero-cta-primary:hover {
    background: var(--orange-hover);
    border-color: var(--orange-hover);
}

.hero-cta-secondary {
    padding: 12px 28px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: 2px solid var(--white);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-service-card-right {
    position: absolute;
    right: 40px;
    bottom: 50px;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    min-width: 220px;
    max-width: 250px;
    z-index: 25;
}

.hero-service-card-right h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-text);
    margin-bottom: 12px;
    text-align: center;
}

.service-time-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.service-time-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-time-item .time {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-text);
}

.service-time-item .label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 1px;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 40px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 20;
    transition: background 0.3s;
    border-radius: 50%;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

section {
    padding: 80px 20px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.section-title-large {
    font-size: clamp(3rem, 6vw, 4.5rem) !important;
    font-weight: 900 !important;
    color: #f97316;
}

.section-subtitle-large {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.service-times-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.service-times-section h2 {
    color: white;
}

.service-times {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card .time {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fbbf24;
    margin: 15px 0;
}

.service-card .description {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* NEW HERE SECTION */
.new-here-section {
    background: linear-gradient(135deg, #e0f2fe 0%, #cffafe 100%);
    padding: 80px 20px;
}

.new-here-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.new-here-image {
    display: flex;
    justify-content: center;
}

.new-here-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    object-fit: cover;
}

.new-here-text {
    padding: 20px 0;
}

.new-here-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0c1733;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.new-here-text h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #0c1733;
    line-height: 1.2;
    margin-bottom: 20px;
}

.new-here-intro {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.new-here-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 25px;
}

.quote-box {
    background: white;
    border-left: 5px solid #0c1733;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    font-style: italic;
    color: #1a1a1a;
}

.quote-box p {
    margin: 0;
    font-size: 1rem;
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.btn-primary {
    padding: 12px 28px;
    background: #0c1733;
    color: white;
    border: 2px solid #0c1733;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background: #1a2844;
    border-color: #1a2844;
}

.btn-secondary {
    padding: 12px 28px;
    background: transparent;
    color: #0c1733;
    border: 2px solid #0c1733;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.btn-secondary:hover {
    background: #0c1733;
    color: white;
}

/* MODAL STYLES */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow: auto;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #333;
}

.modal-content h2 {
    color: #0c1733;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.modal-content h3 {
    color: #0c1733;
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.modal-content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

.modal-list {
    list-style-position: inside;
    color: #475569;
    margin-bottom: 20px;
    padding-left: 20px;
}

.modal-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.celebrations-section {
    background: #f9fafb;
}

.celebrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.celebration-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.celebration-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.celebration-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.celebration-card .card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.celebration-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
    height: 4.8rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.celebration-card .date {
    color: #f97316;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.celebration-card .description {
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.8rem;
}

.ministries-section {
    background: linear-gradient(135deg, #0c1e3c 0%, #1a3a52 100%);
    padding: 80px 20px;
}

.ministries-label {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #00bcd4;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.ministries-title {
    text-align: center;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.ministries-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.ministries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto 30px;
}

.ministry-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 260px;
    display: flex;
    align-items: stretch;
}

.ministry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

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

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

.ministry-card.ministry-card-image {
    background: transparent;
}

.ministry-card-cyan {
    background: #00bcd4;
}

.ministry-card-cyan .card-overlay {
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
}

.ministry-card-teal {
    background: #00897b;
}

.ministry-card-teal .card-overlay {
    background: linear-gradient(135deg, #00897b 0%, #006064 100%);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: white;
    z-index: 2;
}

.kids-ministry-text .card-overlay {
    position: relative;
    padding: 35px;
}

.card-overlay h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
    color: white;
}

.card-overlay p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
    color: white;
}

.ministry-card-dark {
    background: #1a1a2e;
}

.ministry-card-dark .card-overlay {
    background: linear-gradient(135deg, rgba(26,26,46,0.95) 0%, rgba(12,30,52,0.95) 100%);
}

.ministry-card-dark .card-overlay h3 {
    color: #fbbf24;
}

.ministry-card-dark .card-overlay p {
    color: #fbbf24;
}

/* Kids Ministry Special Row */
.kids-ministry-row {
    display: flex;
    gap: 20px;
    margin-top: 0;
    align-items: stretch;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    height: 260px;
}

.kids-ministry-image {
    flex: 0 0 42%;
    border-radius: 16px;
    overflow: hidden;
}

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

.kids-ministry-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.kids-ministry-text img {
    display: none;
}

.kids-ministry-text .card-overlay {
    position: relative;
    height: 100%;
    justify-content: center;
}

.ministries-button-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.btn-explore-ministries {
    padding: 14px 40px;
    background: #00bcd4;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.btn-explore-ministries:hover {
    background: #0097a7;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,188,212,0.3);
}

/* SERVICE TIMES & ACTIVITIES SECTION */
.service-times-activities-section {
    background: linear-gradient(135deg, #e0f2fe 0%, #cffafe 100%);
    padding: 80px 20px;
}

.service-times-activities-section h2 {
    text-align: center;
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 900;
    color: #0c1733;
    margin-bottom: 12px;
}

.service-times-activities-section .section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

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

.activity-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.card-icon {
    color: #00bcd4;
    flex-shrink: 0;
}

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0c1733;
    margin: 0;
}

.activity-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.activity-day {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-day h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0c1733;
    margin: 0;
    text-transform: capitalize;
}

.activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.activity-item span:first-child {
    font-size: 0.95rem;
    color: #0c1733;
    font-weight: 500;
}

.activity-item .time {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.online-activity {
    background: #f5f9fc;
    padding: 18px;
    border-radius: 10px;
    border-left: 4px solid #00bcd4;
}

.online-activity h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0c1733;
    margin: 0 0 6px 0;
}

.online-activity p {
    font-size: 0.85rem;
    color: #666;
    margin: 4px 0;
}

.online-activity .time {
    font-size: 0.85rem;
    color: #0c1733;
    font-weight: 600;
    display: block;
    margin-top: 8px;
}

.transportation {
    background: #f5f9fc !important;
    border-left-color: #00bcd4 !important;
}

.transportation h4 {
    margin-top: 0 !important;
}

.gallery-section {
    background: #f9fafb;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #f97316;
    background: white;
    color: #f97316;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #f97316;
    color: white;
}

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

.gallery-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-section {
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 1;
    background: #f0f0f0;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .gallery-grid,
    .gallery-section-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .gallery-grid,
    .gallery-section-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
}

.video-item {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: #000;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: #000;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.video-item:hover .video-play-button {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-title {
    padding: 15px;
    background: #1a1a1a;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-section {
    background: linear-gradient(135deg, #0c1733 0%, #1a2844 100%);
    color: white;
    padding: 60px 0;
}

.mission-header {
    text-align: center;
    margin-bottom: 50px;
}

.mission-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 14px 24px;
    border-radius: 25px;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mission-header h2 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 15px;
    color: white;
}

.mission-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

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

.mission-image-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mission-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.mission-churches h3 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.mission-churches-intro {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 30px;
    line-height: 1.7;
    font-weight: 400;
}

.churches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.church-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #1e3a8a;
}

.church-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.church-card p {
    font-size: 0.85rem;
    color: #64748b;
}

.church-card-full {
    grid-column: 1 / -1;
}

.mission-cta {
    background: rgba(0, 0, 0, 0.15);
    padding: 25px;
    border-radius: 15px;
    margin-top: 25px;
}

.mission-cta-content {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.mission-cta-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: white;
}

.mission-cta-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-support-mission {
    width: 100%;
    padding: 14px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-support-mission:hover {
    background: #ff8555;
}

@media (max-width: 768px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .churches-grid {
        grid-template-columns: 1fr;
    }
}

.visit-section {
    background: white;
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #0c1733 0%, #1a2844 100%);
    color: white;
    padding: 80px 0 0 0;
    font-size: 0.95rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
    gap: 50px;
    align-items: flex-start;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-about {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 100%;
}

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

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

.footer-logo-title {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer-logo-subtitle {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul,
.footer-times ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-times li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6b35;
}

.service-times-list {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.footer-address {
    margin: 0 0 15px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.footer-phone {
    margin: 0 0 20px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.btn-view-map {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6b35;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.btn-view-map:hover {
    background: #ff8555;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.social-icon:hover {
    background: #ff6b35;
    transform: scale(1.1);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 20px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-tagline {
    font-style: italic;
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.footer-copyright {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-about {
        grid-column: auto;
        max-width: 100%;
    }
    
    .footer-column h4 {
        margin-bottom: 15px;
    }
}

.visit-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
}

.address-card {
    background: #f9fafb;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.address-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.address-link {
    display: block;
    color: #f97316;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
    line-height: 1.6;
}

.address-link:hover {
    text-decoration: underline;
}

.directions-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #f97316;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.directions-btn:hover {
    background: #ea580c;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    font-weight: 300;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 40px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 50%;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 1024px) {
    .hero-overlay-left {
        max-width: 500px;
        left: 20px;
    }
    
    .hero-service-card-right {
        min-width: 200px;
        max-width: 220px;
    }
}

@media (max-width: 1024px) {
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .ministries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .kids-ministry-row {
        flex-direction: column;
        height: auto;
    }
    
    .kids-ministry-image {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .kids-ministry-text {
        flex: 0 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .language-switcher {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        gap: 4px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .logo-title {
        font-size: 16px;
    }
    
    .logo-subtitle {
        font-size: 10px;
    }
    
    .hero-section {
        height: 50vh;
        min-height: 350px;
        padding-top: 70px;
        padding-bottom: 20px;
        margin-bottom: 40px;
    }
    
    .hero-overlay-left {
        position: absolute;
        bottom: 80px;
        left: 15px;
        right: 15px;
        text-align: left;
        max-width: none;
    }
    
    .hero-overlay-left h1 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .hero-overlay-left p {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .hero-overlay-left .tagline {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .hero-cta-buttons-bottom {
        flex-direction: column;
        gap: 10px;
        justify-content: flex-start;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        text-align: center;
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    .hero-service-card-right {
        position: absolute;
        right: 10px;
        bottom: 10px;
        min-width: 120px;
        max-width: 130px;
        padding: 8px;
        margin-top: 0;
        width: auto;
        z-index: 50;
    }
    
    .hero-service-card-right h3 {
        font-size: 0.75rem;
        margin-bottom: 4px;
        line-height: 1.2;
    }
    
    .service-time-item {
        margin-bottom: 3px;
        padding-bottom: 3px;
    }
    
    .service-time-item .time {
        font-size: 0.65rem;
    }
    
    .service-time-item .label {
        font-size: 0.55rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 24px;
    }
    
    section {
        padding: 60px 15px;
        margin: 0;
    }
    
    h2 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin-bottom: 30px;
    }
    
    .service-times,
    .celebrations-grid,
    .ministries-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ministry-card {
        height: 200px;
    }
    
    .kids-ministry-row {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }
    
    .kids-ministry-image {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
    }
    
    .kids-ministry-text {
        flex: 0 0 auto;
    }
    
    .ministries-label {
        font-size: 1.1rem;
    }
    
    .ministries-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    
    .ministries-subtitle {
        font-size: 0.95rem;
    }
    
    .gallery-filter {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .service-times-activities-section {
        padding: 60px 15px;
    }
    
    .service-times-activities-section h2 {
        font-size: clamp(1.8rem, 5vw, 3rem);
    }
    
    .service-times-activities-section .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .activity-card {
        padding: 20px;
    }
    
    .card-header h3 {
        font-size: 1.1rem;
    }
    
    .activity-day h4 {
        font-size: 0.9rem;
    }
    
    .activity-item span:first-child {
        font-size: 0.9rem;
    }
    
    .new-here-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .new-here-section {
        padding-top: 60px !important;
    }
    
    .new-here-image img {
        max-width: 100%;
    }
    
    .new-here-text h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    
    .new-here-intro {
        font-size: 1rem;
    }
    
    .new-here-text p {
        font-size: 0.95rem;
    }
    
    .button-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .celebration-card {
        padding: 20px 15px;
    }
    
    .celebration-card h3 {
        font-size: 1.2rem;
    }
    
    .celebration-card p {
        font-size: 0.9rem;
    }
    
    .celebrations-modal-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .mission-badge {
        font-size: 1.2rem;
        padding: 12px 20px;
    }
    
    .mission-header h2 {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
    }
    
    .mission-cards {
        grid-template-columns: 1fr;
    }
    
    .mission-card {
        padding: 25px 20px;
    }
    
    .mission-card h3 {
        font-size: 1.3rem;
    }
    
    .mission-cta-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .visit-section h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    
    .visit-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .address-card {
        padding: 25px 20px;
    }
    
    .address-card h3 {
        font-size: 1.4rem;
    }
    
    .address-link {
        font-size: 1.1rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .main-footer {
        padding: 60px 0 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 15px;
    }
    
    .footer-logo {
        justify-content: center;
        text-align: center;
        gap: 20px;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-column p,
    .footer-column li {
        font-size: 0.9rem;
    }
    
    .footer-column ul {
        font-size: 0.9rem;
    }
    
    .footer-address {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-phone {
        font-size: 0.9rem;
    }
    
    .btn-view-map {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .footer-social {
        margin-top: 15px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        padding: 30px 15px;
    }
    
    .footer-tagline {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .service-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
    
    .service-card .time {
        font-size: 2rem;
    }
    
    .service-card .description {
        font-size: 0.95rem;
    }
    
    .modal-content {
        width: 90%;
        max-width: 90%;
        padding: 30px 20px;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .modal-content h3 {
        font-size: 1.2rem;
    }
    
    .modal-content p,
    .modal-list li {
        font-size: 0.95rem;
    }
    
    .activity-card {
        padding: 18px;
    }
    
    .card-header h3 {
        font-size: 1rem;
    }
    
    .activity-item {
        padding: 8px 0;
    }
    
    .activity-item span:first-child,
    .activity-day h4 {
        font-size: 0.85rem;
    }
    
    .online-activity {
        padding: 14px;
    }
    
    .online-activity h4,
    .online-activity p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 10px 10px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo-title {
        font-size: 14px;
    }
    
    .logo-subtitle {
        font-size: 9px;
    }
    
    .language-switcher {
        right: 10px;
    }
    
    .lang-btn {
        padding: 5px 8px;
        font-size: 10px;
    }
    
    .hero-section {
        height: 50vh;
        min-height: 300px;
        padding-top: 70px;
    }
    
    .hero-overlay-left {
        bottom: 50px;
        left: 10px;
        right: 10px;
    }
    
    .hero-overlay-left h1 {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .hero-overlay-left p {
        font-size: 0.8rem;
    }
    
    .hero-overlay-left .tagline {
        font-size: 0.75rem;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .hero-service-card-right {
        right: 10px;
        bottom: 10px;
        min-width: 140px;
        max-width: 160px;
        padding: 10px;
    }
    
    .hero-service-card-right h3 {
        font-size: 0.85rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    section {
        padding: 40px 12px;
    }
    
    h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .ministries-label {
        font-size: 1rem;
    }
    
    .ministries-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .ministry-card {
        height: 180px;
    }
    
    .kids-ministry-row {
        gap: 12px;
    }
    
    .kids-ministry-image {
        height: 180px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
    
    .service-times {
        gap: 12px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card .time {
        font-size: 1.8rem;
    }
    
    .service-card .description {
        font-size: 0.85rem;
    }
    
    .celebrations-grid {
        gap: 12px;
    }
    
    .celebration-card {
        padding: 15px 12px;
    }
    
    .celebration-card h3 {
        font-size: 1.1rem;
    }
    
    .celebration-card p {
        font-size: 0.8rem;
    }
    
    .new-here-content {
        gap: 20px;
    }
    
    .new-here-text h2 {
        font-size: 1.5rem;
    }
    
    .button-group {
        gap: 8px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .mission-badge {
        font-size: 1rem;
        padding: 10px 16px;
    }
    
    .mission-card {
        padding: 20px 15px;
    }
    
    .mission-card h3 {
        font-size: 1.2rem;
    }
    
    .mission-card p {
        font-size: 0.85rem;
    }
    
    .mission-cards {
        gap: 12px;
    }
    
    .address-card {
        padding: 20px 15px;
    }
    
    .address-card h3 {
        font-size: 1.2rem;
    }
    
    .map-container {
        height: 250px;
    }
    
    .footer-content {
        padding: 30px 12px;
    }
    
    .footer-logo img {
        height: 35px;
    }
    
    .footer-column h4 {
        font-size: 0.9rem;
    }
    
    .footer-column p,
    .footer-column li {
        font-size: 0.8rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding: 25px 12px;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
    }
    
    .modal-content {
        padding: 20px 15px;
    }
    
    .modal-content h2 {
        font-size: 1.3rem;
    }
    
    .modal-content h3 {
        font-size: 1.05rem;
    }
}
