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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #050210;
    color: #ffffff;
    overflow-x: hidden;
}

/* --- HEADER --- */
#navbar {
    position: fixed;
    top: 25px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    width: 100%;
}

.nav-container {
    background: #ffffff;
    border-radius: 12px;
    width: 90%;
    max-width: 1100px;
    padding: 12px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.nav-container.scrolled {
    padding: 10px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo img {
    height: 55px;
    margin-top: -4px;
    display: block;
    transition: height 0.3s ease, margin-top 0.3s ease;
}

.nav-container.scrolled .logo img {
    height: 45px;
    margin-top: 0;
}

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

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
    padding: 10px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: #0066ff;
}

.nav-links i {
    font-size: 10px;
    color: #a0a0a0;
}

/* --- DROPDOWN MENU --- */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    list-style: none;
    min-width: 220px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 12px 25px;
    display: block;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.dropdown-menu a:hover {
    background: rgba(140, 0, 255, 0.05);
    color: #8c00ff;
    padding-left: 30px;
}

.nav-donation {
    color: #1a1a1a;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #000;
    cursor: pointer;
}

/* --- MOBILE NAV --- */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(5, 2, 16, 0.98);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
}

.mobile-nav-overlay.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-menu:hover {
    color: #db00ff;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.mobile-nav-links > li {
    margin: 25px 0;
}

.mobile-nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: #db00ff;
}

.mobile-dropdown-menu {
    list-style: none;
    display: none;
    margin-top: 15px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.mobile-dropdown-menu a {
    font-size: 16px;
    font-weight: 500;
    color: #a0a0a0;
    display: block;
    margin: 15px 0;
}

.mobile-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* --- BUTTONS --- */
.btn-read-more {
    background: #ffffff;
    color: #6a00ff;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn-read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(106, 0, 255, 0.3);
}

.btn-contact {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.3s, color 0.3s;
}

.btn-contact:hover {
    background: #ffffff;
    color: #000;
}

/* --- HERO SECTION --- */
.fullscreen-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('back-dashboard-champions.png') center/cover no-repeat fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(40, 0, 80, 0.6) 80%, rgba(20, 0, 40, 0.95) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-sub {
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* --- ABOUT SECTION (LIGHT THEME) --- */
.light-section {
    position: relative;
    padding: 140px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff; /* Bright background for contrast */
    color: #1a1a1a;
    overflow: hidden;
}

.about-ring {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 100px solid rgba(220, 180, 255, 0.3); /* Faint purple ring */
    z-index: 0;
}

.about-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 10;
}

.about-visual-left {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 30px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    background: #000;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(100, 0, 120, 0.3);
    border-radius: 30px;
    mix-blend-mode: multiply;
}

.about-img {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 30px;
    display: block;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #db00ff;
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    box-shadow: 0 15px 30px rgba(219, 0, 255, 0.4);
    white-space: nowrap;
}

.about-text-right {
    flex: 1;
}

.section-eyebrow-light {
    color: #db00ff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-headline-light {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 35px;
    color: #000000;
    letter-spacing: -1px;
}

.about-text-card {
    background: #ffffff;
    border-left: 6px solid #db00ff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.about-text-card p {
    font-size: 16px;
    color: #444444;
    line-height: 1.8;
}

.about-text-card strong {
    color: #0066ff;
}

/* --- PROGRAMS SECTION --- */
.programs-bg {
    background: url('ministries background.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 140px 20px;
    position: relative;
    overflow: hidden;
}

.s2-vignette {
    position: absolute;
    inset: 0;
    /* Darken the image and overlay premium dots and glowing orbs */
    background-color: rgba(5, 2, 16, 0.7);
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(140, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(0, 213, 255, 0.1) 0%, transparent 60%),
        radial-gradient(rgba(255, 255, 255, 0.04) 1.5px, transparent 1.5px);
    background-size: 100% 100%, 100% 100%, 35px 35px;
    z-index: 1;
}

.programs-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 950px;
}

.section-heading-center {
    text-align: center;
    margin-bottom: 100px; /* Increased globally for more breathing room */
}

.section-heading-center h2 {
    font-size: 40px;
    font-weight: 800;
}

.polygon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px auto 0; /* Added margin-top for extra space */
    justify-items: center;
}

