/* =====================================================
   CONFERENCE WEBSITE — DESIGN SYSTEM
   المؤتمر الدولي للطب النفسي وعلم النفس - النسخة السادسة
   Color palette extracted directly from conference logo
   ===================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;800&display=swap');

/* ── Design Tokens — Lightened Vibrant Blue Palette ── */
:root {
  /* Primary: vibrant royal navy (lightened) */
  --navy: #1E3A8A;
  --navy-light: #2563EB;
  --navy-dark: #16287A;

  /* Brand blue (logo illustrations) */
  --blue: #2563EB;
  --blue-light: #3B82F6;
  --blue-dark: #1D4ED8;

  /* Accent: sky/light blue (logo brain fill & "6th") */
  --sky: #0EA5E9;
  --sky-light: #38BDF8;
  --sky-dark: #0284C7;

  /* Gold accent for memorial & highlights */
  --gold: #D4A853;
  --gold-light: #F5D77F;

  --white: #FFFFFF;
  --bg: #F4F8FD;
  --bg-card: #FFFFFF;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;

  /* Memorial (lightened) */
  --memorial-bg: #141F56;
  --memorial-gold: #D4A853;

  /* Utility */
  --border: rgba(37, 99, 235, 0.18);
  --shadow-sm: 0 2px 8px rgba(30, 58, 138, 0.06);
  --shadow-md: 0 8px 24px rgba(30, 58, 138, 0.10);
  --shadow-lg: 0 20px 60px rgba(30, 58, 138, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Cairo', 'Tajawal', sans-serif;
  --font-en: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg);
  color: var(--text-primary);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  overflow-x: hidden;
}

/* English / LTR mode typography */
html[lang="en"],
html[dir="ltr"],
html[lang="en"] body,
html[dir="ltr"] body {
  font-family: var(--font-en);
  direction: ltr;
  text-align: left;
}

html[lang="en"] button,
html[dir="ltr"] button,
html[lang="en"] input,
html[dir="ltr"] input,
html[lang="en"] select,
html[dir="ltr"] select,
html[lang="en"] textarea,
html[dir="ltr"] textarea {
  font-family: var(--font-en);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-main);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--sky);
  border-radius: 3px;
}

/* ── Utility ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 96px 0;
}

.section-padding-sm {
  padding: 64px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21, 101, 192, 0.1);
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--blue);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.divider {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  border-radius: 2px;
  margin: 16px 0 32px;
}

.divider.center {
  margin: 16px auto 32px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-main);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(21, 101, 192, 0.55);
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
}

.btn-sky {
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(41, 182, 246, 0.4);
}

.btn-sky:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(41, 182, 246, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #B8892E);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.4);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212, 168, 83, 0.5);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
}

/* ── Card & Glass ── */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

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

.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ── Animations ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(41, 182, 246, 0.5);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(41, 182, 246, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(41, 182, 246, 0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-rev {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes loader-fade-out {
  0% {
    opacity: 1;
    pointer-events: all;
  }

  100% {
    opacity: 0;
    pointer-events: none;
  }
}

@keyframes icon-pop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  60% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes slide-in-up {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes count-up-flash {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

/* ════════════════════════════════════════
   PAGE LOADER
   ════════════════════════════════════════ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--blue-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s ease;
  pointer-events: auto;
}

#page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Spinner rings */
.loader-rings {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ring {
  position: absolute;
  border-radius: 50%;
  border: 3px solid transparent;
}

.loader-ring--1 {
  width: 110px;
  height: 110px;
  border-top-color: var(--sky);
  border-right-color: var(--sky);
  animation: spin 0.7s linear infinite;
}

.loader-ring--2 {
  width: 82px;
  height: 82px;
  border-bottom-color: var(--gold);
  border-left-color: var(--gold);
  animation: spin-rev 0.55s linear infinite;
}

.loader-ring--3 {
  width: 56px;
  height: 56px;
  border-top-color: rgba(255, 255, 255, 0.4);
  animation: spin 0.95s linear infinite;
}

/* Logo in loader center */
.loader-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
}

/* ── Scroll-reveal variants ── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.75s cubic-bezier(.22, 1, .36, 1), transform 0.75s cubic-bezier(.22, 1, .36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.75s cubic-bezier(.22, 1, .36, 1), transform 0.75s cubic-bezier(.22, 1, .36, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.75s cubic-bezier(.22, 1, .36, 1), transform 0.75s cubic-bezier(.22, 1, .36, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* ════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════ */
/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13, 27, 122, 0.08);
  box-shadow: 0 4px 20px rgba(13, 27, 122, 0.04);
}

#navbar.scrolled {
  background: rgba(24, 48, 138, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  height: 62px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  height: 100%;
}

/* ── Logo: wrap in white pill so the white-bg PNG is always visible ── */
.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(13, 27, 122, 0.12);
  transition: box-shadow 0.2s, transform 0.2s;
}

.nav-logo:hover img {
  transform: scale(1.06);
  box-shadow: 0 4px 16px rgba(41, 182, 246, 0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.nav-links li {
  display: flex;
  align-items: center;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  line-height: 1;
  color: #1E293B;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  vertical-align: middle;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links a:hover::after,
.nav-links a.active-nav::after {
  transform: scaleX(1);
}

.nav-links a.active-nav {
  color: var(--blue);
}

#navbar.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.88);
}

#navbar.scrolled .nav-links a:hover {
  color: var(--white);
}

#navbar.scrolled .nav-links a.active-nav {
  color: var(--white);
}

#navbar.scrolled .nav-links a::after {
  background: var(--sky);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  height: 100%;
}

/* Language Switcher Button */
.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  border-radius: 100px;
  background: rgba(21, 101, 192, 0.08);
  border: 1.5px solid rgba(21, 101, 192, 0.25);
  color: #1E293B;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  line-height: 1;
}

.lang-switch-btn i {
  color: var(--blue);
  font-size: 1rem;
}

.lang-switch-btn:hover {
  background: rgba(21, 101, 192, 0.16);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(21, 101, 192, 0.2);
}

#navbar.scrolled .lang-switch-btn {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

#navbar.scrolled .lang-switch-btn i {
  color: var(--sky);
}

#navbar.scrolled .lang-switch-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--sky);
}

.nav-cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 38px;
  padding: 0 20px;
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

#navbar.scrolled .hamburger span {
  background: var(--white);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(7, 14, 74, 0.98);
  backdrop-filter: blur(20px);
  padding: 20px 24px;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--sky-light);
  background: rgba(41, 182, 246, 0.1);
}

/* ════════════════════════════════════════
   HERO (Enhanced Modern Luxury Theme)
   ════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  min-height: 100dvh;
  box-sizing: border-box;
  background:
    /* Top-right sky/azure glow */
    radial-gradient(ellipse at 85% 10%, rgba(14, 165, 233, 0.18) 0%, transparent 48%),
    /* Top-left warm luxury gold aura */
    radial-gradient(ellipse at 12% 16%, rgba(212, 168, 83, 0.16) 0%, transparent 45%),
    /* Centre-right gold accent */
    radial-gradient(ellipse at 75% 55%, rgba(212, 168, 83, 0.12) 0%, transparent 42%),
    /* Centre-left soft cyan ambient */
    radial-gradient(ellipse at 20% 65%, rgba(14, 165, 233, 0.14) 0%, transparent 45%),
    /* Bottom subtle indigo aura */
    radial-gradient(ellipse at 50% 95%, rgba(99, 102, 241, 0.09) 0%, transparent 50%),
    /* Base luminous light gradient */
    linear-gradient(155deg, #FFFFFF 0%, #F6FAFE 35%, #EEF5FB 70%, #F5F9FD 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(72px + 20px) 0 36px;
}

/* ── Hero background decorative layer ── */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Perspective grid floor (light tone) */
.hero-perspective-grid,
.hero-particles::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background-image:
    linear-gradient(rgba(21, 101, 192, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 101, 192, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
  transform: perspective(600px) rotateX(35deg);
  transform-origin: bottom center;
}

/* Floating glow orbs — soft luminous filters */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float var(--dur, 8s) ease-in-out infinite var(--delay, 0s);
  filter: blur(var(--blur, 40px));
  opacity: var(--op, 0.45);
}

.hero-orb-1 {
  --dur: 9s;
  --delay: 0s;
  --blur: 60px;
  --op: 0.4;
  width: 500px;
  height: 500px;
  top: -180px;
  right: -100px;
  background: radial-gradient(circle, rgba(41, 182, 246, 0.28) 0%, transparent 70%);
}

.hero-orb-2 {
  --dur: 11s;
  --delay: -3s;
  --blur: 70px;
  --op: 0.35;
  width: 420px;
  height: 420px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.24) 0%, transparent 70%);
}

.hero-orb-3 {
  --dur: 7s;
  --delay: -5s;
  --blur: 50px;
  --op: 0.3;
  width: 280px;
  height: 280px;
  top: 30%;
  left: 40%;
  background: radial-gradient(circle, rgba(41, 182, 246, 0.22) 0%, transparent 70%);
}

.hero-orb-4 {
  --dur: 13s;
  --delay: -7s;
  --blur: 55px;
  --op: 0.25;
  width: 320px;
  height: 320px;
  top: 10%;
  left: 20%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, transparent 70%);
}

