/* ===============================================================================
   IFM WEBSITE - MAIN STYLESHEET
   Increasing Faith Ministries
   =============================================================================== */

/* ===============================================================================
   1. CSS VARIABLES / CUSTOM PROPERTIES
   =============================================================================== */

:root {
    /* Grayscale Palette - Clean Black & White Elegance */
    --gray-darkest: #0a0a0a;
    --gray-darker: #1a1a1a;
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #888888;

    /* Light Grays & Whites */
    --white: #ffffff;
    --white-soft: rgba(255, 255, 255, 0.9);
    --white-dim: rgba(255, 255, 255, 0.7);
    --off-white: #f5f5f5;
    --light-gray: #f0f0f0;
    --silver: #e0e0e0;
    --platinum: #d0d0d0;
    --medium-gray: #cccccc;
    --cool-gray: #aaaaaa;

    /* Glow Effects */
    --white-glow: rgba(255, 255, 255, 0.4);
    --soft-glow: rgba(255, 255, 255, 0.3);

    /* Core Colors */
    --black: #000000;

    /* Accent Color for Give Page */
    --success: #10b981;
    --success-glow: rgba(16, 185, 129, 0.3);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;

    /* Motion & Easing */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-flow: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===============================================================================
   2. RESET & BASE STYLES
   =============================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--white);
    color: var(--black);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
}

/* ===============================================================================
   3. ANIMATED BACKGROUND - Gradient Flow
   =============================================================================== */

.bg-gradient {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, var(--gray-dark) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(233, 30, 140, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, var(--gray-darker) 0%, var(--black) 100%);
    z-index: 0;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%, 100% 50%, 50% 50%;
        filter: hue-rotate(0deg);
    }
    50% {
        background-position: 100% 50%, 0% 50%, 50% 50%;
        filter: hue-rotate(15deg);
    }
}

/* ===============================================================================
   4. FLOATING PARTICLES
   =============================================================================== */

.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: floatParticle linear infinite;
    opacity: 0;
}

.particle:nth-child(1) { width: 4px; height: 4px; background: var(--white); left: 10%; animation-duration: 20s; animation-delay: 0s; }
.particle:nth-child(2) { width: 6px; height: 6px; background: var(--white); left: 20%; animation-duration: 25s; animation-delay: 2s; }
.particle:nth-child(3) { width: 3px; height: 3px; background: var(--cool-gray); left: 30%; animation-duration: 18s; animation-delay: 4s; }
.particle:nth-child(4) { width: 5px; height: 5px; background: var(--medium-gray); left: 40%; animation-duration: 22s; animation-delay: 1s; }
.particle:nth-child(5) { width: 4px; height: 4px; background: var(--off-white); left: 50%; animation-duration: 28s; animation-delay: 3s; }
.particle:nth-child(6) { width: 7px; height: 7px; background: var(--gray-light); left: 60%; animation-duration: 24s; animation-delay: 5s; }
.particle:nth-child(7) { width: 3px; height: 3px; background: var(--medium-gray); left: 70%; animation-duration: 19s; animation-delay: 2s; }
.particle:nth-child(8) { width: 5px; height: 5px; background: var(--light-gray); left: 80%; animation-duration: 26s; animation-delay: 4s; }
.particle:nth-child(9) { width: 4px; height: 4px; background: var(--white); left: 90%; animation-duration: 21s; animation-delay: 1s; }
.particle:nth-child(10) { width: 6px; height: 6px; background: var(--silver); left: 15%; animation-duration: 23s; animation-delay: 3s; }
.particle:nth-child(11) { width: 4px; height: 4px; background: var(--cool-gray); left: 45%; animation-duration: 27s; animation-delay: 0s; }
.particle:nth-child(12) { width: 5px; height: 5px; background: var(--white); left: 75%; animation-duration: 20s; animation-delay: 2s; }

@keyframes floatParticle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/* ===============================================================================
   5. FLOATING IMAGES
   =============================================================================== */

.floating-images {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: visible;
}

