/* =============================================================
   Athlenic – Main Stylesheet
   Structure:
     1. Design Tokens
     2. Base Reset
     3. Navbar (light)
     4. Page Header Strip
     5. Section Labels
     6. Event Cards
     7. Card Banners
     8. Card Badges
     9. Card Body & Footer
    10. Buttons
    11. Section Divider
    12. Footer
    13. Utility
   ============================================================= */


/* ── 1. Design Tokens ─────────────────────────────────────── */
:root {
  /* Purple palette */
  --purple-darker: #210041;
  --purple-mid:    #4b0082;
  --purple-soft:   #6a3fa0;
  --accent:        #6a3fa0;
  --accent-hover:  #4b0082;
  --purple-tint:   #f3eefa;
  --purple-border: #e0d4f0;

  /* Neutral text */
  --text-primary:   #1a1a2e;
  --text-secondary: #5a5a72;
  --text-muted:     #8e8eaa;

  /* Surfaces */
  --bg-body:  #f8f7fc;
  --bg-card:  #ffffff;
  --border:   #e4e0ed;

  /* Shadows */
  --shadow-sm: 0 4px 18px rgba(74, 0, 130, 0.04);
  --shadow-md: 0 10px 30px rgba(74, 0, 130, 0.08);

  --radius: 16px;
}


/* ── 2. Base Reset ────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: var(--bg-body);
  color: var(--text-primary);
  min-height: 100vh;
}

section {
  padding: 0;
}


/* ── 3. Navbar (light) ────────────────────────────────────── */
.navbar {
  background: linear-gradient(90deg, #6831e3, #f528cb);
  padding: 0.7rem 0;
}

.header-divider {
  position: relative;
  width: 100%;
  height: 70px;
  overflow: hidden;
  background: linear-gradient(90deg, #6831e3, #f528cb);
}

@media (max-width: 768px) {
  .header-divider {
    height: 50px;
  }
  .header-divider::before {
    height: 50px;
  }
}

@media (max-width: 576px) {
  .header-divider {
    height: 30px;
  }
  .header-divider::before {
    height: 30px;
  }
}

.header-divider::before {
  content: '';
  display: block;
  height: 70px;
  width: 100%;
  background: url("../images/hero/brush.svg") bottom no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 7;
}

.navbar-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary) !important;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.brand-icon {
  display: inline;
  line-height: 1;
}

.brand-logo-img {
  width: 22px;
  height: auto;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}

.brand-name {
  display: inline;
  letter-spacing: inherit;
  color: #fff;
}

.brand-accent {
  color: #fff;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: none !important;
  outline: none !important;
}

.navbar-toggler-icon-custom {
  font-size: 1.6rem;
  line-height: 1;
  display: block;
}

.navbar-collapse {
  flex-grow: 0;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 0.75rem;
    margin-top: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
}

.navbar-nav {
  gap: 0.15rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem !important;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.13);
}

.nav-actions {
  margin-left: 0.5rem;
  padding-left: 0.5rem;
}

@media (max-width: 991.98px) {
  .nav-actions {
    margin-left: 0;
    padding-left: 0;
    padding-top: 0.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.3rem;
  }
}

.btn-nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  padding: 0.4rem 1.3rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
}

.btn-nav-cta:hover,
.btn-nav-cta.active {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: none;
}


/* ── 4. Page Header Strip ─────────────────────────────────── */
.page-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}

.breadcrumb {
  font-size: 0.8rem;
  margin: 0;
}

.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--accent);
}

.breadcrumb-item.active {
  color: var(--accent);
  font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--border);
}

.filter-select {
  width: auto;
  font-size: 0.82rem;
  border-color: var(--border);
  color: var(--text-secondary);
  border-radius: 8px;
  padding: 0.3rem 0.7rem;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s;
}

.filter-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(106, 63, 160, 0.1);
  outline: none;
}


/* ── 5. Section Labels ────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.section-label-bar {
  width: 4px;
  height: 22px;
  border-radius: 3px;
  background: var(--accent);
  opacity: 0.75;
  flex-shrink: 0;
}

.section-label-bar--faded {
  opacity: 0.35;
}

.section-label h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.section-label h2.muted {
  color: var(--text-secondary);
}

.count-badge {
  background: var(--purple-tint);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.18rem 0.6rem;
  border-radius: 20px;
  border: 1px solid var(--purple-border);
}

.count-badge--faded {
  opacity: 0.6;
}


/* ── 6. Event Cards ───────────────────────────────────────── */
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.event-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}


/* ── 7. Card Banners ──────────────────────────────────────── */
.card-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8e0f0;
  flex-shrink: 0;
}

.card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.event-card:hover .card-banner img {
  transform: scale(1.04);
}

/* Emoji / icon placeholder */
.banner-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  user-select: none;
}

