/* ════════════════════════════════════════════════════════════════
   shared.css — Regional Mental Health Conference 2026
   All shared styles: variables, reset, nav, footer, partners
   carousel, modals, a11y widget, scroll-top, reveal animations.
   Page-specific styles stay in each page's own <style> block.
════════════════════════════════════════════════════════════════ */

/* ══ CSS VARIABLES ══ */
:root {
  --navy:    #081C3A;
  --blue:    #1558B0;
  --blue-lt: #3B82C4;
  --ice:     #E8F2FB;
  --gold:    #D4980B;
  --gold-lt: #F5B930;
  --teal:    #0E9AA7;
  --white:   #FFFFFF;
  --off:     #F4F8FC;
  --ink:     #0B1826;
  --muted:   #3E5A78;
  --border:  rgba(14,59,122,0.12);
  --nav-h:   72px;
  --danger:  #C0392B;
  --success: #1B7C4A;
}

/* ══ RESET ══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); display: flex; align-items: center;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(8,28,58,0.10);
  transition: height 0.35s, box-shadow 0.35s;
}
#nav.scrolled {
  height: 62px;
  box-shadow: 0 2px 24px rgba(8,28,58,0.14);
}

.nav-inner {
  max-width: 1280px; width: 100%; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

/* Brand */
.nav-brand {
  display: flex; align-items: center; text-decoration: none;
  flex-shrink: 0; gap: 10px;
}
.nav-brand-accent {
  width: 4px; height: 32px;
  background: linear-gradient(180deg, var(--gold), var(--teal));
  flex-shrink: 0;
}
.nav-brand-text  { display: flex; flex-direction: column; }
.nav-brand-main  {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.1;
}
.nav-brand-sub   {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
}

/* Desktop links */
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > button {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  padding: 0.5rem 0.8rem; display: flex; align-items: center; gap: 4px;
  position: relative; transition: color 0.2s; cursor: pointer;
  background: none; border: none; font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}
.nav-links > li > a::after,
.nav-links > li > button::after {
  content: ''; position: absolute; bottom: -2px; left: 0.8rem; right: 0.8rem;
  height: 2px; background: var(--blue);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover { color: var(--navy); }
.nav-links > li > a:hover::after,
.nav-links > li > button:hover::after { transform: scaleX(1); }

/* ── ACTIVE PAGE LINK ── */
.nav-links > li > a.active {
  color: var(--navy);
  font-weight: 700;
}
.nav-links > li > a.active::after {
  transform: scaleX(1);
  background: var(--gold); /* gold underline distinguishes active from hover */
}

/* Active parent link when a dropdown child is the current page */
.nav-links > li.has-dropdown > a.active-parent {
  color: var(--navy);
  font-weight: 700;
}
.nav-links > li.has-dropdown > a.active-parent::after {
  transform: scaleX(1);
  background: var(--gold);
}

.caret { font-size: 0.55rem; transition: transform 0.22s; pointer-events: none; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a { padding-bottom: 1.2rem; }
.nav-dropdown {
  position: absolute; top: 100%; left: 0; background: var(--white);
  min-width: 190px; box-shadow: 0 8px 32px rgba(8,28,58,0.15);
  border-top: 3px solid var(--gold);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200; list-style: none; padding-top: 0;
}
.has-dropdown::after {
  content: ''; position: absolute; left: 0; right: 0;
  top: calc(100% - 12px); height: 14px; display: block; z-index: 199;
}
.has-dropdown:hover > .nav-dropdown,
.nav-dropdown:hover {
  opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0);
}
.has-dropdown:hover .caret { transform: rotate(180deg); }

.nav-dropdown li a {
  display: flex; align-items: center; gap: 8px; padding: 0.75rem 1.1rem;
  font-size: 0.78rem; font-weight: 600; color: var(--muted); text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s;
  border-left: 3px solid transparent; white-space: nowrap;
}
.nav-dropdown li a i { color: var(--gold); font-size: 0.76rem; width: 16px; }
.nav-dropdown li a:hover {
  background: var(--off); color: var(--navy); border-left-color: var(--gold);
}
.nav-dropdown li a::after { display: none !important; }

/* Active dropdown item */
.nav-dropdown li a.active {
  background: var(--ice);
  color: var(--navy);
  font-weight: 700;
  border-left-color: var(--gold);
}

/* CTA button in nav */
.nav-cta {
  background: var(--blue) !important; color: var(--white) !important;
  font-weight: 700 !important; padding: 0.52rem 1.2rem !important;
  font-size: 0.76rem !important; white-space: nowrap;
  cursor: pointer; border-radius: 0 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover  { background: var(--navy) !important; color: var(--white) !important; }

/* Language switcher */
.lang-switcher {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--border); flex-shrink: 0;
}
.lang-btn {
  padding: 0.35rem 0.55rem; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  border: none; background: transparent; color: var(--muted);
  font-family: 'DM Sans', sans-serif; transition: all 0.2s;
  border-right: 1px solid var(--border);
}
.lang-btn:last-child  { border-right: none; }
.lang-btn.active      { background: var(--navy); color: var(--white); }
.lang-btn:hover:not(.active) { background: var(--ice); color: var(--navy); }

/* Hamburger toggle */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; width: 42px; height: 42px;
  background: var(--ice); border: 1px solid var(--border);
  cursor: pointer; transition: background 0.25s; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--navy);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--navy); z-index: 999;
  max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  transform: translateY(-8px); opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  border-top: 3px solid var(--gold);
}
.nav-drawer.open { transform: translateY(0); opacity: 1; }

