* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2c5282;
    --secondary: #f39c12;
    --dark: #1e3a5f;
    --light: #f8f9fa;
    --text: #2c3e50;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.location {
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeInLeft 1s;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.social-links {
    display: flex;
    gap: 15px;
    animation: fadeInRight 1s;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.social-links a {
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.5);
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

header.scrolled {
    padding: 5px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    transition: padding 0.3s;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    animation: fadeIn 1s;
    margin-left: -20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.logo-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.4);
    animation: logoFloat 3s ease-in-out infinite;
    position: relative;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text h2 {
    font-size: 19px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-text p {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: all 0.3s;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}

.back-btn {
    background: var(--secondary) !important;
    color: var(--white) !important;
    padding: 12px 35px !important;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.back-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--dark);
    transition: all 0.3s;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Ministry Hero */
.ministry-hero {
    height: 70vh;
    background: linear-gradient(rgba(30, 58, 95, 0.5), rgba(30, 58, 95, 0.5)), 
                url('./image/heromen.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ministry-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent, rgba(0,0,0,0.3));
}

@keyframes pulseOverlay {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 40px;
    animation: heroFadeIn 1.5s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ministry-label {
    color: var(--secondary);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 700;
    animation: slideDown 1s ease-out 0.3s both;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ministry-hero h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 5px 30px rgba(0,0,0,0.5);
    animation: slideUp 1s ease-out 0.5s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ministry-tagline {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.7s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-cta {
    display: inline-flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.cta-btn {
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.4);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transition: left 0.5s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.6);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-5px);
}

/* About Ministry Section */
.about-ministry {
    padding: 120px 40px;
    background: var(--white);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ministry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ministry-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ministry-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s;
}

.ministry-img:first-child {
    grid-column: 1 / -1;
    height: 350px;
}

.ministry-img:not(:first-child) {
    height: 250px;
}

.ministry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.ministry-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.ministry-img:hover img {
    transform: scale(1.1);
}

.section-label {
    color: var(--secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 48px;
    color: var(--dark);
    margin-bottom: 30px;
    font-weight: 900;
    line-height: 1.2;
}

.ministry-description {
    font-size: 17px;
    line-height: 2;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.mission-statement {
    background: var(--light);
    padding: 35px 40px;
    border-left: 5px solid var(--secondary);
    border-radius: 15px;
    margin: 40px 0;
    font-style: italic;
    font-size: 20px;
    color: var(--dark);
    position: relative;
}

.mission-statement::before {
    content: '"';
    font-size: 80px;
    position: absolute;
    top: -20px;
    left: 20px;
    color: rgba(243, 156, 18, 0.2);
    font-family: Georgia, serif;
}

/* What We Do Section */
.what-we-do {
    padding: 120px 40px;
    background: var(--light);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.activity-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s;
    position: relative;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--secondary);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s;
}

.activity-card:hover::before {
    transform: scaleX(1);
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.activity-card h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.activity-card p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.schedule-badge {
    display: inline-block;
    background: var(--light);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

/* Get Involved Section */
.get-involved {
    padding: 120px 40px;
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.get-involved::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(243, 156, 18, 0.1), transparent 50%);
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}
/* NEW - USE THIS */
.involvement-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 45px 35px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(0, 0);
    will-change: transform;
}

.involvement-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary);
    transform: translate(0, -10px) !important;
}
/* NEW - USE THIS */
.involvement-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    transform: scale(1) rotate(0deg);
    display: inline-block;
}

.involvement-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 800;
}

.involvement-card ul {
    list-style: none;
    margin-top: 20px;
}

.involvement-card li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.involvement-card li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 900;
    font-size: 18px;
}

/* Contact Section */
.ministry-contact {
    padding: 120px 40px;
    background: var(--light);
}

.contact-info-box {
    max-width: 800px;
    margin: 60px auto 0;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--secondary);
}