/* Per-sport soft pastel gradients */
.banner-track    { background: linear-gradient(135deg, #e8e0f5 0%, #cbb8e8 100%); }
.banner-swim     { background: linear-gradient(135deg, #dde8f8 0%, #b3c8ee 100%); }
.banner-cycle    { background: linear-gradient(135deg, #e0f2ea 0%, #b3d9c4 100%); }
.banner-combat   { background: linear-gradient(135deg, #fbeae0 0%, #e8c0a8 100%); }
.banner-strength { background: linear-gradient(135deg, #f0e8dc 0%, #ddc9a8 100%); }
.banner-endurance{ background: linear-gradient(135deg, #f8edf0 0%, #e8c0cc 100%); }
.banner-team     { background: linear-gradient(135deg, #e4ecf8 0%, #b8c8e8 100%); }
.banner-archery  { background: linear-gradient(135deg, #f2eee0 0%, #e0d4b0 100%); }

/* Past cards: slightly desaturated */
.past-section .card-banner {
  filter: saturate(0.65) brightness(0.96);
}


/* ── 8. Card Badges ───────────────────────────────────────── */
.badge-sport {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-secondary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 0.22rem 0.65rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(4px);
}

.badge-status {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.22rem 0.65rem;
  border-radius: 20px;
}

.status-upcoming {
  background: #f3e5f5;
  color: #6a1b9a;
  border: 1px solid #ce93d8;
}

.status-past {
  background: #f3e5f5;
  color: #6a1b9a;
  border: 1px solid #ce93d8;
}


/* ── 9. Card Body & Footer Row ────────────────────────────── */
.event-card .card-body {
  padding: 1.1rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.event-title a {
  text-decoration: none !important;
  color: var(--purple-darker);
  transition: color 0.2s ease;
}

.event-title a:hover {
  color: var(--accent);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.meta-item i {
  font-size: 0.8rem;
  color: var(--accent);
  opacity: 0.75;
}

.event-desc {
  font-size: 0.825rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 0.9rem;
}

.card-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.participants {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.participants i {
  color: var(--accent);
  opacity: 0.7;
}


/* ── 10. Buttons ──────────────────────────────────────────── */
.btn-register {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}

.btn-register:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-results {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.33rem 1rem;
  border-radius: 20px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-results:hover {
  border-color: var(--accent);
  color: var(--accent);
}


/* ── 11. Section Divider ──────────────────────────────────── */
.section-spacer {
  margin: 2.5rem 0;
}


/* ── Host CTA ──────────────────────────────────────────────── */
.host-cta {
  position: relative;
  background: linear-gradient(135deg, var(--accent) 0%, #f528cb 100%);
  border-radius: var(--radius);
  padding: 3.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.host-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
}

.host-cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.host-cta h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.8rem;
}

.host-cta p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-host-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.7rem 2.2rem;
  border-radius: 30px;
  background: #fff;
  color: var(--accent);
  border: none;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-host-cta:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

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

.btn-host-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.7rem 2.2rem;
  border-radius: 30px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-host-cta-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}


/* ── 12. Footer ──────────────────────────────────────────────── */
footer {
  background:
    url(../images/saas-overlay.png) center/cover no-repeat,
    var(--accent);
  border-top: 1px solid var(--border);
  padding: 2.8rem 0 1.2rem;
  margin-top: 3rem;
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.footer-brand img {
  margin-right: 0.3rem;
}

.footer-logo-img {
  width: 20px;
  height: auto;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.8);
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.2rem;
  line-height: 1.55;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.88rem;
  margin-right: 0.4rem;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  text-decoration: none;
}

.footer-social a:hover {
  background: #fff;
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.9rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 0.45rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem;
}


/* ── 13. Utility ──────────────────────────────────────────── */
.main-wrap {
  padding: 2rem 0 1rem;
}

/* ── 14. Contact Page ─────────────────────────────────────── */
.contact-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg-body) 0%, #f0eaf8 100%);
  min-height: 70vh;
}

.contact-form-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(106, 63, 160, 0.07);
  transition: box-shadow 0.3s;
}

.contact-form-card:hover {
  box-shadow: 0 12px 50px rgba(106, 63, 160, 0.12);
}

.contact-form-header {
  margin-bottom: 1.8rem;
}

.contact-form-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--purple-darker);
  margin-bottom: 0.4rem;
}

.contact-form-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.contact-input {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  padding: 0.65rem 1rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(106, 63, 160, 0.1);
  outline: none;
  background: #fff;
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.btn-contact-submit {
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--accent) 0%, #f528cb 100%);
  color: #fff;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(106, 63, 160, 0.25);
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(106, 63, 160, 0.35);
  color: #fff;
}

/* ── Contact Hero (banner-style right side) ── */

.contact-hero {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #210041 0%, #4b0082 40%, #6a3fa0 70%, #f528cb 100%);
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background orbs */
.contact-orb-1,
.contact-orb-2,
.contact-orb-3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.contact-orb-1 {
  width: 500px; height: 500px;
  background: rgba(245, 40, 203, 0.15);
  top: -150px; right: -100px;
  animation: orbPulse 7s ease-in-out infinite alternate;
}
.contact-orb-2 {
  width: 400px; height: 400px;
  background: rgba(106, 63, 160, 0.2);
  bottom: -120px; left: -100px;
  animation: orbPulse 9s ease-in-out infinite alternate-reverse;
}
.contact-orb-3 {
  width: 300px; height: 300px;
  background: rgba(245, 40, 203, 0.08);
  top: 40%; left: 50%;
  animation: orbPulse 11s ease-in-out infinite alternate;
}

@keyframes orbPulse {
  0% { opacity: 0.4; transform: scale(1) translate(0, 0); }
  100% { opacity: 0.8; transform: scale(1.2) translate(20px, -20px); }
}

/* Grid overlay */
.contact-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Decorative rings */
.contact-ring {
  position: absolute;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle, rgba(245, 40, 203, 0.06) 0%, transparent 70%);
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s ease 0.2s forwards;
}
.contact-ring-2 {
  width: 50%;
  border-color: rgba(255, 255, 255, 0.04);
  background: radial-gradient(circle, rgba(106, 63, 160, 0.1) 0%, transparent 70%);
}

/* Runner SVG */
.contact-runner {
  position: relative;
  width: 80%;
  max-width: 400px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 0.3s forwards;
}
.contact-runner svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 60px rgba(245, 40, 203, 0.2));
}

/* Stats overlay */
.contact-hero-stats {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.6s forwards;
}

.contact-stat-item {
  display: flex;
  flex-direction: column;
}

.contact-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #f528cb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.contact-stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  margin-top: 0.15rem;
  letter-spacing: 0.5px;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── Responsive contact hero ── */
@media (max-width: 992px) {
  .contact-hero {
    min-height: 60vh;
  }
  .contact-runner {
    width: 60%;
    max-width: 280px;
  }
  .contact-hero-stats {
    left: 1.5rem;
    right: 1.5rem;
    gap: 1rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: 50vh;
    border-radius: 0 0 var(--radius) var(--radius) !important;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    min-height: 45vh;
  }
  .contact-runner {
    width: 50%;
    max-width: 180px;
  }
  .contact-orb-1 { width: 250px; height: 250px; }
  .contact-orb-2 { width: 200px; height: 200px; }
  .contact-orb-3 { width: 150px; height: 150px; }
  .contact-ring { width: 85%; }
  .contact-ring-2 { width: 60%; }
  .contact-hero-stats {
    left: 1rem;
    right: 1rem;
    bottom: 1.2rem;
    gap: 0.6rem 1.2rem;
  }
  .contact-stat-num { font-size: 1.1rem; }
  .contact-stat-label { font-size: 0.6rem; }
}

/* ── 15. About Page ────────────────────────────────────────── */

/* Mission hero */
.about-mission {
  padding: 3.5rem 0 2rem;
  background: linear-gradient(135deg, var(--bg-body) 0%, #f0eaf8 100%);
}

.about-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  background: var(--purple-tint);
  color: var(--accent);
  border: 1px solid var(--purple-border);
  margin-bottom: 1rem;
}

.about-mission-content h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--purple-darker);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.about-lead {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
}

.about-mission-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}

.about-mstat {
  display: flex;
  flex-direction: column;
}

.about-mstat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.about-mstat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.1rem;
  letter-spacing: 0.5px;
}

/* Right side art (reuse contact-hero patterns) */
.about-hero-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #210041 0%, #4b0082 40%, #6a3fa0 70%, #f528cb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-orb-1,
.about-orb-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.about-orb-1 {
  width: 350px; height: 350px;
  background: rgba(245, 40, 203, 0.15);
  top: -80px; right: -60px;
  animation: orbPulse 7s ease-in-out infinite alternate;
}
.about-orb-2 {
  width: 300px; height: 300px;
  background: rgba(106, 63, 160, 0.2);
  bottom: -80px; left: -60px;
  animation: orbPulse 9s ease-in-out infinite alternate-reverse;
}

.about-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.about-ring {
  position: absolute;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle, rgba(245, 40, 203, 0.06) 0%, transparent 70%);
  z-index: 1;
}
.about-ring-2 {
  width: 50%;
  border-color: rgba(255, 255, 255, 0.04);
  background: radial-gradient(circle, rgba(106, 63, 160, 0.1) 0%, transparent 70%);
}

.about-runner {
  position: relative;
  width: 65%;
  max-width: 320px;
  z-index: 2;
}
.about-runner svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 60px rgba(245, 40, 203, 0.2));
}

/* Our story */
.about-story,
.about-offer {
  padding: 3rem 0 2rem;
}

/* What we offer cards */
.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}

.about-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.about-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--purple-tint);
  border: 1px solid var(--purple-border);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.about-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.about-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* By the numbers */
.about-numbers {
  padding: 3rem 0;
}

.about-num-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.about-num-val {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent) 0%, #f528cb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about-num-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.3rem;
}

/* ── 16. Brand Assets Page ──────────────────────────────────── */
.brand-section {
  padding: 3rem 0;
}

.brand-header {
  margin-bottom: 3rem;
}

.brand-header h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--purple-darker);
  margin-bottom: 0.5rem;
}

.brand-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0;
}