.float-img {
    position: fixed;
    border-radius: 20px;
    object-fit: cover;
    opacity: 0.35;
    filter: grayscale(100%) contrast(1.2) brightness(1.1);
    box-shadow:
        0 0 80px rgba(255, 255, 255, 0.3),
        0 0 120px rgba(150, 150, 150, 0.2),
        0 0 160px rgba(100, 100, 100, 0.1);
    will-change: transform, top, left;
}

.float-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(100, 100, 100, 0.1));
    border-radius: 20px;
    animation: glowPulse 3s ease-in-out infinite;
}

.float-img:nth-child(1) { width: 320px; height: 240px; top: 0; left: 0; animation: sweep1 50s ease-in-out infinite; }
.float-img:nth-child(2) { width: 280px; height: 360px; top: 0; left: 0; animation: sweep2 60s ease-in-out infinite; animation-delay: -10s; }
.float-img:nth-child(3) { width: 350px; height: 260px; top: 0; left: 0; animation: sweep3 45s ease-in-out infinite; animation-delay: -15s; }
.float-img:nth-child(4) { width: 300px; height: 220px; top: 0; left: 0; animation: sweep4 48s ease-in-out infinite; animation-delay: -8s; }
.float-img:nth-child(5) { width: 340px; height: 420px; top: 0; left: 0; animation: sweep5 55s ease-in-out infinite; animation-delay: -20s; }
.float-img:nth-child(6) { width: 380px; height: 280px; top: 0; left: 0; animation: sweep6 52s ease-in-out infinite; animation-delay: -12s; }
.float-img:nth-child(7) { width: 320px; height: 240px; top: 0; left: 0; animation: sweep7 58s ease-in-out infinite; animation-delay: -25s; }
.float-img:nth-child(8) { width: 360px; height: 270px; top: 0; left: 0; animation: sweep8 46s ease-in-out infinite; animation-delay: -18s; }
.float-img:nth-child(9) { width: 300px; height: 380px; top: 0; left: 0; animation: sweep9 54s ease-in-out infinite; animation-delay: -30s; }
.float-img:nth-child(10) { width: 340px; height: 260px; top: 0; left: 0; animation: sweep10 42s ease-in-out infinite; animation-delay: -5s; }

/* Sweep Animations - Full screen movement paths */
@keyframes sweep1 { 0% { top: -20%; left: -20%; transform: rotate(0deg); } 50% { top: 80%; left: 80%; transform: rotate(10deg); } 100% { top: -20%; left: -20%; transform: rotate(0deg); } }
@keyframes sweep2 { 0% { top: -20%; left: 100%; transform: rotate(0deg); } 50% { top: 80%; left: -20%; transform: rotate(-10deg); } 100% { top: -20%; left: 100%; transform: rotate(0deg); } }
@keyframes sweep3 { 0% { top: -25%; left: 40%; transform: rotate(0deg); } 50% { top: 100%; left: 40%; transform: rotate(5deg); } 100% { top: -25%; left: 40%; transform: rotate(0deg); } }
@keyframes sweep4 { 0% { top: 30%; left: -25%; transform: rotate(0deg); } 50% { top: 30%; left: 100%; transform: rotate(-5deg); } 100% { top: 30%; left: -25%; transform: rotate(0deg); } }
@keyframes sweep5 { 0% { top: 100%; left: -20%; transform: rotate(0deg); } 50% { top: -20%; left: 80%; transform: rotate(8deg); } 100% { top: 100%; left: -20%; transform: rotate(0deg); } }
@keyframes sweep6 { 0% { top: 100%; left: 100%; transform: rotate(0deg); } 50% { top: -20%; left: -20%; transform: rotate(-8deg); } 100% { top: 100%; left: 100%; transform: rotate(0deg); } }
@keyframes sweep7 { 0% { top: 10%; left: -20%; transform: rotate(0deg); } 25% { top: 60%; left: 30%; transform: rotate(5deg); } 50% { top: 20%; left: 70%; transform: rotate(-5deg); } 75% { top: 70%; left: 100%; transform: rotate(5deg); } 100% { top: 10%; left: -20%; transform: rotate(0deg); } }
@keyframes sweep8 { 0% { top: -20%; left: 20%; transform: rotate(0deg); } 25% { top: 30%; left: 70%; transform: rotate(-5deg); } 50% { top: 60%; left: 10%; transform: rotate(5deg); } 75% { top: 100%; left: 60%; transform: rotate(-5deg); } 100% { top: -20%; left: 20%; transform: rotate(0deg); } }
@keyframes sweep9 { 0% { top: 50%; left: -20%; transform: rotate(0deg); } 25% { top: -10%; left: 50%; transform: rotate(5deg); } 50% { top: 50%; left: 100%; transform: rotate(0deg); } 75% { top: 100%; left: 50%; transform: rotate(-5deg); } 100% { top: 50%; left: -20%; transform: rotate(0deg); } }
@keyframes sweep10 { 0% { top: 60%; left: 100%; transform: rotate(0deg); } 50% { top: 10%; left: -20%; transform: rotate(10deg); } 100% { top: 60%; left: 100%; transform: rotate(0deg); } }

