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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    background: #fff;
    color: #1d1d1f;
    -webkit-font-smoothing: antialiased;
}

/* Updated Navigation Logo Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 22px;
    height: 60px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo-container:hover {
    opacity: 0.8;
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-container:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    font-size: 21px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: #1d1d1f;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

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

.menu-toggle span {
    width: 18px;
    height: 1px;
    background: #1d1d1f;
    transition: 0.3s;
}

/* Mobile Responsive */
@media (max-width: 734px) {
    .nav-content {
        height: 56px;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 56px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: saturate(180%) blur(20px);
        width: 100%;
        padding: 40px 22px;
        transition: right 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        gap: 24px;
    }

    .nav-links a {
        font-size: 17px;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }
}

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

.menu-toggle span {
    width: 18px;
    height: 1px;
    background: #1d1d1f;
    transition: 0.3s;
}

section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 22px;
    z-index: 10;
    background: #fff;
    margin: 0;
}

.hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 50%, rgba(51, 65, 85, 0.95) 100%),
                url('images/bg.jpg') center/cover;
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    width: 100%;
    transition: filter 0.6s ease;
    z-index: 1;
    padding-bottom: 0;
    animation: backgroundFloat 8s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% {
        background-position: center center;
    }
    50% {
        background-position: center calc(50% + 20px);
    }
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-end;
    height: auto;
    padding-bottom: 0;
}

.hero-text {
    text-align: left;
    max-width: 500px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 72px;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.05;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards, textGlow 3s ease-in-out 1.5s infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(220, 38, 38, 0.5), 0 0 60px rgba(220, 38, 38, 0.3);
    }
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.9;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInScale 1s ease-out 0.7s forwards;
    display: flex;
    align-items: flex-end;
    margin-bottom: 0;
}

.hero-image {
    width: 100%;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-bottom: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3));
    margin-bottom: 0;
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.section-content {
    max-width: 1200px;
    width: 100%;
}

.section-title {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.07;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 24px;
    color: #dc2626;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
}

/* About Section */
.about-section {
    background: #fff;
}

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

.prophet-image-wrapper {
    width: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    border-radius: 24px;
    overflow: hidden;
}

.prophet-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.prophet-image-wrapper:hover img {
    transform: scale(1.05);
}

.prophet-text h3 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.prophet-text .subtitle {
    font-size: 21px;
    color: #dc2626;
    margin-bottom: 32px;
    font-weight: 500;
}

.prophet-text p {
    font-size: 19px;
    line-height: 1.6;
    color: #6e6e73;
    margin-bottom: 20px;
}

/* Ministry Power Section */
.ministry-power-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: auto;
}

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

.feature-card {
    background: #fff;
    padding: 48px 32px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 24px;
}

.feature-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.feature-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #6e6e73;
}

/* Legacy Section */
.legacy-section {
    background: #fff;
    min-height: auto;
}

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

.legacy-text h2 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: 24px;
    color: #1d1d1f;
}

.legacy-intro {
    font-size: 21px;
    line-height: 1.5;
    color: #6e6e73;
    margin-bottom: 40px;
}

.legacy-highlight {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    padding: 32px;
    border-radius: 24px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.legacy-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.legacy-content h5 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.legacy-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #6e6e73;
}

.legacy-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.legacy-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.legacy-image:hover img {
    transform: scale(1.05);
}

/* Church Section */
.church-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
}

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

.church-badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.2);
    color: #fca5a5;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.church-info h2 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: 24px;
}