.brand-group {
  margin-bottom: 3rem;
}

.brand-group h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.brand-group > p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.brand-preview-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.brand-card {
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  min-width: 200px;
}

.brand-card-light {
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.brand-card-dark {
  background: linear-gradient(135deg, #210041 0%, #4b0082 40%, #6a3fa0 70%, #f528cb 100%);
}

/* Full logo display */
.brand-logo-display {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-display-icon {
  width: 32px;
  height: auto;
}

.brand-display-icon-white {
  filter: brightness(0) invert(1);
}

.brand-display-word {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.brand-display-accent {
  color: var(--accent);
}

.brand-display-word-white {
  color: #fff;
}

.brand-display-accent-white {
  color: #fff;
}

/* Icon only */
.brand-preview-row--icons .brand-card {
  padding: 2rem;
  min-width: 140px;
}

.brand-icon-display {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
}

.brand-icon-solo {
  width: 100%;
  height: auto;
}

.brand-icon-solo-white {
  filter: brightness(0) invert(1);
}

.brand-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.8rem;
  text-align: center;
}

.brand-label-white {
  color: rgba(255, 255, 255, 0.6);
}

/* Wordmark only */
.brand-preview-row--wordmarks .brand-card {
  padding: 2rem 2.5rem;
  min-width: 160px;
}

.brand-wordmark-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.brand-wm-accent {
  color: var(--accent);
}

.brand-wordmark-text-white {
  color: #fff;
}

.brand-wm-accent-white {
  color: #fff;
}

/* Guidelines */
.brand-guidelines {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.guideline-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.guideline-item i {
  color: var(--accent);
  font-size: 0.7rem;
  opacity: 0.6;
}

/* ── 17. Legal Pages (Privacy, Terms, etc.) ────────────────── */
.legal-page {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

.legal-page h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--purple-darker);
  margin-bottom: 0.3rem;
}

.legal-date {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 1.8rem 0 0.8rem;
}

.legal-page p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.legal-contact i {
  color: var(--accent);
  margin-right: 0.5rem;
  width: 1rem;
}

/* ── 18. Pricing Page ──────────────────────────────────────── */
.pricing-header {
  margin-bottom: 2rem;
}

.pricing-header h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--purple-darker);
  margin-bottom: 0.2rem;
}

.pricing-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.pricing-card-body {
  padding: 2.5rem;
}

.pricing-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.pricing-input-row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.pricing-input-wrap {
  flex: 1;
  position: relative;
}

.pricing-input-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-muted);
  pointer-events: none;
  z-index: 2;
}