/* Additional floating image animations */
@keyframes zoomPulse { 0%, 100% { transform: scale(1); opacity: 0.35; } 50% { transform: scale(1.15); opacity: 0.5; } }
@keyframes breathe { 0%, 100% { transform: scale(1); filter: saturate(1.4) brightness(1.1); } 50% { transform: scale(1.1); filter: saturate(1.8) brightness(1.3); } }
@keyframes spinSway { 0%, 100% { transform: rotate(0deg); } 25% { transform: rotate(15deg); } 75% { transform: rotate(-15deg); } }
@keyframes glowPulse { 0%, 100% { opacity: 0.2; box-shadow: 0 0 40px rgba(255, 255, 255, 0.2); } 50% { opacity: 0.4; box-shadow: 0 0 80px rgba(255, 255, 255, 0.4), 0 0 120px rgba(200, 200, 200, 0.3); } }

/* ===============================================================================
   6. LENS FLARE EFFECTS
   =============================================================================== */

.lens-flare {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: screen;
}

.lens-flare-1 {
    top: 10%;
    right: 15%;
    background: radial-gradient(circle, var(--white-glow) 0%, transparent 70%);
    animation: pulseLens 4s ease-in-out infinite;
}

.lens-flare-2 {
    bottom: 20%;
    left: 10%;
    background: radial-gradient(circle, var(--soft-glow) 0%, transparent 70%);
    animation: pulseLens 5s ease-in-out infinite 1s;
}

.lens-flare-3 {
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(233, 30, 140, 0.2) 0%, transparent 70%);
    animation: pulseLens 6s ease-in-out infinite 2s;
}

@keyframes pulseLens {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* ===============================================================================
   7. NAVIGATION
   =============================================================================== */

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(10, 6, 18, 0.95), transparent);
    backdrop-filter: blur(10px);
    transition: all 0.5s var(--ease-smooth);
}

.nav.scrolled {
    padding: 1rem 5%;
    background: rgba(10, 6, 18, 0.98);
    box-shadow: 0 5px 30px rgba(233, 30, 140, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 20px var(--white-glow);
    transition: all 0.5s var(--ease-bounce);
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 40px var(--white-glow);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--white), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text span {
    background: linear-gradient(135deg, var(--white), var(--medium-gray));
    -webkit-background-clip: text;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--white-dim);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    transition: all 0.4s var(--ease-smooth);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--white), var(--white));
    transition: width 0.5s var(--ease-flow);
    box-shadow: 0 0 10px var(--white);
}

.nav-links a:hover {
    color: var(--white);
    text-shadow: 0 0 20px var(--white);
}

.nav-links a:hover::after { width: 100%; }

.nav-actions {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s var(--ease-bounce);
}