.church-info > p {
    font-size: 19px;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.church-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.church-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: #e2e8f0;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.church-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.stat-label {
    font-size: 14px;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Video Section */
.video-section {
    background: #f5f5f7;
    z-index: 10;
}

.video-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.button-wrapper {
    text-align: center;
}

/* Contact Section */
.contact-section {
    background: #fff;
    padding: 80px 22px;
    min-height: auto;
    z-index: 10;
    margin: 0;
}

.contact-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-text h2 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.contact-text p {
    font-size: 19px;
    color: #6e6e73;
    line-height: 1.5;
}

.contact-pills {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #f5f5f7;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-pill:hover {
    background: #e8e8ed;
    transform: translateX(4px);
}

.contact-pill-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.contact-pill-text {
    flex: 1;
}

.contact-pill-label {
    font-size: 12px;
    color: #6e6e73;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-pill-value {
    font-size: 17px;
    color: #1d1d1f;
    font-weight: 500;
}

.contact-pill a {
    color: #1d1d1f;
    text-decoration: none;
}

footer {
    background: #1d1d1f;
    padding: 30px 22px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 10;
}

footer p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 5px;
}

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

footer a:hover {
    color: #fff;
}

.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: #fff;
    padding: 60px;
    border-radius: 24px;
    max-width: 550px;
    width: 90%;
    position: relative;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 28px;
    color: #6e6e73;
    cursor: pointer;
    background: #f5f5f7;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #e8e8ed;
    transform: rotate(90deg);
}

.modal-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: #f5f5f7;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
}

.modal-content h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
    text-align: center;
}

.modal-subtitle {
    font-size: 17px;
    color: #6e6e73;
    text-align: center;
    margin-bottom: 40px;
}

.modal-cards {
    display: grid;
    gap: 16px;
}

.modal-card {
    background: #f5f5f7;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.modal-card:hover {
    background: #e8e8ed;
    transform: translateY(-2px);
}

.modal-card-icon {
    font-size: 28px;
    flex-shrink: 0;
}

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

.modal-card-label {
    font-size: 12px;
    color: #6e6e73;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-card a {
    color: #2563eb;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.modal-card a:hover {
    opacity: 0.7;
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 0.6;
    }
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

@media (max-width: 1068px) {
    .hero-container {
        gap: 60px;
    }

    .hero h1 {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 21px;
    }

    .section-title {
        font-size: 48px;
    }

    .prophet-container,
    .legacy-container,
    .church-container {
        gap: 60px;
    }

    .prophet-text h3,
    .legacy-text h2,
    .church-info h2 {
        font-size: 40px;
    }

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

    .church-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 734px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 48px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: saturate(180%) blur(20px);
        width: 100%;
        padding: 40px 22px;
        transition: right 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        gap: 24px;
    }

    .nav-links a {
        font-size: 17px;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    /* Mobile Hero Redesign - Stacked Layout */
    .hero {
        padding: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
        height: 100vh;
        width: 100%;
        max-width: 100%;
        padding: 0;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .hero-image-wrapper {
        order: 1;
        width: 100%;
        margin: 0;
        flex: 1;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 0 22px;
        padding-bottom: 40px;
    }

    .hero-image {
        width: 100%;
        max-width: 400px;
    }

    .hero-text {
        order: 2;
        text-align: center;
        margin: 0;
        padding: 40px 22px 60px;
        max-width: 100%;
        background: linear-gradient(to bottom, transparent 0%, rgba(15, 23, 42, 0.8) 20%, rgba(15, 23, 42, 0.95) 100%);
        position: relative;
        z-index: 2;
    }

    .hero h1 {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 19px;
        margin-bottom: 0;
    }

    .scroll-hint {
        display: none;
    }

    .section-title {
        font-size: 40px;
    }

    .prophet-container,
    .legacy-container,
    .church-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .legacy-container {
        grid-template-columns: 1fr;
    }

    .legacy-image {
        order: -1;
    }

    .church-stats {
        grid-template-columns: 1fr;
    }

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

    .contact-text h2 {
        font-size: 32px;
    }

    section {
        padding: 60px 22px;
        min-height: auto;
    }

    .modal-content {
        padding: 40px 30px;
    }

    .modal-content h3 {
        font-size: 28px;
    }

    .modal-logo {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
}