:root {
    --gold: #fbbc05;
    --gold-hover: #e5a904;
    --dark-blue: #0b102b;
    --text-white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

html,
body {
    font-family: var(--font-body);
    background-color: var(--dark-blue);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}

/* Header Styles */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 15px 40px;
    background: linear-gradient(to bottom, rgba(5, 8, 25, 0.9) 0%, rgba(5, 8, 25, 0) 100%);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 85px;
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

.main-nav a {
    color: var(--gold);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.main-nav a:hover {
    opacity: 0.8;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-btn,
.sign-in-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn:hover,
.sign-in-btn:hover {
    background: rgba(251, 188, 5, 0.1);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 60px 80px;
    /* Using the exact image path specified by the user */
    background-image: url('assets/logo_main_kc_globe_crown.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Creating the dark blue tint visible in the image */
    background: linear-gradient(90deg, rgba(5, 10, 35, 0.95) 0%, rgba(5, 10, 35, 0.7) 45%, rgba(5, 10, 35, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding-left: 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 1px;
}

.highlight {
    color: var(--gold);
}

.divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    max-width: 350px;
}

.divider .line {
    height: 1px;
    background-color: rgba(251, 188, 5, 0.5);
    /* Faded gold line */
    flex-grow: 1;
}

.subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 45px;
    font-weight: 500;
    color: #e5e7eb;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--gold);
    color: #0b102b;
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background-color: rgba(251, 188, 5, 0.1);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .main-nav ul {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .header-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 15px;
        text-align: center;
    }

    .logo.left-logo {
        order: 1;
        flex: 0 1 45%;
        display: flex;
        justify-content: center;
    }

    .logo.right-logo {
        order: 2;
        flex: 0 1 45%;
        display: flex;
        justify-content: center;
    }

    .logo img {
        height: 70px;
    }

    .main-nav {
        order: 3;
        flex: 1 1 100%;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .header-actions {
        order: 4;
        flex: 1 1 100%;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-section {
        padding-top: 250px;
        background-position: center right;
    }

    .hero-overlay {
        background: rgba(5, 10, 35, 0.85);
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 113px;
    }

    .main-nav ul {
        gap: 10px;
    }

    .main-nav a {
        font-size: 11px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
    }

    .hero-section {
        padding-top: 290px;
    }
}

/* What Is Section Styles */
.what-is-section {
    position: relative;
    padding: 80px 0 0;
    background-color: var(--dark-blue);
    text-align: center;
    overflow: hidden;
}

.what-is-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 16, 43, 0.85), rgba(11, 16, 43, 0.85)), url('assets/label_kingdom_partnerships_text.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

.what-is-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 60px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.section-title::before,
.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 1px;
    background-color: rgba(251, 188, 5, 0.5);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-white);
    margin-bottom: 60px;
    font-weight: 500;
    line-height: 1.6;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon-wrapper {
    width: 110px;
    height: 110px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background-color: transparent;
    padding: 20px;
}

.feature-icon {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.feature-title {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.feature-desc {
    font-size: 1rem;
    color: var(--text-white);
    line-height: 1.6;
}

.feature-divider {
    width: 1px;
    background-color: rgba(251, 188, 5, 0.5);
    margin: 0 10px;
    margin-top: 55px;
    height: auto;
}

.section-bottom-border {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #8a7b46 0%, var(--gold) 50%, #8a7b46 100%);
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .features-grid {
        flex-direction: column;
        gap: 50px;
    }

    .feature-divider {
        width: 100px;
        height: 1px;
        margin: 0 auto;
    }

    .section-title::before,
    .section-title::after {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 15px;
    }

    .section-title::before,
    .section-title::after {
        display: none;
    }
}

/* Split Section Styles */
.split-section {
    display: flex;
    background-color: var(--dark-blue);
    width: 100%;
}

.split-left {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    position: relative;
}

/* Faint gradient to blend the edge if needed, though split is sharp in the image */
.split-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(11, 16, 43, 0.5));
    pointer-events: none;
}

.split-logo {
    max-width: 320px;
    width: 80%;
    height: auto;
    position: relative;
    z-index: 2;
    top: 100px;
}

.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    /* Adding same background to match the "continue background" request from user */
    position: relative;
    overflow: hidden;
}

.split-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 16, 43, 0.85), rgba(11, 16, 43, 0.85)), url('assets/label_kingdom_partnerships_text.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
    /* Keeping it subtle */
}

.split-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: center;
}