.hero-orb-5 {
  --dur: 10s;
  --delay: -2s;
  --blur: 45px;
  --op: 0.25;
  width: 200px;
  height: 200px;
  bottom: 15%;
  right: 25%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.2) 0%, transparent 70%);
}

/* Scattered glowing dots */
.hero-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: pulse-ring var(--pdur, 3s) ease-in-out infinite var(--pdelay, 0s);
  background: rgba(21, 101, 192, var(--pop, 0.45));
  width: var(--ps, 4px);
  height: var(--ps, 4px);
  box-shadow: 0 0 8px 1px rgba(21, 101, 192, 0.25);
}

.hero-container {
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

/* ── Luxury Edition Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.16) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1.5px solid rgba(212, 168, 83, 0.5);
  color: #8B5E00;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 8px 22px;
  border-radius: 100px;
  margin-bottom: 16px;
  box-shadow: 0 4px 18px rgba(212, 168, 83, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  animation: fadeInUp 0.6s ease both;
  backdrop-filter: blur(8px);
}

.hero-badge-star {
  color: #D4A853;
  font-size: 0.95rem;
  filter: drop-shadow(0 0 6px rgba(212, 168, 83, 0.6));
}

/* ── Hero Title ── */
.hero-title {
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  font-weight: 900;
  color: #070E4A;
  line-height: 1.22;
  margin-bottom: 14px;
  animation: fadeInUp 0.6s 0.1s ease both;
  letter-spacing: -0.5px;
}

.hero-title-main {
  display: inline-block;
  text-shadow: 0 2px 8px rgba(7, 14, 74, 0.05);
}

.hero-title .highlight {
  background: linear-gradient(135deg, #1565C0 0%, #0284C7 50%, #0EA5E9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(14, 165, 233, 0.22));
}

/* ── Hero Tagline ── */
.hero-tagline {
  font-size: clamp(0.96rem, 1.25vw, 1.12rem);
  color: #475569;
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 580px;
  font-weight: 500;
  animation: fadeInUp 0.6s 0.2s ease both;
}

/* ── Event Metadata Capsules ── */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(21, 101, 192, 0.14);
  border-radius: 100px;
  padding: 6px 14px 6px 16px;
  box-shadow: 0 4px 14px rgba(13, 27, 122, 0.05);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-meta-item:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 101, 192, 0.3);
  box-shadow: 0 6px 18px rgba(13, 27, 122, 0.1);
}

.hero-meta-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.hero-meta-icon.icon-date {
  background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
}

.hero-meta-icon.icon-venue {
  background: linear-gradient(135deg, #D4A853 0%, #EAB308 100%);
}

.hero-meta-icon.icon-mode {
  background: linear-gradient(135deg, #0284C7 0%, #38BDF8 100%);
}

.hero-meta-info {
  display: flex;
  flex-direction: column;
}

.hero-meta-label {
  font-size: 0.68rem;
  color: #64748B;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-meta-value {
  font-size: 0.88rem;
  color: #0F172A;
  font-weight: 800;
  line-height: 1.3;
}

.hero-meta-divider {
  display: none;
}

/* ── CTA Action Buttons ── */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp 0.6s 0.3s ease both;
  margin-top: 6px;
  margin-bottom: 8px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 50%, #0EA5E9 100%);
  color: #FFFFFF !important;
  font-size: 1.02rem;
  font-weight: 800;
  padding: 14px 34px;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-hero-primary .hero-btn-arrow {
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-hero-primary:hover .hero-btn-arrow {
  transform: translateX(-4px);
}

.btn-hero-secondary {
  background: #FFFFFF;
  color: #1E3A8A !important;
  font-size: 1.02rem;
  font-weight: 800;
  padding: 14px 30px;
  border-radius: 100px;
  border: 1.5px solid rgba(30, 58, 138, 0.24);
  box-shadow: 0 4px 16px rgba(13, 27, 122, 0.07);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
}

.btn-hero-secondary:hover {
  background: #F8FAFC;
  border-color: var(--blue);
  color: var(--blue) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.16);
}

/* ── Hero Visual & Countdown Column ── */
.hero-visual-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  animation: fadeInUp 0.6s 0.3s ease both;
}

/* Event Metadata in Visual Column */
.hero-visual-col .hero-meta {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 0;
}

.hero-visual-col .hero-meta-item {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid rgba(21, 101, 192, 0.16);
  border-radius: 16px;
  padding: 8px 12px;
  box-shadow: 0 4px 14px rgba(13, 27, 122, 0.05);
  backdrop-filter: blur(10px);
}

.hero-visual-col .hero-meta-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.82rem;
}

.hero-visual-col .hero-meta-info {
  min-width: 0;
  overflow: hidden;
}

.hero-visual-col .hero-meta-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
}

.hero-visual-col .hero-meta-value {
  font-size: 0.82rem;
  font-weight: 800;
  color: #070E4A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Floating Logo Visual Hub */
.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-hub-aura {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.22) 0%, rgba(212, 168, 83, 0.16) 50%, transparent 70%);
  filter: blur(35px);
  pointer-events: none;
  animation: pulse-ring 4s infinite;
}

.hero-logo-ring {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow:
    0 0 0 3px rgba(21, 101, 192, 0.18),
    0 0 0 14px rgba(21, 101, 192, 0.05),
    0 20px 45px rgba(13, 27, 122, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.hero-logo-ring::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1.5px dashed rgba(21, 101, 192, 0.25);
  animation: float 6s ease-in-out infinite reverse;
}

.hero-logo-img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  padding: 12px;
}

/* ── Countdown Timer: Unified Inline Single-Row Card ── */
.countdown-wrapper {
  width: 100%;
  animation: fadeInUp 0.6s 0.5s ease both;
}

.countdown-inline-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid rgba(21, 101, 192, 0.18);
  border-radius: 20px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 10px 30px rgba(13, 27, 122, 0.08),
    0 2px 10px rgba(212, 168, 83, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-inline-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 36px rgba(13, 27, 122, 0.12),
    0 4px 16px rgba(212, 168, 83, 0.22);
}

.countdown-label-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.countdown-pulse-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 168, 83, 0.14);
  border: 1px solid rgba(212, 168, 83, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.92rem;
  flex-shrink: 0;
}

.countdown-label {
  color: #070E4A;
  font-size: 0.86rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.35;
  letter-spacing: 0.2px;
}

.countdown {
  display: flex;
  gap: 7px;
  align-items: center;
  flex-shrink: 0;
}

.countdown-unit {
  text-align: center;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.07) 0%, rgba(14, 165, 233, 0.11) 100%);
  border: 1px solid rgba(21, 101, 192, 0.2);
  border-radius: 12px;
  padding: 7px 11px;
  min-width: 54px;
  box-shadow: 0 2px 6px rgba(13, 27, 122, 0.04);
  transition: transform 0.2s ease;
}

.countdown-unit:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.12) 0%, rgba(14, 165, 233, 0.18) 100%);
}

.countdown-num {
  font-size: 1.45rem;
  font-weight: 900;
  color: #070E4A;
  line-height: 1.05;
  display: block;
}

.countdown-text {
  font-size: 0.66rem;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 3px;
  display: block;
}

/* ════════════════════════════════════════
   STATS BAR (Compact & Modern)
   ════════════════════════════════════════ */
#stats {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}

/* Dot-grid pattern overlay */
#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(41, 182, 246, 0.18) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* Right-edge glow blob */
#stats::after {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 182, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
  align-items: center;
}

.stat-item {
  text-align: center;
  padding: 12px 16px;
  position: relative;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  bottom: 15%;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

/* Compact icon wrapper */
.stat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(41, 182, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.stat-item:hover .stat-icon-wrap {
  background: rgba(41, 182, 246, 0.2);
  border-color: rgba(41, 182, 246, 0.7);
  box-shadow: 0 0 16px rgba(41, 182, 246, 0.35);
}

.stat-fa-icon {
  font-size: 1.35rem;
  color: var(--sky-light);
  transition: transform 0.3s ease;
}

.stat-item:hover .stat-fa-icon {
  transform: scale(1.12);
}

.stat-number {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--sky-light), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  line-height: 1.3;
}

/* ════════════════════════════════════════
   ABOUT — Enhanced
   ════════════════════════════════════════ */
#about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle dot pattern */
#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(21, 101, 192, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Large decorative arc top-right */
#about::after {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  /* both columns same height */
  position: relative;
  z-index: 1;
}

/* ── Visual column — full height ── */
.about-visual {
  position: relative;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
}