.pricing-input {
  height: 48px;
  padding-left: 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(106, 63, 160, 0.1);
  outline: none;
}

.btn-pricing-calc {
  height: 48px;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0 1.8rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #f528cb 100%);
  color: #fff;
  border: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(106, 63, 160, 0.2);
}

.btn-pricing-calc:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(106, 63, 160, 0.3);
  color: #fff;
}

.pricing-table {
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.pricing-table th {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-bottom: 2px solid var(--border);
  padding: 0.7rem 0.5rem;
}

.pricing-table td {
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: middle;
}

.pricing-table tfoot th {
  border-bottom: none;
  padding: 1rem 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.pricing-td-icon {
  color: var(--accent);
  opacity: 0.6;
  font-size: 0.85rem;
}

.pricing-total-row th {
  text-transform: none !important;
  letter-spacing: normal !important;
  font-size: 0.95rem !important;
}

.pricing-total-val {
  color: var(--accent) !important;
  font-size: 1.1rem !important;
}

.pricing-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-muted);
}

.pricing-empty i {
  font-size: 2.5rem;
  opacity: 0.3;
  display: block;
  margin-bottom: 0.8rem;
}

.pricing-empty p {
  font-size: 0.85rem;
  margin: 0;
}

.pricing-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 1rem 1.2rem;
  background: var(--purple-tint);
  border: 1px solid var(--purple-border);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}

.pricing-note i {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* ── Account dropdown in navbar ── */
.account-dropdown {
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 0.4rem;
  min-width: 200px;
  margin-top: 0.5rem !important;
}

.account-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: background 0.15s, color 0.15s;
}

.account-dropdown .dropdown-item i {
  font-size: 1rem;
  width: 1.2rem;
  text-align: center;
  color: var(--text-muted);
}

.account-dropdown .dropdown-item:hover {
  background: var(--purple-tint);
  color: var(--text-primary);
}

.account-dropdown .dropdown-item:hover i {
  color: var(--accent);
}

.account-dropdown .dropdown-item.active {
  background: var(--purple-tint);
  color: var(--accent);
  font-weight: 600;
}

.account-dropdown .dropdown-item.active i {
  color: var(--accent);
}

.account-dropdown .dropdown-item.text-danger:hover {
  background: #fef2f2;
  color: #dc2626 !important;
}

