
/* ================================================================
   HEPHZIBAH EVANGELISTIC MINISTRIES INTERNATIONAL
   style.css  —  Complete Stylesheet
================================================================ */

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  --deep-purple:   #1A0533;
  --royal-purple:  #2D0A5C;
  --mid-purple:    #4A1580;
  --bright-purple: #6B21B0;
  --light-purple:  #9B59D0;
  --pale-purple:   #E8D5F5;
  --white:         #FFFFFF;
  --off-white:     #F9F5FF;
  --gold:          #C9A84C;
  --gold-light:    #E8C97A;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--deep-purple);
  color: var(--white);
  overflow-x: hidden;
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar          { width: 6px; }
::-webkit-scrollbar-track    { background: var(--deep-purple); }
::-webkit-scrollbar-thumb    { background: var(--bright-purple); border-radius: 3px; }

/* ================================================================
   NAVIGATION
================================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 72px;
  background: rgba(26, 5, 51, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(155, 89, 208, 0.2);
  transition: all 0.3s ease;
}

nav.scrolled {
  height: 60px;
  background: rgba(26, 5, 51, 0.98);
  border-bottom-color: rgba(155, 89, 208, 0.4);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;  /* keeps logo proportions, no stretching */
  border-radius: 50%;   /* makes it circular — remove if not needed */
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--bright-purple), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.3;
}

.nav-logo-text span {
  display: block;
  font-size: 9px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--light-purple);
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s ease;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { left: 16px; right: 16px; }

/* CTA button in nav */
.nav-cta {
  background: var(--bright-purple) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 4px !important;
  border: 1px solid var(--light-purple) !important;
}

.nav-cta:hover {
  background: var(--mid-purple) !important;
  border-color: var(--gold) !important;
  color: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(107, 33, 176, 0.5);
}

.nav-cta::after { display: none !important; }

/* ================================================================
   SHARED BUTTONS
================================================================ */
.btn-primary {
  display: inline-block;
  background: var(--bright-purple);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--light-purple);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  background: var(--mid-purple);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107, 33, 176, 0.6);
}

.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(155, 89, 208, 0.4);
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: rgba(155, 89, 208, 0.15);
  border-color: var(--light-purple);
  color: var(--white);
  transform: translateY(-2px);
}

/* ================================================================
   HERO
================================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 4rem 4rem;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(107, 33, 176, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(45, 10, 92, 0.6) 0%, transparent 50%),
    radial-gradient(ellipse 30% 40% at 80% 70%, rgba(74, 21, 128, 0.4) 0%, transparent 50%),
    var(--deep-purple);
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,1) 60px, rgba(255,255,255,1) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,1) 60px, rgba(255,255,255,1) 61px);
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  z-index: 0;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(107, 33, 176, 0.25) 0%, transparent 70%);
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px; height: 300px;
  bottom: 50px; left: -80px;
  background: radial-gradient(circle, rgba(74, 21, 128, 0.3) 0%, transparent 70%);
  animation-delay: -3s;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(155, 89, 208, 0.15);
  border: 1px solid rgba(155, 89, 208, 0.4);
  color: var(--pale-purple);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease infinite;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero h1 em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-light);
  font-size: 1.1em;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--pale-purple);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.9s ease 0.35s both;
}

.hero p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.9s ease 0.5s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.65s both;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.5s both;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(155, 89, 208, 0.8), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ================================================================
   VERSE STRIP
================================================================ */
.verse-strip {
  background: var(--royal-purple);
  border-top:    1px solid rgba(155, 89, 208, 0.3);
  border-bottom: 1px solid rgba(155, 89, 208, 0.3);
  padding: 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.verse-strip::before {
  content: '\201C';
  position: absolute;
  left: 4rem;
  top: -10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  color: rgba(155, 89, 208, 0.2);
  line-height: 1;
}

.verse-strip p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--pale-purple);
  max-width: 800px;
  margin: 0 auto 0.5rem;
  line-height: 1.7;
  position: relative;
}

.verse-strip cite {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 600;
}

/* ================================================================
   SHARED SECTION STYLES
================================================================ */
section { padding: 6rem 4rem; }

.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.section-title em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  color: var(--pale-purple);
}

