/* ── FONTS: Arial only ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Blues theme */
  --midnight:    #020812;
  --deep:        #040e1f;
  --surface:     #071428;
  --card:        #0a1a35;
  --card-hover:  #0d2248;
  --border:      rgba(60,140,255,0.12);
  --border-blue: rgba(60,140,255,0.35);

  --blue:        #1E90FF;
  --blue-bright: #4DAAFF;
  --blue-light:  #7EC8FF;
  --blue-dim:    rgba(30,144,255,0.15);
  --blue-glow:   rgba(30,144,255,0.25);
  --blue-deep:   #0055CC;

  --white:       #FFFFFF;
  --white-dim:   rgba(255,255,255,0.72);
  --white-muted: rgba(255,255,255,0.42);

  --success:     #22C97E;
  --radius:      10px;
  --radius-lg:   16px;

  --shadow:      0 4px 24px rgba(0,0,0,0.5);
  --shadow-blue: 0 0 30px rgba(30,144,255,0.2);
  --glow-blue:   0 0 60px rgba(30,144,255,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--midnight);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

p, li, span, label, td, th, a, button, input, select, textarea {
  font-family: Arial, Helvetica, sans-serif;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: var(--blue); color: var(--midnight); }

/* ── THREE.JS CANVAS ── */
#three-canvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
body > nav, body > main, body > footer, body > section {
  position: relative; z-index: 1;
}

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(2,8,18,0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-blue);
  padding: 0 clamp(1rem,5vw,3rem);
  box-shadow: 0 2px 30px rgba(30,144,255,0.08);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  display: flex; align-items: center; justify-content: center;
  font-family: Arial, sans-serif; font-weight: 900;
  color: var(--midnight); font-size: 16px;
  flex-shrink: 0; overflow: hidden;
  box-shadow: 0 0 20px var(--blue-glow);
}
.nav-logo img { width: 100%; height: 100%; object-fit: cover; }
.nav-title {
  font-family: Arial, sans-serif; font-size: 12px; font-weight: 700;
  color: var(--white); max-width: 220px; line-height: 1.3;
  display: none; letter-spacing: 0.01em;
}
@media (min-width: 640px) { .nav-title { display: block; } }
.nav-links { display: none; gap: 0; list-style: none; }
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  display: block; padding: 8px 15px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--white-muted); text-decoration: none;
  text-transform: uppercase; transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 15px; right: 15px;
  height: 2px; background: var(--blue);
  transform: scaleX(0); transition: transform 0.2s; border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue-bright); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
@media (min-width: 900px) { .nav-hamburger { display: none; } }
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none; flex-direction: column;
  background: rgba(4,14,31,0.97); border-top: 1px solid var(--border-blue);
  padding: 8px 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block; padding: 12px 24px;
  color: var(--white-muted); text-decoration: none;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  border-left: 3px solid transparent; transition: all 0.2s;
}
.nav-mobile a:hover, .nav-mobile a.active {
  color: var(--blue-bright); border-left-color: var(--blue);
  background: var(--blue-dim);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: Arial, sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.06em;
  text-decoration: none; cursor: pointer;
  border: none; transition: all 0.25s; text-transform: uppercase;
}
.btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--midnight);
  box-shadow: 0 4px 20px var(--blue-glow);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(30,144,255,0.45); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.28);
}
.btn-outline:hover { border-color: var(--blue-bright); color: var(--blue-bright); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(30,144,255,0.08); color: var(--white);
  border: 1.5px solid var(--border-blue);
}
.btn-ghost:hover { background: var(--blue-dim); border-color: var(--border-blue); }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px clamp(1rem,5vw,3rem) 80px;
  background: transparent;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(2,8,18,0.2) 0%,
    rgba(2,8,18,0.55) 60%,
    rgba(2,8,18,0.92) 100%);
  z-index: 1;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; opacity: 0.1;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: var(--blue-dim); border: 1px solid var(--border-blue);
  color: var(--blue-bright); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 100px; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 5rem);
  color: var(--white); margin-bottom: 16px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.hero h1 span { color: var(--blue-bright); }