.split-heading-white {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    color: var(--text-white);
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.split-heading-gold {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.split-divider {
    height: 1px;
    width: 80%;
    margin: 0 auto 30px;
    background: linear-gradient(90deg, rgba(251, 188, 5, 0) 0%, rgba(251, 188, 5, 0.7) 50%, rgba(251, 188, 5, 0) 100%);
}

.split-text-normal {
    font-size: 1.1rem;
    color: var(--text-white);
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 400;
}

.split-text-medium {
    font-size: 1.1rem;
    color: var(--text-white);
    line-height: 1.6;
    font-weight: 500;
}

.split-text-highlight {
    font-size: 1.1rem;
    color: var(--gold);
    line-height: 1.6;
    font-weight: 500;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .split-section {
        flex-direction: column;
    }

    .split-left {
        min-height: 350px;
        width: 100%;
    }

    .split-left::after {
        display: none;
    }

    .split-right {
        width: 100%;
        padding: 60px 20px;
    }

    .split-heading-white,
    .split-heading-gold {
        font-size: 1.8rem;
    }
}

/* ═══════════════════════════════════════════ */
/*         IMPACT & KINGDOM SECTION          */
/* ═══════════════════════════════════════════ */
.impact-section {
    position: relative;
    background-color: #050819;
    /* Darker navy like image */
    padding: 100px 0 0;
    color: #fff;
    font-family: var(--font-body);
    overflow: hidden;
}

.impact-section-bg-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/logo_main_kc_globe_crown.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

/* Blue overlay at the top and bottom to blend and keep text readable */
.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            #030042 rgba(5, 8, 25, 0.8) 30%,
            rgba(69, 81, 147, 0.4) 75%,
            rgba(5, 8, 25, 0.1) 100%);
    z-index: 1;
}

.impact-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.impact-header {
    text-align: center;
    margin-bottom: 60px;
}

.impact-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.impact-line {
    flex: 0 1 150px;
    height: 1px;
    background: var(--gold);
}

.impact-header h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin: 0;
}

.impact-header p {
    font-size: 1.3rem;
    color: #fff;
    margin-top: 5px;
}

/* 7 Mountains Grid */
.mountains-grid-custom {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 80px;
}

