/* =============================================================================
   Keral-EM 2026 — styles.css
   Blue + Green Premium Redesign
   ============================================================================= */

/* =============================================
   CSS VARIABLES
============================================= */ 
:root {
  /* ---- Primary Brand ---- */
  --navy:        #00a8e8;
  --navy-mid:    #0090c8;
  --navy-light:  #33b9ed;

  /* ---- Dark Backgrounds ---- */
  --dark:        #13203e;
  --dark-mid:    #0f172a;

  /* ---- Accent Greens ---- */
  --green:       #10b981;
  --green-dark:  #059669;
  --green-light: #ecfdf5;

  /* ---- Decorative Blues ---- */
  --blue:        #00a8e8;
  --blue-dark:   #0090c8;
  --blue-deep:   #006d9e;

  /* ---- Neutrals (Slate) ---- */
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --light-gray:  #f1f5f9;
  --text-body:   #334155;
  --text-muted:  #64748b;
  --border-light:#e2e8f0;

  /* ---- Typography ---- */
  --font-display: 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* ---- Transitions & Shadows ---- */
  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:   0 2px 12px rgba(11,17,32,0.06);
  --shadow-md:   0 8px 32px rgba(11,17,32,0.09);
  --shadow-lg:   0 20px 60px rgba(11,17,32,0.14);
}

/* =============================================
   BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
section { overflow: hidden; }

/* =============================================
   UTILITIES
============================================= */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--green);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  /* color: var(--navy); */
  color: var(--dark-mid);
}

/* Fade-up scroll animation */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Buttons ---- */
.btn-green {
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  padding: 0.78rem 2rem;
  border-radius: 8px;
  border: 2px solid var(--green);
  transition: var(--transition);
  font-family: var(--font-body);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  display: inline-block;
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,185,129,0.35);
}

.btn-outline-navy {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 0.78rem 2rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: var(--transition);
  font-family: var(--font-body);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  display: inline-block;
}
.btn-outline-navy:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  font-weight: 600;
  padding: 0.78rem 2rem;
  border-radius: 8px;
  border: 2px solid var(--green);
  transition: var(--transition);
  font-family: var(--font-body);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  display: inline-block;
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,185,129,0.25);
}

.link-arrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: gap var(--transition);
}
.link-arrow:hover { gap: 0.85rem; color: var(--green); }

/* =============================================
   1. NAVBAR — glassmorphism
============================================= */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: #fff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,0.5);
  transition: box-shadow var(--transition), background var(--transition);
}
#mainNav.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 30px rgba(11,17,32,0.08);
}
/* Gradient accent stripe on top */
#mainNav::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
}

.nav-inner {
  display: flex;
  align-items: center;
  padding: 0.85rem 0;
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--navy) !important;
  letter-spacing: 0.02em;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar-brand span { color: var(--green); }
.brand-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
}

/* Header Logo Images */
.header-logo-main {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}
.header-logos-conducted {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.75rem;
  padding-left: 0.75rem;
  border-left: 1px solid var(--border-light);
}
.header-logos-conducted img {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .header-logo-main { height: 36px; }
  .header-logos-conducted img { height: 28px; }
  .header-logos-conducted { margin-left: 0.5rem; padding-left: 0.5rem; }
}

.nav-link {
  color: var(--text-body) !important;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem !important;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0.9rem; right: 0.9rem;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-link:hover { color: var(--green) !important; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active-page { color: var(--green) !important; }
.nav-link.active-page::after { transform: scaleX(1); }

.navbar-toggler {
  border: 1px solid var(--border-light);
  padding: 0.3rem 0.6rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2811,17,32,0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown */
.dropdown-menu {
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 0.5rem;
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.dropdown-item {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  transition: var(--transition);
}
.dropdown-item:hover {
  background: var(--green-light);
  color: var(--green-dark);
}

/* =============================================
   2. HERO — dark blue gradient
============================================= */
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--dark) 0%, var(--blue-deep) 40%, #0077a8 100%);
  display: flex;
  align-items: center;
  padding-top: 82px;
  position: relative;
  overflow: hidden;
}
/* Subtle grid overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  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: 52px 52px;
  pointer-events: none;
}
/* Left accent stripe */
/* #hero::after {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--green));
  border-radius: 0 2px 2px 0;
} */
/* Blue glow effect */
.hero-glow {
  position: absolute;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.38rem 1rem;
  border-radius: 6px;
  margin-bottom: 1.75rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.hero-headline .accent {
  background: linear-gradient(135deg, var(--green), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 55px;
  line-height: 60px !important;
  display: block;
}

.hero-rule {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  max-width: 520px;
}

.hero-organizer {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  max-width: 540px;
  backdrop-filter: blur(8px);
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.hero-meta-item i { color: var(--green); }

/* Hero right — image frame + floating chips */
.hero-img-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid rgba(0,168,232,0.25);
  border-radius: 18px;
  z-index: 2;
  pointer-events: none;
}
.hero-img-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(11,17,32,0.45), transparent);
  z-index: 1;
  pointer-events: none;
}
.hero-img-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* Hero right animations */
@keyframes heroFadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero-img-frame {
  animation: heroFadeSlideUp 0.9s ease-out both;
  animation-delay: 0.2s;
}

/* Floating stat chips */
.hero-chip {
  position: absolute;
  z-index: 5;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0,168,232,0.18);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: heroFadeSlideUp 0.8s ease-out both, chipFloat 4s ease-in-out infinite;
}
.chip-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.chip-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.chip-tl {
  top: -10px;
  left: -30px;
  animation-delay: 0.5s, 0s;
}
.chip-br {
  bottom: -10px;
  right: -30px;
  animation-delay: 0.7s, 2s;
}

/* =============================================
   3. COUNTDOWN — dark blue strip
============================================= */
#countdown {
  background: var(--dark);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
#countdown::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px,
    transparent 1px, transparent 72px
  );
  pointer-events: none;
}
#countdown::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.countdown-intro { text-align: center; margin-bottom: 2.25rem; }
.countdown-intro p {
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.3rem;
}
.countdown-intro h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 700;
}