/* Staggered Zig-Zag / Polygon layout effect */
.poly-item {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    /* Gradient border */
    background: linear-gradient(135deg, #8c00ff, #00d5ff);
    padding: 2px; /* Border thickness */
    text-decoration: none;
    color: #ffffff;
    position: relative;
    /* Box shadow to match the neon glowing effect */
    box-shadow: 0 0 15px rgba(140, 0, 255, 0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
    top: 0;
}

.poly-item:nth-child(2n) {
    top: 50px;
}

.poly-item:hover {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 0 30px rgba(140, 0, 255, 0.6), inset 0 0 15px rgba(0, 213, 255, 0.3);
}

.poly-inner {
    /* Powerfully designed gradient inside the circle blending purple and deep blue */
    background: radial-gradient(circle at top left, rgba(70, 0, 150, 0.6) 0%, rgba(20, 5, 45, 0.85) 55%, rgba(5, 2, 18, 0.98) 100%);
    box-shadow: inset 0 0 30px rgba(140, 0, 255, 0.2);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.poly-inner i {
    font-size: 32px;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255,255,255,0.4);
}

.poly-inner h3 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
}

.poly-inner p {
    font-size: 11px;
    color: #b0b0b0;
    line-height: 1.4;
}

/* --- FLOATING ANIMATIONS --- */
@keyframes float1 { 0%, 100% { top: 0px; } 50% { top: -15px; } }
@keyframes float2 { 0%, 100% { top: 50px; } 50% { top: 35px; } }

.float-1, .float-3, .float-5, .float-7 {
    animation: float1 6s ease-in-out infinite;
}
.float-2, .float-4, .float-6, .float-8 {
    animation: float2 6s ease-in-out infinite;
}

.float-1 { animation-delay: 0s; }
.float-2 { animation-delay: 1s; }
.float-3 { animation-delay: 2s; }
.float-4 { animation-delay: 3s; }
.float-5 { animation-delay: 0.5s; }
.float-6 { animation-delay: 2.5s; }
.float-7 { animation-delay: 1.5s; }
.float-8 { animation-delay: 1.5s; }

/* --- ENTRY ANIMATIONS (FOR HERO) --- */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- ABOUT PAGE SPECIFIC STYLES --- */

/* Hero Banner */
.about-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background: url('about banner.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px; /* offset for sticky nav */
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.breadcrumb {
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.breadcrumb a {
    color: #db00ff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb span {
    margin: 0 10px;
    color: #666;
}

.about-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -2px;
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 40px;
    }
}

/* Mission & Vision Section */
.mission-vision-section {
    position: relative;
    padding: 100px 20px;
    background: #050210;
    overflow: hidden;
}

.mv-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(219,0,255,0.15) 0%, rgba(5,2,16,0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.mv-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.mv-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    border-color: rgba(219, 0, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 40px rgba(219, 0, 255, 0.1);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #db00ff, #5a00cc);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: #fff;
    margin: 0 auto 30px;
    box-shadow: 0 10px 20px rgba(219, 0, 255, 0.3);
}

.mv-card h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.mv-card p {
    font-size: 16px;
    color: #a0a0a0;
    line-height: 1.6;
}

/* Core Values (COREL) Section */
.core-values-section {
    padding: 100px 20px 140px;
    background: #020108;
    position: relative;
}

.cv-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.section-eyebrow-neon {
    color: #db00ff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-shadow: 0 0 10px rgba(219,0,255,0.4);
}

.cv-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cv-desc {
    color: #a0a0a0;
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.cv-desc strong {
    color: #db00ff;
}

.corel-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.corel-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.4s ease;
    cursor: default;
}

.corel-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(219, 0, 255, 0.4);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.corel-letter {
    font-size: 64px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    line-height: 1;
}

.corel-card:hover .corel-letter {
    color: #db00ff;
    -webkit-text-stroke: 0px;
    text-shadow: 0 0 20px rgba(219,0,255,0.6);
}

.corel-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.corel-content p {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .corel-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 15px;
    }
}

/* --- STRATEGY PAGE SPECIFIC STYLES --- */

/* Hero Banner */
.strategy-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 350px;
    background: linear-gradient(to bottom, rgba(5,2,16,0.5), rgba(5,2,16,1)), url('champions strategy.jpeg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px; /* offset for sticky nav */
}

.strategy-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.strategy-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -2px;
}