.drawer-links {
  list-style: none; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.2rem;
}
.drawer-links li a,
.drawer-links li button {
  display: flex; align-items: center; gap: 12px; padding: 0.9rem 1.2rem;
  font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.85);
  text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase;
  border-left: 3px solid transparent;
  transition: all 0.2s; background: rgba(255,255,255,0.04); width: 100%;
  border-right: none; border-top: none; border-bottom: none;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
}
.drawer-links li a i,
.drawer-links li button i { width: 18px; color: var(--gold); font-size: 0.82rem; }
.drawer-links li a:hover,
.drawer-links li button:hover {
  background: rgba(255,255,255,0.08);
  border-left-color: var(--gold); color: var(--white);
}
.drawer-sub a { padding-left: 2.8rem !important; font-size: 0.82rem !important; }

/* Active drawer link */
.drawer-links li a.active {
  background: rgba(212,152,11,0.12);
  border-left-color: var(--gold);
  color: var(--white);
  font-weight: 700;
}

.drawer-cta-wrap { padding: 0 1.5rem 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.drawer-cta {
  display: block; width: 100%; text-align: center;
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: 0.88rem; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 1rem; cursor: pointer;
  border: none; font-family: 'DM Sans', sans-serif;
}
.drawer-cta:hover { background: var(--gold-lt); }

.drawer-lang { display: flex; gap: 0.5rem; padding: 0 1.5rem 1rem; }
.drawer-lang-btn {
  flex: 1; padding: 0.6rem; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2); background: transparent;
  color: rgba(255,255,255,0.6); font-family: 'DM Sans', sans-serif; transition: all 0.2s;
}
.drawer-lang-btn.active { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.drawer-meta {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.drawer-meta span {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
}
.drawer-meta i { color: var(--gold); font-size: 0.72rem; }

/* Nav responsive */
@media (max-width: 1100px) {
  .nav-links    { display: none; }
  .lang-switcher { display: none; }
  .nav-toggle   { display: flex; }
  .nav-drawer   { display: block; }
}

/* ══════════════════════════════════════════
   SHARED BUTTON STYLES
══════════════════════════════════════════ */
.btn-gold {
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.85rem 1.8rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--gold); transition: background 0.2s, transform 0.2s;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: var(--navy);
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.85rem 1.8rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--border);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-ghost:hover { border-color: var(--navy); background: var(--ice); transform: translateY(-2px); }

.btn-teal {
  background: var(--teal); color: var(--white);
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.85rem 1.8rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--teal); transition: background 0.2s, transform 0.2s;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-teal:hover { background: #0b8490; transform: translateY(-2px); }

.btn-sponsor {
  background: transparent; color: var(--gold);
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.85rem 1.8rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(212,152,11,0.4); transition: all 0.2s;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-sponsor:hover {
  background: rgba(212,152,11,0.08);
  border-color: var(--gold); transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   SECTION UTILITY CLASSES
══════════════════════════════════════════ */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 0.8rem;
}
.section-eyebrow-line { display: block; width: 36px; height: 2px; background: var(--gold); }
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700; color: var(--navy); margin-bottom: 0.5rem;
}
.section-sub {
  font-size: 0.88rem; color: var(--muted); max-width: 580px;
  line-height: 1.7; margin-bottom: 3rem;
}

/* ══════════════════════════════════════════
   PARTNERS CAROUSEL — INFINITE AUTO-SCROLL
══════════════════════════════════════════ */
#partners-carousel {
  background: var(--white);
  padding: 4rem 0 4.5rem;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
#partners-carousel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--gold));
}

.pc-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.pc-header { text-align: center; margin-bottom: 2.5rem; }
.pc-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 0.5rem;
}
.pc-eyebrow-line { display: block; width: 32px; height: 2px; background: var(--gold); }
.pc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--navy); margin-bottom: 0.3rem;
}
.pc-sub { font-size: 0.75rem; color: var(--muted); }