/* ================================================================
   ABOUT
================================================================ */
.about {
  background: var(--deep-purple);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* Visual / cross */
.about-visual { position: relative; }

.about-cross {
  width: 100%;
  aspect-ratio: 1;
  max-width: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cross-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(107, 33, 176, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.cross-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(155, 89, 208, 0.2);
  animation: ringExpand 4s ease-in-out infinite;
}

.cross-ring:nth-child(2) { width: 70%;  height: 70%;  animation-delay: 0s; }
.cross-ring:nth-child(3) { width: 85%;  height: 85%;  animation-delay: 1s; }
.cross-ring:nth-child(4) { width: 100%; height: 100%; animation-delay: 2s; }

.cross-symbol {
  position: relative;
  z-index: 1;
  font-family: 'Cinzel', serif;
  font-size: 7rem;
  color: var(--bright-purple);
  text-shadow: 0 0 60px rgba(107, 33, 176, 0.8), 0 0 120px rgba(107, 33, 176, 0.4);
  line-height: 1;
}

/* About text */
.about-text p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2.5rem;
  background: rgba(155, 89, 208, 0.2);
  border: 1px solid rgba(155, 89, 208, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.stat {
  background: rgba(26, 5, 51, 0.8);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: background 0.3s;
}

.stat:hover { background: rgba(74, 21, 128, 0.4); }

.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ================================================================
   MINISTRY
================================================================ */
.ministry { background: var(--royal-purple); }

.ministry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.ministry-card {
  background: rgba(26, 5, 51, 0.6);
  border: 1px solid rgba(155, 89, 208, 0.2);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.ministry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107, 33, 176, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ministry-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--bright-purple), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.ministry-card:hover {
  border-color: rgba(155, 89, 208, 0.6);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.ministry-card:hover::before { opacity: 1; }
.ministry-card:hover::after  { transform: scaleX(1); }

.ministry-icon {
  width: 56px; height: 56px;
  background: rgba(107, 33, 176, 0.3);
  border: 1px solid rgba(155, 89, 208, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 1.5rem;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}

.ministry-card:hover .ministry-icon {
  background: rgba(107, 33, 176, 0.6);
  border-color: var(--gold);
  transform: scale(1.1) rotate(-5deg);
}

.ministry-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.ministry-card:hover h3 { color: var(--gold-light); }

.ministry-card p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ================================================================
   EVENTS
================================================================ */
.events { background: var(--deep-purple); }

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.event-card {
  display: flex;
  gap: 1.5rem;
  background: rgba(45, 10, 92, 0.4);
  border: 1px solid rgba(155, 89, 208, 0.15);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--bright-purple), var(--gold));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.event-card:hover {
  border-color: rgba(155, 89, 208, 0.4);
  background: rgba(74, 21, 128, 0.3);
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.event-card:hover::before { transform: scaleY(1); }

.event-date {
  background: var(--mid-purple);
  border: 1px solid rgba(155, 89, 208, 0.4);
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  min-width: 60px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.event-card:hover .event-date {
  background: var(--bright-purple);
  border-color: var(--gold);
}

.event-day {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}

.event-month {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  display: block;
}

.event-info h4 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  transition: color 0.3s;
}

.event-card:hover .event-info h4 { color: var(--gold-light); }

.event-info p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.event-tag {
  display: inline-block;
  background: rgba(107, 33, 176, 0.3);
  border: 1px solid rgba(155, 89, 208, 0.3);
  color: var(--pale-purple);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 8px;
}

/* ================================================================
   GIVE
================================================================ */
/* ════════════════════════════════════════════════════════
   GIVE SECTION — Add these styles to your style.css
════════════════════════════════════════════════════════ */

/* ── Give intro text ── */
.give-intro {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem !important;
}

/* ── Currency Tabs ── */
.currency-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.currency-tab {
  background: rgba(26, 5, 51, 0.6);
  border: 1px solid rgba(155, 89, 208, 0.3);
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.currency-tab:hover {
  border-color: rgba(155, 89, 208, 0.6);
  color: white;
  background: rgba(74, 21, 128, 0.4);
}

.currency-tab.active {
  background: var(--bright-purple);
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(107, 33, 176, 0.5);
}

/* ── Accounts Panel ── */
.accounts-panel {
  display: none;
  width: 100%;
}

.accounts-panel.active {
  display: block;
}

/* ── Accounts Grid ── */
.accounts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.accounts-grid.single {
  grid-template-columns: minmax(280px, 500px);
  justify-content: center;
}

/* ── Account Card ── */
.account-card {
  background: rgba(26, 5, 51, 0.7);
  border: 1px solid rgba(155, 89, 208, 0.25);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
}

.account-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--bright-purple), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.account-card:hover {
  border-color: rgba(155, 89, 208, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}

.account-card:hover::before {
  transform: scaleX(1);
}

/* ── Bank Header ── */
.account-bank-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1.25rem 1.5rem;
  background: rgba(45, 10, 92, 0.5);
  border-bottom: 1px solid rgba(155, 89, 208, 0.15);
}

.bank-logo {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.bank-logo.gtb {
  background: linear-gradient(135deg, #e30613, #a00010);
  color: white;
}

.bank-logo.access {
  background: linear-gradient(135deg, #e17000, #a05000);
  color: white;
}

.bank-logo.zenith {
  background: linear-gradient(135deg, #cc0000, #880000);
  color: white;
}

.bank-logo.usd {
  background: linear-gradient(135deg, #1a6b2a, #0d4a1c);
  color: #4ade80;
}

.bank-logo.gbp {
  background: linear-gradient(135deg, #003078, #001a4a);
  color: #fbbf24;
}

.bank-info {
  flex: 1;
}

.bank-name {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.bank-type {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
  letter-spacing: 0.5px;
}

.bank-badge {
  background: rgba(107, 33, 176, 0.25);
  border: 1px solid rgba(155, 89, 208, 0.35);
  color: var(--pale-purple);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ── Account Details ── */
.account-details {
  padding: 1rem 1.5rem;
}

.detail-row {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(155, 89, 208, 0.08);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row.highlight {
  background: rgba(107, 33, 176, 0.1);
  margin: 0 -1.5rem;
  padding: 0.7rem 1.5rem;
  border-bottom: 1px solid rgba(155, 89, 208, 0.12);
}

.detail-label {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  margin-bottom: 4px;
}

.detail-value-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.detail-value {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  flex: 1;
}

.account-num {
  font-family: 'Cinzel', serif;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--gold-light) !important;
  letter-spacing: 2px;
}

/* ── Copy Button ── */
.copy-btn {
  background: rgba(107, 33, 176, 0.2);
  border: 1px solid rgba(155, 89, 208, 0.25);
  color: rgba(255, 255, 255, 0.5);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.copy-btn:hover {
  background: rgba(107, 33, 176, 0.5);
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.1);
}

.copy-btn.copied {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.5);
  color: #4ade80;
}

/* ── Copy All Button ── */
.copy-all-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: rgba(107, 33, 176, 0.15);
  border: 1px solid rgba(155, 89, 208, 0.25);
  border-top: 1px solid rgba(155, 89, 208, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.copy-all-btn:hover {
  background: rgba(107, 33, 176, 0.35);
  color: var(--gold-light);
  border-color: rgba(201, 168, 76, 0.4);
}

.copy-all-btn.copied {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.3);
}

/* ── Give Note ── */
.give-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(45, 10, 92, 0.4);
  border: 1px solid rgba(155, 89, 208, 0.2);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.give-note-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.give-note p {
  font-size: 13px !important;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65) !important;
  line-height: 1.8 !important;
  margin: 0 !important;
}

.give-note strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .accounts-grid {
    grid-template-columns: 1fr;
  }

  .accounts-grid.single {
    grid-template-columns: 1fr;
  }

  .currency-tabs {
    gap: 8px;
  }

  .currency-tab {
    font-size: 12px;
    padding: 8px 14px;
  }
}

/* ================================================================
   CONTACT
================================================================ */
.contact {
  background: var(--deep-purple);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  background: rgba(45, 10, 92, 0.4);
  border: 1px solid rgba(155, 89, 208, 0.15);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-card:hover {
  border-color: rgba(155, 89, 208, 0.5);
  background: rgba(74, 21, 128, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon {
  font-size: 22px;
  margin-bottom: 0.75rem;
  display: block;
}

.contact-card h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-card p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ── Contact Form ────────────────────────────────────────── */
.form-title {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(45, 10, 92, 0.4);
  border: 1px solid rgba(155, 89, 208, 0.25);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: all 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--bright-purple);
  background: rgba(74, 21, 128, 0.3);
  box-shadow: 0 0 0 3px rgba(107, 33, 176, 0.2);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-group select option { background: var(--royal-purple); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Contact submit button */
.contact-submit {
  width: 100%;
  border: 1px solid var(--light-purple);
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
}

/* ================================================================
   FOOTER
================================================================ */
footer {
  background: rgba(10, 2, 20, 0.95);
  border-top: 1px solid rgba(155, 89, 208, 0.2);
  padding: 3rem 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 260px;
}

.footer-col h5 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 0.6rem;
  transition: all 0.2s;
}

.footer-col a:hover {
  color: var(--pale-purple);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(155, 89, 208, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom span { color: var(--gold); }

.social-links { display: flex; gap: 12px; }

.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(155, 89, 208, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.25s ease;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(107, 33, 176, 0.3);
  transform: translateY(-2px);
}

/* ================================================================
   SCROLL REVEAL
================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   KEYFRAME ANIMATIONS
================================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

@keyframes ringExpand {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.02); }
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 900px) {
  nav                { padding: 0 1.5rem; }
  .nav-links         { display: none; }
  section            { padding: 4rem 1.5rem; }
  .hero              { padding: 100px 1.5rem 4rem; }
  .about             { grid-template-columns: 1fr; gap: 2rem; }
  .contact           { grid-template-columns: 1fr; gap: 2rem; }
  .events-grid       { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .verse-strip       { padding: 2rem 1.5rem; }
  .contact-cards     { grid-template-columns: 1fr 1fr; }
  .form-row          { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer-grid       { grid-template-columns: 1fr; }
  .footer-bottom     { flex-direction: column; gap: 1rem; text-align: center; }
  .about-stats       { grid-template-columns: 1fr; }
  .contact-cards     { grid-template-columns: 1fr; }
}