/* Approach Section */
.approach-section {
    padding: 80px 20px 100px;
    background: #050210;
}

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

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

.approach-text h2 {
    font-size: 42px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 15px;
}

.approach-desc {
    color: #a0a0a0;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.approach-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.approach-card:hover {
    transform: translateY(-10px);
    border-color: rgba(219, 0, 255, 0.3);
    background: rgba(219, 0, 255, 0.05);
}

.approach-icon {
    font-size: 40px;
    color: #db00ff;
    margin-bottom: 20px;
}

.approach-card h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 5px;
}

.approach-card p {
    color: #a0a0a0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.approach-card p span {
    color: #fff;
    font-weight: 700;
}

@media (max-width: 900px) {
    .approach-cards {
        grid-template-columns: 1fr;
    }
}

/* Church Growth Section */
.growth-section {
    position: relative;
    padding: 100px 20px;
    background: #020108;
    overflow: hidden;
}

.growth-glow {
    position: absolute;
    top: 50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(219,0,255,0.1) 0%, rgba(5,2,16,0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

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

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

.growth-header h2 {
    font-size: 42px;
    color: #db00ff;
    font-weight: 800;
    margin-bottom: 10px;
}

.growth-header p {
    color: #a0a0a0;
    font-size: 16px;
}

.growth-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.growth-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    padding: 20px 40px;
    gap: 30px;
    transition: all 0.3s ease;
}

.growth-item:hover {
    background: rgba(219, 0, 255, 0.1);
    border-color: rgba(219, 0, 255, 0.3);
    transform: translateX(10px);
}

.growth-icon {
    width: 60px;
    height: 60px;
    background: #db00ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(219,0,255,0.4);
}

.growth-content h4 {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 4px;
}

.growth-content p {
    font-size: 15px;
    color: #a0a0a0;
}

@media (max-width: 768px) {
    .growth-item {
        flex-direction: column;
        border-radius: 20px;
        text-align: center;
        padding: 30px 20px;
    }
}

/* Champions Initiative Section */
.initiative-section {
    padding: 100px 20px 140px;
    background: #050210;
}

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

.initiative-header {
    text-align: center;
    margin-bottom: 70px;
}

.initiative-header h2 {
    font-size: 46px;
    color: #fff;
    font-weight: 800;
}

.initiative-header h2 span {
    color: transparent;
    -webkit-text-stroke: 1px #db00ff;
}

.initiative-header p {
    color: #a0a0a0;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.initiative-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.init-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s ease;
}

.init-bg-letter {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(219, 0, 255, 0.05);
    -webkit-text-stroke: 1px rgba(219, 0, 255, 0.15);
    line-height: 1;
    transition: all 0.4s ease;
    z-index: 0;
}

.init-icon {
    position: relative;
    font-size: 48px;
    color: #a0a0a0;
    margin-bottom: 25px;
    z-index: 1;
    transition: color 0.4s ease;
}

.init-card h3 {
    position: relative;
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
    z-index: 1;
}

.init-card p {
    position: relative;
    font-size: 14px;
    color: #888;
    line-height: 1.5;
    z-index: 1;
}

.init-card:hover {
    transform: translateY(-10px);
    border-color: rgba(219, 0, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    background: rgba(5, 2, 16, 0.8);
}

.init-card:hover .init-bg-letter {
    color: rgba(219, 0, 255, 0.15);
    -webkit-text-stroke: 1px rgba(219, 0, 255, 0.4);
    transform: scale(1.1);
}

.init-card:hover .init-icon {
    color: #db00ff;
    text-shadow: 0 0 15px rgba(219,0,255,0.4);
}

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

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

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .about-container { flex-direction: column; text-align: center; }
    .about-text-content { align-items: center; display: flex; flex-direction: column; }
    .section-eyebrow-light { justify-content: center; }
    .about-headline-light { text-align: center; }
    .polygon-grid { grid-template-columns: repeat(3, 1fr); gap: 25px; }
    .poly-item { width: 180px; height: 180px; }
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hamburger { display: block; }
    .polygon-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 32px; }
    .about-headline { font-size: 28px; }
    .content-section { padding: 80px 20px; }
}