.account-dropdown .dropdown-item.text-danger:hover i {
  color: #dc2626;
}

.account-dropdown .dropdown-divider {
  margin: 0.3rem 0;
}

/* ── 19. Account Page ──────────────────────────────────────── */

/* Sidebar */
.account-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.account-profile {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.account-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-tint);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.account-profile-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.account-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.account-email {
  font-size: 0.75rem;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-nav {
  list-style: none;
  padding: 0.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.account-nav li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.account-nav li a i {
  font-size: 1rem;
  width: 1.2rem;
  text-align: center;
  color: var(--text-muted);
  transition: color 0.15s;
}

.account-nav li a:hover {
  background: var(--purple-tint);
  color: var(--text-primary);
}

.account-nav li a:hover i {
  color: var(--accent);
}

.account-nav li a.active {
  background: var(--purple-tint);
  color: var(--accent);
  font-weight: 600;
}

.account-nav li a.active i {
  color: var(--accent);
}

/* Main content area */
.account-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}

.account-greeting {
  margin-bottom: 1.5rem;
}

.account-greeting h1 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--purple-darker);
  margin-bottom: 0.2rem;
}

.account-greeting p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* Stat cards */
.account-stat-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: var(--bg-body);
  border: 1px solid var(--border);
  border-radius: 12px;
  height: 100%;
}

.account-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.account-stat-text {
  display: flex;
  flex-direction: column;
}

.account-stat-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.account-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.1rem;
}

/* Section headers */
.account-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.account-section-header h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  display: flex;
  align-items: center;
}

.account-section-header h2 i {
  color: var(--accent);
}

.account-view-all {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  transition: gap 0.15s;
}

.account-view-all:hover {
  gap: 0.4rem;
  color: var(--accent-hover);
}

/* Event list */
.account-event-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.account-event-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: var(--bg-body);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.15s;
}

.account-event-item:hover {
  border-color: var(--purple-border);
}

.account-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}

.account-event-day {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.account-event-month {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.1rem;
}

.account-event-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.account-event-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.account-event-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.1rem;
}

.account-event-status {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  white-space: nowrap;
}

.status-upcoming-sm {
  background: #f3e5f5;
  color: #6a1b9a;
  border: 1px solid #ce93d8;
}

/* Activity list */
.account-activity-list {
  display: flex;
  flex-direction: column;
}

.account-activity-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.account-activity-item:last-child {
  border-bottom: none;
}

.account-activity-item i {
  font-size: 1rem;
  flex-shrink: 0;
}

.account-activity-time {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-left: auto;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── 19b. Tickets Table ──────────────────────────────────── */
.tickets-table {
  margin-bottom: 0;
}

.tickets-table thead th {
  background: var(--purple-tint);
  color: var(--purple-darker);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.8rem 1rem;
  border-bottom: 2px solid var(--purple-border);
}

.tickets-table tbody td {
  padding: 0.9rem 1rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
}

.tickets-table tbody tr:hover {
  background: #faf9fe;
}

.tickets-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  background: var(--purple-tint);
  transition: background 0.2s;
}

.tickets-link:hover {
  background: #e0d4f0;
  color: var(--accent-hover);
}

/* Ticket cards */
.tickets-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ticket-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: box-shadow 0.2s;
}

.ticket-card:hover {
  box-shadow: var(--shadow-sm);
}

.ticket-card-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple-tint);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ticket-card-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.ticket-card-info {
  min-width: 0;
}

.ticket-card-event {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticket-card-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.ticket-card-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.ticket-card-actions .tickets-link {
  white-space: nowrap;
}

@media (max-width: 576px) {
  .ticket-card-body {
    flex-direction: column;
    align-items: flex-start;
  }
  .ticket-card-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ── 19c. Invoice Page ────────────────────────────────────── */
.invoice-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem 2.5rem;
}

/* Top header */
.invoice-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.invoice-logo {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--purple-darker), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.invoice-logo img {
  width: 22px;
  height: auto;
  filter: brightness(0) invert(1);
}

.invoice-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: 1.5px;
  line-height: 1.2;
}

.invoice-sub {
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.15rem;
}

.invoice-refs {
  text-align: right;
}

.invoice-ref-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.1rem 0;
  font-size: 0.82rem;
}

.invoice-ref-label {
  color: #888;
  min-width: 85px;
}

.invoice-ref-value {
  color: #333;
  font-weight: 600;
}

.invoice-divider {
  height: 2px;
  background: #222;
  margin: 1.2rem 0;
}

/* Party */
.invoice-party {
  font-size: 0.85rem;
  line-height: 1.65;
}

.invoice-party-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #888;
  margin-bottom: 0.25rem;
}

.invoice-party-name {
  font-weight: 700;
  color: #1a1a2e;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.invoice-party-addr {
  color: #555;
}

.invoice-party-email {
  color: #555;
  font-size: 0.82rem;
  margin-top: 0.1rem;
}

/* Items table */
.invoice-items {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}