/* Marquee container with edge fades */
.carousel-marquee-outer {
  overflow: hidden; position: relative;
}
.carousel-marquee-outer::before,
.carousel-marquee-outer::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 100px; z-index: 2; pointer-events: none;
}
.carousel-marquee-outer::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 100%);
}
.carousel-marquee-outer::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, rgba(255,255,255,0) 100%);
}

/* Scrolling track */
.carousel-marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee-scroll 24s linear infinite;
}
.carousel-marquee-track:hover { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Each logo card */
.partner-logo-item {
  flex: 0 0 auto; width: 200px; height: 130px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  padding: 1rem 1.5rem; border-right: 1px solid var(--border);
  background: var(--white); text-decoration: none;
  transition: background 0.25s, box-shadow 0.25s;
}
.partner-logo-item:hover {
  background: var(--off);
  box-shadow: inset 0 -3px 0 var(--gold);
}

.partner-logo-img-wrap {
  width: 150px; height: 80px;
  display: flex; align-items: center; justify-content: center;
}
.partner-logo-img-wrap img {
  max-width: 150px; max-height: 80px; width: auto; height: auto;
  object-fit: contain; filter: grayscale(20%); opacity: 0.88;
  transition: filter 0.25s, opacity 0.25s, transform 0.25s;
}
.partner-logo-item:hover .partner-logo-img-wrap img {
  filter: none; opacity: 1; transform: scale(1.05);
}

.partner-logo-fallback {
  width: 150px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed var(--border);
}
.partner-logo-fallback span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem; font-weight: 700;
  color: var(--muted); text-align: center; line-height: 1.3;
}

.partner-item-role {
  font-size: 0.5rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); text-align: center;
}

/* ══════════════════════════════════════════
   MODALS — shared shell
══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(8,28,58,0.88); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--white); width: 100%; max-width: 680px;
  max-height: 92vh; overflow-y: auto; position: relative;
  transform: translateY(20px) scale(0.97); transition: transform 0.3s;
  border-top: 5px solid var(--gold);
}
.modal-overlay.open .modal-box { transform: none; }

.modal-header {
  background: var(--navy); padding: 2rem 2.5rem 1.8rem; position: relative;
}
.modal-eyebrow {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-lt); margin-bottom: 0.4rem;
}
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--white); line-height: 1.2;
}
.modal-sub { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 0.35rem; }
.modal-close {
  position: absolute; top: 1.2rem; right: 1.4rem;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--gold); color: var(--navy); }
.modal-body { padding: 2rem 2.5rem 2.5rem; }

/* Form elements inside modals */
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 1rem;
}
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.form-group label .req { color: var(--gold); margin-left: 2px; }
.form-control {
  border: 1.5px solid var(--border); padding: 0.7rem 0.9rem;
  font-size: 0.9rem; font-family: 'DM Sans', sans-serif;
  color: var(--ink); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; width: 100%;
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,88,176,0.1);
}
.form-control.error { border-color: var(--danger); }
select.form-control  { cursor: pointer; }
textarea.form-control { resize: vertical; }