.timer-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.timer-block { text-align: center; min-width: 100px; }
.timer-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1.25rem 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
  position: relative;
  overflow: hidden;
}
.timer-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green);
}
.timer-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  display: block;
}
.timer-unit {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
}
.timer-colon {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(255,255,255,0.2);
  font-weight: 900;
  padding-bottom: 0.75rem;
  margin: 0 0.15rem;
  align-self: center;
}

/* =============================================
   4. ABOUT (home)
============================================= */
#about { padding: 7rem 0; background: var(--white); }

.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; height: 460px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -14px; left: -14px;
  right: 28px; bottom: 28px;
  border: 2px solid var(--blue);
  border-radius: 12px;
  z-index: -1;
}
.about-img-badge {
  position: absolute;
  bottom: -18px; right: 20px;
  background: var(--green);
  color: var(--white);
  border-radius: 10px;
  padding: 1rem 1.4rem;
  font-family: var(--font-display);
  box-shadow: 0 8px 24px rgba(16,185,129,0.4);
}
.about-img-badge .b-num { font-size: 1.8rem; font-weight: 900; line-height: 1; display: block; }
.about-img-badge .b-lbl { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }

.about-content { padding-left: 3rem; }
@media (max-width: 767px) { .about-content { padding-left: 0; margin-top: 3.5rem; } }

.about-body { font-size: 0.96rem; color: var(--text-body); line-height: 1.82; margin: 1.2rem 0; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
}
.about-stat {
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border-radius: 10px;
  border-left: 3px solid var(--green);
}
.about-stat .s-num { font-family: var(--font-display); font-size: 1.55rem; font-weight: 900; color: var(--navy); line-height: 1; }
.about-stat .s-lbl { font-size: 0.7rem; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 0.2rem; }

/* =============================================
   5. KEY OFFERINGS
============================================= */
#offerings { padding: 7rem 0; background: var(--off-white); }

.offering-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.offering-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.offering-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.offering-card:hover::before { transform: scaleX(1); }

.offering-icon {
  width: 54px; height: 54px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  transition: background var(--transition), color var(--transition);
}
.offering-card:hover .offering-icon { background: var(--green); color: var(--white); }

.offering-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.offering-body { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* =============================================
   6. PROGRAM SNAPSHOT — dark blue
============================================= */
#program { padding: 7rem 0; background: var(--dark); position: relative; }
#program::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(37,99,235,0.1) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(16,185,129,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.program-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.program-day-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.program-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.program-item:last-child { border-bottom: none; }

.prog-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.18); flex-shrink: 0; margin-top: 0.45rem; }
.prog-dot.on { background: var(--green); }
.prog-time { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.07em; color: var(--green); white-space: nowrap; min-width: 76px; padding-top: 0.1rem; }
.prog-title { font-size: 0.88rem; color: rgba(255,255,255,0.87); font-weight: 500; line-height: 1.4; }
.prog-meta { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 0.18rem; }

/* =============================================
   7. COMMITTEE / SPEAKERS — home
============================================= */
#committee { padding: 7rem 0; background: var(--white); }

.speaker-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.speaker-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.speaker-img-wrap { position: relative; overflow: hidden; }
.speaker-img-wrap img {
  width: 100%; height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: grayscale(20%);
}
.speaker-card:hover .speaker-img-wrap img { transform: scale(1.06); filter: grayscale(0%); }
.speaker-strip { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--green)); }

.speaker-info { padding: 1.25rem 1.5rem; }
.speaker-role { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 0.3rem; }
.speaker-name { font-family: var(--font-display); font-size: 1rem; color: var(--dark); font-weight: 700; margin-bottom: 0.25rem; }
.speaker-org { font-size: 0.75rem; color: var(--text-muted); line-height: 1.45; }

/* =============================================
   8. REGISTRATION CTA
============================================= */
#register { padding: 7rem 0; background: var(--green-light); text-align: center; position: relative; overflow: hidden; }
#register::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.register-title { font-family: var(--font-display); font-size: clamp(1.65rem, 3.5vw, 2.7rem); font-weight: 800; color: var(--dark-mid); line-height: 1.2; max-width: 680px; margin: 0 auto 0.9rem; }
.register-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.register-sub i { color: var(--green-dark); margin: 0 0.35rem; }

.register-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
.reg-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 8px;
  padding: 0.45rem 1rem;
  box-shadow: 0 2px 8px rgba(16,185,129,0.1);
}
.reg-badge i { color: var(--green-dark); }

/* =============================================
   9. FOOTER — dark blue
============================================= */
#footer { background: var(--dark); padding: 4.5rem 0 2rem; }

.footer-topbar { height: 3px; background: linear-gradient(90deg, var(--blue), var(--green)); margin-bottom: 4rem; }

/* Footer logos */
.footer-logos {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.footer-logo-main {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-logos-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}
.footer-logo-org {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
@media (max-width: 575px) {
  .footer-logo-main { height: 36px; }
  .footer-logo-org { height: 28px; }
}

.footer-brand { font-family: var(--font-display); font-size: 1.55rem; color: var(--white); font-weight: 900; }
.footer-brand span { color: var(--green); }
.footer-tagline { font-size: 0.75rem; color: rgba(255,255,255,0.38); margin-top: 0.4rem; letter-spacing: 0.04em; line-height: 1.5; }

.footer-heading { font-family: var(--font-body); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green); margin-bottom: 1.25rem; }

.footer-link { display: block; font-size: 0.84rem; color: rgba(255,255,255,0.5); margin-bottom: 0.55rem; transition: color var(--transition), padding-left var(--transition); }
.footer-link:hover { color: var(--white); padding-left: 5px; }

.footer-org { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.footer-org i { color: var(--green); margin-top: 0.18rem; flex-shrink: 0; }
.footer-org-name { font-size: 0.86rem; color: rgba(255,255,255,0.78); font-weight: 500; }
.footer-org-desc { font-size: 0.72rem; color: rgba(255,255,255,0.38); margin-top: 0.15rem; line-height: 1.5; }

.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.45); font-size: 0.8rem; transition: var(--transition); margin-right: 0.35rem; }
.social-icon:hover { background: var(--green); border-color: var(--green); color: var(--white); transform: translateY(-3px); }