.mountain-card-custom {
    flex: 1;
    border: 1.5px solid var(--gold);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(251, 188, 5, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.mountain-card-custom:hover {
    background: rgba(251, 188, 5, 0.12);
    transform: translateY(-5px);
}

.mountain-icon-container {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mountain-icon-container img {
    max-width: 100%;
    max-height: 100%;
    filter: invert(78%) sepia(60%) saturate(500%) hue-rotate(5deg) brightness(100%) contrast(95%);
}

.mountain-card-custom h3 {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
    min-height: 2.4em;
    display: flex;
    align-items: center;
}

/* Middle Row */
.impact-middle-row {
    display: flex;
    gap: 30px;
    margin-bottom: 0px;
    align-items: stretch;
}

.impact-testimonials-box,
.impact-goals-box {
    border: 1.5px solid rgba(251, 188, 5, 0.4);
    border-radius: 12px;
    padding: 40px 30px;
    background: rgba(5, 8, 25, 0.6);
    backdrop-filter: blur(10px);
}

.impact-testimonials-box {
    flex: 3;
}

.impact-goals-box {
    flex: 1;
}

.impact-testimonials-box h3,
.impact-goals-box h3 {
    font-size: 1.2rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 45px;
    font-weight: 700;
    letter-spacing: 1px;
}

.testimonials-list-horizontal {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.testimonial-entry-vertical {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-entry-vertical img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    margin-bottom: 20px;
}

.testimonial-body p {
    font-size: 0.9rem;
    font-style: italic;
    color: #f0f0f0;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
}

.goals-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.goal-entry {
    display: flex;
    align-items: center;
    gap: 20px;
}

.goal-entry img {
    width: 45px;
    height: auto;
    filter: invert(78%) sepia(60%) saturate(500%) hue-rotate(5deg) brightness(100%) contrast(95%);
}

.goal-info {
    display: flex;
    flex-direction: column;
}

.goal-val {
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 700;
}

.goal-lbl {
    font-size: 0.8rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Bottom CTA */
.impact-bottom-cta {
    position: relative;
    padding: 140px 0 120px;
    text-align: center;
}

.impact-bottom-content {
    position: relative;
    z-index: 2;
}

.cta-crown {
    width: 35px;
    margin-bottom: 20px;
    filter: invert(78%) sepia(60%) saturate(500%) hue-rotate(5deg) brightness(100%) contrast(95%);
}

.cta-sub {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.impact-bottom-content h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--gold);
    margin-bottom: 50px;
    font-weight: 700;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.btn-solid-gold {
    background-color: var(--gold);
    color: #000;
    padding: 18px 45px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 16px 45px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-solid-gold:hover {
    background-color: #e5a904;
    transform: scale(1.02);
}

.btn-outline-gold:hover {
    background-color: rgba(251, 188, 5, 0.1);
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 1300px) {
    .mountains-grid-custom {
        flex-wrap: wrap;
        justify-content: center;
    }

    .mountain-card-custom {
        flex: 0 0 calc(33.33% - 20px);
    }
}

@media (max-width: 1100px) {
    .impact-middle-row {
        flex-direction: column;
    }

    .impact-testimonials-box,
    .impact-goals-box {
        width: 100%;
    }

    .testimonials-list-horizontal {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-entry-vertical {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .impact-header h2 {
        font-size: 1.8rem;
    }

    .impact-line {
        display: none;
    }

    .mountain-card-custom {
        flex: 0 0 calc(50% - 15px);
    }

    .impact-bottom-content h1 {
        font-size: 2.2rem;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* ═══════════════════════════════════════════ */
/*         BIBLE CHARACTERS / AVATARS        */
/* ═══════════════════════════════════════════ */
.avatars-section {
    background-color: #030042;
    padding: 100px 0;
    color: #fff;
    font-family: var(--font-body);
}

.avatars-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.avatars-main-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.character-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 100px;
}

.character-row.row-reverse {
    flex-direction: row-reverse;
}

.character-text {
    flex: 1;
}

.character-text h3 {
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.char-name {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
}

.character-text ul {
    list-style: none;
    padding: 0;
}

.character-text ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.5;
}

.character-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #fff;
}

.character-image {
    flex: 0 0 220px;
    display: flex;
    justify-content: center;
}

.character-image img {
    width: 183px;
    height: 250px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 850px) {

    .character-row,
    .character-row.row-reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .character-image {
        flex: 0 0 auto;
    }

    .character-text ul li {
        padding-left: 0;
    }

    .character-text ul li::before {
        display: none;
    }

    .avatars-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .character-image img {
        width: 180px;
        height: 260px;
    }

    .character-text h3 {
        font-size: 1rem;
    }

    .char-name {
        font-size: 1.1rem;
    }
}

/* Praying Planet Section */
.praying-planet-section {
    position: relative;
    padding: 100px 0;
    background-image: url('assets/bg_hero_worship_crowd.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.pp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 0, 66, 0.85);
    /* #030042 with opacity */
    z-index: 1;
}

.pp-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.pp-left-side {
    display: flex;
    align-items: center;
    /* Center vertically relative to menu */
    gap: 60px;
    /* Space between menu and Esther */
}

.pp-menu-col {
    flex: 1;
}

.pp-character-col {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
    margin-bottom: -20px;
}

.pp-title {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 2.2rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.pp-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pp-menu-item {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pp-icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pp-icon svg {
    width: 100%;
    height: 100%;
}

.pp-menu-text {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
    position: relative;
}

.pp-underline {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    margin-top: 5px;
    position: absolute;
    bottom: -8px;
    left: 0;
}

.pp-menu-item:not(.active) .pp-underline {
    display: none;
}

.pp-menu-item:hover .pp-menu-text {
    color: var(--gold);
}

.pp-character-wrapper {
    text-align: center;
}

.pp-character {
    width: 90px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.pp-character-name {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    /* Smaller label for smaller image */
    margin-top: 10px;
    letter-spacing: 1px;
}

.pp-right-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pp-diagram-wrapper {
    width: 100%;
    max-width: 550px;
    position: relative;
}

.pp-diagram {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

/* Responsive adjustments for PP Section */
@media (max-width: 1200px) {
    .pp-container {
        flex-direction: column;
        gap: 60px;
    }

    .pp-left-side {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 992px) {
    .pp-menu-item {
        justify-content: center;
    }

    .pp-title {
        text-align: center;
        font-size: 2rem;
    }

    .pp-left-side {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .pp-character {
        width: 150px;
    }

    .pp-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .pp-character-name {
        font-size: 1.3rem;
    }

    .pp-menu-text {
        font-size: 0.85rem;
    }

    .pp-icon {
        width: 24px;
        height: 24px;
    }

    .pp-diagram-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .pp-left-side {
        flex-direction: column;
    }

    .pp-character-col {
        margin-bottom: 0;
    }
}

/* Celestial Crown Section */
.celestial-crown-section {
    position: relative;
    padding: 120px 0;
    background-image: url('assets/icon_kingdom_partnerships_handshake.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.crown-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(138, 86, 32, 0.4) 0%, rgba(0, 0, 0, 0.9) 70%);
    z-index: 1;
}

.crown-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.crown-col {
    display: flex;
    flex-direction: column;
    gap: 60px;
    flex: 1;
}

.crown-side {
    align-items: center;
}

.crown-center {
    flex: 1.5;
    align-items: center;
    gap: 40px;
}

.gem-button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.gem-btn {
    background-color: #030042;
    border: 2px solid var(--text-white);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    min-width: 180px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.gem-btn:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #030042;
    transform: translateY(-2px);
}

.church-btn {
    min-width: 220px;
    font-size: 1.4rem;
    padding: 12px 30px;
    background-color: #030042;
    border: 3px solid var(--text-white);
}

.gem-wrapper {
    position: relative;
    width: 100px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gem-img {
    max-width: 100%;
    max-height: 200%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(251, 188, 5, 0.6));
    transition: transform 0.3s ease;
}

.gem-button-group:hover .gem-img {
    transform: scale(1.1);
}

/* Center Column Styling */
.globe-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(251, 188, 5, 0.4);
}

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

.globe-text {
    position: absolute;
    width: 100%;
    text-align: center;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.main-crown-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crown-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(251, 188, 5, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.main-crown-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7));
}

.white-gem {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    width: 120px;
}

/* Responsive */
@media (max-width: 1200px) {
    .crown-container {
        flex-direction: column;
        gap: 60px;
    }

    .crown-side {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .gem-btn {
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .celestial-crown-section {
        padding: 80px 0;
    }

    .globe-wrapper {
        width: 120px;
        height: 120px;
    }

    .globe-text {
        font-size: 1rem;
    }

    .main-crown-img {
        max-width: 320px;
    }

    .church-btn {
        min-width: 200px;
        font-size: 1.2rem;
    }

    .crown-col {
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .crown-side {
        flex-direction: column;
        gap: 40px;
    }

    .gem-btn {
        min-width: 220px;
        font-size: 0.9rem;
    }

    .main-crown-img {
        max-width: 260px;
    }
}


/* 7 Mountains Form Section */
.mountains-form-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('assets/bg-form.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    padding-top: 150px;
    /* Increased padding on top */
}

.mountains-form-container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    min-height: 800px;
    margin: 0 auto;
}

/* Invisible clickable area over the WATCH NOW button in the background image */
.watch-now-overlay-btn {
    position: absolute;
    top: 18.5%;
    /* Adjusted for higher padding-top */
    left: 8%;
    width: 180px;
    height: 55px;
    background: transparent;
    color: transparent;
    text-decoration: none;
    z-index: 10;
    cursor: pointer;
}

/* Form Positioned further down to avoid overlapping the central graphics */
.contact-form-wrapper {
    position: absolute;
    bottom: 20px;
    /* Moved further down */
    right: 80px;
    width: 100%;
    max-width: 550px;
    z-index: 5;
}

.contact-form-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: #fff;
    color: #333;
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: #888;
}

.form-group input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(251, 188, 5, 0.3);
}

.form-submit {
    margin-top: 25px;
    text-align: center;
}

.learn-more-btn {
    background: linear-gradient(to bottom, #fbbc05, #e5a904);
    color: #0b102b;
    border: none;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 1100px) {
    .mountains-form-section {
        background-image: url('assets/7-mountain-potrait.jpg');
        background-position: center top;
        background-size: 100% auto;
        background-color: var(--dark-blue);
        padding-top: 20px;
        min-height: auto;
        display: block;
    }

    .mountains-form-container {
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-bottom: 60px;
    }

    .watch-now-overlay-btn {
        position: relative;
        top: 0;
        left: 65;
        margin: 85vw auto 30px;
        /* Scaled proportionally to the background image width */
        display: block;
        background: var(--gold);
        color: #0b102b;
        text-align: center;
        line-height: 55px;
        border-radius: 8px;
        font-weight: 700;
        visibility: visible;
        opacity: 1;
        width: 170px;
        box-shadow: 0 10px 25px rgba(251, 188, 5, 0.4);
        text-decoration: none;
    }

    .contact-form-wrapper {
        position: relative;
        bottom: 0;
        right: 0;
        margin: 0 auto;
        max-width: 420px;
        /* Reduced width for better portrait balance */
        width: 90%;
    }

    .contact-form-box {
        background: rgba(3, 0, 66, 0.75);
        backdrop-filter: blur(12px);
        padding: 25px 20px;
        border-radius: 20px;
        border: 1px solid rgba(251, 188, 5, 0.3);
        margin-top: 50px;
    }
}

@media (max-width: 900px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .mountains-form-section {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .watch-now-overlay-btn {
        margin-top: 115vw;
        /* Maintain the proportional scaling */
    }

    .mountains-form-section {
        min-height: auto;
    }

    .mountains-form-container {
        min-height: auto;
    }

    .learn-more-btn {
        width: 100%;
        padding: 14px 10px;
        font-size: 0.95rem;
    }
}


/* Kingdom Connections Hub Section */
.hub-section {
    position: relative;
    padding: 100px 0;
    background-image: url('assets/bg_hero_worship_crowd.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hub-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 35, 0.85);
    z-index: 1;
}

.hub-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
    gap: 30px;
}

.hub-logo {
    max-height: 200px;
    object-fit: contain;
}

.hub-main-title {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 2.4rem;
    letter-spacing: 1px;
    text-align: center;
}

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

.hub-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(251, 188, 5, 0.25);
    border-radius: 24px;
    padding: 35px 25px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.hub-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 188, 5, 0.5);
}

.hub-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.hub-icon-circle {
    width: 45px;
    height: 45px;
    background: rgba(251, 188, 5, 0.15);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.hub-icon-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hub-card-header h3 {
    color: var(--gold);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hub-card-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hub-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hub-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.hub-item-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-item-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hub-item span {
    color: #0b102b;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1100px) {
    .hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hub-header {
        flex-direction: column;
        gap: 40px;
    }

    .hub-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hub-grid {
        grid-template-columns: 1fr;
    }

    .hub-section {
        padding: 80px 0;
    }
}

/* Commerce Section */
.commerce-section {
    position: relative;
    padding: 100px 0;
    background-image: url('assets/bg_hero_worship_crowd.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.commerce-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.commerce-pill {
    display: inline-block;
    background-color: var(--gold);
    color: #0b102b;
    padding: 10px 40px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.commerce-title {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.commerce-sub {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.commerce-main-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.eagle-logo {
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.eagle-text {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.1;
    letter-spacing: 1px;
}

.cash-flow-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 30px 40px;
    display: inline-block;
}

.box-top {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.box-main {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.box-bottom {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
    .commerce-title {
        font-size: 2.5rem;
    }

    .commerce-main-row {
        flex-direction: column;
        gap: 30px;
    }

    .eagle-text {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .commerce-pill {
        font-size: 1.2rem;
        padding: 8px 30px;
    }

    .box-main {
        font-size: 1.8rem;
    }
}

/* Section Divider Line */
.section-divider-line {
    width: 100%;
    height: 1.5px;
    background: var(--gold);
    box-shadow: 0 0 20px rgba(251, 188, 5, 0.6);
    position: relative;
    z-index: 20;
    margin-top: -1px;
}


/* Supporter Section */
.supporter-section {
    position: relative;
    padding: 120px 0;
    background-image: url('assets/icon_kingdom_partnerships_handshake.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 800px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.supporter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 16, 43, 0.4);
    /* Darker overlay to make white text and gold pop */
    z-index: 1;
}

.supporter-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.supporter-title {
    color: #030042;
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 35px;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.supporter-banner {
    display: inline-block;
    background-color: var(--gold);
    color: #030042;
    padding: 18px 50px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 35px;
    border: 1.5px solid #030042;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-width: 900px;
}

.supporter-subtitle {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(251, 188, 5, 0.3);
    border-radius: 24px;
    padding: 45px 25px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

.gem-icon {
    width: 100px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.price {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.pricing-label {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Responsive */
@media (max-width: 1100px) {
    .supporter-title {
        font-size: 3rem;
    }

    .pricing-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .supporter-banner {
        font-size: 1.4rem;
        padding: 15px 30px;
    }
}

@media (max-width: 600px) {
    .supporter-title {
        font-size: 2.2rem;
    }
}


/* Benefits and Founding Member Section */
.benefits-founding-section {
    position: relative;
    padding: 100px 0;
    background-image: url('assets/icon_impact_culture_globe_2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 1200px;
    display: flex;
    align-items: center;
    text-align: center;
}

.benefits-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 35, 0.7);
    z-index: 1;
}

.benefits-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits-title,
.founding-title {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 3.2rem;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.founding-title {
    margin-top: 100px;
}

.benefits-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.benefit-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-gem {
    width: 90px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
}

.benefit-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 15px 25px;
    text-align: left;
    min-width: 250px;
}

.benefit-amount {
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.benefit-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
}

.benefits-banner {
    background: #030042;
    border: 2px solid var(--gold);
    color: #fff;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    max-width: 1000px;
    margin: 0 auto 80px;
    line-height: 1.5;
}

.founding-pill {
    display: inline-block;
    background: #030042;
    border: 1.5px solid var(--gold);
    color: #fff;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.founding-message {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.founding-tiers {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.founding-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.founding-logo-circle {
    width: 140px;
    height: 140px;
    background: #030042;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 0 30px rgba(251, 188, 5, 0.3);
}

.founding-logo-box {
    width: 140px;
    height: 140px;
    background: #030042;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 0 30px rgba(251, 188, 5, 0.3);
}

.founding-tier img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tier-btn {
    background: var(--gold);
    color: #030042;
    padding: 10px 40px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.founding-footer {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    max-width: 1000px;
    margin: 40px auto 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {

    .benefits-title,
    .founding-title {
        font-size: 2.2rem;
    }

    .benefits-badges,
    .founding-tiers {
        flex-direction: column;
        align-items: center;
    }

    .benefit-box {
        min-width: unset;
        width: 100%;
        max-width: 300px;
    }
}


/* Founding Details Section */
.founding-details-section {
    position: relative;
    width: 100%;
}

.founding-details-header {
    background: #0b102b;
    padding: 50px 0;
    text-align: center;
    border-top: 2px solid var(--gold);
}

.founding-details-header h2 {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 3.2rem;
    letter-spacing: 2px;
}

.founding-details-body {
    background: #030042;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.founding-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.details-cols {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.details-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 35px;
}

.detail-logo {
    width: 120px;
    height: 120px;
    background: #030042;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 0 25px rgba(251, 188, 5, 0.4);
    flex-shrink: 0;
}

.detail-logo.circle {
    border-radius: 50%;
}

.detail-logo.square {
    border-radius: 12px;
}

.detail-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.detail-text h3 {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.detail-text p {
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.5;
    font-weight: 500;
}

.details-right {
    flex: 0.8;
    display: flex;
    justify-content: center;
    position: relative;
}

.eagle-flight-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.8));
}

.founding-details-banner {
    background: #fbbc05;
    color: #030042;
    padding: 30px 40px;
    text-align: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-top: 80px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1100px) {
    .details-cols {
        flex-direction: column;
        text-align: center;
    }

    .detail-row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .details-right {
        margin-top: 40px;
    }

    .eagle-flight-img {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .founding-details-header h2 {
        font-size: 2.2rem;
    }

    .detail-text h3 {
        font-size: 1.8rem;
    }
}


/* Founding Bond Section */
.founding-bond-section {
    margin-top: 60px;
}

.bond-row {
    margin-bottom: 55px;
    text-align: left;
}

.bond-amount {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 3.5rem !important;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.bond-lifetime {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.bond-recognition {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
}

.bond-seal-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(251, 188, 5, 0.5));
}

.bond-banner {
    line-height: 1.8 !important;
    padding-top: 35px !important;
    padding-bottom: 35px !important;
}

@media (max-width: 1100px) {
    .bond-row {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .bond-amount {
        font-size: 2.5rem !important;
    }

    .bond-lifetime {
        font-size: 1.4rem;
    }

    .bond-recognition {
        font-size: 1.2rem;
    }
}


/* Weekly Prayer Section */
.weekly-prayer-section {
    position: relative;
    padding: 100px 0;
    background-image: url('assets/icon_kingdom_partnerships_handshake.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.prayer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 16, 43, 0.4);
    z-index: 1;
}

.prayer-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    text-align: center;
}

.prayer-header-box {
    background: #030042;
    border: 3px solid var(--gold);
    border-radius: 24px;
    padding: 35px 70px;
    display: inline-block;
    margin-bottom: 70px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.prayer-title {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
}

.prayer-subtitle {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.prayer-content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.prayer-left {
    flex: 1;
    text-align: left;
}

.prayer-info {
    margin-bottom: 50px;
}

.prayer-day,
.prayer-worship {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.prayer-clock-container {
    max-width: 320px;
}

.prayer-clock {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

.prayer-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.laptop-video-container {
    width: 100%;
    max-width: 600px;
    background: #030042;
    padding: 20px;
    border-radius: 25px;
    border: 4px solid var(--gold);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    position: relative;
}

.laptop-video-container::after {
    content: 'Frame';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(251, 188, 5, 0.4);
    font-size: 1.2rem;
    font-weight: 600;
}

.prayer-laptop-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.prayer-btn-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.prayer-join-btn {
    background: var(--gold);
    color: #030042;
    padding: 20px 70px;
    border-radius: 60px;
    font-weight: 900;
    font-size: 2.5rem;
    text-decoration: none;
    border: 4px solid #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.prayer-join-btn:hover {
    transform: scale(1.08) translateY(-5px);
    background: #fff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 1100px) {
    .prayer-content-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .prayer-left {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .prayer-day,
    .prayer-worship {
        font-size: 2rem;
    }

    .prayer-clock-container {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .prayer-header-box {
        padding: 25px 35px;
    }

    .prayer-title {
        font-size: 2.2rem;
    }

    .prayer-subtitle {
        font-size: 1.4rem;
    }

    .prayer-join-btn {
        font-size: 1.8rem;
        padding: 18px 45px;
    }
}


/* Kingdom Partners Section */
.partners-section {
    position: relative;
    padding: 100px 0;
    background-image: url('assets/divider_bottom_executive.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.partners-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 35, 0.4);
    z-index: 1;
}

.partners-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    text-align: center;
}

.partners-header {
    background: #030042;
    border: 3px solid var(--gold);
    border-radius: 20px;
    padding: 20px 60px;
    display: inline-block;
    margin-bottom: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.partners-header h2 {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 3.5rem;
    letter-spacing: 2px;
}

.partners-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.hex-grid-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hex-large {
    width: 300px;
    height: 340px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

.hex-large .hex-text {
    font-size: 2.2rem;
    font-weight: 900;
    color: #030042;
    line-height: 1.1;
}

.hex-right-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hex-row {
    display: flex;
    gap: 20px;
}

.hex-small {
    width: 150px;
    height: 170px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.hex-small:hover {
    transform: scale(1.05);
}

.hex-small.gold {
    background: var(--gold);
}

.hex-small.white {
    background: #fff;
}

.hex-small .hex-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: #030042;
    line-height: 1.2;
}

.partners-row-images {
    display: flex;
    justify-content: center;
    gap: 50px;
    width: 100%;
}

.partner-card {
    width: 300px;
    padding: 12px;
    background: #030042;
    border: 5px solid var(--gold);
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #fff;
}

.partner-card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

/* Responsive */
@media (max-width: 1100px) {
    .hex-grid-wrap {
        flex-direction: column;
    }

    .partners-row-images {
        flex-direction: column;
        align-items: center;
    }

    .partner-card {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .partners-header h2 {
        font-size: 2.2rem;
    }

    .hex-row {
        gap: 10px;
    }

    .hex-small {
        width: 120px;
        height: 140px;
    }

    .hex-small .hex-text {
        font-size: 1rem;
    }
}


/* Executive Team Section */
.executive-section {
    width: 100%;
}

.executive-header {
    background: #0b102b;
    padding: 60px 0;
    text-align: center;
    border-top: 3px solid var(--gold);
}

.exec-title {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.exec-subtitle {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.executive-body {
    background: #030042;
    padding: 100px 0;
}

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

.exec-cols {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.exec-left {
    flex: 1.2;
}

.exec-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: left;
}

.exec-list li {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.bullet-diamond {
    width: 18px;
    height: 18px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-top: 8px;
    box-shadow: 0 0 10px rgba(251, 188, 5, 0.5);
}

.exec-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.exec-role {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.exec-name {
    color: var(--gold);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.exec-right {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.exec-chart-img {
    width: 160%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(251, 188, 5, 0.3));
}

/* Responsive */
@media (max-width: 1100px) {
    .exec-cols {
        flex-direction: column;
        text-align: center;
    }

    .exec-list {
        text-align: center;
    }

    .exec-list li {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .bullet-diamond {
        margin-top: 0;
    }

    .exec-right {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .exec-title {
        font-size: 2.5rem;
    }

    .exec-subtitle {
        font-size: 1.4rem;
    }

    .exec-role {
        font-size: 1.1rem;
    }

    .exec-name {
        font-size: 1.6rem;
    }
}

/* Final Seal Section */
.final-seal-section {
    position: relative;
    width: 100%;
    min-height: 850px;
    background-image: url('assets/hub_icon_extra_10.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.final-seal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(11, 16, 43, 0.1) 0%, rgba(11, 16, 43, 0.6) 100%);
    z-index: 1;
}

.final-seal-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 50px;
}

.final-seal-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    filter: drop-shadow(0 0 60px rgba(251, 188, 5, 0.7)) drop-shadow(0 0 120px rgba(251, 188, 5, 0.3));
    animation: sealFloat 5s ease-in-out infinite;
}

@keyframes sealFloat {

    0%,
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) scale(1.03) rotate(1deg);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .final-seal-section {
        min-height: 600px;
    }

    .final-seal-img {
        max-width: 500px;
    }
}

@media (max-width: 600px) {
    .final-seal-section {
        min-height: 450px;
    }

    .final-seal-img {
        max-width: 300px;
    }
}