.form-section-title {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--blue);
  padding: 0.5rem 0 0.7rem; border-bottom: 1px solid var(--border);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 6px;
}
.form-submit {
  width: 100%; background: var(--gold); color: var(--navy);
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 1rem 2rem; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 0.2s, transform 0.15s; margin-top: 1.5rem;
}
.form-submit:hover:not(:disabled) { background: var(--gold-lt); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.form-note {
  font-size: 0.76rem; color: var(--muted); text-align: center;
  margin-top: 0.9rem; line-height: 1.6;
}

/* Alerts */
.alert {
  padding: 0.9rem 1.1rem; font-size: 0.86rem; margin-bottom: 1.2rem;
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.alert-error   { background: #FDF2F2; border-left: 4px solid var(--danger); color: #7B1D1D; }
.alert-success { background: #F0FDF4; border-left: 4px solid var(--success); color: #14532D; }
.alert i { margin-top: 1px; flex-shrink: 0; }

/* Pricing info box */
.pricing-info {
  background: var(--ice); border: 1px solid var(--border);
  padding: 0.9rem 1.1rem; margin-top: 0.5rem;
  font-size: 0.82rem; color: var(--muted); line-height: 1.55;
  display: none;
}
.pricing-info.show  { display: block; }
.pricing-info strong { color: var(--navy); }

/* WhatsApp opt-in */
.whatsapp-opt {
  background: #F0FDF4; border: 1.5px solid #86EFAC;
  padding: 0.9rem 1.1rem; display: flex;
  align-items: flex-start; gap: 12px; margin-bottom: 1rem;
}
.whatsapp-opt input[type="checkbox"] {
  margin-top: 3px; width: 18px; height: 18px;
  accent-color: #25D366; cursor: pointer; flex-shrink: 0;
}
.whatsapp-opt label { font-size: 0.84rem; color: #166534; line-height: 1.55; cursor: pointer; }
.whatsapp-opt label strong {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: #14532D; margin-bottom: 3px;
}
.whatsapp-opt label strong i { color: #25D366; }

/* Modal success screen */
.modal-success { display: none; padding: 2.5rem; }
.modal-success.show { display: block; }
.success-icon {
  width: 76px; height: 76px; background: var(--success);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem; font-size: 2rem; color: var(--white);
}
.modal-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: var(--navy); margin-bottom: 0.5rem; text-align: center;
}
.modal-success .success-sub {
  font-size: 0.88rem; color: var(--muted); text-align: center;
  margin-bottom: 1.8rem; line-height: 1.6;
}

/* Payment box inside success */
.payment-box {
  background: var(--navy); padding: 1.6rem 1.8rem;
  border-left: 5px solid var(--gold); margin-bottom: 1.4rem;
}
.payment-box-title {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-lt);
  margin-bottom: 0.8rem; display: flex; align-items: center; gap: 7px;
}
.payment-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 800; color: var(--white);
  line-height: 1; margin-bottom: 0.3rem;
}
.payment-amount span {
  font-size: 1rem; font-family: 'DM Sans', sans-serif;
  font-weight: 500; color: rgba(255,255,255,0.5); margin-left: 4px;
}
.payment-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.2rem; }
.pay-method {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.1rem;
}
.pay-method-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-lt);
  margin-bottom: 0.6rem; display: flex; align-items: center; gap: 6px;
}
.pay-method-row {
  font-size: 0.82rem; color: rgba(255,255,255,0.8);
  margin-bottom: 0.25rem; line-height: 1.45;
}
.pay-method-row strong { color: var(--white); display: block; font-size: 0.88rem; }
.payment-note {
  background: rgba(212,152,11,0.12); border: 1px solid rgba(212,152,11,0.3);
  padding: 0.8rem 1rem; font-size: 0.8rem; color: rgba(255,255,255,0.7);
  line-height: 1.55; margin-top: 1rem; display: flex; gap: 8px;
}
.payment-note i { color: var(--gold-lt); flex-shrink: 0; margin-top: 1px; }

/* Registration reference box */
.reg-ref-box {
  background: var(--ice); border: 1px solid var(--border);
  padding: 0.9rem 1.1rem; margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 10px;
}
.reg-ref-box i    { color: var(--gold); }
.reg-ref-box span { font-size: 0.84rem; color: var(--muted); }
.reg-ref-box strong {
  color: var(--navy); font-size: 1rem; display: block;
}

/* Payment submission section */
.pay-submit-section {
  margin-top: 1.6rem; border-top: 2px solid var(--border); padding-top: 1.6rem;
}
.pay-submit-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 0.6rem;
}
.pay-submit-header .step-badge {
  background: var(--blue); color: var(--white);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.3rem 0.7rem; flex-shrink: 0;
}
.pay-submit-header h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 700; color: var(--navy); margin: 0;
}
.pay-submit-desc {
  font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.2rem;
}
.pay-method-toggle {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 1rem;
}
.pay-toggle-btn {
  border: 2px solid var(--border); background: var(--off);
  padding: 0.75rem 1rem; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 600;
  color: var(--muted); display: flex; align-items: center; gap: 8px;
  transition: all 0.2s; text-align: left;
}
.pay-toggle-btn i { color: var(--blue); }
.pay-toggle-btn:hover,
.pay-toggle-btn.active {
  border-color: var(--blue); background: var(--ice);
  color: var(--navy); font-weight: 700;
}
.pay-toggle-btn.active i { color: var(--gold); }