.nav-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--cool-gray);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.nav-btn-outline:hover {
    background: var(--cool-gray);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.nav-btn-glow {
    background: linear-gradient(135deg, var(--white), var(--gray-medium));
    color: var(--black);
    border: none;
    box-shadow: 0 0 20px rgba(233, 30, 140, 0.5);
}

.nav-btn-glow:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(233, 30, 140, 0.6);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}

/* ===============================================================================
   8. HERO SECTION
   =============================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 1000px;
    animation: heroReveal 1.5s var(--ease-flow) forwards;
    opacity: 0;
    transform: translateY(50px);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.2), rgba(0, 212, 255, 0.2));
    border: 1px solid rgba(233, 30, 140, 0.5);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(233, 30, 140, 0.3); }
    50% { box-shadow: 0 0 40px rgba(233, 30, 140, 0.6); }
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--white) 50%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 5s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes textShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--white), var(--cool-gray));
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-text,
.hero p {
    font-size: 1.25rem;
    color: var(--white-dim);
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white-dim);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator .arrow {
    width: 20px;
    height: 30px;
    border: 2px solid var(--white);
    border-radius: 10px;
    position: relative;
}

.scroll-indicator .arrow::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollDot 1.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollDot {
    0%, 100% { opacity: 1; top: 6px; }
    50% { opacity: 0.3; top: 14px; }
}

/* ===============================================================================
   9. BUTTONS
   =============================================================================== */

.btn {
    padding: 1.2rem 3rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.5s var(--ease-bounce);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--white), var(--gray-medium));
    color: var(--black);
    box-shadow: 0 10px 40px rgba(233, 30, 140, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(233, 30, 140, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 0 20px var(--white-glow);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--white-glow);
}

/* ===============================================================================
   10. SECTIONS
   =============================================================================== */

section {
    padding: 120px 5%;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.15), rgba(0, 212, 255, 0.15));
    border: 1px solid var(--white);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--white-dim);
    line-height: 1.9;
}

/* ===============================================================================
   11. SCRIPTURE SECTION
   =============================================================================== */

.scripture {
    background: linear-gradient(135deg, var(--gray-darkest) 0%, var(--black) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.scripture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--white));
}

.scripture blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.7;
    color: var(--white);
    text-shadow: 0 0 40px rgba(233, 30, 140, 0.3);
}

.scripture cite {
    display: block;
    margin-top: 2.5rem;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 0 20px var(--white-glow);
}

/* ===============================================================================
   12. VALUES GRID (Home Page)
   =============================================================================== */

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

.value-card {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.8), rgba(26, 10, 46, 0.9));
    border: 1px solid rgba(233, 30, 140, 0.3);
    border-radius: 20px;
    transition: all 0.5s var(--ease-flow);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--white), var(--cool-gray), var(--white));
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-flow);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--white);
    box-shadow:
        0 20px 60px rgba(233, 30, 140, 0.3),
        0 0 100px rgba(233, 30, 140, 0.1);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 20px var(--white));
}

.value-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.value-card p {
    color: var(--white-dim);
    line-height: 1.8;
}

/* ===============================================================================
   13. PATHWAY SECTION (Home Page)
   =============================================================================== */

.pathway {
    background: linear-gradient(180deg, var(--black) 0%, var(--gray-darkest) 50%, var(--black) 100%);
}

.pathway-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pathway-step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(45, 27, 78, 0.5);
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.5s var(--ease-flow);
    position: relative;
}

.pathway-step:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--white);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px var(--white);
}

.pathway-step h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.pathway-step p {
    font-size: 0.95rem;
    color: var(--white-dim);
}

/* ===============================================================================
   14. TESTIMONIALS
   =============================================================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.7), rgba(10, 6, 18, 0.9));
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.5s var(--ease-flow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--white);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--cool-gray);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.testimonial-card p {
    font-size: 1rem;
    color: var(--white-dim);
    line-height: 1.9;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 0 20px rgba(233, 30, 140, 0.4);
}

.author-info h5 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--white);
    font-weight: 500;
}

/* ===============================================================================
   15. CTA SECTION
   =============================================================================== */