.footer-divider { border-color: rgba(255,255,255,0.07); margin: 2.5rem 0 1.5rem; }
.footer-copy { font-size: 0.73rem; color: rgba(255,255,255,0.28); }
.footer-copy span { color: var(--green); }


/* =============================================================================
   SUBPAGE COMPONENTS
   ============================================================================= */

/* =============================================
   PAGE BANNER — dark blue gradient
============================================= */
.page-banner {
  background: linear-gradient(160deg, var(--dark) 0%, var(--blue-deep) 50%, #0077a8 100%);
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(37,99,235,0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(16,185,129,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.page-banner-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.page-banner-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.page-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 0.75rem;
}
.page-banner-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.breadcrumb-nav {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.breadcrumb-nav a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb-nav a:hover { color: var(--green); }
.breadcrumb-sep { margin: 0 0.45rem; }

/* =============================================
   ABOUT PAGE
============================================= */
.about-full { padding: 5rem 0; background: var(--white); }

/* Mission & Vision */
.mission-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2.25rem 2rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.mission-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.mission-card:hover::before { transform: scaleX(1); }

.mission-icon {
  width: 50px; height: 50px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
}
.mission-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.mission-body { font-size: 0.86rem; color: var(--text-muted); line-height: 1.78; }

/* Target Audience */
.audience-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.audience-icon {
  width: 46px; height: 46px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.audience-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.audience-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

/* Venue */
.venue-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: var(--shadow-lg);
}
.venue-img {
  width: 100%; height: 260px;
  object-fit: cover;
  display: block;
}
.venue-body { padding: 2rem; }
.venue-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.venue-detail:last-of-type { border-bottom: none; }
.venue-detail i { color: var(--green); margin-top: 0.15rem; font-size: 0.9rem; flex-shrink: 0; }
.venue-detail-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.15rem; }
.venue-detail-val { font-size: 0.84rem; color: rgba(255,255,255,0.75); font-weight: 500; }

/* Key Dates */
.key-dates { padding: 5rem 0; background: var(--white); }
.date-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border-light);
}
.date-badge {
  min-width: 64px;
  background: var(--navy);
  border-radius: 10px;
  padding: 0.75rem 0.5rem;
  text-align: center;
  flex-shrink: 0;
}
.d-month { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); display: block; margin-bottom: 0.15rem; }
.d-day { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; color: var(--white); display: block; line-height: 1; }
.date-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.date-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }


/* =============================================
   SCHEDULE PAGE
============================================= */
.schedule-section { padding: 5rem 0; background: var(--off-white); }

/* Legend bar */
.schedule-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

/* Bootstrap tab overrides — pill style */
.nav-tabs {
  border-bottom: none;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.4rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.nav-tabs .nav-link {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted) !important;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  transition: var(--transition);
  text-transform: none;
  letter-spacing: 0;
}
.nav-tabs .nav-link::after { display: none; }
.nav-tabs .nav-link:hover {
  color: var(--navy) !important;
  background: var(--off-white);
}
.nav-tabs .nav-link.active {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 100%);
  box-shadow: 0 4px 14px rgba(0,168,232,0.3);
}

/* Hall sub-tabs wrapper (centers the pill group) */
.hall-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* Hall sub-tabs (Hall A / Hall B) */
.hall-tabs {
  display: inline-flex;
  gap: 0.4rem;
  background: var(--white);
  padding: 0.4rem;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  list-style: none;
  margin: 0;
}
.hall-tabs .nav-link {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--dark-mid) !important;
  border: none;
  padding: 0.6rem 2rem;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: none;
  letter-spacing: 0.02em;
  background: transparent;
  cursor: pointer;
}
.hall-tabs .nav-link::after { display: none; }
.hall-tabs .nav-link:hover {
  color: var(--green) !important;
  background: var(--green-light);
}
.hall-tabs .nav-link.active {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--green) 0%, #0fa968 100%);
  box-shadow: 0 4px 14px rgba(0,166,81,0.3);
}

/* Day theme banner */
.day-theme {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-deep) 60%, var(--navy) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1.1rem 1.75rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(11,17,32,0.2);
  position: relative;
  overflow: hidden;
}
.day-theme::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

/* Session group dividers */
.tl-session-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.5rem;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  background: linear-gradient(135deg, rgba(0,168,232,0.06) 0%, rgba(16,185,129,0.06) 100%);
  border: 1px solid rgba(0,168,232,0.12);
  border-left: 4px solid var(--green);
  border-radius: 0 10px 10px 0;
  list-style: none;
}
.session-topics-list {
  width: 100%;
  list-style: none;
  padding: 0.6rem 0 0.25rem 0;
  margin: 0.25rem 0 0 0;
  border-top: 1px solid rgba(0,168,232,0.1);
}
.session-topics-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.1rem;
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.5;
  font-weight: 500;
}
.session-topics-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.session-topic-time {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(0,168,232,0.08);
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  margin-right: 0.5rem;
  white-space: nowrap;
}
.session-group-num {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--navy);
  padding: 0.25rem 0.7rem;
  border-radius: 5px;
  white-space: nowrap;
}
.session-group-name {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark-mid);
  font-style: italic;
  line-height: 1.3;
}

/* Timeline */
.timeline { list-style: none; padding: 0; margin: 0; }
.tl-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.15rem 1.5rem;
  margin-bottom: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.tl-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,168,232,0.2);
}
.tl-item:last-child { margin-bottom: 0; }