.hero .subtitle {
  font-style: italic; font-size: clamp(1.1rem,2.5vw,1.5rem);
  color: var(--white-dim); margin-bottom: 12px;
}
.hero .tagline {
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white-muted); margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── PAGE HERO ── */
.page-hero {
  position: relative; overflow: hidden;
  padding: 80px clamp(1rem,5vw,3rem) 60px;
  text-align: center;
  background: transparent;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%,
    rgba(30,144,255,0.1) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 30px var(--blue-glow);
}
.page-hero h1 { font-size: clamp(2rem,5vw,3.5rem); color: var(--white); margin-bottom: 16px; }
.page-hero p { color: var(--white-dim); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

/* ── SECTION ── */
.section { padding: clamp(48px,8vw,96px) clamp(1rem,5vw,3rem); background: transparent; }
.section-alt { background: rgba(4,14,31,0.75); backdrop-filter: blur(4px); }
.container { max-width: 1280px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue-bright); margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem,4vw,2.8rem); color: var(--white); margin-bottom: 16px; }
.section-sub { color: var(--white-dim); font-size: 1rem; max-width: 600px; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── DIVIDER ── */
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  margin: 16px 0; border-radius: 2px;
}
.divider.center { margin: 16px auto; background: linear-gradient(90deg, transparent, var(--blue), transparent); width: 80px; }

/* ── CARDS ── */
.card {
  background: rgba(10,26,53,0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.3s; backdrop-filter: blur(8px);
}
.card:hover { border-color: var(--border-blue); box-shadow: var(--shadow-blue); transform: translateY(-4px); }
.card-body { padding: 28px; }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  background: var(--blue-dim); border: 1px solid var(--border-blue);
  color: var(--blue-bright); margin-bottom: 12px;
}
.card-title { font-size: 1.15rem; color: var(--white); margin-bottom: 8px; }
.card-text { color: var(--white-dim); font-size: 0.9rem; }
.card-meta {
  display: flex; align-items: center; gap: 6px;
  color: var(--white-muted); font-size: 0.85rem; margin-top: 8px;
}
.card-meta svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── FEATURE CARD ── */
.feature-card {
  background: rgba(10,26,53,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  text-align: center; transition: all 0.3s; backdrop-filter: blur(6px);
}
.feature-card:hover { border-color: var(--border-blue); box-shadow: var(--shadow-blue); }
.feature-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--blue-dim); border: 1px solid var(--border-blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.feature-icon svg { color: var(--blue-bright); }
.feature-title { font-size: 1.2rem; color: var(--white); margin-bottom: 8px; }
.feature-text { color: var(--white-dim); font-size: 0.9rem; }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 28px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3,1fr); } .grid-4 { grid-template-columns: repeat(4,1fr); } }

/* ── SERVICE CARD ── */
.service-card {
  background: rgba(10,26,53,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 20px;
  text-align: center; position: relative; overflow: hidden;
  transition: all 0.3s; backdrop-filter: blur(6px);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transform: scaleX(0); transition: transform 0.3s;
}
.service-card:hover { border-color: var(--border-blue); box-shadow: var(--shadow-blue); }
.service-card:hover::before { transform: scaleX(1); }
.service-day { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 8px; }
.service-name { font-size: 1.2rem; color: var(--white); margin-bottom: 8px; font-weight: 700; }
.service-time { font-style: italic; font-size: 1rem; color: var(--blue-light); margin-bottom: 4px; }
.service-loc { font-size: 0.8rem; color: var(--white-muted); }

/* ── QUOTE BOX ── */
.quote-box {
  background: rgba(10,26,53,0.85);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg); padding: 40px;
  position: relative; backdrop-filter: blur(8px);
}
.quote-box::before {
  content: '\201C';
  position: absolute; top: -20px; left: 30px;
  font-family: Arial, sans-serif; font-size: 80px;
  color: var(--blue); opacity: 0.35; line-height: 1;
}
.quote-text {
  font-style: italic;
  font-size: clamp(1.05rem,2.5vw,1.4rem);
  color: var(--white-dim); line-height: 1.7; margin-bottom: 16px;
}
.quote-cite { font-size: 0.9rem; color: var(--blue-bright); font-weight: 700; letter-spacing: 0.05em; }