/* Main card fills all remaining space */
.about-card-main {
  flex: 1;
  background: linear-gradient(145deg, #1E3A8A 0%, #2563EB 70%, #3B82F6 100%);
  border-radius: 24px;
  padding: 44px 40px 36px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(30, 58, 138, 0.25), 0 4px 16px rgba(30, 58, 138, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Grid-line texture */
.about-card-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.about-quote-mark {
  position: absolute;
  top: -10px;
  right: 24px;
  font-size: 180px;
  color: rgba(41, 182, 246, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── Conference Logo Header in About Quote Card ── */
.about-card-logo-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.about-card-logo-box {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: #ffffff;
  padding: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), 0 0 0 2px rgba(41, 182, 246, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.about-card-logo-box:hover {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 12px 32px rgba(41, 182, 246, 0.55);
}

.about-card-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-card-logo-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-card-org-title {
  font-size: 0.96rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

.about-card-org-sub {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sky-light);
  letter-spacing: 0.4px;
}

.about-card-main blockquote {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 2;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
  border-right: 3px solid rgba(41, 182, 246, 0.55);
  padding-right: 18px;
}

.about-card-main cite {
  color: var(--sky-light);
  font-style: normal;
  font-weight: 700;
  font-size: 0.88rem;
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 28px;
}

/* ── Separator ── */
.about-card-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

/* ── Mini numbers row ── */
.about-card-numbers {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: space-around;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.about-card-num {
  text-align: center;
  flex: 1;
}

.acn-val {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.acn-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.4px;
}

.about-card-num-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* ── Conference theme banner ── */
.about-card-theme {
  background: rgba(41, 182, 246, 0.12);
  border: 1px solid rgba(41, 182, 246, 0.25);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.about-card-theme i {
  color: var(--sky-light);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-card-theme strong {
  color: var(--sky-light);
  font-weight: 700;
}

/* ── Info badges row ── */
.about-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.about-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.about-badge i {
  color: var(--sky-light);
  font-size: 0.7rem;
}

/* Floating gold badge */
.about-floating {
  position: absolute;
  bottom: -10px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #2C1810;
  padding: 16px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(212, 168, 83, 0.45);
  animation: float 5s ease-in-out infinite;
  z-index: 10;
}

.about-floating .num {
  font-size: 2rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.about-floating .txt {
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 4px;
  display: block;
}

/* Decorative rings */
.about-deco-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-deco-ring--1 {
  width: 200px;
  height: 200px;
  top: -40px;
  right: -40px;
  border: 2px dashed rgba(21, 101, 192, 0.15);
  animation: float 8s ease-in-out infinite;
}

.about-deco-ring--2 {
  width: 120px;
  height: 120px;
  bottom: 80px;
  left: 30px;
  border: 2px dashed rgba(212, 168, 83, 0.2);
  animation: float 6s ease-in-out infinite reverse;
}

/* ── Content column ── */
.about-content {
  display: flex;
  flex-direction: column;
}

/* Body text */
.about-body-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 12px;
}

.about-slogan strong {
  color: var(--navy);
}

/* Feature grid */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 28px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 14px;
  background: linear-gradient(135deg, var(--bg) 0%, rgba(21, 101, 192, 0.04) 100%);
  border-radius: 14px;
  border: 1px solid rgba(21, 101, 192, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.about-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(13, 27, 122, 0.1);
  border-color: rgba(21, 101, 192, 0.25);
}

.about-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(13, 27, 122, 0.25);
}

.about-feature-icon i {
  font-size: 1.05rem;
  color: #fff;
}

.about-feature h4 {
  font-size: 0.87rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 3px;
}

.about-feature p {
  font-size: 0.77rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* CTA row in about section */
.about-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
}

/* ════════════════════════════════════════
   COMPACT LEADERSHIP & MEMORIAL SECTIONS
   (Dr. Ahmed Haroun, Dr. Mohamed Ghanem, Dr. Adel El Madany)
   ════════════════════════════════════════ */
.leader-compact-section {
  padding: 44px 0 34px;
  background: linear-gradient(160deg, #F0F5FC 0%, #E6EFF9 100%);
  position: relative;
  overflow: hidden;
}

.leader-compact-section--manager {
  padding: 34px 0 44px;
  background: linear-gradient(160deg, #F8FAFC 0%, #EEF4FB 100%);
}

.leader-compact-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px 36px;
  box-shadow: 0 10px 32px rgba(13, 27, 122, 0.08);
  border: 1.5px solid rgba(21, 101, 192, 0.12);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-compact-card:hover {
  box-shadow: 0 16px 40px rgba(13, 27, 122, 0.12);
}

.leader-compact-card--manager {
  border-color: rgba(13, 27, 122, 0.12);
}

/* Photo Box */
.leader-compact-photo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.leader-compact-photo-frame {
  width: 155px;
  height: 175px;
  position: relative;
  border-radius: 20px;
}

.leader-compact-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(13, 27, 122, 0.2);
  border: 2px solid rgba(21, 101, 192, 0.25);
  background: #ffffff;
}

.leader-compact-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: #ffffff;
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(13, 27, 122, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.leader-compact-badge--manager {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
}

/* Content */
.leader-compact-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.leader-compact-name {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  margin: 4px 0 2px;
  line-height: 1.2;
}

.leader-compact-title {
  font-size: 0.88rem;
  color: var(--blue);
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

.leader-compact-bio {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Stats Micro-Grid */
.leader-compact-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.leader-stat-chip {
  background: rgba(21, 101, 192, 0.05);
  border: 1px solid rgba(21, 101, 192, 0.15);
  border-radius: 12px;
  padding: 7px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.leader-stat-chip:hover {
  background: rgba(21, 101, 192, 0.1);
  transform: translateY(-2px);
}

.leader-stat-chip i {
  font-size: 1.15rem;
  color: var(--blue);
}

.leader-stat-chip strong {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
  line-height: 1.2;
}

.leader-stat-chip span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: block;
  font-weight: 600;
}

/* Actions */
.leader-compact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.84rem;
  border-radius: 100px;
}

/* ════════════════════════════════════════
   COMPACT MEMORIAL (DR. MOHAMED GHANEM)
   ════════════════════════════════════════ */
.memorial-compact-section {
  padding: 36px 0;
  background: #111C4E;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(212, 168, 83, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(56, 189, 248, 0.14) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.memorial-compact-card {
  background: linear-gradient(145deg, rgba(30, 58, 138, 0.65) 0%, rgba(20, 38, 108, 0.9) 100%);
  border: 1.5px solid rgba(212, 168, 83, 0.45);
  border-radius: 24px;
  padding: 26px 32px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
}

.memorial-compact-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.memorial-compact-photo-frame {
  width: 135px;
  height: 150px;
  position: relative;
  border-radius: 16px;
  border: 2px solid var(--memorial-gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  margin-bottom: 6px;
}

.memorial-compact-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  filter: grayscale(10%);
}

.memorial-compact-medal {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, #B8860B 100%);
  color: #14226C;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  border: 2px solid #14226C;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.memorial-compact-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.memorial-compact-dates {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 600;
}

.memorial-compact-prayer {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.72);
  font-style: italic;
  background: rgba(212, 168, 83, 0.12);
  padding: 3px 12px;
  border-radius: 6px;
  border: 1px solid rgba(212, 168, 83, 0.25);
}

.memorial-compact-content-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.memorial-compact-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.memorial-compact-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  background: rgba(212, 168, 83, 0.16);
  border: 1px solid rgba(212, 168, 83, 0.4);
}

.memorial-compact-verse {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  font-style: italic;
  margin: 0;
}

.memorial-compact-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.memorial-compact-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin: 0;
}

.memorial-compact-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.mem-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 168, 83, 0.28);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.mem-chip:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
}

.memorial-compact-sig {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  padding-top: 8px;
  margin-top: 4px;
}

.memorial-compact-sig strong {
  color: var(--gold-light);
  margin: 0 4px;
}

/* Responsive */
@media (max-width: 850px) {

  .leader-compact-card,
  .memorial-compact-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    padding: 24px 20px;
  }

  .leader-compact-actions,
  .leader-compact-stats,
  .memorial-compact-chips {
    justify-content: center;
  }

  .memorial-compact-topbar {
    justify-content: center;
  }
}

/* ════════════════════════════════════════
   TIMELINE — Compact Horizontal Cards
   ════════════════════════════════════════ */
#timeline {
  background: linear-gradient(180deg, var(--bg) 0%, #EEF2FF 100%);
  position: relative;
  overflow: hidden;
}

#timeline::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(21, 101, 192, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Outer wrapper — contains the line + scrollable track */
.tl-track-outer {
  position: relative;
  margin-top: 36px;
  margin-bottom: 44px;
}

/* Subtle background connecting glow line */
.tl-h-line {
  position: absolute;
  top: 96px;
  right: 40px;
  left: 40px;
  height: 3px;
  background: linear-gradient(90deg,
      rgba(212, 175, 55, 0.45) 0%,
      rgba(21, 101, 192, 0.3) 50%,
      rgba(41, 182, 246, 0.45) 100%);
  border-radius: 4px;
  z-index: 0;
  opacity: 0.6;
}

/* Scrollable row of cards */
.tl-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  gap: 18px;
  position: relative;
  z-index: 1;
  overflow-x: auto;
  padding: 10px 4px 18px;
  scrollbar-width: thin;
  scrollbar-color: rgba(21, 101, 192, 0.3) transparent;
}

.tl-track::-webkit-scrollbar {
  height: 6px;
}

.tl-track::-webkit-scrollbar-track {
  background: rgba(21, 101, 192, 0.05);
  border-radius: 6px;
}

.tl-track::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--gold, #d4af37), var(--blue, #1565c0));
  border-radius: 6px;
}

/* ── Modern Premium Card ── */
.tl-hcard {
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid rgba(21, 101, 192, 0.12);
  box-shadow: 0 8px 26px rgba(13, 27, 122, 0.07), 0 1px 3px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 20px 18px 16px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 385px;
}

/* Top ambient accent border */
.tl-hcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1565c0, #29b6f6);
  opacity: 0.85;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.tl-hcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgba(13, 27, 122, 0.16), 0 0 22px rgba(21, 101, 192, 0.12);
  border-color: rgba(21, 101, 192, 0.35);
}

.tl-hcard:hover::before {
  height: 5px;
  opacity: 1;
}

/* Gold (Founding) Variant */
.tl-hcard--gold {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 8px 26px rgba(139, 106, 32, 0.09);
  background: linear-gradient(180deg, #ffffff 0%, #fffef8 100%);
}

.tl-hcard--gold::before {
  background: linear-gradient(90deg, #b8860b, #f5d77f, #d4af37);
}

.tl-hcard--gold:hover {
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 20px 42px rgba(139, 106, 32, 0.22), 0 0 25px rgba(212, 175, 55, 0.2);
}

/* Latest (Sky-Blue) Variant */
.tl-hcard--latest {
  border-color: rgba(41, 182, 246, 0.4);
  box-shadow: 0 8px 26px rgba(41, 182, 246, 0.09);
  background: linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
}

.tl-hcard--latest::before {
  background: linear-gradient(90deg, #0288d1, #29b6f6, #80d8ff);
}

.tl-hcard--latest:hover {
  border-color: rgba(41, 182, 246, 0.8);
  box-shadow: 0 20px 42px rgba(2, 136, 209, 0.22), 0 0 25px rgba(41, 182, 246, 0.2);
}

/* ── Top Header Row ── */
.tl-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 8px;
  min-height: 28px;
}

.tl-card-year {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy, #0d1b7a);
  letter-spacing: -0.5px;
  line-height: 1;
  background: rgba(21, 101, 192, 0.06);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(21, 101, 192, 0.12);
}

.tl-hcard--gold .tl-card-year {
  color: #8B6A20;
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.25);
}

.tl-hcard--latest .tl-card-year {
  color: #0277bd;
  background: rgba(41, 182, 246, 0.1);
  border-color: rgba(41, 182, 246, 0.25);
}

.tl-card-badge {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
  letter-spacing: 0.3px;
}

.tl-card-badge--gold {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(245, 215, 127, 0.28));
  color: #8B6A20;
  border: 1px solid rgba(212, 175, 55, 0.45);
}

.tl-card-badge--sky {
  background: linear-gradient(135deg, rgba(41, 182, 246, 0.15), rgba(128, 216, 255, 0.25));
  color: #0277bd;
  border: 1px solid rgba(41, 182, 246, 0.45);
}

.tl-card-badge-placeholder {
  display: inline-block;
  width: 1px;
  height: 24px;
}

/* ── Center Edition Medallion (THE SIGNATURE CENTERPIECE) ── */
.tl-center-emblem-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 12px;
  position: relative;
}

.tl-center-emblem {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1565c0 0%, #0d1b7a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 0 0 5px rgba(21, 101, 192, 0.15),
    0 10px 22px rgba(13, 27, 122, 0.32),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.tl-hcard:hover .tl-center-emblem {
  transform: scale(1.1) rotate(2deg);
  box-shadow:
    0 0 0 7px rgba(21, 101, 192, 0.22),
    0 14px 28px rgba(13, 27, 122, 0.42),
    inset 0 2px 5px rgba(255, 255, 255, 0.4);
}

/* Gold Embellished Medallion */
.tl-center-emblem--gold {
  background: linear-gradient(145deg, #f5d77f 0%, #d4af37 40%, #8b6a20 100%);
  box-shadow:
    0 0 0 5px rgba(212, 175, 55, 0.22),
    0 10px 22px rgba(139, 106, 32, 0.35),
    inset 0 2px 5px rgba(255, 255, 255, 0.5);
}

.tl-hcard:hover .tl-center-emblem--gold {
  box-shadow:
    0 0 0 7px rgba(212, 175, 55, 0.35),
    0 14px 30px rgba(139, 106, 32, 0.45),
    inset 0 2px 6px rgba(255, 255, 255, 0.6);
}

/* Sky/Cyan Embellished Medallion */
.tl-center-emblem--sky {
  background: linear-gradient(145deg, #4fc3f7 0%, #0288d1 60%, #01579b 100%);
  box-shadow:
    0 0 0 5px rgba(41, 182, 246, 0.22),
    0 10px 22px rgba(2, 136, 209, 0.35),
    inset 0 2px 5px rgba(255, 255, 255, 0.4);
}

.tl-hcard:hover .tl-center-emblem--sky {
  box-shadow:
    0 0 0 7px rgba(41, 182, 246, 0.35),
    0 14px 30px rgba(2, 136, 209, 0.45),
    inset 0 2px 6px rgba(255, 255, 255, 0.5);
}

.tl-emblem-num {
  font-size: 1.55rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  font-family: 'Cairo', 'Inter', sans-serif;
}

.tl-center-emblem--gold .tl-emblem-num {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(70, 50, 5, 0.45);
}

.tl-emblem-tag {
  font-size: 0.55rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1;
  margin-top: 2px;
}

.tl-emblem-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
  transition: transform var(--transition-normal);
}

.tl-hcard:hover .tl-emblem-logo-img {
  transform: scale(1.1);
}

.tl-emblem-fa-icon {
  font-size: 1.4rem;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  margin-bottom: 2px;
}

/* ── Card Body Content ── */
.tl-card-body {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  margin-bottom: 12px;
}

.tl-hcard-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy, #0d1b7a);
  margin: 0;
  line-height: 1.35;
  transition: color 0.25s ease;
}

.tl-hcard:hover .tl-hcard-title {
  color: var(--blue, #1565c0);
}

.tl-hcard--gold:hover .tl-hcard-title {
  color: #8B6A20;
}

.tl-hcard--latest:hover .tl-hcard-title {
  color: #0277bd;
}

.tl-hcard-desc {
  font-size: 0.78rem;
  color: var(--text-secondary, #64748b);
  line-height: 1.55;
  margin: 0;
}

/* ── Chips / Metrics ── */
.tl-hcard-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 12px;
}

.tl-hchip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(21, 101, 192, 0.06);
  border: 1px solid rgba(21, 101, 192, 0.14);
  color: var(--blue, #1565c0);
  white-space: nowrap;
}

.tl-hchip i {
  font-size: 0.65rem;
  opacity: 0.85;
}

.tl-hchip--gold {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.35);
  color: #8B6A20;
}

.tl-hchip--sky {
  background: rgba(41, 182, 246, 0.1);
  border-color: rgba(41, 182, 246, 0.3);
  color: #0277bd;
}

/* ── Interactive Bottom Action ── */
.tl-card-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px dashed rgba(21, 101, 192, 0.15);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--blue, #1565c0);
  margin-top: auto;
  transition: all 0.25s ease;
}

.tl-card-action i {
  font-size: 0.72rem;
  transition: transform 0.25s ease;
}

.tl-hcard--gold .tl-card-action {
  color: #8B6A20;
  border-top-color: rgba(212, 175, 55, 0.25);
}

.tl-hcard--latest .tl-card-action {
  color: #0277bd;
  border-top-color: rgba(41, 182, 246, 0.25);
}

.tl-hcard:hover .tl-card-action {
  color: var(--navy, #0d1b7a);
}

.tl-hcard:hover .tl-card-action i {
  transform: translate(-3px, -2px);
}

html[dir="ltr"] .tl-hcard:hover .tl-card-action i {
  transform: translate(3px, -2px);
}

/* ── Growth summary bar ── */
.tl-growth-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(21, 101, 192, 0.12);
  box-shadow: 0 6px 24px rgba(13, 27, 122, 0.06);
  padding: 24px 32px;
  max-width: 750px;
  margin: 0 auto;
}

.tl-growth-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.tl-growth-item i {
  font-size: 1.35rem;
  color: var(--blue);
  margin-bottom: 4px;
}

.tl-gval {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.tl-glabel {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.tl-growth-sep {
  width: 1px;
  height: 48px;
  background: rgba(21, 101, 192, 0.12);
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   TRACKS & SCIENTIFIC SESSIONS
   ════════════════════════════════════════ */
#tracks {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

#tracks::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(37, 99, 235, 0.05) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
  z-index: 1;
}

.track-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 26px 28px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.04);
  display: flex;
  flex-direction: column;
}

/* Background Opacity Watermark Icon */
.track-bg-icon-box {
  position: absolute;
  bottom: -22px;
  inset-inline-end: -18px;
  font-size: 8rem;
  color: var(--navy);
  opacity: 0.045;
  pointer-events: none;
  line-height: 1;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

/* Top Accent Line */
.track-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--sky));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.track-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.12), 0 2px 8px rgba(30, 58, 138, 0.06);
}