.contact-item {
    margin-bottom: 35px;
    padding: 25px;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-item h4 {
    font-size: 14px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-item p {
    font-size: 18px;
    color: var(--dark);
    font-weight: 700;
}

/* Gallery Section */
.ministry-gallery {
    padding: 120px 40px;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.gallery-item {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.4s;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
}

/* Footer - MATCHING STYLE.CSS */
footer {
    background: #0d1b2a;
    color: var(--white);
    padding: 100px 40px 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3 {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary);
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.footer-section ul li a::before {
    content: '\2192';
    color: var(--secondary);
    transition: transform 0.3s;
}

.footer-section ul li a:hover {
    color: var(--secondary);
    padding-left: 10px;
}

.footer-section ul li a:hover::before {
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 20px;
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #7f8c8d;
    font-size: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50px;
    font-size: 15px;
    transition: all 0.3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.4);
    background: #e67e22;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.6);
}

/* Fade In Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile back button - hidden on desktop */
.mobile-back-btn {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .ministry-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ministry-hero h1 {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 200px;
        right: -380px;
        width: 320px;
        height: auto;
        max-height: calc(100vh - 100px);
        background: var(--dark);
        flex-direction: column;
        padding: 40px 30px;
        box-shadow: -5px 0 25px rgba(0,0,0,0.25);
        transition: right 0.4s ease;
        z-index: 999;
        overflow-y: auto;
        border-radius: 12px;
    }

    .nav-menu.active {
        display: flex;
        right: 20px;
    }

    .nav-menu a {
        color: var(--white);
        font-size: 18px;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        transition: all 0.3s ease;
        text-align: left;
        font-weight: 500;
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }

    .nav-menu a:hover {
        color: var(--secondary);
        padding-left: 8px;
    }

    /* Hide back button from mobile menu */
    .nav-menu .back-btn {
        display: none;
    }

    /* Add fixed back button for mobile */
    .mobile-back-btn {
        display: block;
        position: fixed;
        top: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        background: var(--secondary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        text-decoration: none;
        font-size: 24px;
        box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
        z-index: 1001;
        transition: all 0.3s ease;
    }

    .mobile-back-btn:hover {
        background: #e67e22;
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 32px;
        height: 26px;
        cursor: pointer;
        position: relative;
        z-index: 1000;
    }

    .menu-toggle span {
        width: 100%;
        height: 3px;
        background-color: var(--dark);
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .ministry-hero {
        height: 60vh;
        background-attachment: scroll;
    }

    .ministry-hero h1 {
        font-size: 36px;
    }

    .ministry-tagline {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
    }

    .about-ministry,
    .what-we-do,
    .get-involved,
    .ministry-contact,
    .ministry-gallery {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .ministry-images {
        grid-template-columns: 1fr;
    }

    .ministry-img:first-child,
    .ministry-img:not(:first-child) {
        height: 250px;
    }

    .activities-grid,
    .involvement-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    .logo-text h2 {
        font-size: 14px;
        letter-spacing: 0.5px;
        line-height: 1.2;
        white-space: normal;
        max-width: 200px;
    }

   footer {
    padding: 40px 20px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1 1 100%;
}

/* Make Quick Links and Our Ministries appear side by side on mobile */
.footer-section:nth-child(2),
.footer-section:nth-child(3) {
    flex: 1 1 calc(50% - 15px);
}
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .footer-bottom {
        padding-top: 30px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .ministry-hero h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    nav {
        padding: 15px 20px;
    }
}
/* Language Selector - Text Only, No Flags */
.language-selector {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9998;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 2px solid var(--secondary);
    padding: 12px 22px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-family: inherit;
}

.language-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
    background: var(--secondary);
}

.language-btn:hover .language-text,
.language-btn:hover .arrow-icon {
    color: var(--white);
}

.language-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.arrow-icon {
    font-size: 10px;
    color: var(--secondary);
    transition: all 0.3s;
}

.language-btn:hover .arrow-icon {
    color: var(--white);
}

/* Language Menu (Popup Upward) */
.language-menu {
    position: absolute;
    bottom: 70px;
    left: 0;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
}

.language-option:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateX(5px);
}

/* Hide Google Translate Elements */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.skiptranslate {
    display: none !important;
}

#google_translate_element {
    display: none !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .language-selector {
        bottom: 20px;
        left: 20px;
    }

    .language-btn {
        padding: 10px 18px;
        gap: 8px;
    }

    .language-text {
        font-size: 13px;
    }

    .language-menu {
        min-width: 160px;
        bottom: 60px;
    }

    .language-option {
        padding: 10px 16px;
        font-size: 14px;
    }
}