.invoice-items thead th {
  border-bottom: 2px solid #222;
  color: #1a1a2e;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.6rem 0.8rem;
}

.invoice-items thead th:first-child {
  width: 36px;
}

.invoice-items tbody td {
  padding: 0.65rem 0.8rem;
  font-size: 0.85rem;
  color: #555;
  border-bottom: 1px solid #eee;
}

.invoice-items tbody td:first-child {
  color: #888;
  text-align: center;
}

.invoice-item-sub {
  font-size: 0.82rem;
  color: #888;
  padding-right: 1rem !important;
}

.invoice-items tfoot td {
  padding: 0.6rem 0.8rem;
  border-top: 1px solid #222;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

/* Grand total row */
.invoice-grand-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  padding: 0.6rem 0.8rem;
  margin-top: 0;
  border-top: 3px double #222;
}

.invoice-grand-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.invoice-grand-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a2e;
  min-width: 100px;
  text-align: right;
}

.invoice-words {
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.8rem;
  padding: 0.6rem 0;
}

.invoice-words span {
  font-weight: 600;
  color: #333;
}

.invoice-note {
  font-size: 0.72rem;
  color: #999;
  text-align: center;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #ddd;
  font-style: italic;
}

@media print {
  .navbar,
  .header-divider,
  .page-header,
  footer,
  .account-sidebar,
  .btn-host-cta {
    display: none !important;
  }
  .main-wrap {
    padding-top: 0 !important;
  }
  .col-lg-9 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .invoice-card {
    border: none !important;
    padding: 0 !important;
  }
  .login-section { display: none !important; }
  body { background: #fff !important; }
  .account-content { box-shadow: none !important; }
}

/* ── 20. Login Page ────────────────────────────────────────── */
.login-section {
  padding: 100px 0;
  background: #fff;
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
}

.login-section .row {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

/* Left hero */
.login-hero {
  position: relative;
  width: 100%;
  border-radius: var(--radius) 0 0 var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #210041 0%, #4b0082 40%, #6a3fa0 70%, #f528cb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.login-orb-1,
.login-orb-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.login-orb-1 {
  width: 350px; height: 350px;
  background: rgba(245, 40, 203, 0.15);
  top: -100px; right: -60px;
  animation: orbPulse 7s ease-in-out infinite alternate;
}
.login-orb-2 {
  width: 280px; height: 280px;
  background: rgba(106, 63, 160, 0.2);
  bottom: -80px; left: -60px;
  animation: orbPulse 9s ease-in-out infinite alternate-reverse;
}

.login-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.login-ring {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle, rgba(245, 40, 203, 0.06) 0%, transparent 70%);
  z-index: 1;
}
.login-ring-2 {
  width: 45%;
  border-color: rgba(255, 255, 255, 0.04);
  background: radial-gradient(circle, rgba(106, 63, 160, 0.1) 0%, transparent 70%);
}

.login-runner {
  position: relative;
  width: 45%;
  max-width: 220px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 0.3s forwards;
}
.login-runner svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 60px rgba(245, 40, 203, 0.2));
}

.login-hero-text {
  position: absolute;
  bottom: 1.8rem;
  left: 2rem;
  right: 2rem;
  z-index: 3;
  color: #fff;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.6s forwards;
}

.login-hero-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 0.5rem;
}

.login-hero-text h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.login-hero-text p {
  font-size: 0.78rem;
  opacity: 0.75;
  line-height: 1.5;
  margin-bottom: 0.8rem;
  max-width: 320px;
}

.login-hero-stats {
  display: flex;
  gap: 1.2rem 1.5rem;
  flex-wrap: wrap;
}

.login-hstat {
  display: flex;
  flex-direction: column;
}

.login-hstat-num {
  font-size: 1.1rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #f528cb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.login-hstat-label {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  margin-top: 0.1rem;
  letter-spacing: 0.5px;
}

/* Right form */
.login-form-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 3rem;
}

.login-form-card {
  width: 100%;
  max-width: 380px;
}

.login-form-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.login-form-header h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--purple-darker);
  margin-bottom: 0.2rem;
}

.login-form-header p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.login-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}

.login-input {
  height: 46px;
  font-size: 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0 1rem;
  color: var(--text-primary);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.login-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(106, 63, 160, 0.1);
  outline: none;
}

.login-input.is-invalid {
  border-color: #dc3545;
}

/* Phone + OTP */
.login-phone-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.login-phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  background: var(--purple-tint);
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: 10px 0 0 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.login-phone-row .login-input {
  border-radius: 0 10px 10px 0;
  flex: 1;
}

.login-otp-section {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.login-otp-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.login-otp-boxes {
  display: flex;
  gap: 0.5rem;
}

.login-otp-digit {
  width: 48px;
  height: 52px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 10px;
  border: 2px solid var(--border);
  color: var(--text-primary);
  background: #fff;
  transition: border-color 0.2s;
}

.login-otp-digit:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(106, 63, 160, 0.1);
  outline: none;
}