.track-card:hover::before {
  opacity: 1;
}

.track-card:hover .track-bg-icon-box {
  transform: scale(1.15) rotate(-6deg);
  opacity: 0.12;
  color: var(--blue);
}

/* Card Header Row */
.track-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.track-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(14, 165, 233, 0.12) 100%);
  border: 1.5px solid rgba(37, 99, 235, 0.16);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  transition: all 0.3s ease;
}

.track-card:hover .track-icon-badge {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3);
}

.track-number {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-muted);
  opacity: 0.55;
  font-family: monospace, sans-serif;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.track-card:hover .track-number {
  color: var(--blue);
  opacity: 1;
}

.track-card h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.45;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.track-card:hover h3 {
  color: var(--blue-dark);
}

.track-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.track-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.track-tag {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.16);
  padding: 4px 12px;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.track-card:hover .track-tag {
  background: rgba(37, 99, 235, 0.14);
  border-color: var(--blue);
  color: var(--blue-dark);
}

@media (max-width: 992px) {
  .tracks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tracks-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════
   SPEAKERS
   ════════════════════════════════════════ */
#speakers {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

#speakers::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(13, 27, 122, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */
.speaker-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13, 27, 122, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s;
  text-align: center;
  border: 1px solid rgba(21, 101, 192, 0.08);
}