/* Break / ceremony — icon badge cards */
.tl-break-card {
  display: flex;
  align-items: stretch;
  margin-bottom: 0.5rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px dashed var(--border-light);
  background: var(--white);
  list-style: none;
}
.tl-break-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: #fff;
}
.tl-break-icon.icon-break    { background: linear-gradient(135deg, #94a3b8, #64748b); }
.tl-break-icon.icon-ceremony { background: linear-gradient(135deg, var(--navy), var(--blue-deep)); }
.tl-break-icon.icon-social   { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.tl-break-icon.icon-quiz     { background: linear-gradient(135deg, #f59e0b, #d97706); }
.tl-break-body {
  flex: 1;
  padding: 0.8rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tl-break-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark-mid);
  line-height: 1.3;
}
.tl-break-time {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.tl-time {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--navy);
  min-width: 140px;
  padding-top: 0.2rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.tl-dot-wrap { display: flex; flex-direction: column; align-items: center; padding-top: 0.3rem; flex-shrink: 0; }
.tl-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  flex-shrink: 0;
}
.tl-dot.highlight { background: var(--green); box-shadow: 0 0 0 4px rgba(16,185,129,0.15); }
.tl-dot.break { background: var(--text-muted); opacity: 0.4; }

.tl-content { flex: 1; }

.tl-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}
.tag-keynote { background: rgba(37,99,235,0.1); color: var(--blue); }
.tag-workshop { background: rgba(16,185,129,0.1); color: var(--green-dark); }
.tag-session { background: rgba(100,116,139,0.08); color: var(--text-muted); }
.tag-ceremony { background: rgba(0,168,232,0.08); color: var(--navy); }
.tag-break { background: rgba(100,116,139,0.06); color: #94a3b8; }
.tag-social { background: rgba(16,185,129,0.12); color: var(--green); }

.tl-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark-mid);
  margin-bottom: 0.2rem;
  line-height: 1.35;
}
.tl-speaker {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
  display: flex;
  align-items: center;
}
.tl-speaker i { color: var(--green); }
.tl-venue { font-size: 0.74rem; color: var(--text-muted); opacity: 0.7; }
.tl-venue i { margin-right: 0.3rem; font-size: 0.68rem; }

/* Workshop schedule cards */
.workshop-schedule-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.workshop-schedule-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.ws-day-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}
.ws-time { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1rem; }
.ws-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.ws-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.72; margin-bottom: 1rem; }
.ws-limit { font-size: 0.76rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.5rem; }
.ws-limit i { color: var(--green); }

/* Workshop — Coming Soon */
.workshop-coming-soon {
  display: flex;
  justify-content: center;
  padding: 2rem 0 3rem;
}
.wcs-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 3.5rem 3rem 3rem;
  max-width: 640px;
  width: 100%;
  box-shadow: 0 8px 40px rgba(0,168,232,0.06), 0 1px 3px rgba(0,0,0,0.04);
  overflow: hidden;
}
.wcs-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--green), var(--navy-light));
  border-radius: 20px 20px 0 0;
}
.wcs-icon-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,168,232,0.08), rgba(16,185,129,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}
.wcs-icon-ring::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(0,168,232,0.15);
  animation: wcs-spin 20s linear infinite;
}
@keyframes wcs-spin {
  to { transform: rotate(360deg); }
}
.wcs-icon-inner {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,168,232,0.25);
}
.wcs-icon-inner i {
  font-size: 1.65rem;
  color: var(--white);
}
.wcs-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid rgba(16,185,129,0.2);
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.wcs-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.wcs-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.wcs-divider span {
  display: block;
  width: 50px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--navy), var(--green));
}
.wcs-description {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 480px;
  margin: 0 auto 1.75rem;
}
.wcs-btn {
  font-size: 0.92rem;
  padding: 0.85rem 2.6rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(16,185,129,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wcs-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16,185,129,0.35);
}
@media (max-width: 576px) {
  .workshop-coming-soon { padding: 1rem 0 2rem; }
  .wcs-card { padding: 2.5rem 1.5rem 2rem; border-radius: 16px; }
  .wcs-icon-ring { width: 80px; height: 80px; }
  .wcs-icon-inner { width: 56px; height: 56px; }
  .wcs-icon-inner i { font-size: 1.3rem; }
  .wcs-heading { font-size: 1.1rem; }
  .wcs-heading br { display: none; }
  .wcs-btn { font-size: 0.84rem; padding: 0.7rem 2rem; }
  .wcs-description { font-size: 0.82rem; }
}

/* Workshop — Poster & CTA */
.workshop-poster {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
}
.workshop-poster img {
  width: 63%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.workshop-poster-cta {
  text-align: center;
  margin: 1.5rem auto;
}
.workshop-poster-fee {
  font-size: 1.05rem;
  color: var(--navy);
  font-family: var(--font-display);
  margin-bottom: .75rem;
}
.workshop-poster-btn {
  font-size: 0.95rem;
  padding: 0.65rem 1.75rem;
  display: inline-block;
}
@media (max-width: 768px) {
  .workshop-poster img { width: 85%; }
  .workshop-poster-fee { font-size: 0.92rem; }
  .workshop-poster-btn { font-size: 0.85rem; padding: 0.6rem 1.4rem; }
}
@media (max-width: 576px) {
  .workshop-poster { margin: 1rem auto; }
  .workshop-poster img { width: 100%; border-radius: 8px; }
  .workshop-poster-cta { margin: 1rem auto; }
  .workshop-poster-fee { font-size: 0.85rem; }
  .workshop-poster-btn { font-size: 0.82rem; padding: 0.55rem 1.2rem; }
}

/* =============================================
   COMMITTEE PAGE
============================================= */
.committee-section { padding: 5rem 0; background: var(--white); }

.board-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.board-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}
.board-line { flex: 1; height: 1px; background: var(--border-light); }

.member-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.member-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.member-avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 1.15rem;
    letter-spacing: 0.05em;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.member-info {}