/* ── ANNOUNCE CARD ── */
.announce-card {
  background: rgba(10,26,53,0.8); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: all 0.3s; backdrop-filter: blur(6px);
}
.announce-card:hover { border-color: var(--border-blue); }
.announce-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0; margin-top: 6px;
  box-shadow: 0 0 8px var(--blue);
}
.announce-date { font-size: 10px; color: var(--blue-bright); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
.announce-title { font-size: 1rem; color: var(--white); margin-bottom: 6px; font-weight: 700; }
.announce-text { font-size: 0.9rem; color: var(--white-dim); }
.announce-tag {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; margin-top: 8px;
}
.tag-service  { background: rgba(74,126,187,0.15); border: 1px solid rgba(74,126,187,0.3); color: #6BAEDD; }
.tag-events   { background: var(--blue-dim); border: 1px solid var(--border-blue); color: var(--blue-bright); }
.tag-community{ background: rgba(76,175,132,0.12); border: 1px solid rgba(76,175,132,0.3); color: #4CAF84; }
.tag-prayer   { background: rgba(120,160,255,0.12); border: 1px solid rgba(120,160,255,0.3); color: #8CB0FF; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 12px;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(4,1fr); } }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1; cursor: pointer;
  background: var(--card); border: 1px solid var(--border);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(2,8,18,0.85) 100%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text { font-size: 0.8rem; color: var(--white); font-weight: 700; }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-muted); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(2,8,18,0.8); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--white);
  font-family: Arial, sans-serif; font-size: 14px;
  transition: all 0.2s; outline: none; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,144,255,0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--white-muted); }
.form-select option { background: var(--surface); color: var(--white); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-checkbox input[type=checkbox] {
  margin-top: 3px; appearance: none; width: 16px; height: 16px;
  background: rgba(2,8,18,0.8); border: 1px solid var(--border);
  border-radius: 4px; cursor: pointer; flex-shrink: 0;
}
.form-checkbox input[type=checkbox]:checked {
  background: var(--blue); border-color: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23020812' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}
.form-checkbox-label { font-size: 13px; color: var(--white-muted); }

/* ── BANK CARD ── */
.bank-card {
  background: rgba(10,26,53,0.85); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  position: relative; overflow: hidden; backdrop-filter: blur(8px);
}
.bank-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--blue-dim);
}
.bank-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.bank-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  display: flex; align-items: center; justify-content: center;
}
.bank-icon svg { color: var(--midnight); }
.bank-name { font-size: 1.2rem; color: var(--white); margin-bottom: 2px; font-weight: 700; }
.bank-sub { font-size: 0.85rem; color: var(--white-muted); }
.bank-detail {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.bank-detail:last-child { border-bottom: none; }
.bank-detail-label { font-size: 12px; color: var(--white-muted); }
.bank-detail-value { font-weight: 700; color: var(--white); font-size: 0.9rem; }

/* ── CONTACT CARD ── */
.contact-card {
  background: rgba(10,26,53,0.8); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.3s; backdrop-filter: blur(6px);
}
.contact-card:hover { border-color: var(--border-blue); }
.contact-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.contact-icon svg { color: var(--midnight); }
.contact-title { font-size: 1.05rem; color: var(--white); margin-bottom: 16px; font-weight: 700; }
.contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.contact-item svg { width: 16px; height: 16px; color: var(--blue-bright); flex-shrink: 0; margin-top: 3px; }
.contact-item span, .contact-item a { font-size: 0.9rem; color: var(--white-dim); text-decoration: none; }
.contact-item a:hover { color: var(--blue-bright); }

/* ── MAP ── */
.map-container { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); height: 400px; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ── FILTER PILLS ── */
.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-pill {
  padding: 8px 18px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(10,26,53,0.8); border: 1px solid var(--border);
  color: var(--white-muted); cursor: pointer; transition: all 0.2s;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--blue-dim); border-color: var(--border-blue); color: var(--blue-bright);
}