.pay-done-box {
  display: none; background: #F0FDF4;
  border: 1px solid #86EFAC; border-left: 4px solid var(--success);
  padding: 1.2rem 1.4rem; margin-top: 1.4rem;
}
.pay-done-box.show { display: flex; gap: 12px; align-items: flex-start; }
.pay-done-box i { color: var(--success); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.pay-done-box strong { display: block; font-size: 0.9rem; color: #14532D; margin-bottom: 0.25rem; }
.pay-done-box p { font-size: 0.82rem; color: #166534; line-height: 1.5; margin: 0; }

/* ══════════════════════════════════════════
   ACCESSIBILITY / VOICE WIDGET
══════════════════════════════════════════ */
#a11y-btn {
  position: fixed; bottom: 6rem; right: 2rem; z-index: 997;
  width: 56px; height: 56px; background: var(--teal); color: var(--white);
  border: none; cursor: pointer; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(14,154,167,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: 50%;
}
#a11y-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(14,154,167,0.65); }

#a11y-panel {
  position: fixed; bottom: 10.5rem; right: 2rem; z-index: 998;
  width: 340px; background: var(--navy); border-top: 4px solid var(--teal);
  box-shadow: 0 12px 48px rgba(8,28,58,0.5);
  transform: translateY(16px) scale(0.96); opacity: 0; pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
#a11y-panel.open { transform: none; opacity: 1; pointer-events: all; }

.a11y-header {
  padding: 1.2rem 1.4rem 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
}
.a11y-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--white);
  display: flex; align-items: center; gap: 8px;
}
.a11y-title i  { color: var(--teal); font-size: 0.9rem; }
.a11y-close    {
  background: none; border: none; color: rgba(255,255,255,0.5);
  cursor: pointer; font-size: 0.9rem; padding: 4px; transition: color 0.2s;
}
.a11y-close:hover { color: var(--white); }
.a11y-body { padding: 1rem 1.4rem; }

.a11y-status {
  background: rgba(14,154,167,0.12); border: 1px solid rgba(14,154,167,0.3);
  padding: 0.75rem 1rem; margin-bottom: 1rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.8);
  line-height: 1.55; display: flex; gap: 8px;
  align-items: flex-start; min-height: 58px;
}
.a11y-status i { color: var(--teal); flex-shrink: 0; margin-top: 2px; }

.a11y-btns { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.a11y-action-btn {
  width: 100%; padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 600;
  text-align: left; cursor: pointer; display: flex; align-items: center; gap: 10px;
  transition: all 0.2s; letter-spacing: 0.03em;
}
.a11y-action-btn i { color: var(--teal); width: 16px; flex-shrink: 0; }
.a11y-action-btn:hover {
  background: rgba(14,154,167,0.2);
  border-color: rgba(14,154,167,0.4); color: var(--white);
}
.a11y-action-btn.active {
  background: rgba(14,154,167,0.25); border-color: var(--teal); color: var(--white);
}

.a11y-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 0.75rem 0; }

.a11y-phone-box {
  background: rgba(212,152,11,0.12); border: 1px solid rgba(212,152,11,0.3);
  padding: 0.8rem 1rem; display: flex; align-items: center; gap: 10px;
}
.a11y-phone-box i { color: var(--gold-lt); flex-shrink: 0; }
.a11y-phone-box div { display: flex; flex-direction: column; gap: 2px; }
.a11y-phone-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.a11y-phone-num {
  font-size: 1rem; font-weight: 700; color: var(--gold-lt);
  font-family: 'Cormorant Garamond', serif; letter-spacing: 0.05em;
  line-height: 1.3;
}

/* Voice unsupported note */
.voice-unsupported-note {
  background: rgba(255,165,0,0.12); border: 1px solid rgba(255,165,0,0.3);
  padding: 0.6rem 0.8rem; font-size: 0.74rem; color: rgba(255,255,255,0.7);
  line-height: 1.5; display: none; gap: 6px; align-items: flex-start;
  margin-bottom: 0.6rem;
}
.voice-unsupported-note.show { display: flex; }
.voice-unsupported-note i { color: orange; flex-shrink: 0; margin-top: 2px; }