.member-role { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green); margin-bottom: 0.4rem; }
.member-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; }
.member-org { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }


/* =============================================
   REGISTRATION PAGE
============================================= */
.registration-section { padding: 5rem 0; background: var(--white); }

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--green-light);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.7;
}
.pricing-note i { color: var(--green); font-size: 1.1rem; margin-top: 0.15rem; flex-shrink: 0; }

/* Pricing table */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.88rem;
}
.pricing-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  padding: 1.2rem 1rem;
  border-bottom: none;
}
.pricing-table thead th:first-child { text-align: left; }

.pricing-table tbody td {
  padding: 1.1rem 1rem;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
  vertical-align: middle;
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--off-white); }

.category-col { text-align: left !important; font-weight: 500; }
.highlight-col {
  background: rgba(16,185,129,0.04) !important;
  position: relative;
}
.pricing-table thead .highlight-col {
  background: var(--green) !important;
  color: var(--white);
}
.price-val { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--navy); }
.price-currency { font-size: 0.8rem; font-weight: 600; }

/* Workshop registration cards */
.workshop-reg-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.workshop-reg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.wc-header {
  padding: 1.75rem 1.5rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--border-light);
}
.wc-icon {
  width: 46px; height: 46px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.wc-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.wc-subtitle { font-size: 0.75rem; color: var(--text-muted); }

.wc-body { padding: 1.5rem; flex: 1; }
.wc-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-body);
  padding: 0.35rem 0;
  line-height: 1.45;
}
.wc-feature i { color: var(--green); font-size: 0.7rem; margin-top: 0.25rem; flex-shrink: 0; }
.wc-price { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--navy); margin-top: 1rem; }
.wc-price sup { font-size: 1rem; }
.wc-price-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.25rem; }

.wc-footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--border-light); }

/* Registration process */
.reg-process {
  background: var(--dark);
  border-radius: 14px;
  padding: 3rem 2.5rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}
.reg-process::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(37,99,235,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  height: 100%;
}
.step-num {
  width: 36px; height: 36px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.step-title { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.35rem; }
.step-desc { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.6; }


/* =============================================
   CONTACT PAGE
============================================= */
.contact-section { padding: 5rem 0; background: var(--white); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

/* Form controls */
.form-label {
  font-size: 0.78rem;
  font-weight: 400;
  color: #929292;
  margin-bottom: 0.35rem;
}
.form-control, .form-select {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  color: var(--text-body);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
}
textarea.form-control { min-height: 140px; resize: vertical; }

/* Contact info cards */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-info-card:last-of-type { border-bottom: none; }
.ci-icon {
  width: 40px; height: 40px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--green-dark);
  flex-shrink: 0;
}
.ci-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.ci-value { font-size: 0.86rem; color: var(--text-body); line-height: 1.55; }
.ci-value a { color: var(--green); font-weight: 500; }
.ci-value a:hover { text-decoration: underline; }

/* Map */
.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}


/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 991px) {
  .timer-colon { display: none; }
  .chip-tl, .chip-br { display: none; }
  .hero-img-frame img { height: 340px; }
  .navbar-collapse {
    background: var(--white);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
  }
  .wizard-panel-inner { padding: 1.75rem; }
  .reg-type-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .about-img-wrap::before { display: none; }
  .about-img-badge { right: 10px; bottom: 10px; }
  .tl-time { min-width: auto; font-size: 0.68rem; }
  .tl-item { gap: 0.65rem; padding: 0.9rem 1rem; flex-wrap: wrap; }
  .tl-dot-wrap { display: none; }
  .tl-session-group { flex-wrap: wrap; padding: 0.75rem 1rem; gap: 0.5rem; }
  .session-group-name { font-size: 0.82rem; }
  .day-theme { font-size: 0.88rem; padding: 0.85rem 1.2rem; }
  .nav-tabs { flex-wrap: nowrap; overflow-x: auto; }
  .nav-tabs .nav-link { white-space: nowrap; font-size: 0.78rem; padding: 0.6rem 1rem; }
  .hall-tabs .nav-link { font-size: 0.76rem; padding: 0.45rem 1.2rem; }
  .hall-tabs { padding: 0.3rem; }
  .tl-break-icon { width: 48px; font-size: 1rem; }
  .tl-break-body { padding: 0.65rem 1rem; }
  .tl-break-title { font-size: 0.82rem; }
  .tl-break-time { font-size: 0.68rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .wizard-step-label { font-size: 0.62rem; }
  .wizard-step-circle { width: 36px; height: 36px; font-size: 0.82rem; }
  .wizard-step-line { max-width: 60px; }
  .hero-img-frame img { height: 280px; }
}
@media (max-width: 575px) {
  .hero-headline { font-size: 2.4rem; }
  .btn-green, .btn-outline-navy, .btn-outline-green { padding: 0.65rem 1.35rem; font-size: 0.82rem; }
  .page-banner { padding: 7rem 0 3rem; }
  .page-banner-title { font-size: 1.8rem; }
  .wizard-panel-inner { padding: 1.25rem; }
  .wizard-nav { flex-direction: column; gap: 0.75rem; }
  .wizard-nav > * { width: 100%; text-align: center; }
}

/* =============================================
   CONDUCTING ORGANIZATIONS — Home Page (Dark)
============================================= */
.org-intro-section {
  padding: 6rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
/* Subtle grid overlay */
.org-intro-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
/* Top accent line */
.org-intro-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
/* Glow */
.org-intro-glow {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,168,232,0.08) 0%, transparent 65%);
  pointer-events: none;
}