.login-otp-digit.is-invalid {
  border-color: #dc3545;
  background-image: none;
  padding-right: 0;
}

.login-otp-timer {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.btn-login-submit {
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--accent) 0%, #f528cb 100%);
  color: #fff;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(106, 63, 160, 0.25);
}

.btn-login-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(106, 63, 160, 0.35);
  color: #fff;
}

/* Past events custom slider */
.past-slider {
  position: relative;
  overflow: hidden;
}

.past-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.past-slide {
  flex: 0 0 100%;
  padding: 0 0.5rem;
}

.past-slide.hidden {
  visibility: hidden;
  flex: 0 0 0 !important;
  min-width: 0;
  width: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

@media (min-width: 992px) {
  .past-slide {
    flex: 0 0 33.3333%;
  }

  .past-slide.hidden {
    flex: 0 0 0 !important;
  }
}

.past-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.85;
  z-index: 2;
  transition: opacity 0.2s;
}

.past-slider-btn:hover {
  opacity: 1;
}

.past-slider-prev {
  left: 0;
}

.past-slider-next {
  right: 0;
}

.past-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}

.past-slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.3;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}

.past-slider-dots button.active {
  opacity: 1;
}

.dot-ellipsis {
  display: inline-flex;
  align-items: flex-end;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.35;
  letter-spacing: 1px;
  padding-bottom: 1px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── 14. Event Details Page ───────────────────────────────── */
.detail-banner {
  position: relative;
  background-color: #ffffff;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.035) 0px,
    rgba(0, 0, 0, 0.035) 1px,
    transparent 1px,
    transparent 16px
  ),
  repeating-linear-gradient(
    -45deg,
    rgba(0, 0, 0, 0.035) 0px,
    rgba(0, 0, 0, 0.035) 1px,
    transparent 1px,
    transparent 16px
  );
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .detail-banner { padding: 1.5rem 0; }
}

/* Blurred banner image background */
.detail-banner.has-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--detail-bg);
  background-size: cover;
  background-position: center;
  filter: blur(30px);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.detail-banner.has-bg::before {
  z-index: 1;
}

.detail-banner.has-bg .container {
  position: relative;
  z-index: 2;
}

.detail-header-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  height: 100%;
}

.detail-header-banner {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
}

.detail-header-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.detail-info-block {
  padding: 2rem;
}

.detail-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.detail-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--purple-darker);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.detail-meta-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.5rem;
  row-gap: 0.6rem;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.detail-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.detail-meta-item i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* Hero right wrapper */
/* ── Premium Event Summary Card ── */
.summary-card {
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 24px;
  padding: 2.5rem 2.2rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.summary-top {
  position: relative;
  z-index: 1;
}

.summary-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  background: var(--purple-tint);
  padding: 0.42rem 0.72rem;
  border-radius: 30px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  border: 1px solid rgba(106, 63, 160, 0.12);
}

.summary-eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f4c16b;
  box-shadow: 0 0 0 4px rgba(244, 193, 107, 0.12);
}

.summary-title {
  font-size: clamp(1.8rem, 2.4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: #1a1a2e;
  letter-spacing: -0.03em;
  text-wrap: balance;
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
}

.summary-intro {
  margin: 1rem 0 0;
  max-width: 31rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #6b7280;
}

.summary-bottom {
  position: relative;
  z-index: 1;
}

.summary-info-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem;
  margin-bottom: 0.65rem;
  background: var(--purple-tint);
  border: 1px solid rgba(228, 224, 237, 0.6);
  border-radius: 16px;
}

.summary-info-row:last-child {
  margin-bottom: 0;
}