/* ── PASTOR ── */
.pastor-section { display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) { .pastor-section { grid-template-columns: 1fr 1.3fr; } }
.pastor-img-wrap { position: relative; }
.pastor-img {
  width: 100%; max-width: 400px; aspect-ratio: 3/4;
  object-fit: cover; border-radius: var(--radius-lg);
  display: block; margin: 0 auto;
  border: 1px solid var(--border-blue);
  box-shadow: 0 0 40px var(--blue-glow);
}
.pastor-badge {
  position: absolute; bottom: -16px; right: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--midnight); padding: 12px 20px;
  border-radius: var(--radius); font-weight: 700; font-size: 12px;
  box-shadow: var(--shadow-blue); max-width: 220px;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: rgba(4,14,31,0.9);
  border-top: 1px solid var(--border-blue); border-bottom: 1px solid var(--border-blue);
  padding: 60px clamp(1rem,5vw,3rem);
  text-align: center; position: relative; overflow: hidden;
  backdrop-filter: blur(8px);
}
.cta-strip::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,144,255,0.07) 0%, transparent 70%);
}
.cta-strip-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-strip h2 { font-size: clamp(1.8rem,4vw,2.5rem); color: var(--white); margin-bottom: 16px; }
.cta-strip p { color: var(--white-dim); margin-bottom: 32px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── FOOTER ── */
.footer {
  background: rgba(4,14,31,0.95); border-top: 1px solid var(--border-blue);
  padding: 60px clamp(1rem,5vw,3rem) 32px;
  backdrop-filter: blur(8px);
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand-name { font-size: 0.95rem; color: var(--white); margin-bottom: 8px; line-height: 1.4; font-weight: 700; }
.footer-tagline { font-style: italic; color: var(--blue-bright); font-size: 0.9rem; margin-bottom: 16px; }
.footer-desc { font-size: 0.85rem; color: var(--white-muted); line-height: 1.7; }
.footer-heading { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: var(--white-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--blue-bright); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.85rem; color: var(--white-muted); }
.footer-contact-item svg { color: var(--blue-bright); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.78rem; color: var(--white-muted); }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(10,26,53,0.8); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--white-muted); text-decoration: none; transition: all 0.2s;
}
.social-btn:hover { background: var(--blue-dim); border-color: var(--border-blue); color: var(--blue-bright); }
.social-btn svg { width: 16px; height: 16px; }

/* ── MISC ── */
.cross-divider { display: flex; align-items: center; gap: 20px; margin: 24px 0; }
.cross-divider::before, .cross-divider::after { content: ''; flex: 1; height: 1px; }
.cross-divider::before { background: linear-gradient(90deg, transparent, var(--border-blue)); }
.cross-divider::after  { background: linear-gradient(90deg, var(--border-blue), transparent); }
.cross-divider-icon { color: var(--blue-bright); font-size: 14px; }

.badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.badge-blue { background: var(--blue-dim); border: 1px solid var(--border-blue); color: var(--blue-bright); }
.badge-past { background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--white-muted); }

.highlight-box { background: var(--blue-dim); border: 1px solid var(--border-blue); border-radius: var(--radius); padding: 18px 22px; }
.highlight-box p { color: var(--white-dim); font-size: 0.9rem; }
.highlight-box strong { color: var(--blue-bright); }

.success-msg {
  background: rgba(34,201,126,0.1); border: 1px solid rgba(34,201,126,0.3);
  border-radius: var(--radius); padding: 16px 20px;
  display: flex; align-items: center; gap: 12px; color: #22C97E; font-size: 0.9rem;
}
.success-msg svg { flex-shrink: 0; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes shimmer { 0% { background-position:-200% center; } 100% { background-position:200% center; } }
@keyframes pulse-blue { 0%,100%{box-shadow:0 0 0 0 rgba(30,144,255,0.4);} 50%{box-shadow:0 0 0 14px rgba(30,144,255,0);} }

.anim-1 { animation: fadeUp 0.7s ease both; }
.anim-2 { animation: fadeUp 0.7s ease 0.1s both; }
.anim-3 { animation: fadeUp 0.7s ease 0.2s both; }
.anim-4 { animation: fadeUp 0.7s ease 0.3s both; }

.blue-text {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright), var(--blue-light));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: shimmer 4s linear infinite;
}

/* ── SOCIAL CONNECT ── */
.social-connect:hover { border-color: var(--border-blue) !important; transform: translateY(-3px); box-shadow: var(--shadow-blue); }

/* ── HELPERS ── */
.text-center { text-align: center; }
.mt-4{margin-top:16px;} .mt-8{margin-top:32px;} .mt-12{margin-top:48px;}
.mb-4{margin-bottom:16px;} .mb-8{margin-bottom:32px;}
.flex{display:flex;} .flex-wrap{flex-wrap:wrap;}
.items-center{align-items:center;} .justify-center{justify-content:center;} .justify-between{justify-content:space-between;}

/* ── 3D GLASS CARD EFFECT ── */
.glass-3d {
  background: rgba(10,26,53,0.55);
  border: 1px solid rgba(30,144,255,0.2);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(2,8,18,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.glass-3d:hover {
  transform: perspective(800px) rotateX(-2deg) rotateY(2deg) translateY(-6px);
  box-shadow: 0 20px 60px rgba(2,8,18,0.7), 0 0 40px rgba(30,144,255,0.15),
              inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ── STAT CARD ── */
.stat-card { background: rgba(10,26,53,0.8); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--blue-bright); }
.stat-label { font-size: 11px; color: var(--white-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