.cta {
    text-align: center;
    background: linear-gradient(135deg, var(--gray-darker) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.2) 0%, transparent 60%);
    animation: ctaPulse 8s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white), var(--white), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: textShimmer 5s ease-in-out infinite;
}

.cta p {
    font-size: 1.2rem;
    color: var(--white-dim);
    max-width: 550px;
    margin: 0 auto 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Section variant */
.cta-section {
    text-align: center;
    padding: 120px 5%;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.2) 0%, transparent 60%);
    animation: ctaPulse 8s ease-in-out infinite;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 1.15rem;
    color: var(--white-dim);
    max-width: 550px;
    margin: 0 auto 2.5rem;
}

/* ===============================================================================
   16. FOOTER
   =============================================================================== */

.footer {
    background: var(--black);
    padding: 80px 5% 40px;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(233, 30, 140, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.footer-brand p {
    color: var(--white-dim);
    margin-top: 1.5rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s var(--ease-bounce);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Social link colors */
.social-links a.social-fb { background: linear-gradient(135deg, #1877f2, #0d5bbd); box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4); }
.social-links a.social-fb:hover { transform: translateY(-5px) scale(1.1); box-shadow: 0 10px 30px rgba(24, 119, 242, 0.6); }

.social-links a.social-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4); }
.social-links a.social-ig:hover { transform: translateY(-5px) scale(1.1); box-shadow: 0 10px 30px rgba(225, 48, 108, 0.6); }

.social-links a.social-yt { background: linear-gradient(135deg, #ff0000, #cc0000); box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4); }
.social-links a.social-yt:hover { transform: translateY(-5px) scale(1.1); box-shadow: 0 10px 30px rgba(255, 0, 0, 0.6); }

.social-links a.social-tt { background: linear-gradient(135deg, #000000, #121212); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 242, 234, 0.3), 0 0 15px rgba(255, 0, 80, 0.3); }
.social-links a.social-tt:hover { transform: translateY(-5px) scale(1.1); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 234, 0.5), 0 0 25px rgba(255, 0, 80, 0.5); }

.social-links a.social-give { background: linear-gradient(135deg, #6366f1, #8b5cf6); box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4); }
.social-links a.social-give:hover { transform: translateY(-5px) scale(1.1); box-shadow: 0 10px 30px rgba(99, 102, 241, 0.6); }

/* Email Signup */
.email-signup {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.email-signup h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.email-signup p {
    font-size: 0.85rem;
    color: var(--white-dim);
    margin-bottom: 1rem;
}

.signup-form {
    display: flex;
    gap: 0.5rem;
}

.signup-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.signup-form input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.signup-form input::placeholder {
    color: var(--white-dim);
}

.signup-form button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--white), var(--gray-medium));
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease-bounce);
}

.signup-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 30, 140, 0.4);
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--white-dim);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white-dim);
    font-size: 0.85rem;
}

/* ===============================================================================
   17. REVEAL ANIMATIONS
   =============================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s var(--ease-flow);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1s var(--ease-flow);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1s var(--ease-flow);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===============================================================================
   18. NEWSLETTER SECTION
   =============================================================================== */

.newsletter {
    background: linear-gradient(135deg, var(--gray-darker), var(--black));
    padding: 100px 5%;
    text-align: center;
    position: relative;
    z-index: 10;
}

.newsletter-content {
    max-width: 620px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-content p {
    color: var(--white-dim);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    background: rgba(45, 27, 78, 0.8);
    border: 1px solid rgba(233, 30, 140, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--white);
    box-shadow: 0 0 20px rgba(233, 30, 140, 0.3);
}

.newsletter-form input::placeholder {
    color: var(--white-dim);
}

.newsletter-form button {
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--white), var(--gray-medium));
    border: none;
    border-radius: 50px;
    color: var(--black);
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s var(--ease-bounce);
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.5);
}

/* ===============================================================================
   19. TAB NAVIGATION (Journey, Community pages)
   =============================================================================== */