.speaker-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(13, 27, 122, 0.16);
  border-color: rgba(41, 182, 246, 0.3);
}

/* Photo wrapper — fixed height, clips the image */
.speaker-photo-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
}

/* Actual headshot image */
.speaker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  /* focus on the face */
  display: block;
  transition: transform 0.4s ease;
}

.speaker-card:hover .speaker-img {
  transform: scale(1.05);
}

/* Gradient overlay — fades bottom of photo into white card body */
.speaker-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
  pointer-events: none;
}

/* Text section */
.speaker-body {
  padding: 14px 18px 20px;
}

.speaker-name {
  font-size: 0.93rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.3;
}

.speaker-role {
  font-size: 0.78rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 8px;
}

.speaker-country {
  font-size: 0.76rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.speaker-country span {
  font-size: 1rem;
}


/* ════════════════════════════════════════
   COMPACT TESTIMONIALS
   ════════════════════════════════════════ */
#testimonials {
  background: linear-gradient(160deg, #182C7C 0%, #1E3F9E 100%);
  padding: 44px 0 40px;
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(56, 189, 248, 0.2) 0%, transparent 65%);
}

.testimonials-compact-header {
  margin-bottom: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonials-compact-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  margin: 4px auto 0;
  max-width: 600px;
  line-height: 1.6;
}

.testimonials-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.tcard-compact {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.tcard-compact:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(41, 182, 246, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.tcard-compact-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tcard-compact-stars {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 2px;
}

.tcard-compact-icon {
  color: var(--sky);
  font-size: 1.1rem;
  opacity: 0.7;
}

.tcard-compact-quote {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
  margin: 0;
}

.tcard-compact-author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  margin-top: 2px;
}

.tcard-compact-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  border: 1.5px solid rgba(41, 182, 246, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.tcard-compact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tcard-compact-name {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.tcard-compact-role {
  color: var(--sky-light);
  font-size: 0.75rem;
  margin: 0;
}

@media (max-width: 850px) {
  .testimonials-compact-grid {
    grid-template-columns: 1fr;
  }
}

display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}

.tcard-reel-title i {
  color: var(--sky-light);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.video-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.video-thumb {
  position: relative;
  padding-bottom: 56.25%;
  background: rgba(0, 0, 0, 0.4);
}

.video-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 14px 16px;
}

.video-info h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.video-info p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.74rem;
}


/* ════════════════════════════════════════
   SPONSORS & ACADEMIC PARTNERS
   ════════════════════════════════════════ */
#sponsors {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

#sponsors::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 15%, rgba(37, 99, 235, 0.04) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 85%, rgba(212, 168, 83, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.sponsors-categories {
  display: flex;
  flex-direction: column;
  gap: 44px;
  position: relative;
  z-index: 2;
}

.sponsors-category h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 22px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sponsors-category h3::before,
.sponsors-category h3::after {
  content: '';
  height: 1.5px;
  flex: 1;
  max-width: 140px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2));
}

html[dir="rtl"] .sponsors-category h3::before {
  background: linear-gradient(270deg, transparent, rgba(37, 99, 235, 0.2));
}

html[dir="rtl"] .sponsors-category h3::after {
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2));
}

.sponsors-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 86px;
  background: #F8FAFC;
  border-radius: 18px;
  border: 1.5px solid rgba(37, 99, 235, 0.12);
  padding: 14px 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.04);
}

.sponsor-logo:hover {
  border-color: var(--blue);
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.14);
  color: var(--blue);
  background: #ffffff;
  transform: translateY(-4px);
}

.tier-platinum {
  color: #1E3A8A !important;
}

.tier-gold {
  color: #B8860B !important;
}

.tier-silver {
  color: #475569 !important;
}


/* ════════════════════════════════════════
   APPLY & REGISTER PORTAL SECTION
   ════════════════════════════════════════ */
#register {
  background: linear-gradient(180deg, #182C7C 0%, #122062 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px;
}

#register::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

#register::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Category Selection Grid */
.apply-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 44px;
  position: relative;
  z-index: 2;
}

.apply-cat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 32px 24px 28px;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.apply-cat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.5);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.apply-cat-card.active {
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.35) 0%, rgba(22, 40, 122, 0.65) 100%);
  border-color: var(--sky);
  box-shadow: 0 0 0 2px var(--sky), 0 20px 50px rgba(14, 165, 233, 0.3);
  transform: translateY(-6px);
}

.apply-cat-card--sponsor.active {
  background: linear-gradient(145deg, rgba(212, 168, 83, 0.28) 0%, rgba(22, 40, 122, 0.65) 100%);
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold), 0 20px 50px rgba(212, 168, 83, 0.3);
}

.apply-cat-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--sky-light);
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.apply-cat-card.active .apply-cat-icon {
  background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}

.apply-cat-card--sponsor.active .apply-cat-icon {
  background: linear-gradient(135deg, var(--gold) 0%, #B8860B 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(212, 168, 83, 0.4);
}

.apply-cat-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.apply-cat-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 18px;
}

.apply-cat-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  text-align: right;
  margin-bottom: 22px;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
  padding-top: 16px;
}

.apply-cat-perk {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

.apply-cat-perk i {
  color: var(--sky-light);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.apply-cat-card--sponsor .apply-cat-perk i {
  color: var(--gold-light);
}

.apply-cat-btn {
  width: 100%;
  padding: 12px 20px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  margin-top: auto;
}

.apply-cat-card.active .apply-cat-btn {
  background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 100%);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.apply-cat-card--sponsor.active .apply-cat-btn {
  background: linear-gradient(135deg, var(--gold) 0%, #B8860B 100%);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.4);
  color: #14226C;
}

/* ════════════════════════════════════════
/* ════════════════════════════════════════
   POPUP REGISTRATION & APPLICATION MODAL (LIGHT LUXURY THEME)
   ════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
  padding: 20px;
  overflow-y: auto;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #ffffff;
  border: 1.5px solid rgba(37, 99, 235, 0.18);
  border-radius: 28px;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px 36px;
  box-shadow: 0 25px 80px rgba(30, 58, 138, 0.2), 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

/* Modal Top Accent Lines by Category */
.modal-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--sky));
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}

.modal-box--attendee::before {
  background: linear-gradient(90deg, #1E3A8A, #2563EB, #38BDF8);
}

.modal-box--speaker::before {
  background: linear-gradient(90deg, #312E81, #6366F1, #06B6D4);
}

.modal-box--sponsor::before {
  background: linear-gradient(90deg, #B8860B, #D4AF37, #F59E0B);
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F1F5F9;
  border: 1px solid rgba(37, 99, 235, 0.14);
  color: var(--navy);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 10;
}

html[dir="ltr"] .modal-close {
  left: auto;
  right: 20px;
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.12);
  border-color: #EF4444;
  color: #EF4444;
  transform: rotate(90deg);
}

/* Dedicated Modal Header & Badges */
.modal-dedicated-header {
  text-align: center;
  margin-bottom: 24px;
  padding-top: 4px;
}

.modal-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.modal-badge--attendee {
  background: rgba(37, 99, 235, 0.08);
  color: #1D4ED8;
  border: 1.5px solid rgba(37, 99, 235, 0.2);
}

.modal-badge--speaker {
  background: rgba(99, 102, 241, 0.08);
  color: #4F46E5;
  border: 1.5px solid rgba(99, 102, 241, 0.2);
}

.modal-badge--sponsor {
  background: rgba(212, 168, 83, 0.12);
  color: #996515;
  border: 1.5px solid rgba(212, 168, 83, 0.3);
}

.modal-title {
  font-size: 1.38rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 auto;
  line-height: 1.6;
  max-width: 580px;
}

/* Modal Form Fields */
.modal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.modal-field {
  display: flex;
  flex-direction: column;
}

.modal-field--full {
  margin-bottom: 16px;
}

.modal-field label {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-field label i {
  color: var(--blue);
  font-size: 0.82rem;
}

.modal-field label span[aria-hidden="true"] {
  color: #EF4444;
}

.modal-field input,
.modal-field select,
.modal-field textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  background: #F8FAFC;
  border: 1.5px solid rgba(37, 99, 235, 0.16);
  color: #0F172A;
  font-size: 0.92rem;
  font-family: inherit;
  transition: all 0.25s ease;
  outline: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.modal-field input::placeholder,
.modal-field textarea::placeholder {
  color: #94A3B8;
}

.modal-field input:focus,
.modal-field select:focus,
.modal-field textarea:focus {
  border-color: var(--blue);
  background: #ffffff;
  box-shadow: 0 0 0 3.5px rgba(37, 99, 235, 0.14);
}

.modal-field select {
  cursor: pointer;
}

.modal-field select option {
  background: #ffffff;
  color: #0F172A;
}

.modal-box--wide {
  max-width: 860px;
}

/* ════ Form Section Cards (Step Layout) ════ */
.form-section-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1.5px solid rgba(37, 99, 235, 0.14);
  border-radius: 20px;
  padding: 22px 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: all 0.3s ease;
}

.form-section-card:hover {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.06);
}

.form-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.form-section-step {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
  color: #ffffff;
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.form-section-info {
  flex: 1;
}

.form-section-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 3px;
}

.form-section-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

.req-star {
  color: #EF4444;
  font-weight: bold;
  margin-right: 2px;
}

/* ════ Custom Interactive Option Pills ════ */
.pill-group {
  display: flex;
  gap: 8px;
  width: 100%;
}

.pill-group--wrap {
  flex-wrap: wrap;
}

.pill-option {
  flex: 1;
  min-width: 72px;
  padding: 10px 14px;
  border-radius: 100px;
  background: #F1F5F9;
  border: 1.5px solid rgba(148, 163, 184, 0.3);
  color: #334155;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
}

.pill-option:hover {
  background: #E2E8F0;
  border-color: #CBD5E1;
  transform: translateY(-1px);
}

.pill-option.active {
  background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
  border-color: #2563EB;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.32);
}

.pill-option.active i {
  color: #93C5FD !important;
}

/* ════ Registration Type Choice Cards ════ */
.reg-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 4px;
}