/* Showcase card — light card on dark background */
.org-showcase {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.3);
  max-width: 900px;
  margin: 0 auto;
}
.org-showcase-logo-col {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  background: var(--off-white);
  border-right: 1px solid var(--border-light);
}
.org-showcase-logo-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,168,232,0.1);
  border: 2px solid rgba(16,185,129,0.15);
}
.org-showcase-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}
.org-showcase-est {
  margin-top: 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.org-showcase-content {
  flex: 1;
  padding: 2.5rem;
}
.org-showcase-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.org-showcase-abbr {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 0.3rem;
}
.org-showcase-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--navy));
  border-radius: 3px;
  margin: 1rem 0 1.2rem;
}
.org-showcase-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.org-showcase-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.org-highlight {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.84rem;
  color: var(--text-body);
}
.org-highlight i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Responsive: stack on mobile */
@media (max-width: 767.98px) {
  .org-showcase {
    flex-direction: column;
  }
  .org-showcase-logo-col {
    flex: none;
    padding: 2rem 1.5rem;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }
  .org-showcase-content {
    padding: 2rem 1.5rem;
  }
}

/* =============================================
   REGISTER NOW PAGE — Form & Payment
============================================= */
.reg-form-section {
  padding: 5rem 0;
  background: var(--white);
}
.reg-form-wrap {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.reg-form-wrap .form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.reg-form-wrap .form-control,
.reg-form-wrap .form-select {
  font-size: 0.88rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.reg-form-wrap .form-control:focus,
.reg-form-wrap .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
}

/* Payment Screenshot Upload */
.payment-upload-area {
  border: 2px dashed var(--border-light);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  background: var(--off-white);
}
.payment-upload-area:hover,
.payment-upload-area.dragover {
  border-color: var(--green);
  background: var(--green-light);
}
.payment-upload-area i {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.payment-upload-area .upload-text {
  font-size: 0.88rem;
  color: var(--text-body);
  font-weight: 600;
}
.payment-upload-area .upload-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.payment-preview {
  margin-top: 1rem;
  position: relative;
  display: none;
}
.payment-preview img {
  max-width: 200px;
  max-height: 200px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  margin: 0 auto;
}
.payment-preview .remove-btn {
  position: absolute;
  top: -8px;
  right: calc(50% - 108px);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  border: none;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Registration success message */
.reg-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.reg-success-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 3rem 2.5rem 2.5rem;
  max-width: 540px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.reg-success-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--navy));
}
.reg-success-icon-ring {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(16,185,129,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: regSuccessPop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
.reg-success-icon-ring i {
  font-size: 2.4rem;
  color: var(--green);
}
@keyframes regSuccessPop {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.reg-success h3 {
  font-family: var(--font-display);
  color: var(--dark);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.reg-success-lead {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.reg-success-lead strong {
  color: var(--navy);
}
.reg-success-details {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.reg-success-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-body);
  font-weight: 500;
}
.reg-success-detail-item i {
  font-size: 1rem;
  color: var(--navy);
}
.reg-success-info {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  text-align: left;
  background: var(--green-light);
  border: 1px solid rgba(16,185,129,0.18);
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
  margin-bottom: 2rem;
}
.reg-success-info > i {
  font-size: 1.3rem;
  color: var(--green);
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.reg-success-info p {
  font-size: 0.86rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.65;
  max-width: none;
}
.reg-success-info p strong {
  color: var(--dark);
}
.reg-success-countdown {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 166, 81, 0.08);
  border: 1px solid rgba(0, 166, 81, 0.2);
  color: var(--dark);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.reg-success-countdown i {
  color: var(--green);
}
.reg-success-countdown strong {
  color: var(--green);
  font-size: 1.05rem;
  min-width: 1.2em;
  text-align: center;
}
.reg-success-actions {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.reg-success-outline {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.reg-success-outline:hover {
  background: var(--navy);
  color: #fff;
}
.reg-success-help {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
.reg-success-help a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}
.reg-success-help a:hover {
  text-decoration: underline;
}

/* =============================================
   3-STEP REGISTRATION WIZARD
============================================= */
.reg-wizard-section {
  padding: 4rem 0 5rem;
  background: var(--off-white);
}
.req { color: #ef4444; }

/* Progress indicator */
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}
.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.wizard-step-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-muted);
  transition: all 0.4s ease;
}
.wizard-step.active .wizard-step-circle,
.wizard-step.completed .wizard-step-circle {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.wizard-step.completed .wizard-step-circle {
  background: var(--green);
  border-color: var(--green);
}
.wizard-step-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.4s ease;
}
.wizard-step.active .wizard-step-label {
  color: var(--navy);
}
.wizard-step.completed .wizard-step-label {
  color: var(--green-dark);
}

.wizard-step-line {
  flex: 1;
  height: 2px;
  background: var(--border-light);
  max-width: 120px;
  margin: 0 0.75rem;
  margin-bottom: 1.5rem;
  transition: background 0.4s ease;
}
.wizard-step-line.active {
  background: var(--navy);
}
.wizard-step-line.completed {
  background: var(--green);
}

/* Wizard panels */
.wizard-panel {
  display: none;
}
.wizard-panel.active {
  display: block;
}
.wizard-panel-inner {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.wizard-panel-header {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}
.wizard-panel-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.4rem;
}
.wizard-panel-title i {
  color: var(--green);
  font-size: 1.1rem;
}
.wizard-panel-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.wizard-sub-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.wizard-sub-heading i {
  color: var(--green);
}

/* Wizard navigation */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

/* Registration type radio cards */
.reg-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 767px) {
  .reg-type-grid { grid-template-columns: 1fr; }
}

.reg-type-card {
  cursor: pointer;
  position: relative;
}
.reg-type-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.reg-type-inner {
  border: 2px solid var(--border-light);
  border-radius: 14px;
  padding: 1.4rem 1.3rem;
  transition: all 0.3s ease;
  background: var(--white);
  position: relative;
}
/* Hover state */
.reg-type-card:hover .reg-type-inner {
  border-color: var(--navy-light);
  box-shadow: 0 6px 24px rgba(0,168,232,0.12);
  transform: translateY(-2px);
}
/* Selected state */
.reg-type-card input:checked + .reg-type-inner {
  border-color: var(--navy);
  background: rgba(0,168,232,0.04);
  box-shadow: 0 0 0 3px rgba(0,168,232,0.12), 0 6px 24px rgba(0,168,232,0.1);
}
/* Check indicator */
.reg-type-inner::after {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  color: transparent;
  background: var(--white);
  transition: all 0.3s ease;
}
.reg-type-card input:checked + .reg-type-inner::after {
  content: '\f00c';
  font-size: 0.7rem;
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}
.reg-type-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
  padding-right: 2rem;
}
.reg-type-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}
.reg-type-prices {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.reg-price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  min-width: 65px;
  padding: 0.5rem 0.35rem;
  border-radius: 8px;
  background: var(--off-white);
  transition: background 0.3s ease;
}
.reg-type-card input:checked + .reg-type-inner .reg-price-item {
  background: rgba(0,168,232,0.06);
}
.reg-price-item.highlight {
  background: rgba(16,185,129,0.08);
}
.reg-type-card input:checked + .reg-type-inner .reg-price-item.highlight {
  background: rgba(16,185,129,0.12);
}
.reg-price-label {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.reg-price-label i {
  color: var(--green);
  font-size: 0.55rem;
}
.reg-price-amount {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  /* color: var(--navy); */

}

/* Workshop Add-On Section */
.workshop-addon-section {
  margin-top: 2.5rem;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.75rem;
}
.workshop-addon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}
.workshop-addon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.workshop-addon-badge i {
  font-size: 1.1rem;
}
.workshop-addon-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
}

/* Workshop cards */
.ws-card {
  display: block;
  cursor: pointer;
  position: relative;
}
.ws-card .form-check-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.ws-card-inner {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  padding: 1.1rem 1.2rem;
  transition: all 0.3s ease;
  position: relative;
}
.ws-card-inner::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid var(--border-light);
  background: var(--white);
  transition: all 0.3s ease;
}
.ws-card .form-check-input:checked + .ws-card-inner {
  border-color: var(--navy);
  background: rgba(0,168,232,0.03);
  box-shadow: 0 0 0 2px rgba(0,168,232,0.1);
}
.ws-card .form-check-input:checked + .ws-card-inner::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.6rem;
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-card:hover .ws-card-inner {
  border-color: var(--navy-light);
  box-shadow: 0 4px 16px rgba(0,168,232,0.08);
}
.ws-card-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
  padding-right: 2rem;
}
.ws-card-desc {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.6rem;
}
.ws-card-fee {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  /* color: var(--navy); */
}
.ws-card-fee-sep {
  color: var(--text-muted);
  font-weight: 400;
  margin: 0 0.15rem;
}
.ws-card-fee-regular {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* Bundle card */
.ws-card-bundle .ws-card-inner {
  border-color: var(--navy);
  border-style: dashed;
  background: rgba(0,168,232,0.02);
}
.ws-bundle-save {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 0.15rem 0.55rem;
  border-radius: 10px;
  margin-left: 0.5rem;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Payment QR Section */
.payment-qr-section {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
}
.qr-placeholder {
  width: 180px;
  height: 180px;
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.qr-placeholder i {
  font-size: 4rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.qr-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Payment instructions */
.payment-instructions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pi-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.86rem;
  color: var(--text-body);
}
.pi-num {
  width: 26px;
  height: 26px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

/* Responive */
@media (max-width: 576px) {
  .nav-inner {padding: 0.85rem;}
}

/* =============================================
   ABSTRACT ONLINE SUBMISSION PAGE
============================================= */
.abstract-section {
  padding: 4rem 0 5rem;
  background: var(--white);
}

/* Registration success banner */
.abstract-reg-success {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(16,185,129,0.03));
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  margin-bottom: 2rem;
  animation: abstractFadeIn 0.6s ease;
}
.abstract-reg-success i {
  font-size: 1.6rem;
  color: var(--green);
  flex-shrink: 0;
}
.abstract-reg-success strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--green-dark);
  margin-bottom: 0.15rem;
}
.abstract-reg-success span {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* Info note */
.abstract-info-note {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(0,168,232,0.04);
  border: 1px solid rgba(0,168,232,0.15);
  border-radius: 10px;
  padding: 1.1rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.86rem;
  color: var(--text-body);
  line-height: 1.7;
}
.abstract-info-note i {
  color: var(--navy);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ---- Hero Intro ---- */
.abs-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.abs-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: rgba(0,168,232,0.07);
  border: 1px solid rgba(0,168,232,0.18);
  border-radius: 50px;
  padding: 0.45rem 1.25rem;
  margin-bottom: 1.25rem;
}
.abs-intro-badge i {
  color: var(--green);
}
.abs-intro-text {
  font-size: 1.02rem;
  color: var(--text-body);
  line-height: 1.85;
}

/* ---- Panels (Tracks + Dates) ---- */
.abs-panel {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  animation: abstractSlideUp 0.5s ease both;
}
.abs-panel-dark {
  background: var(--dark);
  border-color: rgba(255,255,255,0.06);
  color: #fff;
}
.abs-panel-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}
.abs-panel-dark .abs-panel-header {
  border-bottom-color: rgba(255,255,255,0.08);
}
.abs-panel-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.abs-panel-icon.blue {
  background: rgba(0,168,232,0.1);
  color: var(--navy);
}
.abs-panel-icon.green {
  background: rgba(16,185,129,0.12);
  color: var(--green);
}
.abs-panel-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 0.15rem;
}
.abs-panel-dark .abs-panel-title {
  color: #fff;
}
.abs-panel-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}
.abs-panel-dark .abs-panel-sub {
  color: rgba(255,255,255,0.45);
}