/* --- CONNECT SECTION --- */
.connect-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.connect-headline {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.connect-sub {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.connect-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    text-decoration: none;
    color: inherit;
}

.connect-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transform: translateY(-3px);
    border-color: #db00ff;
}

.connect-icon {
    background: #f4f4f4;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #1a1a1a;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s;
}

.connect-card:hover .connect-icon {
    background: #db00ff;
    color: #ffffff;
}

.connect-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.connect-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* --- FOOTER --- */
.site-footer {
    background: #020108;
    color: #e0e0e0;
    padding-top: 80px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    position: relative;
    z-index: 10;
    margin-top: -60px;
}

.footer-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.footer-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-cta p {
    color: #a0a0a0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-footer-cta {
    background: #db00ff;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.btn-footer-cta:hover {
    background: #a100cc;
}

.footer-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 60px;
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.6;
}

.contact-col ul {
    list-style: none;
}

.contact-col li {
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    line-height: 1.6;
}

.contact-col i {
    color: #db00ff;
    font-size: 16px;
    margin-top: 3px;
}

.quicklinks-col ul {
    list-style: none;
}

.quicklinks-col li {
    margin-bottom: 12px;
}

.quicklinks-col a {
    color: #a0a0a0;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.quicklinks-col a:hover {
    color: #db00ff;
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding: 25px 20px;
    color: #666;
    font-size: 13px;
}

/* --- STRUCTURE PAGE SPECIFIC STYLES --- */

/* Hero Banner */
.structure-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 350px;
    background: linear-gradient(to bottom, rgba(5,2,16,0.6), rgba(5,2,16,1)), url('structure banner.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.structure-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.structure-hero-content h1 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -2px;
    text-shadow: 0 0 30px rgba(0,0,0,0.5);
}

/* Intro Section */
.departments-intro-section {
    padding: 100px 20px 40px;
    background: #050210;
    text-align: center;
}

.intro-container h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #ffffff;
    margin-top: 15px;
}

.intro-accent {
    width: 80px;
    height: 4px;
    background: #db00ff;
    margin: 30px auto 0;
    border-radius: 2px;
}

/* Split Sections Layout */
.structure-split-section {
    padding: 80px 20px;
    background: #050210;
    overflow: hidden;
}

.structure-split-section.light-row {
    background: #fafafa;
    color: #1a1a1a;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.structure-split-section.alt-row .split-container {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    position: relative;
}

.split-image img {
    width: 100%;
    border-radius: 4px; /* Sharper corners for frame look */
    border: 15px solid #ffffff; /* White frame */
    box-shadow: 0 15px 45px rgba(0,0,0,0.25);
    display: block;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.framed-img {
    transform: rotate(-3deg); /* Slight bend */
}

.structure-split-section.alt-row .framed-img {
    transform: rotate(3deg); /* Opposite bend for alternating sections */
}

.split-image img:hover {
    transform: rotate(0) scale(1.02); /* Straighten on hover */
    z-index: 10;
}

.split-text {
    flex: 1;
}

.text-card h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #db00ff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 5px 15px rgba(219, 0, 255, 0.2);
}

.light-row .text-card h2 {
    color: #1a1a1a;
    text-shadow: none;
}

.text-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 20px;
    font-weight: 500;
}

.light-row .text-card p {
    color: #555;
}

.text-card ul {
    list-style: none;
}

.text-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
}

.light-row .text-card ul li {
    color: #333;
}