.tab-nav {
    display: flex;
    justify-content: center;
    background: rgba(26, 10, 46, 0.9);
    backdrop-filter: blur(20px);
    padding: 0 5%;
    position: sticky;
    top: 85px;
    z-index: 100;
    border-bottom: 1px solid rgba(233, 30, 140, 0.3);
}

.tab-btn {
    padding: 1.5rem 3rem;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-dim);
    cursor: pointer;
    transition: all 0.5s var(--ease-smooth);
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
}

.tab-btn:hover {
    color: var(--white);
    text-shadow: 0 0 15px var(--white);
}

.tab-btn.active {
    color: var(--white);
    border-bottom-color: var(--white);
    box-shadow: 0 5px 20px rgba(233, 30, 140, 0.3);
}

.tab-content {
    display: none;
    padding: 100px 5%;
    position: relative;
    z-index: 10;
}

.tab-content.active {
    display: block;
}

/* ===============================================================================
   20. CARDS & CONTENT GRIDS
   =============================================================================== */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.card {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.8), rgba(26, 10, 46, 0.9));
    border: 1px solid rgba(233, 30, 140, 0.3);
    border-radius: 20px;
    transition: all 0.5s var(--ease-flow);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--white), var(--cool-gray), var(--white));
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-flow);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--white);
    box-shadow: 0 20px 60px rgba(233, 30, 140, 0.3);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 20px var(--white));
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.card p {
    color: var(--white-dim);
    line-height: 1.8;
}

/* ===============================================================================
   21. FORM STYLES (Prayer page, etc.)
   =============================================================================== */

.form-section {
    padding: 80px 5%;
    position: relative;
    z-index: 10;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.8), rgba(26, 10, 46, 0.9));
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid rgba(233, 30, 140, 0.3);
    box-shadow: 0 30px 80px rgba(233, 30, 140, 0.2);
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-intro p {
    color: var(--white-dim);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.form-group .optional {
    font-weight: 400;
    color: var(--white-dim);
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.85rem;
}

.form-group .private-note {
    font-size: 0.8rem;
    color: var(--white-dim);
    font-style: italic;
    margin-top: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(26, 10, 46, 0.8);
    border: 1px solid rgba(233, 30, 140, 0.3);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.4s var(--ease-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--white);
    box-shadow: 0 0 20px rgba(233, 30, 140, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--white-dim);
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.35rem center;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(26, 10, 46, 0.8);
    border-radius: 10px;
    margin-top: 2rem;
    border: 1px solid rgba(233, 30, 140, 0.2);
}

.checkbox-group input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-top: 0.1rem;
    cursor: pointer;
    accent-color: var(--white);
}

.checkbox-group label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
}

.checkbox-group p {
    font-size: 0.85rem;
    color: var(--white-dim);
    margin-top: 0.3rem;
}

.submit-btn {
    width: 100%;
    padding: 1.4rem;
    background: linear-gradient(135deg, var(--white), var(--gray-medium));
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s var(--ease-bounce);
    margin-top: 2rem;
    box-shadow: 0 15px 40px rgba(233, 30, 140, 0.4);
}

.submit-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 60px rgba(233, 30, 140, 0.5);
}

/* ===============================================================================
   22. RESPONSIVE STYLES
   =============================================================================== */

@media (max-width: 1024px) {
    .values-grid { grid-template-columns: 1fr; }
    .pathway-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .cards-grid { grid-template-columns: 1fr; max-width: 600px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .nav-links.open {
        display: flex;
        position: fixed;
        inset: 0;
        background: rgba(10, 6, 18, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 999;
    }
    .nav-links a { font-size: 1.5rem; }
    .mobile-toggle { display: block; z-index: 1001; }

    .hero { min-height: auto; padding: 180px 5% 100px; }
    .hero h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn { width: 100%; text-align: center; }

    .pathway-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }

    .float-img { display: none; }

    .tab-nav { overflow-x: auto; justify-content: flex-start; }
    .tab-btn { padding: 1.2rem 1.5rem; white-space: nowrap; }

    .newsletter-form { flex-direction: column; }

    .form-container { padding: 2.5rem 1.5rem; }
}