/* ---- Submission Tracks Grid ---- */
.abs-tracks-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.abs-track-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background: var(--off-white);
  transition: all var(--transition);
}
.abs-track-item:hover {
  border-color: rgba(0,168,232,0.2);
  background: rgba(0,168,232,0.03);
  transform: translateX(4px);
}
.abs-track-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}
.abs-track-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.1rem;
}
.abs-track-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- Timeline (Important Dates) ---- */
.abs-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
  padding-left: 0.25rem;
}
.abs-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  padding-bottom: 1.75rem;
}
.abs-timeline-item:last-child {
  padding-bottom: 0;
}
.abs-timeline-item::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 22px;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.1);
}
.abs-timeline-item:last-child::before {
  display: none;
}
.abs-timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.2);
  background: var(--dark);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.abs-timeline-item.deadline .abs-timeline-dot {
  border-color: #ef4444;
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239,68,68,0.2);
}
.abs-timeline-item.highlight .abs-timeline-dot {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.2);
}
.abs-timeline-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.2rem;
}
.abs-timeline-date {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.abs-timeline-item.deadline .abs-timeline-date {
  color: #f87171;
}
.abs-timeline-item.highlight .abs-timeline-date {
  color: var(--green);
}

/* ---- Venue & Email Cards (inside dark panel) ---- */
.abs-venue-card,
.abs-email-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0.75rem;
}
.abs-email-card {
  margin-bottom: 0;
}
.abs-venue-card > i,
.abs-email-card > i {
  font-size: 1.1rem;
  color: var(--green);
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.abs-venue-card strong,
.abs-email-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.15rem;
}
.abs-venue-card span,
.abs-email-card span {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.abs-email-card a {
  display: block;
  color: var(--green);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 0.2rem;
  text-decoration: none;
}
.abs-email-card a:hover {
  text-decoration: underline;
}

/* ---- Guidelines Bar ---- */
.abs-guidelines-bar {
  margin-bottom: 3.5rem;
}
.abs-guidelines-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.5rem 2rem;
}
.abs-guideline-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.abs-guideline-item > i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0,168,232,0.08);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.abs-guideline-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
}
.abs-guideline-item span {
  font-size: 0.76rem;
  color: var(--text-muted);
}
.abs-guideline-sep {
  width: 1px;
  height: 36px;
  background: var(--border-light);
}