.summary-info-icon {
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.summary-date-tile {
  width: 48px;
  min-height: 55px;
  padding: 0.25rem 0;
  border-radius: 12px;
  background: #ffffff;
  color: #3b1c64;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.summary-date-tile span,
.summary-date-tile small { font-size: 0.55rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.summary-date-tile strong { font-size: 1.35rem; line-height: 1.1; }

.summary-date-icon {
  font-size: 1.5rem;
  color: #9ca3af;
  flex-shrink: 0;
  line-height: 1;
}

.summary-info-label {
  font-size: 0.65rem;
  color: #7c6f99;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.8px;
  margin-bottom: 0.05rem;
}

.summary-info-val {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
}

/* Sidebar register card */
.register-sidebar-card {
  position: sticky;
  top: 90px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
}

.register-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.badge-inclusion-row {
  margin: 0.2rem 0 0.15rem;
  line-height: 1.4;
}

.badge-inclusion {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.1rem 0.45rem;
  border-radius: 10px;
  background: #f3e5f5;
  color: #6a1b9a;
  border: 1px solid #ce93d8;
  margin-right: 0.2rem;
  vertical-align: middle;
}

.price-display {
  margin-bottom: 1.2rem;
}

.price-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.card-footer-row .event-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.price-currency {
  font-size: 1.3rem;
  font-weight: 700;
  margin-right: 0.1rem;
}

.price-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.category-selection-box {
  background: var(--bg-body);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1.2rem;
}

.category-option-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.category-option-item .fee {
  color: var(--accent);
}

.addon-box {
  border-top: 1px dashed var(--border);
  padding-top: 0.8rem;
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
}

.addon-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.btn-large-register {
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem;
  border-radius: 30px;
  background: var(--accent);
  color: #fff;
  border: none;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
  display: block;
  box-shadow: 0 4px 14px rgba(106, 63, 160, 0.2);
}

.btn-large-register:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.deadline-warning {
  font-size: 0.78rem;
  color: #c08400;
  background: #fffbef;
  border: 1px solid #f9ebcc;
  padding: 0.6rem;
  border-radius: 8px;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.deadline-success {
  font-size: 0.78rem;
  color: #0f7b3f;
  background: #eefbf3;
  border: 1px solid #c6ebd3;
  padding: 0.6rem;
  border-radius: 8px;
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.deadline-danger {
  font-size: 0.78rem;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 0.6rem;
  border-radius: 8px;
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Detail specs layout */

.event-accordion .accordion-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.2rem;
  overflow: hidden;
}

.event-accordion .accordion-item:not(:first-of-type) {
  border-top: 1px solid var(--border);
}

.event-accordion .accordion-button {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  background: #ffffff;
  padding: 1.2rem 1.8rem;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-accordion .accordion-button i {
  color: var(--accent);
  font-size: 1.15rem;
}

.event-accordion .accordion-button:not(.collapsed) {
  background: #ffffff;
  color: var(--text-primary);
  box-shadow: none;
}

.event-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.event-accordion .accordion-button::after {
  background-size: 1rem;
}

.event-accordion .accordion-body {
  padding: 0 1.8rem 1.8rem;
}

/* ── About the Event (non-collapsible) ── */
.about-section {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.2rem;
  padding: 1.2rem 1.8rem 1.8rem;
}

.about-section-header {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.about-section-header i {
  color: var(--accent);
  font-size: 1.15rem;
}

.about-section .rich-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5a5a6e;
}

.spec-group-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.spec-group-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spec-group-title i {
  color: var(--accent);
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.spec-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--purple-tint);
  border: 1px solid var(--purple-border);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.spec-details {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.spec-val {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-top: 0.1rem;
}

.rich-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.rich-description p {
  margin-bottom: 1rem;
}

.contact-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-card-item i {
  color: var(--accent);
  font-size: 1.05rem;
}

/* ── 15. Registration Page ─────────────────────────────── */
.reg-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.reg-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.25s;
}

.reg-step-indicator.active {
  color: var(--accent);
}

.reg-step-indicator.completed {
  color: var(--accent);
}

.reg-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--border);
  color: var(--text-muted);
  transition: background 0.25s, color 0.25s;
}

.reg-step-indicator.active .reg-step-num {
  background: var(--accent);
  color: #fff;
}

.reg-step-indicator.completed .reg-step-num {
  background: var(--accent);
  color: #fff;
}

.reg-step-line {
  width: 50px;
  height: 2px;
  background: var(--border);
  margin: 0 0.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
  .reg-step-line {
    width: 20px;
  }
}

.reg-panel {
  display: none;
}

.reg-panel.active {
  display: block;
}

.reg-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.8rem;
}

.reg-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--purple-darker);
  margin-bottom: 0.3rem;
}

.reg-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.reg-input {
  border-color: var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.reg-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(106, 63, 160, 0.1);
  outline: none;
}

.reg-input.is-invalid {
  border-color: #dc3545;
}

.reg-otp-input {
  max-width: 180px;
}

.reg-otp-boxes {
  display: flex;
  gap: 0.5rem;
}

.reg-otp-digit {
  width: 46px;
  height: 50px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 10px;
  border: 2px solid var(--border);
  transition: border-color 0.2s;
}

.reg-otp-digit:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(106, 63, 160, 0.1);
  outline: none;
}

.reg-otp-digit.is-invalid {
  border-color: #dc3545;
  color: var(--text-primary);
  background-color: #fff;
}

.reg-nav {
  display: flex;
  align-items: center;
}

/* Ticket */
.reg-ticket {
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ticket-header {
  background: var(--accent);
  color: #fff;
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ticket-brand {
  font-size: 1rem;
  font-weight: 700;
}

.ticket-brand img {
  width: 18px;
  height: auto;
  vertical-align: middle;
  margin-right: 0.25rem;
  filter: brightness(0) invert(1);
}

.ticket-brand span {
  color: rgba(255, 255, 255, 0.8);
}

.ticket-event-name {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: right;
  max-width: 60%;
}

.ticket-body {
  padding: 1rem 1.2rem;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.85rem;
}

.ticket-row:last-child {
  border-bottom: none;
}

.ticket-label {
  color: var(--text-muted);
  font-weight: 500;
}

.ticket-value {
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
}

.ticket-footer {
  background: var(--purple-tint);
  padding: 0.9rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--purple-border);
}

.ticket-total-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.ticket-total-amount {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
}