/* Assistance modal specific */
#assistanceModal .modal-box { border-top-color: var(--teal); }

.voice-indicator {
  display: flex; align-items: center; gap: 8px;
  padding: 0.8rem 1rem;
  background: rgba(14,154,167,0.1); border: 1px solid rgba(14,154,167,0.3);
  margin-bottom: 1rem;
}
.voice-dot {
  width: 10px; height: 10px; background: var(--teal);
  border-radius: 50%; flex-shrink: 0;
}
.voice-dot.listening { animation: pulse-teal 1s infinite; }
@keyframes pulse-teal {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}
.voice-label { font-size: 0.78rem; font-weight: 600; color: var(--teal); }

/* Phone confirmation box inside assistance modal */
.voice-phone-confirm {
  background: var(--ice); border: 1px solid var(--border);
  padding: 1rem; margin-top: 0.8rem;
}
.voice-phone-confirm p { font-size: 0.84rem; color: var(--muted); margin-bottom: 0.6rem; }
.voice-phone-display {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 0.8rem;
}
.voice-phone-actions { display: flex; gap: 0.6rem; }
.btn-sm-confirm {
  padding: 0.6rem 1.2rem; background: var(--success); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; border: none;
  cursor: pointer; display: flex; align-items: center; gap: 6px;
}
.btn-sm-edit {
  padding: 0.6rem 1.2rem; background: transparent; color: var(--navy);
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 2px solid var(--border); cursor: pointer;
  display: flex; align-items: center; gap: 6px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--ink); color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
}
.footer-logo {
  height: 64px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1); opacity: 0.85; margin-bottom: 1rem;
}
.footer-brand-loc { font-size: 0.73rem; color: var(--blue-lt); letter-spacing: 0.06em; margin-bottom: 1rem; }
.footer-desc {
  font-size: 0.83rem; line-height: 1.7; color: rgba(255,255,255,0.42); max-width: 270px;
}

/* Social icons row — now supports 6 icons including TikTok */
.socials { display: flex; gap: 0.45rem; margin-top: 1.4rem; flex-wrap: wrap; }
.social-btn {
  width: 34px; height: 34px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.8rem;
  text-decoration: none; transition: all 0.2s;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* TikTok-specific hover colour (optional accent) */
.social-btn[aria-label="TikTok"]:hover {
  background: var(--teal); border-color: var(--teal); color: var(--white);
}

.footer-col-hd {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; color: rgba(255,255,255,0.28); margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col ul a,
.footer-col ul button {
  color: rgba(255,255,255,0.58); font-size: 0.85rem; text-decoration: none;
  transition: color 0.2s; background: none; border: none;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  padding: 0; text-align: left;
}
.footer-col ul a:hover,
.footer-col ul button:hover { color: var(--gold-lt); }

/* Contact column rows */
.footer-contact-row {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.83rem; color: rgba(255,255,255,0.58); margin-bottom: 0.65rem;
}
.footer-contact-row i    { color: var(--gold-lt); width: 14px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-row a    { color: rgba(255,255,255,0.58); text-decoration: none; transition: color 0.2s; }
.footer-contact-row a:hover { color: var(--gold-lt); }

/* Stacked phone numbers */
.footer-phones {
  display: flex; flex-direction: column; gap: 0.2rem;
}
.footer-phones a {
  color: rgba(255,255,255,0.58); text-decoration: none; transition: color 0.2s;
  font-size: 0.83rem;
}
.footer-phones a:hover { color: var(--gold-lt); }

.footer-bottom {
  max-width: 1280px; margin: 3rem auto 0; padding: 1.3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.76rem; color: rgba(255,255,255,0.25);
}

/* ══════════════════════════════════════════
   SCROLL-TO-TOP BUTTON
══════════════════════════════════════════ */
#scrollTop {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px; background: var(--blue); color: var(--white);
  border: none; font-size: 1rem; cursor: pointer;
  z-index: 996; opacity: 0; pointer-events: none;
  transform: translateY(12px); transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
#scrollTop.vis { opacity: 1; pointer-events: all; transform: none; }
#scrollTop:hover { background: var(--navy); }

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════════
   RESPONSIVE — SHARED
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .payment-methods,
  .pay-method-toggle { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .modal-header { padding: 1.5rem; }
  .modal-body   { padding: 1.5rem; }
}