.text-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #db00ff;
    font-size: 20px;
    font-weight: 900;
}

/* Care List Specifics */
.care-list li span {
    font-weight: 800;
    color: #db00ff;
    font-size: 20px;
    margin-right: 5px;
}

/* Growth Steps */
.growth-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.step-item {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #db00ff;
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
}

.step-item strong {
    display: block;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 8px;
}

.step-item p {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 0;
}

/* Prayer Groups Section */
.prayer-groups-section {
    padding: 100px 20px;
    background: #020108;
    text-align: center;
}

.prayer-container h3 {
    font-size: clamp(24px, 4vw, 32px);
    color: #ffffff;
    margin-bottom: 20px;
}

.prayer-container p {
    color: #a0a0a0;
    margin-bottom: 50px;
}

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

.prayer-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(219, 0, 255, 0.01));
    border: 1px solid rgba(219, 0, 255, 0.15);
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.prayer-card::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(219, 0, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.prayer-card:hover {
    background: rgba(219, 0, 255, 0.08);
    border-color: #db00ff;
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(219, 0, 255, 0.2);
}

.prayer-card h4 {
    color: #db00ff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.prayer-card p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Service Groups Section */
.service-groups-section {
    padding: 100px 20px;
    background: #fdfdfd;
    color: #1a1a1a;
    text-align: center;
}

.service-container h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
}

.service-container p {
    color: #888;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 12px;
}

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

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 30px;
    background: #ffffff;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.service-item i {
    color: #db00ff;
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(219,0,255,0.2));
}

.service-item:hover {
    background: #ffffff;
    border-color: rgba(219,0,255,0.3);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Highlight box */
.ministry-highlight {
    background: rgba(219, 0, 255, 0.08);
    border-left: 5px solid #db00ff;
    padding: 30px;
    margin: 30px 0;
    border-radius: 0 20px 20px 0;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.structure-split-section:not(.light-row) .ministry-highlight {
    color: #e0e0e0;
}

/* Prayer Grid - 3 Columns Desktop */
.prayer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 40px auto 0;
}

@media (max-width: 991px) {
    .split-container {
        flex-direction: column !important;
        gap: 40px;
        text-align: center;
    }
    
    .growth-steps {
        text-align: left;
    }

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

/* --- MEMBERSHIP PAGE SPECIFIC STYLES (DARK THEME) --- */

.membership-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(to bottom, rgba(5,2,16,0.6), rgba(5,2,16,1)), url('back-dashboard-champions.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.membership-hero-content {
    position: relative;
    z-index: 2;
}

.membership-hero-content h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -2px;
}

.membership-pathway-section {
    padding: 100px 20px;
    background: #050210;
}

.pathway-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pathway-header {
    text-align: center;
    margin-bottom: 70px;
}

.pathway-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #ffffff;
    margin-top: 15px;
    margin-bottom: 20px;
}

.pathway-subtitle {
    color: #a0a0a0;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.membership-rows {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.membership-row-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(219, 0, 255, 0.1);
    padding: 35px 40px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.membership-row-card:hover {
    background: rgba(219, 0, 255, 0.05);
    border-color: #db00ff;
    transform: translateX(15px);
    box-shadow: -10px 0 30px rgba(219, 0, 255, 0.15);
}

.row-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: rgba(219, 0, 255, 0.1);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #db00ff;
    border: 1px solid rgba(219, 0, 255, 0.2);
}

.row-content {
    flex: 1;
}

.row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.row-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
}

.row-badge {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
    color: #db00ff;
    background: rgba(219, 0, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.row-content p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 16px;
}

.membership-bottom-cta {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .membership-row-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 20px;
    }
    
    .row-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .prayer-grid {
        grid-template-columns: 1fr;
    }
}

/* --- STYLE PAGE SPECIFIC STYLES --- */

.style-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 350px;
    background: linear-gradient(to bottom, rgba(5,2,16,0.6), rgba(5,2,16,1)), url('back-dashboard-champions.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.style-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.style-hero-content h1 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -2px;
}

.style-intro-section {
    padding: 100px 20px;
    background: #050210;
    text-align: center;
}