.reg-choice-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: #FFFFFF;
  border: 1.8px solid rgba(203, 213, 225, 0.7);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.reg-choice-card:hover {
  border-color: #93C5FD;
  background: #F8FAFC;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.08);
}

.reg-choice-card.active {
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.04);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.16);
}

.reg-choice-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #94A3B8;
  margin-top: 2px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.reg-choice-card.active .reg-choice-radio {
  border-color: #2563EB;
  background: #2563EB;
}

.reg-choice-card.active .reg-choice-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFFFFF;
}

.reg-choice-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563EB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.reg-choice-card.active .reg-choice-icon {
  background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
  color: #FFFFFF;
}

.reg-choice-content {
  flex: 1;
}

.reg-choice-content h5 {
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 3px;
}

.reg-choice-content p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.45;
}

/* ════ Past Experience Question Items ════ */
.experience-field-item {
  width: 100%;
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
  transition: all 0.25s ease;
}

.experience-field-item:last-child {
  margin-bottom: 0;
}

.experience-field-item:hover,
.experience-field-item:focus-within {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.06);
}

.experience-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.experience-header label {
  margin-bottom: 0 !important;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--navy);
  flex: 1;
  min-width: 240px;
}

.exp-quick-btns {
  display: flex;
  gap: 6px;
}

.exp-quick-btn {
  padding: 4px 10px;
  font-size: 0.74rem;
  font-weight: 700;
  border-radius: 8px;
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.exp-quick-btn:hover {
  background: #E2E8F0;
  color: #0F172A;
  border-color: #94A3B8;
}

.experience-field-item textarea,
.modal-field textarea,
.modal-form textarea,
textarea {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  box-sizing: border-box !important;
  resize: vertical;
  min-height: 58px;
  font-size: 0.88rem;
  line-height: 1.55;
  padding: 12px 16px;
  border-radius: 14px;
}

/* ════ Success Pulse & Polish ════ */
.success-icon-pulse {
  font-size: 3.8rem;
  color: #10B981;
  margin-bottom: 16px;
  display: inline-block;
  animation: pulseSuccess 2s infinite ease-in-out;
}

@keyframes pulseSuccess {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(16, 185, 129, 0.4)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 16px rgba(16, 185, 129, 0.6)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(16, 185, 129, 0.4)); }
}

.modal-terms input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
}

.modal-terms label {
  font-size: 0.84rem;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
  font-weight: 600;
}

.modal-submit-btn {
  width: 100%;
  padding: 14px 28px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border: none;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.02rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.modal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.5);
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--blue-light) 100%);
}

.btn-sponsor-submit {
  background: linear-gradient(135deg, var(--gold) 0%, #B8860B 100%) !important;
  color: #070e4a !important;
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.4) !important;
}

.btn-sponsor-submit:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, #D4AF37 100%) !important;
  box-shadow: 0 10px 28px rgba(212, 168, 83, 0.55) !important;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #B8860B 100%);
  color: #070e4a !important;
  font-weight: 800;
  border: none;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, #D4AF37 100%);
}

.modal-success-box {
  text-align: center;
  padding: 24px 16px;
  animation: fadeIn 0.4s ease;
}

.modal-success-box h3 {
  color: var(--navy) !important;
}

.modal-success-box p {
  color: var(--text-secondary) !important;
}

.modal-success-box .modal-ref-pill {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 12px;
  padding: 10px 22px;
  display: inline-block;
  margin-bottom: 22px;
  font-weight: 700;
  color: var(--navy);
}

