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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1e40af;
    letter-spacing: -0.5px;
}

.logo img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    object-fit: cover;
}

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

.nav-links a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: rgba(30, 64, 175, 0.1);
    color: #1e40af;
}

.nav-links a.active {
    background: linear-gradient(135deg, #3b82f6, #ef4444);
    color: white;
}

.nav-cta {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    color: white !important;
    padding: 12px 28px !important;
    border-radius: 25px !important;
    margin-left: 12px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.nav-give {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: white !important;
    padding: 12px 28px !important;
    border-radius: 25px !important;
    margin-left: 8px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #1e40af;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
    }
}

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

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: #64748b;
    transition: color 0.3s ease;
    background: none;
    border: none;
}

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

.modal-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-subtitle {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 30px;
}

.payment-option {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #10b981;
    transform: translateX(5px);
}

.payment-label {
    font-size: 12px;
    font-weight: 700;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.payment-value {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    word-break: break-all;
}

.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Force iframe video backgrounds to fill completely */
.hero iframe.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.88) 0%, rgba(59, 130, 246, 0.78) 50%, rgba(220, 38, 38, 0.88) 100%);
    z-index: 1;
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E");
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    padding: 0 40px;
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease;
}

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

.hero h1 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: white;
    color: #dc2626;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

.btn-green {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.welcome-home {
    padding: 120px 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.welcome-home h2 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #1e40af, #3b82f6, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.subtitle {
    font-size: 24px;
    color: #64748b;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.6;
}

.welcome-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #1e40af, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome-message {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.welcome-message p {
    font-size: 20px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.gallery-section {
    padding: 100px 40px;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured-sermons {
    padding: 100px 40px;
    background: #f8fafc;
}

.sermons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.sermon-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.sermon-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    background: #1e293b;
}

.sermon-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sermon-info {
    padding: 30px;
}

.sermon-date {
    color: #ef4444;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.sermon-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.sermon-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 16px;
}

.prophet-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

.prophet-image img {
    background-color: white;
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.prophet-text h2 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 30px;
    color: white;
}

.prophet-text h3 {
    font-size: 28px;
    color: #60a5fa;
    margin-bottom: 30px;
    font-weight: 600;
}

.prophet-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}

.prophet-quote {
    background: rgba(96, 165, 250, 0.1);
    border-left: 4px solid #60a5fa;
    padding: 30px;
    margin: 40px 0;
    border-radius: 15px;
    font-style: italic;
    font-size: 20px;
}

.services-section {
    padding: 80px 40px;
    background: white;
    color: #1e293b;
}

.services-section h2 {
    color: #1e293b;
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1e40af, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(30, 64, 175, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: white;
    border-color: #1e40af;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #1e293b;
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    color: #64748b;
    font-size: 14px;
}

.service-time {
    margin-top: 16px;
    font-weight: 700;
    font-size: 16px;
    color: #1e40af;
}

.about-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero h1 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.about-hero p {
    font-size: 24px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.about-content {
    padding: 100px 40px;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.about-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 5px solid transparent;
}

.about-card:nth-child(1) { border-top-color: #1e40af; }
.about-card:nth-child(2) { border-top-color: #dc2626; }
.about-card:nth-child(3) { border-top-color: #3b82f6; }

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

.about-card-icon {
    font-size: 56px;
    margin-bottom: 25px;
}

.about-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e293b;
    font-weight: 800;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1e40af, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 20px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

section {
    padding: 100px 40px;
}

.ministries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.ministry-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
}

.ministry-card:hover {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    transform: scale(1.05);
}

.event-list-modern {
    display: grid;
    gap: 30px;
    margin-top: 60px;
}

.event-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 140px 200px 1fr auto;
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.event-item:nth-child(odd) {
    border-left: 5px solid #1e40af;
}

.event-item:nth-child(even) {
    border-left: 5px solid #dc2626;
}

.event-date {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-item:nth-child(even) .event-date {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.event-date .day {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
}

.event-date .month {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    padding: 30px;
}

.event-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.event-btn {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-item:nth-child(even) .event-btn {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.branch-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-10px);
}

.branch-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 40px 30px;
    color: white;
    text-align: center;
}

.branch-card:nth-child(even) .branch-header {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.branch-body {
    padding: 35px 30px;
}

.branch-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.branch-btn {
    width: 100%;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
}

.contact-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

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

.contact-info {
    color: white;
}

.contact-info h2 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 30px;
    color: white;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #ef4444);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 13px;
    color: #1e293b;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 16px;
    background: #f8fafc;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    background: white;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

footer {
    background: #0f172a;
    color: white;
    padding: 80px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 800;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.7);
    line-height: 2;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.footer-bottom p {
    margin: 8px 0;
}

.footer-bottom a {
    color: #60a5fa;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

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

.dev-modal.active {
    display: flex;
}

.dev-modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.dev-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #64748b;
    background: none;
    border: none;
    transition: color 0.3s ease;
}

.dev-modal-close:hover {
    color: #ef4444;
}

.dev-modal-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: white;
    margin: 0 auto 20px;
}

.dev-modal-content h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
}

.dev-modal-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 15px;
    margin-bottom: 30px;
}

.dev-modal-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dev-modal-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.dev-modal-card:hover {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    transform: translateX(5px);
}

.dev-modal-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.dev-modal-card-content {
    flex: 1;
}

.dev-modal-card-label {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.dev-modal-card a {
    color: #1e40af;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.dev-modal-card a:hover {
    text-decoration: underline;
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 1024px) {
    .prophet-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .event-item {
        grid-template-columns: 140px 1fr auto;
    }

    .event-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        border-radius: 0 0 20px 20px;
        max-height: calc(100vh - 75px);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 15px 20px;
        margin: 5px 0;
        text-align: center;
    }

    .nav-cta,
    .nav-give {
        margin-left: 0 !important;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo {
        font-size: 24px;
    }

    .logo img {
        height: 35px;
        width: 35px;
    }

    /* Hero video - FORCE FULL STRETCH on mobile */
    .video-background,
    .hero iframe.video-background {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 200% !important;
        height: 200% !important;
        min-width: 200% !important;
        min-height: 200% !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: cover !important;
    }

    /* Ensure hero container doesn't have overflow issues */
    .hero {
        overflow: hidden !important;
    }

    .hero h1, .about-hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

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

    .btn {
        width: 100%;
    }

    .welcome-home h2,
    .prophet-text h2,
    .section-header h2 {
        font-size: 42px;
    }

    .subtitle {
        font-size: 18px;
    }

    .welcome-message {
        padding: 40px 30px;
    }

    .welcome-message p {
        font-size: 16px;
    }

    section {
        padding: 60px 20px;
    }

    .about-grid,
    .ministries-grid {
        grid-template-columns: 1fr;
    }

    .event-item {
        grid-template-columns: 1fr;
    }

    .event-date {
        flex-direction: row;
        gap: 15px;
        padding: 20px;
    }

    .event-date .day {
        font-size: 36px;
    }

    .event-date .month {
        font-size: 16px;
    }

    .event-actions {
        padding: 20px;
    }

    .contact-form-container {
        padding: 35px 25px;
    }

    .contact-info h2 {
        font-size: 42px;
    }

    .branches-grid,
    .sermons-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}