.style-intro-section .intro-container {
    max-width: 800px;
    margin: 0 auto;
}

.style-intro-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #ffffff;
    margin-top: 15px;
    margin-bottom: 25px;
}

.style-intro-section .intro-desc {
    color: #a0a0a0;
    font-size: 18px;
    line-height: 1.8;
}

.style-cta-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #050210 0%, #1a0533 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.style-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(219,0,255,0.05) 0%, transparent 70%);
    z-index: 0;
}

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

.cta-container h2 {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-container p {
    color: #a0a0a0;
    font-size: 18px;
    margin-bottom: 40px;
}

/* --- DONATION PAGE SPECIFIC STYLES --- */

.donation-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(to bottom, rgba(5,2,16,0.6), rgba(5,2,16,1)), url('ministries background.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(219,0,255,0.1) 0%, transparent 70%);
    z-index: 0;
}

.donation-hero-content {
    position: relative;
    z-index: 2;
}

.donation-hero-content h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 18px;
    color: #a0a0a0;
    max-width: 600px;
    margin: 15px auto 0;
    line-height: 1.6;
}

.payment-options-section {
    padding: 100px 20px;
    background: #050210;
}

.options-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.section-title-neon {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

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

.payment-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(219, 0, 255, 0.1);
    padding: 50px 30px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-card:hover {
    background: rgba(219, 0, 255, 0.06);
    border-color: #db00ff;
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 30px rgba(219, 0, 255, 0.1);
}

.payment-card .card-icon {
    font-size: 48px;
    color: #db00ff;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(219, 0, 255, 0.3));
}

.payment-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.payment-card p {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-select {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #db00ff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-card.hashed {
    opacity: 0.7;
}

.card-status {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #db00ff;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 35px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* MODAL STYLES */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.payment-modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 1, 8, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: #ffffff;
    width: 90%;
    max-width: 600px;
    border-radius: 40px;
    padding: 50px;
    z-index: 2;
    transform: translateY(50px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 90vh;
    overflow-y: auto;
}

.payment-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #f0f0f0;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #db00ff;
    color: #fff;
}

.modal-header {
    text-align: center;
    margin-bottom: 40px;
}

.modal-header h2 {
    font-size: 32px;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: -1.5px;
}

.modal-header p {
    color: #db00ff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 5px;
}

.account-group {
    margin-bottom: 35px;
}

.group-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: #888;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.account-card {
    background: #f8f9ff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.account-card:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transform: scale(1.02);
}

.bank-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: 10px;
    text-align: center;
    padding: 5px;
}