@media (max-width: 768px) {
  .modal-overlay {
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
    background: #ffffff;
    overflow-y: hidden;
  }

  .modal-box {
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 68px 20px 48px;
    position: fixed;
    inset: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .modal-overlay.open .modal-box {
    transform: translateY(0);
  }

  .modal-box::before {
    border-radius: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
  }

  .modal-close {
    position: fixed;
    top: 14px;
    left: 14px;
    width: 42px;
    height: 42px;
    background: #F1F5F9;
    border: 1px solid rgba(37, 99, 235, 0.16);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 102;
  }

  html[dir="ltr"] .modal-close {
    left: auto;
    right: 14px;
  }

  .modal-dedicated-header {
    margin-top: 6px;
    margin-bottom: 20px;
  }

  .modal-title {
    font-size: 1.22rem;
  }

  .modal-form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
#footer {
  background: linear-gradient(180deg, #16256E 0%, #101B52 100%);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer logo — on dark bg, use screen blend to remove white bg */
.footer-brand .logo img {
  height: 60px;
  mix-blend-mode: screen;
  filter: brightness(1.5) contrast(1.1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 24px;
  margin-top: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 2px;
  background: var(--sky);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '←';
  color: var(--sky);
  transition: transform 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-links a:hover::before {
  transform: translateX(-4px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-item .icon {
  width: 36px;
  height: 36px;
  background: rgba(41, 182, 246, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--sky-light);
}

.footer-contact-item p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
  line-height: 1.6;
}

.footer-contact-item strong {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 2px;
  font-size: 0.8rem;
}

.footer-bottom {
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
  margin: 0;
}

.footer-bottom a {
  color: var(--sky-light);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* ── Footer Developer Credit ── */
.footer-dev-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(41, 182, 246, 0.25);
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 0.86rem;
  direction: ltr;
  /* English text reads LTR */
  unicode-bidi: isolate;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-dev-credit:hover {
  border-color: rgba(41, 182, 246, 0.6);
  background: rgba(41, 182, 246, 0.1);
  box-shadow: 0 6px 24px rgba(41, 182, 246, 0.3);
  transform: translateY(-2px);
}

.footer-dev-credit .dev-text {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-family: var(--font-main);
  letter-spacing: 0.3px;
}

/* Animated Red Beating Heart */
.heart-animated {
  display: inline-block;
  font-size: 1.15rem;
  line-height: 1;
  animation: heartPulse 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  filter: drop-shadow(0 0 6px rgba(255, 51, 102, 0.75));
  transform-origin: center center;
  user-select: none;
}

@keyframes heartPulse {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.32);
    filter: drop-shadow(0 0 10px rgba(255, 51, 102, 0.95));
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.24);
    filter: drop-shadow(0 0 8px rgba(255, 51, 102, 0.85));
  }

  70% {
    transform: scale(1);
    filter: drop-shadow(0 0 6px rgba(255, 51, 102, 0.75));
  }

  100% {
    transform: scale(1);
  }
}

/* Eye-Catching SNT soft Brand with Animated Gradient & Glow */
.snt-soft-brand {
  font-weight: 800;
  font-size: 0.96rem;
  letter-spacing: 0.8px;
  background: linear-gradient(120deg, #00f2fe 0%, #4facfe 25%, #00e676 50%, #ffd600 75%, #00f2fe 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: sntGradientShift 4s ease infinite;
  filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.4));
  transition: all 0.3s ease;
  font-family: 'Tajawal', 'Cairo', sans-serif;
}

.snt-soft-brand:hover {
  filter: drop-shadow(0 0 14px rgba(0, 230, 118, 0.7)) brightness(1.25);
  transform: scale(1.06);
}

@keyframes sntGradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ════════════════════════════════════════
   SECTION HEADER HELPER
   ════════════════════════════════════════ */
.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

.section-header.center .divider {
  margin: 16px auto 0;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  #hero {
    padding: 85px 0 40px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 36px;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-tagline {
    margin-inline: auto;
  }

  .hero-meta {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual-col {
    margin-top: 10px;
    max-width: 440px;
  }

  .hero-logo-ring {
    width: 240px;
    height: 240px;
  }

  .hero-logo-img {
    width: 175px;
    height: 175px;
  }

  .hero-hub-aura {
    width: 270px;
    height: 270px;
  }

  .organizer-grid,
  .manager-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .organizer-photo-wrap,
  .manager-photo-wrap {
    align-items: center;
  }

  .organizer-achievements,
  .manager-achievements {
    justify-content: center;
  }

  .memorial-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .memorial-photo-wrap {
    align-items: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
    margin-bottom: 30px;
  }

  .apply-categories-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tracks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #hero {
    padding: 80px 0 35px;
  }

  .hero-badge {
    font-size: 0.85rem;
    padding: 6px 18px;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: clamp(1.85rem, 6.5vw, 2.6rem);
    margin-bottom: 14px;
  }

  .hero-tagline {
    font-size: 0.94rem;
    line-height: 1.75;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .hero-meta {
    gap: 8px;
    margin-bottom: 24px;
  }

  .hero-meta-item {
    padding: 5px 12px;
    border-radius: 50px;
  }

  .hero-meta-icon {
    width: 28px;
    height: 28px;
    font-size: 0.78rem;
  }

  .hero-meta-label {
    font-size: 0.62rem;
  }

  .hero-meta-value {
    font-size: 0.82rem;
  }

  .hero-actions {
    width: 100%;
    max-width: 360px;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 24px;
    font-size: 0.96rem;
  }

  .hero-visual-col {
    gap: 18px;
    max-width: 360px;
  }

  .hero-logo-ring {
    width: 190px;
    height: 190px;
  }

  .hero-logo-img {
    width: 140px;
    height: 140px;
    padding: 12px;
  }

  .hero-hub-aura {
    width: 220px;
    height: 220px;
  }

  .countdown-inline-card {
    padding: 8px 14px;
    border-radius: 16px;
  }

  .countdown-label {
    font-size: 0.78rem;
  }

  .countdown-unit {
    padding: 6px 9px;
    min-width: 48px;
    border-radius: 10px;
  }

  .countdown-num {
    font-size: 1.25rem;
  }

  .countdown-text {
    font-size: 0.62rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item::after {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .tracks-grid {
    grid-template-columns: 1fr;
  }

  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tl-track {
    grid-template-columns: repeat(5, minmax(170px, 1fr));
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .memorial-legacy {
    grid-template-columns: 1fr;
  }

  .apply-form-box {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-padding {
    padding: 64px 0;
  }

  .countdown-inline-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 12px 14px;
  }

  .countdown-label-group {
    justify-content: center;
  }

  .countdown {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .speakers-grid {
    grid-template-columns: 1fr;
  }

  .organizer-achievements,
  .manager-achievements {
    grid-template-columns: 1fr;
  }

  .modal-form-row {
    grid-template-columns: 1fr;
  }

  .about-cta-row {
    flex-direction: column;
  }
}

/* ════════════════════════════════════════════════
   BTN VARIANTS EXTRA
   ════════════════════════════════════════════════ */
.btn-sky {
  background: linear-gradient(135deg, var(--sky) 0%, #0288d1 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(41, 182, 246, 0.35);
}

.btn-sky:hover {
  background: linear-gradient(135deg, #0288d1 0%, var(--sky) 100%);
  box-shadow: 0 6px 20px rgba(41, 182, 246, 0.5);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════
   BACK-TO-TOP BUTTON
   ════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  /* left side in LTR; in RTL layout visually right */
  z-index: 9000;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(13, 27, 122, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 100%);
  box-shadow: 0 12px 32px rgba(41, 182, 246, 0.45);
  transform: translateY(-3px);
}



/* ════════════════════════════════════════════════
   VENUE & MAP SECTION
   ════════════════════════════════════════════════ */
#venue {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

#venue::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(21, 101, 192, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

#venue::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(41, 182, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Two-column layout */
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ── Info panel ── */
.venue-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.venue-info-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.venue-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(13, 27, 122, 0.25);
  font-size: 1.5rem;
  color: #fff;
}

.venue-info-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 4px;
}

.venue-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Detail rows */
.venue-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(21, 101, 192, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg);
}

.venue-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(21, 101, 192, 0.07);
  transition: background 0.2s;
}

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

.venue-detail-row:hover {
  background: rgba(21, 101, 192, 0.03);
}

.venue-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.12) 0%, rgba(13, 27, 122, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  font-size: 0.85rem;
}

.venue-detail-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.venue-detail-value {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}

/* Directions button */
.venue-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(13, 27, 122, 0.28);
  transition: transform 0.2s, box-shadow 0.2s;
  align-self: flex-start;
}

.venue-directions-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13, 27, 122, 0.38);
}

.venue-directions-btn i {
  font-size: 1.1rem;
}

/* ── Map wrapper ── */
.venue-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.venue-map-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(13, 27, 122, 0.1),
    0 20px 60px rgba(13, 27, 122, 0.14);
  border: 1px solid rgba(21, 101, 192, 0.12);
  height: 420px;
}

.venue-map-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Plus Code badge overlay */
.venue-map-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(13, 27, 122, 0.88);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.venue-map-badge i {
  color: var(--sky-light);
  font-size: 0.8rem;
}

/* Open in Google Maps link below map */
.venue-open-maps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(21, 101, 192, 0.06);
  border: 1px solid rgba(21, 101, 192, 0.15);
  border-radius: 12px;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.venue-open-maps:hover {
  background: rgba(21, 101, 192, 0.12);
  transform: translateY(-2px);
}

.venue-open-maps i {
  font-size: 1rem;
  color: #4285F4;
}

/* Responsive */
@media (max-width: 900px) {
  .venue-grid {
    grid-template-columns: 1fr;
  }

  .venue-map-inner {
    height: 320px;
  }
}


/* ════════════════════════════════════════════════
   LTR DIRECTIONALITY SUPPORT (ENGLISH MODE)
   ════════════════════════════════════════════════ */
html[dir="ltr"],
html[dir="ltr"] body {
  direction: ltr;
  text-align: left;
  font-family: 'Inter', 'Cairo', 'Segoe UI', -apple-system, sans-serif;
}

html[dir="ltr"] .section-header.center,
html[dir="ltr"] .hero-content.center,
html[dir="ltr"] .hero-countdown-wrap {
  text-align: center;
}

html[dir="ltr"] .section-label i,
html[dir="ltr"] .edition-badge i,
html[dir="ltr"] .ed-sec-badge i {
  margin-left: 0;
  margin-right: 6px;
}

html[dir="ltr"] .hero-chip i,
html[dir="ltr"] .btn i,
html[dir="ltr"] .apply-cat-perk i,
html[dir="ltr"] .tl-hchip i,
html[dir="ltr"] .apply-cat-btn i,
html[dir="ltr"] .modal-submit-btn i {
  margin-left: 0;
  margin-right: 6px;
}

html[dir="ltr"] .apply-cat-perks {
  text-align: left;
}

html[dir="ltr"] .footer-links a::before {
  content: '→';
}

html[dir="ltr"] .footer-links a:hover::before {
  transform: translateX(4px);
}

html[dir="ltr"] .footer-col h4::after {
  right: auto;
  left: 0;
}

html[dir="ltr"] .organizer-achievements,
html[dir="ltr"] .manager-achievements {
  direction: ltr;
}

html[dir="ltr"] .hero-actions {
  direction: ltr;
}

html[dir="ltr"] .countdown-unit-lbl {
  letter-spacing: 0.5px;
}

html[dir="ltr"] .ed-speaker-country {
  right: auto;
  left: 10px;
}

html[dir="ltr"] .back-home-btn i {
  transform: rotate(180deg);
}

html[dir="ltr"] .manager-quote-box i.fa-quote-right {
  transform: scaleX(-1);
}

html[dir="ltr"] .leader-compact-stats,
html[dir="ltr"] .memorial-compact-chips,
html[dir="ltr"] .leader-compact-actions {
  direction: ltr;
  text-align: left;
}

html[dir="ltr"] .leader-stat-chip i,
html[dir="ltr"] .memorial-compact-ribbon i {
  margin-left: 0;
  margin-right: 6px;
}

/* ══════════════════════════════════════════════════
   SPONSORS SECTION: SINGLE UNIFIED ROW LAYOUT
   ══════════════════════════════════════════════════ */
#sponsors {
  display: block;
  background: var(--bg-alt);
  position: relative;
}

.sponsors-single-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.sponsor-brand-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.sponsor-brand-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sponsor-brand-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25), 0 0 15px rgba(212, 168, 83, 0.15);
}

.sponsor-brand-card:hover::after {
  opacity: 1;
}

/* ════════════════════════════════════════
   SPONSORS & PARTNERS CAROUSEL
   ════════════════════════════════════════ */
.sponsors-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0 16px;
  width: 100%;
}

.sponsors-carousel-track-container {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  width: 100%;
  padding: 16px 6px;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.sponsors-carousel-track-container::-webkit-scrollbar {
  display: none;
}

.sponsors-carousel-track {
  display: flex;
  gap: 20px;
  align-items: stretch;
  width: max-content;
}

.sponsor-brand-card {
  min-width: 220px;
  max-width: 250px;
  background: #ffffff;
  border: 1.5px solid rgba(37, 99, 235, 0.14);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(30, 58, 138, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}

.sponsor-brand-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--blue);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.15), 0 0 0 1px var(--blue);
  background: #ffffff;
}

