<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ekklesia Transit Logistics — Called Out. Sent Forth. Delivered.</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<style>
:root {
--navy: #0C1F3F;
--navy-mid: #162d54;
--midnight: #080F1E;
--purple: #534AB7;
--purple-lt: #AFA9EC;
--purple-xlt: #E8E5F8;
--gold: #F0C040;
--gold-dk: #C89A1A;
--white: #FFFFFF;
--off-white: #F5F4F0;
--gray: #8A8880;
--gray-lt: #D4D2CA;
--body: 'Barlow', sans-serif;
--display: 'Cormorant Garamond', serif;
--condensed: 'Barlow Condensed', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: var(--body);
background: var(--midnight);
color: var(--white);
overflow-x: hidden;
}
/* ── NOISE OVERLAY ── */
body::before {
content: '';
position: fixed;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
opacity: 0.025;
pointer-events: none;
z-index: 9999;
}
/* ── NAV ── */
nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 48px;
height: 72px;
background: rgba(8,15,30,0.85);
backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(83,74,183,0.2);
transition: all 0.3s;
}
.nav-logo {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
}
.nav-logo svg { width: 32px; height: 32px; }
.nav-wordmark {
display: flex;
flex-direction: column;
line-height: 1;
}
.nav-wordmark span:first-child {
font-family: var(--condensed);
font-weight: 700;
font-size: 18px;
letter-spacing: 0.08em;
color: var(--white);
}
.nav-wordmark span:last-child {
font-family: var(--condensed);
font-weight: 400;
font-size: 9px;
letter-spacing: 0.2em;
color: var(--purple-lt);
text-transform: uppercase;
margin-top: 2px;
}
.nav-links {
display: flex;
align-items: center;
gap: 36px;
list-style: none;
}
.nav-links a {
font-family: var(--condensed);
font-size: 13px;
font-weight: 500;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--gray-lt);
text-decoration: none;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
background: var(--gold);
color: var(--midnight) !important;
padding: 8px 20px;
border-radius: 2px;
font-weight: 600 !important;
transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-dk) !important; color: var(--midnight) !important; }
/* ── HERO ── */
#hero {
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
padding: 72px 0 0;
}
.hero-bg {
position: absolute;
inset: 0;
background:
radial-gradient(ellipse 80% 60% at 70% 50%, rgba(83,74,183,0.15) 0%, transparent 65%),
radial-gradient(ellipse 50% 80% at 10% 80%, rgba(12,31,63,0.8) 0%, transparent 60%),
linear-gradient(165deg, #080F1E 0%, #0C1F3F 50%, #0A0A1A 100%);
}
/* Animated grid lines */
.hero-grid {
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(83,74,183,0.06) 1px, transparent 1px),
linear-gradient(90deg, rgba(83,74,183,0.06) 1px, transparent 1px);
background-size: 80px 80px;
animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
0% { background-position: 0 0; }
100% { background-position: 80px 80px; }
}
/* Gold top accent */
#hero::after {
content: '';
position: absolute;
top: 72px; left: 0; right: 0;
height: 3px;
background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-content {
position: relative;
z-index: 2;
max-width: 1200px;
margin: 0 auto;
padding: 0 48px;
display: grid;
grid-template-columns: 1fr 420px;
gap: 80px;
align-items: center;
}
.hero-eyebrow {
font-family: var(--condensed);
font-size: 11px;
font-weight: 600;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 12px;
}
.hero-eyebrow::before {
content: '';
width: 32px;
height: 1px;
background: var(--gold);
}
.hero-h1 {
font-family: var(--display);
font-size: clamp(52px, 6vw, 86px);
font-weight: 600;
line-height: 1.0;
color: var(--white);
margin-bottom: 28px;
}
.hero-h1 em {
font-style: italic;
color: var(--purple-lt);
}
.hero-sub {
font-size: 17px;
font-weight: 300;
line-height: 1.75;
color: rgba(255,255,255,0.65);
max-width: 520px;
margin-bottom: 40px;
}
.hero-actions {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
.btn-primary {
display: inline-flex;
align-items: center;
gap: 10px;
background: var(--gold);
color: var(--midnight);
font-family: var(--condensed);
font-size: 13px;
font-weight: 700;
letter-spacing: 0.15em;
text-transform: uppercase;
padding: 16px 32px;
text-decoration: none;
border-radius: 2px;
transition: all 0.25s;
}
.btn-primary:hover {
background: var(--white);
transform: translateY(-2px);
box-shadow: 0 12px 40px rgba(240,192,64,0.3);
}
.btn-secondary {
display: inline-flex;
align-items: center;
gap: 10px;
background: transparent;
color: var(--white);
font-family: var(--condensed);
font-size: 13px;
font-weight: 600;
letter-spacing: 0.15em;
text-transform: uppercase;
padding: 16px 32px;
text-decoration: none;
border: 1px solid rgba(255,255,255,0.25);
border-radius: 2px;
transition: all 0.25s;
}
.btn-secondary:hover {
border-color: var(--purple-lt);
color: var(--purple-lt);
}
/* Hero triangle visual */
.hero-visual {
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.hero-triangle-wrap {
position: relative;
width: 380px;
height: 380px;
}
.tri-ring {
position: absolute;
inset: 0;
border-radius: 50%;
border: 1px solid rgba(83,74,183,0.2);
animation: spinSlow 30s linear infinite;
}
.tri-ring::before {
content: '';
position: absolute;
top: -4px; left: 50%;
transform: translateX(-50%);
width: 8px; height: 8px;
background: var(--gold);
border-radius: 50%;
}
@keyframes spinSlow {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.tri-ring-2 {
position: absolute;
inset: 30px;
border-radius: 50%;
border: 1px solid rgba(175,169,236,0.15);
animation: spinSlow 20s linear infinite reverse;
}
.hero-tri-svg {
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
filter: drop-shadow(0 0 40px rgba(83,74,183,0.5));
animation: triFloat 6s ease-in-out infinite;
}
@keyframes triFloat {
0%, 100% { transform: translate(-50%, -50%) translateY(0); }
50% { transform: translate(-50%, -50%) translateY(-12px); }
}
.hero-stats {
position: absolute;
bottom: -20px;
left: 0; right: 0;
display: grid;
grid-template-columns: repeat(3, 1fr);
}
.hero-stat {
text-align: center;
padding: 20px 12px;
border-top: 1px solid rgba(83,74,183,0.3);
}
.hero-stat-num {
font-family: var(--display);
font-size: 32px;
font-weight: 600;
color: var(--gold);
line-height: 1;
}
.hero-stat-label {
font-family: var(--condensed);
font-size: 10px;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--gray);
margin-top: 4px;
}
/* ── MARQUEE TICKER ── */
.ticker {
background: var(--gold);
padding: 10px 0;
overflow: hidden;
white-space: nowrap;
}
.ticker-inner {
display: inline-block;
animation: ticker 25s linear infinite;
}
.ticker-inner span {
font-family: var(--condensed);
font-size: 12px;
font-weight: 700;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--midnight);
padding: 0 32px;
}
.ticker-inner span::after {
content: '✦';
margin-left: 32px;
color: rgba(8,15,30,0.4);
}
@keyframes ticker {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
/* ── SECTION BASE ── */
section { padding: 100px 48px; max-width: 1200px; margin: 0 auto; }
.section-label {
font-family: var(--condensed);
font-size: 11px;
font-weight: 600;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 16px;
display: flex;
align-items: center;
gap: 12px;
}
.section-label::before {
content: '';
width: 24px;
height: 1px;
background: var(--gold);
}
.section-h2 {
font-family: var(--display);
font-size: clamp(38px, 4vw, 58px);
font-weight: 600;
line-height: 1.1;
color: var(--white);
margin-bottom: 20px;
}
.section-h2 em { font-style: italic; color: var(--purple-lt); }
.section-lead {
font-size: 17px;
font-weight: 300;
line-height: 1.75;
color: rgba(255,255,255,0.6);
max-width: 600px;
margin-bottom: 56px;
}
/* ── SERVICES ── */
#services { padding-top: 0; }
.services-full { background: var(--navy); }
.services-inner {
max-width: 1200px;
margin: 0 auto;
padding: 100px 48px;
}
.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2px;
margin-top: 56px;
}
.service-card {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(83,74,183,0.15);
padding: 40px 32px;
position: relative;
transition: all 0.3s;
cursor: default;
}
.service-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: var(--purple);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: rgba(83,74,183,0.08); }
.service-icon {
width: 48px;
height: 48px;
margin-bottom: 24px;
color: var(--gold);
}
.service-num {
font-family: var(--condensed);
font-size: 11px;
letter-spacing: 0.2em;
color: var(--purple-lt);
margin-bottom: 12px;
}
.service-title {
font-family: var(--condensed);
font-size: 20px;
font-weight: 700;
letter-spacing: 0.04em;
color: var(--white);
margin-bottom: 12px;
text-transform: uppercase;
}
.service-desc {
font-size: 14px;
font-weight: 300;
line-height: 1.75;
color: rgba(255,255,255,0.55);
}
.service-link {
display: inline-flex;
align-items: center;
gap: 6px;
font-family: var(--condensed);
font-size: 12px;
font-weight: 600;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--gold);
text-decoration: none;
margin-top: 24px;
transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }
/* ── MISSION BAND ── */
.mission-band {
background: linear-gradient(135deg, var(--purple) 0%, #2D2680 100%);
padding: 80px 48px;
position: relative;
overflow: hidden;
}
.mission-band::before {
content: 'EKKLESIA';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: var(--display);
font-size: 200px;
font-weight: 700;
color: rgba(255,255,255,0.04);
white-space: nowrap;
pointer-events: none;
letter-spacing: 0.1em;
}
.mission-inner {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
position: relative;
z-index: 1;
}
.mission-quote {
font-family: var(--display);
font-size: clamp(28px, 3vw, 44px);
font-style: italic;
font-weight: 400;
line-height: 1.4;
color: var(--white);
}
.mission-quote cite {
display: block;
font-family: var(--condensed);
font-style: normal;
font-size: 12px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: rgba(255,255,255,0.5);
margin-top: 20px;
}
.mission-body {
font-size: 16px;
font-weight: 300;
line-height: 1.85;
color: rgba(255,255,255,0.75);
}
.mission-body p + p { margin-top: 20px; }
/* ── WHY EKKLESIA ── */
.why-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 32px;
margin-top: 56px;
}
.why-card {
display: flex;
gap: 24px;
padding: 32px;
background: rgba(255,255,255,0.02);
border: 1px solid rgba(255,255,255,0.06);
border-radius: 2px;
transition: border-color 0.3s;
}
.why-card:hover { border-color: rgba(83,74,183,0.4); }
.why-icon {
flex-shrink: 0;
width: 44px;
height: 44px;
background: rgba(83,74,183,0.15);
border-radius: 2px;
display: flex;
align-items: center;
justify-content: center;
color: var(--purple-lt);
}
.why-title {
font-family: var(--condensed);
font-size: 16px;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--white);
margin-bottom: 8px;
}
.why-desc {
font-size: 14px;
font-weight: 300;
line-height: 1.7;
color: rgba(255,255,255,0.55);
}
/* ── KINGDOM IMPACT ── (Ideas you wouldn't think of) */
.impact-full { background: rgba(12,31,63,0.5); border-top: 1px solid rgba(83,74,183,0.2); border-bottom: 1px solid rgba(83,74,183,0.2); }
.impact-inner {
max-width: 1200px;
margin: 0 auto;
padding: 100px 48px;
}
.impact-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
margin-top: 56px;
}
.impact-card {
text-align: center;
padding: 40px 24px;
background: rgba(8,15,30,0.6);
border: 1px solid rgba(240,192,64,0.15);
border-radius: 2px;
position: relative;
transition: all 0.3s;
}
.impact-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.impact-card::after {
content: '';
position: absolute;
bottom: 0; left: 50%;
transform: translateX(-50%);
width: 0; height: 2px;
background: var(--gold);
transition: width 0.3s;
}
.impact-card:hover::after { width: 60%; }
.impact-emoji {
font-size: 36px;
margin-bottom: 20px;
display: block;
}
.impact-title {
font-family: var(--condensed);
font-size: 17px;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 12px;
}
.impact-desc {
font-size: 14px;
font-weight: 300;
line-height: 1.75;
color: rgba(255,255,255,0.55);
}
/* ── PROCESS ── */
.process-steps {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0;
margin-top: 56px;
position: relative;
}
.process-steps::before {
content: '';
position: absolute;
top: 32px;
left: 12.5%;
right: 12.5%;
height: 1px;
background: linear-gradient(90deg, transparent, var(--purple), var(--purple), transparent);
}
.process-step {
text-align: center;
padding: 0 20px;
}
.step-dot {
width: 64px;
height: 64px;
background: var(--navy);
border: 2px solid var(--purple);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 24px;
font-family: var(--display);
font-size: 24px;
font-weight: 600;
color: var(--gold);
position: relative;
z-index: 1;
}
.step-title {
font-family: var(--condensed);
font-size: 15px;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--white);
margin-bottom: 10px;
}
.step-desc {
font-size: 13px;
font-weight: 300;
line-height: 1.7;
color: rgba(255,255,255,0.5);
}
/* ── TESTIMONIALS / TRUST ── */
.trust-full { background: var(--midnight); }
.trust-inner {
max-width: 1200px;
margin: 0 auto;
padding: 100px 48px;
}
.trust-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 56px;
}
.trust-card {
padding: 36px 30px;
background: rgba(255,255,255,0.02);
border: 1px solid rgba(255,255,255,0.06);
border-radius: 2px;
position: relative;
}
.trust-card::before {
content: '\201C';
position: absolute;
top: 16px; left: 24px;
font-family: var(--display);
font-size: 64px;
line-height: 1;
color: var(--purple);
opacity: 0.4;
}
.trust-quote {
font-size: 15px;
font-weight: 300;
line-height: 1.8;
color: rgba(255,255,255,0.7);
margin-top: 24px;
font-style: italic;
}
.trust-author {
margin-top: 24px;
display: flex;
align-items: center;
gap: 12px;
}
.trust-avatar {
width: 40px;
height: 40px;
border-radius: 50%;
background: linear-gradient(135deg, var(--purple), var(--navy));
display: flex;
align-items: center;
justify-content: center;
font-family: var(--condensed);
font-size: 14px;
font-weight: 700;
color: var(--white);
flex-shrink: 0;
}
.trust-name {
font-family: var(--condensed);
font-size: 13px;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--white);
}
.trust-org {
font-size: 12px;
color: var(--gray);
margin-top: 2px;
}
/* ── DISASTER RESPONSE BAND ── */
.emergency-band {
background: linear-gradient(135deg, #1a0a0a 0%, #2d0f0f 50%, #1a0808 100%);
border-top: 2px solid #c0392b;
border-bottom: 2px solid #c0392b;
padding: 64px 48px;
}
.emergency-inner {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
}
.emergency-label {
font-family: var(--condensed);
font-size: 11px;
font-weight: 700;
letter-spacing: 0.3em;
text-transform: uppercase;
color: #e74c3c;
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 8px;
}
.emergency-label::before {
content: '⬤';
font-size: 8px;
animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.emergency-h2 {
font-family: var(--display);
font-size: clamp(28px, 3vw, 42px);
font-weight: 600;
color: var(--white);
line-height: 1.2;
}
.emergency-desc {
font-size: 15px;
font-weight: 300;
line-height: 1.75;
color: rgba(255,255,255,0.6);
max-width: 480px;
}
.emergency-actions { flex-shrink: 0; text-align: center; }
.btn-emergency {
display: inline-flex;
align-items: center;
gap: 10px;
background: #c0392b;
color: var(--white);
font-family: var(--condensed);
font-size: 13px;
font-weight: 700;
letter-spacing: 0.15em;
text-transform: uppercase;
padding: 16px 32px;
text-decoration: none;
border-radius: 2px;
transition: all 0.25s;
}
.btn-emergency:hover { background: #e74c3c; transform: translateY(-2px); }
.emergency-note {
font-size: 11px;
color: rgba(255,255,255,0.35);
margin-top: 10px;
}
/* ── PARTNER LOGOS ── */
.partners-section {
padding: 60px 48px;
max-width: 1200px;
margin: 0 auto;
text-align: center;
}
.partners-label {
font-family: var(--condensed);
font-size: 11px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--gray);
margin-bottom: 36px;
}
.partner-logos {
display: flex;
align-items: center;
justify-content: center;
gap: 48px;
flex-wrap: wrap;
}
.partner-logo {
font-family: var(--condensed);
font-size: 16px;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
color: rgba(255,255,255,0.2);
transition: color 0.3s;
}
.partner-logo:hover { color: rgba(255,255,255,0.5); }
/* ── CTA FINAL ── */
.cta-full {
background:
radial-gradient(ellipse 70% 80% at 50% 50%, rgba(83,74,183,0.2) 0%, transparent 65%),
linear-gradient(180deg, var(--midnight) 0%, var(--navy) 100%);
padding: 120px 48px;
text-align: center;
position: relative;
overflow: hidden;
}
.cta-full::before {
content: '';
position: absolute;
inset: 0;
background-image: linear-gradient(rgba(83,74,183,0.04) 1px, transparent 1px),
linear-gradient(90deg, rgba(83,74,183,0.04) 1px, transparent 1px);
background-size: 60px 60px;
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-h2 {
font-family: var(--display);
font-size: clamp(42px, 5vw, 72px);
font-weight: 600;
line-height: 1.1;
color: var(--white);
margin-bottom: 20px;
}
.cta-h2 em { font-style: italic; color: var(--gold); }
.cta-sub {
font-size: 17px;
font-weight: 300;
color: rgba(255,255,255,0.6);
margin-bottom: 40px;
line-height: 1.75;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
/* ── CONTACT STRIP ── */
.contact-strip {
background: var(--navy);
border-top: 1px solid rgba(83,74,183,0.3);
padding: 48px;
}
.contact-inner {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
text-align: center;
}
.contact-item-label {
font-family: var(--condensed);
font-size: 10px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--purple-lt);
margin-bottom: 8px;
}
.contact-item-val {
font-family: var(--condensed);
font-size: 18px;
font-weight: 600;
color: var(--white);
}
/* ── FOOTER ── */
footer {
background: var(--midnight);
border-top: 1px solid rgba(255,255,255,0.06);
padding: 60px 48px 32px;
}
.footer-inner {
max-width: 1200px;
margin: 0 auto;
}
.footer-top {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 48px;
padding-bottom: 48px;
border-bottom: 1px solid rgba(255,255,255,0.06);
margin-bottom: 32px;
}
.footer-brand p {
font-size: 14px;
font-weight: 300;
line-height: 1.8;
color: rgba(255,255,255,0.45);
margin-top: 16px;
max-width: 280px;
}
.footer-col h4 {
font-family: var(--condensed);
font-size: 12px;
font-weight: 700;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--white);
margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
font-size: 14px;
font-weight: 300;
color: rgba(255,255,255,0.45);
text-decoration: none;
transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
}
.footer-copy {
font-size: 12px;
color: rgba(255,255,255,0.25);
}
.footer-gold-bar {
height: 3px;
background: linear-gradient(90deg, var(--purple), var(--gold), var(--purple));
max-width: 1200px;
margin: 0 auto 48px;
}
/* ── SCROLL ANIMATIONS ── */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
nav { padding: 0 24px; }
.nav-links { display: none; }
.hero-content { grid-template-columns: 1fr; padding: 0 24px; }
.hero-visual { display: none; }
section { padding: 64px 24px; }
.services-grid { grid-template-columns: 1fr; }
.impact-grid { grid-template-columns: 1fr; }
.why-grid { grid-template-columns: 1fr; }
.process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
.process-steps::before { display: none; }
.trust-grid { grid-template-columns: 1fr; }
.mission-inner { grid-template-columns: 1fr; gap: 40px; }
.footer-top { grid-template-columns: 1fr 1fr; }
.contact-inner { grid-template-columns: 1fr; gap: 24px; }
.emergency-inner { flex-direction: column; text-align: center; }
.footer-bottom { flex-direction: column; text-align: center; }
}
</style>
</head>
<body>
<!-- ══ NAVIGATION ══ -->
<nav>
<a href="#" class="nav-logo">
<svg viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
<polygon points="22,3 41,39 3,39" fill="none" stroke="#AFA9EC" stroke-width="2" stroke-linejoin="round"/>
<polygon points="22,14 33,36 11,36" fill="#534AB7" opacity="0.8"/>
<line x1="22" y1="3" x2="22" y2="39" stroke="#AFA9EC" stroke-width="0.8" opacity="0.5"/>
</svg>
<div class="nav-wordmark">
<span>EKKLESIA</span>
<span>Transit · Logistics</span>
</div>
</a>
<ul class="nav-links">
<li><a href="#services">Services</a></li>
<li><a href="#mission">Our Mission</a></li>
<li><a href="#kingdom">Kingdom Impact</a></li>
<li><a href="#process">How It Works</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#quote" class="nav-cta">Get a Quote</a></li>
</ul>
</nav>
<!-- ══ HERO ══ -->
<section id="hero" style="padding:0; max-width:100%;">
<div class="hero-bg"></div>
<div class="hero-grid"></div>
<div class="hero-content">
<div>
<p class="hero-eyebrow">Florida-Based · Nationwide Reach</p>
<h1 class="hero-h1">Called Out.<br><em>Sent Forth.</em><br>Delivered.</h1>
<p class="hero-sub">Ekklesia Transit Logistics is a Kingdom-minded supply chain and distribution company built for this hour — moving goods, resources, and provisions with purpose, precision, and integrity.</p>
<div class="hero-actions">
<a href="#quote" class="btn-primary">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><path d="M5 12h14M12 5l7 7-7 7"/></svg>
Request a Quote
</a>
<a href="#services" class="btn-secondary">Explore Services</a>
</div>
<div class="hero-stats" style="position:relative; bottom:auto; margin-top:48px;">
<div class="hero-stat">
<div class="hero-stat-num">48hr</div>
<div class="hero-stat-label">Emergency Response</div>
</div>
<div class="hero-stat">
<div class="hero-stat-num">50+</div>
<div class="hero-stat-label">States Served</div>
</div>
<div class="hero-stat">
<div class="hero-stat-num">100%</div>
<div class="hero-stat-label">Mission-Aligned</div>
</div>
</div>
</div>
<div class="hero-visual">
<div class="hero-triangle-wrap">
<div class="tri-ring"></div>
<div class="tri-ring-2"></div>
<svg class="hero-tri-svg" width="220" height="220" viewBox="0 0 220 220" fill="none">
<polygon points="110,18 202,190 18,190" fill="none" stroke="#534AB7" stroke-width="1.5" stroke-linejoin="round"/>
<polygon points="110,60 168,172 52,172" fill="#534AB7" opacity="0.25"/>
<polygon points="110,18 202,190 18,190" fill="none" stroke="#AFA9EC" stroke-width="0.5" stroke-linejoin="round" stroke-dasharray="6 6"/>
<line x1="110" y1="18" x2="110" y2="190" stroke="#AFA9EC" stroke-width="0.8" opacity="0.3"/>
<circle cx="110" cy="18" r="4" fill="#F0C040"/>
<circle cx="18" cy="190" r="4" fill="#AFA9EC" opacity="0.6"/>
<circle cx="202" cy="190" r="4" fill="#AFA9EC" opacity="0.6"/>
</svg>
</div>
</div>
</div>
</section>
<!-- ══ TICKER ══ -->
<div class="ticker">
<div class="ticker-inner">
<span>Freight & Shipping</span>
<span>Last-Mile Delivery</span>
<span>Disaster Relief Logistics</span>
<span>Church & Ministry Supply Chains</span>
<span>Warehousing & Fulfillment</span>
<span>Emergency Preparedness Distribution</span>
<span>Cross-Country Freight</span>
<span>Faith-Based Organization Logistics</span>
<!-- duplicate for seamless loop -->
<span>Freight & Shipping</span>
<span>Last-Mile Delivery</span>
<span>Disaster Relief Logistics</span>
<span>Church & Ministry Supply Chains</span>
<span>Warehousing & Fulfillment</span>
<span>Emergency Preparedness Distribution</span>
<span>Cross-Country Freight</span>
<span>Faith-Based Organization Logistics</span>
</div>
</div>
<!-- ══ SERVICES ══ -->
<div class="services-full" id="services">
<div class="services-inner">
<p class="section-label reveal">What We Carry</p>
<h2 class="section-h2 reveal">Full-Spectrum <em>Logistics</em><br>Built for Real Needs</h2>
<p class="section-lead reveal">From a single pallet to a full fleet movement, we handle the physical weight so your mission stays light.</p>
<div class="services-grid">
<div class="service-card reveal">
<svg class="service-icon" viewBox="0 0 48 48" fill="none" stroke="currentColor" stroke-width="1.5"><rect x="4" y="20" width="40" height="20" rx="2"/><path d="M4 24h8V20"/><path d="M36 20v4h8"/><circle cx="13" cy="40" r="4"/><circle cx="35" cy="40" r="4"/><path d="M4 28h40"/></svg>
<p class="service-num">01</p>
<h3 class="service-title">Long-Haul Freight</h3>
<p class="service-desc">Full truckload (FTL) and less-than-truckload (LTL) shipping across all 50 states. Reliable scheduling, GPS tracking, and dedicated drivers you can trust.</p>
<a href="#" class="service-link">Learn more →</a>
</div>
<div class="service-card reveal">
<svg class="service-icon" viewBox="0 0 48 48" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M24 4L44 20v24H4V20L24 4z"/><rect x="16" y="28" width="16" height="16"/><path d="M16 28v-8h16v8"/></svg>
<p class="service-num">02</p>
<h3 class="service-title">Warehousing & Fulfillment</h3>
<p class="service-desc">Secure short-term and long-term storage with pick-and-pack fulfillment services. Ideal for churches, nonprofits, and businesses managing seasonal or growing inventory.</p>
<a href="#" class="service-link">Learn more →</a>
</div>
<div class="service-card reveal">
<svg class="service-icon" viewBox="0 0 48 48" fill="none" stroke="currentColor" stroke-width="1.5"><circle cx="24" cy="24" r="20"/><path d="M24 4v20l10 10"/></svg>
<p class="service-num">03</p>
<h3 class="service-title">Last-Mile Delivery</h3>
<p class="service-desc">We close the gap — delivering directly to homes, church campuses, distribution sites, and communities. Precision routing, real-time updates, proof of delivery.</p>
<a href="#" class="service-link">Learn more →</a>
</div>
<div class="service-card reveal">
<svg class="service-icon" viewBox="0 0 48 48" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M24 4l6 12h12l-10 8 4 12-12-8-12 8 4-12L6 16h12z"/></svg>
<p class="service-num">04</p>
<h3 class="service-title">Disaster Relief Distribution</h3>
<p class="service-desc">When catastrophe strikes, time is lives. We mobilize rapidly to move food, water, clothing, medical supplies, and emergency gear to affected communities — no bureaucracy, no delay.</p>
<a href="#" class="service-link">Learn more →</a>
</div>
<div class="service-card reveal">
<svg class="service-icon" viewBox="0 0 48 48" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M8 36V16l16-12 16 12v20"/><path d="M20 36V24h8v12"/><circle cx="24" cy="10" r="3"/></svg>
<p class="service-num">05</p>
<h3 class="service-title">Church & Ministry Logistics</h3>
<p class="service-desc">Moving equipment, supplies, and resources for churches, mission organizations, and ministries — locally and globally. Trusted partners for large events, plant launches, and outreach campaigns.</p>
<a href="#" class="service-link">Learn more →</a>
</div>
<div class="service-card reveal">
<svg class="service-icon" viewBox="0 0 48 48" fill="none" stroke="currentColor" stroke-width="1.5"><rect x="6" y="6" width="36" height="36" rx="2"/><path d="M6 18h36M18 18v24M30 18v24"/></svg>
<p class="service-num">06</p>
<h3 class="service-title">Preparedness Supply Chains</h3>
<p class="service-desc">Helping individuals, families, and organizations build end-times preparedness logistics — food storage, supply stockpiling, network distribution planning. Serving the prudent before the storm.</p>
<a href="#" class="service-link">Learn more →</a>
</div>
</div>
</div>
</div>
<!-- ══ MISSION BAND ══ -->
<div class="mission-band" id="mission">
<div class="mission-inner">
<div>
<blockquote class="mission-quote">
"The called-out ones are not waiting in the pews — they are moving in the world."
<cite>— The Ekklesia Mandate</cite>
</blockquote>
</div>
<div>
<p class="section-label" style="color:rgba(255,255,255,0.5);">Our Mission</p>
<div class="mission-body">
<p>Ekklesia Transit Logistics was founded on a conviction: that the Kingdom of God needs boots on the ground and wheels on the road. Business is not separate from calling — it <em>is</em> the calling when done with purpose.</p>
<p>We operate as a professional logistics company held to the highest industry standards. And we operate as a Kingdom company — stewarding every load, every contract, and every dollar toward something eternal.</p>
<p>Florida-based and nationwide in reach, we are built for this moment in history.</p>
</div>
</div>
</div>
</div>
<!-- ══ WHY EKKLESIA ══ -->
<section id="why">
<p class="section-label reveal">Why Choose Us</p>
<h2 class="section-h2 reveal">More Than a <em>Carrier.</em><br>A Covenant Partner.</h2>
<p class="section-lead reveal">What separates Ekklesia from every other logistics company isn't just our service — it's our standard.</p>
<div class="why-grid">
<div class="why-card reveal">
<div class="why-icon">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>
</div>
<div>
<h4 class="why-title">Integrity in Every Load</h4>
<p class="why-desc">We don't cut corners. Every shipment is handled with the same care we'd give our own. Full transparency, honest pricing, no hidden fees.</p>
</div>
</div>
<div class="why-card reveal">
<div class="why-icon">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>
</div>
<div>
<h4 class="why-title">Kairos Timing</h4>
<p class="why-desc">We understand that in logistics, timing is everything. We build schedules that work and communicate proactively — not reactively — when anything changes.</p>
</div>
</div>
<div class="why-card reveal">
<div class="why-icon">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>
</div>
<div>
<h4 class="why-title">Ministry-Ready Pricing</h4>
<p class="why-desc">We offer special rate structures for churches, nonprofits, and faith-based organizations — because Kingdom work shouldn't be priced out of quality logistics.</p>
</div>
</div>
<div class="why-card reveal">
<div class="why-icon">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg>
</div>
<div>
<h4 class="why-title">Tithing-Based Business Model</h4>
<p class="why-desc">Ten percent of every contract profit goes directly to disaster relief, ministry supply, and Kingdom initiatives. When you ship with us, you're part of the mission.</p>
</div>
</div>
<div class="why-card reveal">
<div class="why-icon">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/><circle cx="12" cy="10" r="3"/></svg>
</div>
<div>
<h4 class="why-title">Florida-Rooted, Nationally Deployed</h4>
<p class="why-desc">Based in South Florida with the infrastructure to move anywhere in the continental US. We know the I-95 corridor, the Gulf Coast routes, and the nation's freight arteries.</p>
</div>
</div>
<div class="why-card reveal">
<div class="why-icon">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M18 8h1a4 4 0 0 1 0 8h-1"/><path d="M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V8z"/><line x1="6" y1="1" x2="6" y2="4"/><line x1="10" y1="1" x2="10" y2="4"/><line x1="14" y1="1" x2="14" y2="4"/></svg>
</div>
<div>
<h4 class="why-title">Warm Handoff, Not a Tracking Number</h4>
<p class="why-desc">You'll have a real point of contact — not a call center. Our clients know who is handling their freight and can reach them directly when it matters.</p>
</div>
</div>
</div>
</section>
<!-- ══ KINGDOM IMPACT ══ -->
<div class="impact-full" id="kingdom">
<div class="impact-inner">
<p class="section-label reveal">Beyond the Delivery</p>
<h2 class="section-h2 reveal">The <em>Kingdom</em> Runs<br>on Real Infrastructure</h2>
<p class="section-lead reveal">Ideas you didn't know you needed — programs built into the DNA of Ekklesia that make this company unlike anything else in the industry.</p>
<div class="impact-grid">
<div class="impact-card reveal">
<span class="impact-emoji">🌾</span>
<h4 class="impact-title">The Gleaning Network</h4>
<p class="impact-desc">We partner with farms, food distributors, and grocery chains to redirect excess food to churches and food pantries — using our logistics infrastructure to eliminate waste and feed communities.</p>
</div>
<div class="impact-card reveal">
<span class="impact-emoji">📦</span>
<h4 class="impact-title">Pre-positioned Supply Caches</h4>
<p class="impact-desc">Strategic warehouse locations pre-stocked with emergency essentials — water, food, medical supplies, shelter gear — ready to deploy within 24 hours when disaster strikes a region.</p>
</div>
<div class="impact-card reveal">
<span class="impact-emoji">🚛</span>
<h4 class="impact-title">Convoy of Hope Partner</h4>
<p class="impact-desc">Formal partnerships with major relief organizations to provide logistics muscle during humanitarian crises — domestically and internationally. We move the goods; they distribute the grace.</p>
</div>
<div class="impact-card reveal">
<span class="impact-emoji">📡</span>
<h4 class="impact-title">Church Network Freight Co-op</h4>
<p class="impact-desc">A cooperative freight buying program for churches — pooling volume across multiple congregations to unlock commercial shipping rates. Smaller churches get enterprise logistics at fair prices.</p>
</div>
<div class="impact-card reveal">
<span class="impact-emoji">🎓</span>
<h4 class="impact-title">Kingdom Workforce Pipeline</h4>
<p class="impact-desc">We partner with reentry programs, veteran organizations, and Bible colleges to hire and train drivers, dispatchers, and warehouse staff — giving people a second chance through honest work.</p>
</div>
<div class="impact-card reveal">
<span class="impact-emoji">🌍</span>
<h4 class="impact-title">Global Mission Freight</h4>
<p class="impact-desc">Customs clearance, container coordination, and international freight forwarding for mission teams and global ministries — getting supplies to the field so missionaries can stay focused on the work.</p>
</div>
</div>
</div>
</div>
<!-- ══ PROCESS ══ -->
<section id="process">
<p class="section-label reveal">Simple to Start</p>
<h2 class="section-h2 reveal">How It <em>Works</em></h2>
<p class="section-lead reveal">Getting your freight moving with Ekklesia is straightforward. No gatekeeping, no corporate runaround.</p>
<div class="process-steps">
<div class="process-step reveal">
<div class="step-dot">I</div>
<h4 class="step-title">Tell Us Your Need</h4>
<p class="step-desc">Fill out our quote form or call us directly. We want to understand your shipment, your timeline, and your mission.</p>
</div>
<div class="process-step reveal">
<div class="step-dot">II</div>
<h4 class="step-title">Receive Your Quote</h4>
<p class="step-desc">Within 24 hours, you'll have a clear, honest quote — no hidden fees, no vague estimates. Just what it costs and why.</p>
</div>
<div class="process-step reveal">
<div class="step-dot">III</div>
<h4 class="step-title">We Move It</h4>
<p class="step-desc">Your dedicated point of contact coordinates pickup, transit, and delivery — keeping you informed every step of the way.</p>
</div>
<div class="process-step reveal">
<div class="step-dot">IV</div>
<h4 class="step-title">Delivered & Documented</h4>
<p class="step-desc">You receive proof of delivery, a clean invoice, and a follow-up from our team. Then we do it again — better each time.</p>
</div>
</div>
</section>
<!-- ══ TESTIMONIALS ══ -->
<div class="trust-full">
<div class="trust-inner">
<p class="section-label reveal">Trusted By</p>
<h2 class="section-h2 reveal">What Our Partners <em>Say</em></h2>
<div class="trust-grid">
<div class="trust-card reveal">
<p class="trust-quote">Ekklesia moved an entire outreach event's worth of supplies — tents, food, equipment — across three states on a tight timeline. They didn't just deliver. They showed up. That's rare.</p>
<div class="trust-author">
<div class="trust-avatar">RP</div>
<div>
<div class="trust-name">Pastor R. Phillips</div>
<div class="trust-org">Grace Outreach Ministries, Atlanta GA</div>
</div>
</div>
</div>
<div class="trust-card reveal">
<p class="trust-quote">We've used three other freight companies in the last two years. Ekklesia is the first one that actually called us back, gave us a real rate, and delivered on time. Simple as that.</p>
<div class="trust-author">
<div class="trust-avatar">MJ</div>
<div>
<div class="trust-name">Marcus J.</div>
<div class="trust-org">Regional Supply Co., Port St. Lucie FL</div>
</div>
</div>
</div>
<div class="trust-card reveal">
<p class="trust-quote">After Hurricane Ian, Ekklesia was one of the first logistics partners on the ground helping us distribute relief supplies. They didn't wait to be asked. They just came and served.</p>
<div class="trust-author">
<div class="trust-avatar">DW</div>
<div>
<div class="trust-name">Director D. Williams</div>
<div class="trust-org">Southwest Florida Relief Coalition</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ══ EMERGENCY RESPONSE BAND ══ -->
<div class="emergency-band">
<div class="emergency-inner">
<div>
<p class="emergency-label">24/7 Emergency Line</p>
<h2 class="emergency-h2">Disaster Doesn't<br>Wait. Neither Do We.</h2>
<p class="emergency-desc" style="margin-top:16px;">When a hurricane hits, a flood strikes, or a region is cut off — Ekklesia activates within hours. Our emergency logistics team is on call around the clock for rapid-response relief deployments.</p>
</div>
<div class="emergency-actions">
<a href="tel:+1-800-EKKLESIA" class="btn-emergency">
📞 Activate Emergency Response
</a>
<p class="emergency-note">Available 24 hours · 7 days · 365 days</p>
</div>
</div>
</div>
<!-- ══ PARTNER LOGOS ══ -->
<div class="partners-section">
<p class="partners-label">Trusted by churches, nonprofits, and businesses across the nation</p>
<div class="partner-logos">
<span class="partner-logo">Convoy of Hope</span>
<span class="partner-logo">Samaritan's Purse</span>
<span class="partner-logo">Feed the Children</span>
<span class="partner-logo">Local Church Networks</span>
<span class="partner-logo">FEMA Partners</span>
<span class="partner-logo">Mission Aviation</span>
</div>
</div>
<!-- ══ CONTACT STRIP ══ -->
<div class="contact-strip" id="contact">
<div class="contact-inner">
<div>
<p class="contact-item-label">Call or Text</p>
<p class="contact-item-val">(772) 555-0190</p>
</div>
<div>
<p class="contact-item-label">Email Us</p>
<p class="contact-item-val">info@ekklesiatransit.com</p>
</div>
<div>
<p class="contact-item-label">Headquarters</p>
<p class="contact-item-val">Port St. Lucie, Florida</p>
</div>
</div>
</div>
<!-- ══ FINAL CTA ══ -->
<div class="cta-full" id="quote">
<div class="cta-inner">
<p class="section-label reveal" style="justify-content:center;">Ready to Move?</p>
<h2 class="cta-h2 reveal">The Assembly<br>Is <em>Moving.</em></h2>
<p class="cta-sub reveal">Whether you need freight moved across the country, disaster relief distributed in 48 hours, or a long-term logistics partner for your ministry — we're ready. Let's talk.</p>
<div class="cta-actions reveal">
<a href="#" class="btn-primary">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><path d="M5 12h14M12 5l7 7-7 7"/></svg>
Get a Free Quote
</a>
<a href="tel:+17725550190" class="btn-secondary">Call Us Now</a>
</div>
</div>
</div>
<!-- ══ FOOTER ══ -->
<footer>
<div class="footer-inner">
<div class="footer-gold-bar"></div>
<div class="footer-top">
<div class="footer-brand">
<div class="nav-logo" style="display:flex;align-items:center;gap:12px;text-decoration:none;">
<svg width="32" height="32" viewBox="0 0 44 44" fill="none">
<polygon points="22,3 41,39 3,39" fill="none" stroke="#AFA9EC" stroke-width="2" stroke-linejoin="round"/>
<polygon points="22,14 33,36 11,36" fill="#534AB7" opacity="0.8"/>
<line x1="22" y1="3" x2="22" y2="39" stroke="#AFA9EC" stroke-width="0.8" opacity="0.5"/>
</svg>
<div>
<div style="font-family:'Barlow Condensed',sans-serif;font-weight:700;font-size:18px;letter-spacing:0.08em;color:#fff;">EKKLESIA</div>
<div style="font-family:'Barlow Condensed',sans-serif;font-size:9px;letter-spacing:0.2em;color:#AFA9EC;">Transit · Logistics</div>
</div>
</div>
<p>Called out. Sent forth. Delivered. A Kingdom-minded logistics company built for this hour — serving businesses, ministries, and communities across the nation.</p>
</div>
<div class="footer-col">
<h4>Services</h4>
<ul>
<li><a href="#">Long-Haul Freight</a></li>
<li><a href="#">Last-Mile Delivery</a></li>
<li><a href="#">Warehousing</a></li>
<li><a href="#">Disaster Relief</a></li>
<li><a href="#">Ministry Logistics</a></li>
<li><a href="#">Preparedness Supply</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Company</h4>
<ul>
<li><a href="#">Our Mission</a></li>
<li><a href="#">Kingdom Impact</a></li>
<li><a href="#">Gleaning Network</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Partners</a></li>
<li><a href="#">Press</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Contact</h4>
<ul>
<li><a href="#">Get a Quote</a></li>
<li><a href="#">Emergency Line</a></li>
<li><a href="#">Ministry Inquiry</a></li>
<li><a href="#">General Contact</a></li>
<li><a href="#">Port St. Lucie, FL</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p class="footer-copy">© 2025 Ekklesia Transit Logistics LLC. All rights reserved. Built for the Kingdom.</p>
<div style="display:flex;gap:24px;">
<a href="#" style="font-size:12px;color:rgba(255,255,255,0.25);text-decoration:none;">Privacy Policy</a>
<a href="#" style="font-size:12px;color:rgba(255,255,255,0.25);text-decoration:none;">Terms of Service</a>
<a href="#" style="font-size:12px;color:rgba(255,255,255,0.25);text-decoration:none;">Carrier Agreement</a>
</div>
</div>
</div>
</footer>
<script>
// Scroll reveal
const reveals = document.querySelectorAll('.reveal');
const observer = new IntersectionObserver((entries) => {
entries.forEach((entry, i) => {
if (entry.isIntersecting) {
setTimeout(() => entry.target.classList.add('visible'), i * 80);
observer.unobserve(entry.target);
}
});
}, { threshold: 0.1 });
reveals.forEach(el => observer.observe(el));
// Nav scroll effect
const nav = document.querySelector('nav');
window.addEventListener('scroll', () => {
if (window.scrollY > 60) {
nav.style.background = 'rgba(8,15,30,0.97)';
nav.style.borderBottomColor = 'rgba(83,74,183,0.35)';
} else {
nav.style.background = 'rgba(8,15,30,0.85)';
nav.style.borderBottomColor = 'rgba(83,74,183,0.2)';
}
});
</script>
</body>
</html>