.bank-logo.gtb { background: #ff6000; color: #fff; }
.bank-logo.td { background: #008a00; color: #fff; }
.bank-logo.zelle { background: #6d1ed4; color: #fff; }

.account-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.acc-num {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.acc-name, .acc-detail, .acc-email {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.copy-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    color: #db00ff;
}

.modal-footer {
    text-align: center;
    background: #fdfdfd;
    padding: 20px;
    border-radius: 20px;
    font-size: 13px;
    color: #888;
}

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

/* --- CONNECT & SOCIAL STYLES --- */

.connect-section {
    padding: 120px 20px 180px; /* Increased bottom padding for distance from footer */
    background: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.connect-section h2 {
    color: #1a1a1a;
    font-size: 40px; /* SYNCED WITH PROGRAMS */
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.connect-subtitle {
    color: #666666;
    font-size: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 in a row as requested */
    gap: 40px;
    margin-top: 100px;
}

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

/* --- BRISK & PREMIUM SOCIAL CARDS (2-COLUMN) --- */
.social-box {
    background: #ffffff;
    border: 1px solid rgba(219, 0, 255, 0.08);
    padding: 50px 60px;
    border-radius: 40px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.social-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(219, 0, 255, 0.05), transparent);
    transition: 0.6s;
}

.social-box:hover::before {
    left: 100%;
}

.social-box i {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: #fdf2ff;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: #db00ff;
    transition: all 0.4s ease;
    border: 1px solid rgba(219, 0, 255, 0.1);
    box-shadow: 0 8px 20px rgba(219, 0, 255, 0.1);
}

.social-text h4 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.social-text p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
}

.social-box:hover {
    transform: scale(1.03) translateY(-10px);
    background: #ffffff;
    border-color: rgba(219, 0, 255, 0.3);
    box-shadow: 0 30px 60px rgba(219, 0, 255, 0.12);
}

.social-box:hover i {
    background: #db00ff;
    color: #ffffff;
    transform: rotate(8deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(219, 0, 255, 0.3);
}

/* Hover Colors per Brand */
.social-box.fb:hover { border-color: #1877F2; }
.social-box.fb:hover i { background: #1877F2; }
.social-box.ig:hover { border-color: #E4405F; }
.social-box.ig:hover i { background: #E4405F; }
.social-box.x-twitter:hover { border-color: #000000; }
.social-box.x-twitter:hover i { background: #000000; }
.social-box.yt:hover { border-color: #FF0000; }
.social-box.yt:hover i { background: #FF0000; }
.social-box.ln:hover { border-color: #0A66C2; }
.social-box.ln:hover i { background: #0A66C2; }
.social-box.tk:hover { border-color: #000000; }
.social-box.tk:hover i { background: #000000; }

/* Footer Socials */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-socials a:hover {
    background: #db00ff;
    color: #ffffff;
    transform: translateY(-3px);
    border-color: #db00ff;
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(to bottom, rgba(5,2,16,0.5), rgba(5,2,16,1)), url('contact banner.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.contact-hero-content h1 {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -3px;
    margin-bottom: 15px;
}

.contact-main-section {
    padding: 100px 20px;
    background: #050210;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
    border-color: rgba(219, 0, 255, 0.3);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(219, 0, 255, 0.1);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #db00ff;
}

.info-text h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 8px;
}

.info-text p, .info-text a {
    color: #a0a0a0;
    text-decoration: none;
    line-height: 1.6;
}

.info-text a:hover {
    color: #db00ff;
}

.contact-social-prompt {
    margin-top: 50px;
}

.contact-social-prompt h4 {
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

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

.contact-social-icons a {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-icons a:hover {
    background: #db00ff;
    transform: translateY(-5px);
}

/* Premium Form */
.premium-contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 30px;
    backdrop-filter: blur(20px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .premium-contact-form {
        padding: 30px 20px;
    }
}

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

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 20px;
    border-radius: 12px;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    appearance: none; /* Removes default browser styling */
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 18px;
    cursor: pointer;
}

/* Fix for select options background in some browsers */
.form-group select option {
    background: #1a1527;
    color: #ffffff;
    padding: 10px;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #db00ff;
    background: rgba(219, 0, 255, 0.05);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #db00ff 0%, #00c6ff 100%);
    color: #ffffff;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(219, 0, 255, 0.4);
}

.map-section {
    padding-bottom: 100px;
    background: #050210;
}

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

/* --- MOBILE ALIGNMENT FIXES FOR STYLE PAGE --- */
@media (max-width: 991px) {
    .text-card {
        text-align: left !important; /* Ensure content is readable on mobile */
        padding: 0 10px;
    }
    
    .text-card h2, .text-card h3 {
        text-align: center; /* Keep headers centered for visual balance */
        margin-bottom: 30px;
    }

    .yuppies-list, .care-list {
        display: inline-block;
        text-align: left;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .yuppies-list li, .care-list li {
        padding-left: 30px !important;
        margin-bottom: 15px !important;
        font-size: 16px !important;
    }
}

/* --- MOBILE MODAL ADJUSTMENTS --- */
@media (max-width: 600px) {
    .modal-content {
        padding: 40px 20px 30px;
        width: 95%;
        border-radius: 30px;
    }

    .modal-header h2 {
        font-size: 24px;
    }

    .account-card {
        padding: 15px;
        gap: 12px;
        border-radius: 15px;
    }

    .bank-logo {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 8px;
    }

    .acc-num {
        font-size: 16px !important;
    }

    .acc-name {
        font-size: 13px !important;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}