.sponsor-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(14, 165, 233, 0.08) 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.sponsor-brand-card:hover .sponsor-icon-wrap {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(14, 165, 233, 0.16) 100%);
  border-color: var(--blue);
}

.sponsor-brand-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.4;
}

.sponsor-sub-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

/* Carousel Nav Buttons */
.sponsors-carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid rgba(37, 99, 235, 0.18);
  color: var(--navy);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.12);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  z-index: 5;
}

.sponsors-carousel-arrow:hover {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
  transform: scale(1.1);
  box-shadow: 0 8px 22px rgba(30, 58, 138, 0.25);
}

/* ════════════════════════════════════════
   BECOME A SPONSOR CTA BANNER (Rich Luxury Navy & Gold)
   ════════════════════════════════════════ */
.sponsor-cta-banner,
#become-sponsor {
  margin-top: 48px;
  padding: 32px 36px;
  background: linear-gradient(135deg, #0A133A 0%, #122160 50%, #1A2F7C 100%) !important;
  border: 1.5px solid rgba(212, 168, 83, 0.45) !important;
  border-radius: 24px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 16px 45px rgba(10, 19, 58, 0.35), 0 0 25px rgba(212, 168, 83, 0.12) !important;
}

.sponsor-cta-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 280px;
}

.sponsor-cta-icon {
  font-size: 3rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(212, 168, 83, 0.3));
}

.sponsor-cta-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF !important;
  margin-bottom: 8px;
  line-height: 1.3;
}

.sponsor-cta-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88) !important;
  margin: 0;
  line-height: 1.7;
  max-width: 680px;
}

.sponsor-cta-btn {
  white-space: nowrap;
  padding: 14px 28px;
  font-weight: 800;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #D4A853 0%, #F5D77F 50%, #B8860B 100%) !important;
  color: #070E4A !important;
  border: none !important;
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.4) !important;
}

.sponsor-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 28px rgba(212, 168, 83, 0.6) !important;
}

@media (max-width: 768px) {
  .sponsor-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .sponsor-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .sponsor-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════
   SEARCHABLE SELECT DROPDOWN COMPONENT
   ══════════════════════════════════════════════════════ */
.searchable-select {
  position: relative;
  width: 100%;
}

.searchable-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #F8FAFC;
  border: 1.5px solid rgba(37, 99, 235, 0.16);
  border-radius: 14px;
  color: #0F172A;
  font-size: 0.92rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  text-align: inherit;
}

.searchable-select-trigger:hover {
  border-color: rgba(37, 99, 235, 0.4);
  background: #FFFFFF;
}

.searchable-select.open .searchable-select-trigger,
.searchable-select-trigger:focus {
  outline: none;
  border-color: var(--blue);
  background: #FFFFFF;
  box-shadow: 0 0 0 3.5px rgba(37, 99, 235, 0.14);
}

.searchable-select-trigger-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.searchable-select-trigger-text.placeholder {
  color: #94A3B8;
}

.searchable-select-arrow {
  color: #64748B;
  font-size: 0.8rem;
  transition: transform 0.25s ease;
  margin-inline-start: 10px;
}

.searchable-select.open .searchable-select-arrow {
  transform: rotate(180deg);
  color: var(--blue);
}

.searchable-select-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 1100;
  background: #FFFFFF;
  border: 1.5px solid rgba(37, 99, 235, 0.25);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(30, 58, 138, 0.16), 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 10px;
  display: none;
  animation: fadeInDropdown 0.2s ease forwards;
}

@keyframes fadeInDropdown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.searchable-select.open .searchable-select-dropdown {
  display: block;
}

.searchable-select-search-wrap {
  position: relative;
  margin-bottom: 8px;
}

.searchable-select-search-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-start: 12px;
  color: #94A3B8;
  font-size: 0.82rem;
  pointer-events: none;
}

.searchable-select-search-input {
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 8px 34px !important;
  font-size: 0.86rem !important;
  border-radius: 10px !important;
  background: #F1F5F9 !important;
  border: 1px solid #CBD5E1 !important;
  color: #0F172A !important;
  outline: none !important;
  transition: border-color 0.2s ease !important;
}

.searchable-select-search-input:focus {
  border-color: var(--blue) !important;
  background: #FFFFFF !important;
  box-shadow: 0 0 0 2.5px rgba(37, 99, 235, 0.12) !important;
}

.searchable-select-options {
  max-height: 220px;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(37, 99, 235, 0.3) transparent;
}

.searchable-select-options::-webkit-scrollbar {
  width: 6px;
}

.searchable-select-options::-webkit-scrollbar-thumb {
  background: rgba(37, 99, 235, 0.25);
  border-radius: 6px;
}

.searchable-select-option {
  padding: 9px 12px;
  font-size: 0.88rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #1E293B;
  transition: all 0.15s ease;
}

.searchable-select-option:hover,
.searchable-select-option.focused {
  background: rgba(37, 99, 235, 0.08);
  color: var(--navy);
}

.searchable-select-option.selected {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(14, 165, 233, 0.14) 100%);
  color: var(--navy);
  font-weight: 800;
}

.searchable-select-option.selected::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--blue);
  font-size: 0.78rem;
}

.searchable-select-empty {
  padding: 14px 10px;
  text-align: center;
  font-size: 0.84rem;
  color: #94A3B8;
  display: none;
}

/* ══════════════════════════════════════════════════════
   REGISTRATION INVESTMENT & VODAFONE CASH STYLES
   ══════════════════════════════════════════════════════ */
.reg-investment-box {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.98) 0%, rgba(241, 245, 249, 0.96) 100%);
  border: 1.5px solid rgba(37, 99, 235, 0.22);
  border-radius: 22px;
  padding: 26px 24px;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.05);
  position: relative;
}

.investment-box-header {
  text-align: center;
  margin-bottom: 22px;
}

.investment-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, rgba(245, 215, 127, 0.25) 100%);
  border: 1px solid rgba(212, 168, 83, 0.4);
  color: #855C0E;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.investment-box-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 6px;
  line-height: 1.35;
}

.investment-box-subtitle {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.55;
}

.investment-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.invest-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 22px 20px;
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.invest-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.1);
}

.invest-card--eg {
  border-color: rgba(212, 168, 83, 0.35);
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(254, 252, 246, 0.9) 100%);
}

.invest-card--eg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D4A853, #F5D77F, #B8860B);
}

.invest-card--intl {
  border-color: rgba(37, 99, 235, 0.3);
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(240, 249, 255, 0.9) 100%);
}

.invest-card--intl::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563EB, #38BDF8, #0EA5E9);
}

.invest-card-flag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.invest-card-flag span:first-child {
  font-size: 1.4rem;
}

.invest-flag-label {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy);
}

.invest-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.invest-card-price .currency {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.invest-card-price .amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.invest-card-price .usd-badge {
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
  margin-inline-start: 4px;
}

.invest-card-spelling {
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748B;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(203, 213, 225, 0.8);
}

.invest-card-perks {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.invest-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #334155;
  font-weight: 600;
}

.invest-perk i {
  color: #10B981;
  font-size: 0.85rem;
}

/* ── Vodafone Cash Section ── */
.vodafone-cash-box {
  background: #FFFFFF;
  border: 1.5px solid rgba(239, 68, 68, 0.22);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.04);
}

.vodafone-cash-header {
  margin-bottom: 16px;
}

.vodafone-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #DC2626;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.vodafone-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 4px;
}

.vodafone-desc {
  font-size: 0.85rem;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

.vodafone-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 16px 0;
}

.voda-number-card {
  background: #F8FAFC;
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  padding: 12px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  position: relative;
}

.voda-number-card:hover {
  background: #FFFFFF;
  border-color: #DC2626;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.12);
}

.voda-number-card.copied {
  background: #ECFDF5 !important;
  border-color: #10B981 !important;
}

.voda-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.voda-icon {
  font-size: 0.82rem;
  color: #DC2626;
}

.voda-pill-tag {
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  padding: 1px 6px;
  border-radius: 4px;
}

.voda-phone {
  display: block;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.5px;
  margin: 6px 0;
}

.voda-copy-btn {
  width: 100%;
  padding: 4px 8px;
  font-size: 0.74rem;
  font-weight: 700;
  border-radius: 6px;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: #475569;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.voda-number-card:hover .voda-copy-btn {
  background: #DC2626;
  color: #FFFFFF;
  border-color: #DC2626;
}

.voda-number-card.copied .voda-copy-btn {
  background: #10B981 !important;
  color: #FFFFFF !important;
  border-color: #10B981 !important;
}

.voda-confirm-notice {
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.6) 0%, rgba(254, 249, 195, 0.4) 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
}

.voda-confirm-notice .notice-icon {
  font-size: 1.25rem;
  color: #D97706;
  margin-top: 2px;
  flex-shrink: 0;
}

.voda-confirm-notice .notice-text {
  font-size: 0.84rem;
  color: #78350F;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .investment-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .vodafone-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .vodafone-numbers-grid {
    grid-template-columns: 1fr;
  }
}