/* ---- Upload Section Heading ---- */
.abs-upload-section-heading {
  text-align: center;
  margin-bottom: 2rem;
}
.abs-upload-section-heading h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}
.abs-upload-section-heading h2 i {
  color: var(--navy);
}
.abs-upload-section-heading p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---- Responsive for new abstract sections ---- */
@media (max-width: 991.98px) {
  .abs-guidelines-inner {
    gap: 1.25rem;
  }
  .abs-guideline-sep {
    display: none;
  }
  .abs-guideline-item {
    flex: 0 0 calc(50% - 0.75rem);
  }
}
@media (max-width: 575.98px) {
  .abs-panel {
    padding: 1.5rem;
  }
  .abs-guideline-item {
    flex: 0 0 100%;
  }
  .abs-guidelines-inner {
    padding: 1.25rem;
    gap: 1rem;
  }
  .abs-track-item {
    padding: 0.75rem;
  }
}

/* Upload cards */
.abstract-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  animation: abstractSlideUp 0.5s ease both;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.abstract-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.col-lg-6:nth-child(2) .abstract-card {
  animation-delay: 0.15s;
}

.abstract-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.abstract-card-icon.poster {
  background: rgba(0,168,232,0.08);
  color: var(--navy);
}
.abstract-card-icon.paper {
  background: rgba(16,185,129,0.08);
  color: var(--green);
}

.abstract-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.35rem;
}
.abstract-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Upload area */
.abstract-upload-area {
  border: 2px dashed var(--border-light);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  background: var(--off-white);
  margin-bottom: 1rem;
}
.abstract-upload-area:hover,
.abstract-upload-area.dragover {
  border-color: var(--navy);
  background: rgba(0,168,232,0.03);
}
.abstract-upload-placeholder i {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  display: block;
}
.abstract-upload-placeholder p {
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.abstract-upload-placeholder p span {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}
.abstract-upload-placeholder small {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* File preview */
.abstract-upload-preview {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: rgba(0,168,232,0.04);
  border: 1px solid rgba(0,168,232,0.15);
  border-radius: 10px;
}
.abstract-upload-preview > i {
  font-size: 1.5rem;
  color: var(--navy);
  flex-shrink: 0;
}
.abstract-file-info {
  flex: 1;
  text-align: left;
  min-width: 0;
}
.abstract-file-name {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.abstract-file-size {
  font-size: 0.74rem;
  color: var(--text-muted);
}
.abstract-file-remove {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #ef4444;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
}
.abstract-file-remove:hover {
  background: #dc2626;
}

/* Alerts */
.abstract-alert {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.84rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.abstract-alert-danger {
  background: rgba(239,68,68,0.08);
  color: #dc2626;
  border: 1px solid rgba(239,68,68,0.2);
}
.abstract-alert-success {
  background: rgba(16,185,129,0.08);
  color: var(--green-dark);
  border: 1px solid rgba(16,185,129,0.2);
}

/* Submit button */
.abstract-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  background: var(--navy);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.abstract-submit-btn:hover {
  background: #0090c8;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,168,232,0.25);
}
.abstract-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Success state */
.abstract-success {
  text-align: center;
  padding: 2rem 1rem;
  animation: abstractFadeIn 0.5s ease;
}
.abstract-success i {
  font-size: 2.8rem;
  color: var(--green);
  margin-bottom: 1rem;
  display: block;
}
.abstract-success h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.abstract-success p {
  font-size: 0.86rem;
  color: var(--text-muted);
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Contact note */
.abstract-contact {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}
.abstract-contact p {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.abstract-contact a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
.abstract-contact a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes abstractSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes abstractFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .abstract-section {
    padding: 2.5rem 0 3rem;
  }
  .abstract-card {
    padding: 1.5rem;
  }
  .abstract-reg-success {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .abstract-info-note {
    flex-direction: column;
    gap: 0.5rem;
  }
}
