/* ============================================
   CRMI – Global Stylesheet
   Brand Colors (from logo):
     --purple: #1C1470  (deep purple/indigo – shield & wings)
     --orange: #E07820  (orange – globe accent)
     --violet: #4928C4  (medium purple)
     --lavender: #EDE8FC (light purple tint)
     --light:   #F5F3FB
============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: #1E1B3A;
  background: #fff;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- CSS Variables ---- */
:root {
  --purple:   #1C1470;   /* deep purple (was --navy)  */
  --orange:   #E07820;   /* orange accent (was --gold) */
  --violet:   #4928C4;   /* medium purple (was --blue) */
  --lavender: #EDE8FC;   /* light purple tint (was --sky) */
  --light:    #F5F3FB;   /* page bg light */
  --text:     #1E1B3A;
  --muted:    #6B6890;
  --border:   #E4E1F2;
  --white:    #FFFFFF;
  --radius:   12px;
  --shadow:   0 4px 24px rgba(28,20,112,0.10);
  --shadow-lg:0 12px 48px rgba(28,20,112,0.16);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);

  /* Keep these aliases so older class references still work */
  --navy:  var(--purple);
  --gold:  var(--orange);
  --blue:  var(--violet);
  --sky:   var(--lavender);
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.2;
  color: var(--purple);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--muted); line-height: 1.75; }

.lead { font-size: 1.15rem; color: var(--muted); }
.text-orange { color: var(--orange); }
.text-purple { color: var(--purple); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section    { padding: 96px 0; }
.section-sm { padding: 60px 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(224,120,32,0.35);
}
.btn-primary:hover {
  background: #C86810;
  box-shadow: 0 6px 28px rgba(224,120,32,0.45);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--purple);
}
.btn-navy, .btn-purple {
  background: var(--purple);
  color: var(--white);
}
.btn-navy:hover, .btn-purple:hover {
  background: #2A1FA0;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ---- Badge ---- */
.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-orange   { background: rgba(224,120,32,0.15); color: var(--orange); }
.badge-violet   { background: var(--lavender); color: var(--violet); }
.badge-white    { background: rgba(255,255,255,0.2); color: var(--white); }

/* ---- Section Label ---- */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 40px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-label span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ---- Divider ---- */
.divider {
  width: 60px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 16px auto 0;
}
.divider-left { margin-left: 0; }

/* ================================================================
   HEADER / NAVIGATION  – Redesigned: clean two-row layout
================================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: var(--purple);
  box-shadow: 0 2px 24px rgba(28,20,112,0.28);
}

/* ---- Top contact bar ---- */
.top-bar {
  background: rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0;
  transition: opacity 0.3s;
}
.site-header.scrolled .top-bar {
  display: none; /* collapse on scroll */
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.top-bar-left  { display: flex; align-items: center; gap: 20px; }
.top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar a {
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; gap: 5px;
  transition: color 0.2s;
}
.top-bar a:hover { color: var(--orange); }
.top-bar svg { width: 12px; height: 12px; flex-shrink: 0; }
.top-bar-sep {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.15);
}

/* ---- Main nav bar ---- */
.nav-bar {
  background: transparent;
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-right: 32px;
}
.nav-logo img {
  height: 48px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 4px 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-text .abbr {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav-logo-text .full {
  font-size: 0.58rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-link svg.chevron {
  width: 12px; height: 12px;
  transition: transform 0.2s;
  opacity: 0.65;
}
.nav-item:hover .nav-link svg.chevron { transform: rotate(180deg); }

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(28,20,112,0.18);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: background 0.15s;
}
.dropdown-item:hover {
  background: var(--lavender);
  color: var(--purple);
}
.dropdown-item-icon {
  width: 30px; height: 30px;
  background: var(--lavender);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.dropdown-item:hover .dropdown-item-icon {
  background: var(--orange);
}
.dropdown-item-icon svg { width: 14px; height: 14px; color: var(--violet); }
.dropdown-item:hover .dropdown-item-icon svg { color: var(--white); }
.dropdown-item-text strong { display: block; font-size: 0.85rem; font-weight: 700; }
.dropdown-item-text span  { font-size: 0.75rem; color: var(--muted); }

.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 8px;
}

/* Nav CTAs */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 20px;
}
.btn-login {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  border: 1.5px solid rgba(255,255,255,0.25);
  background: transparent;
  transition: var(--transition);
}
.btn-login:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-join {
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 3px 14px rgba(224,120,32,0.4);
  transition: var(--transition);
}
.btn-join:hover {
  background: #C86810;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224,120,32,0.45);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--purple);
  padding-top: 110px; /* clear header */
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(28,20,112,0.97) 0%, rgba(28,20,112,0.82) 45%, rgba(73,40,196,0.70) 100%),
    url('https://images.unsplash.com/photo-1560179707-f14e90ef3623?w=1920&q=80') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,120,32,0.12) 0%, transparent 70%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73,40,196,0.2) 0%, transparent 70%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 40px 40px;
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.hero-eyebrow-line { width: 50px; height: 2px; background: var(--orange); }
.hero-eyebrow span {
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange);
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-desc {
  font-size: 1.1rem; color: rgba(255,255,255,0.72);
  margin-bottom: 40px; max-width: 560px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex; gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--orange); line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Countdown card */
.hero-right {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding-right: 24px;
}
.countdown-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px;
  width: 300px;
  text-align: center;
}
.countdown-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.countdown-card .conf-date {
  font-size: 0.78rem; color: var(--orange);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 24px;
}
.countdown-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 8px; margin-bottom: 24px;
}
.countdown-item {
  background: rgba(255,255,255,0.08);
  border-radius: 10px; padding: 12px 6px;
}
.countdown-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.countdown-label {
  font-size: 0.62rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-indicator svg { width: 18px; height: 18px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ================================================================
   TRUST BAR
================================================================ */
.trust-bar {
  background: var(--purple);
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-bar .container {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.6); font-size: 0.85rem; font-weight: 500;
}
.trust-icon {
  width: 32px; height: 32px;
  background: rgba(224,120,32,0.15);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 16px; height: 16px; color: var(--orange); }

/* ================================================================
   EVENTS & ANNOUNCEMENTS SECTION
================================================================ */
.events-section { background: var(--white); }
.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.events-header-left {}
.events-header-left .section-label { margin-bottom: 12px; }
.events-header-left h2 { margin-bottom: 0; }
.events-header-right {}

/* Tab filter */
.events-tabs {
  display: flex;
  gap: 6px;
  background: var(--light);
  border-radius: 50px;
  padding: 5px;
  margin-bottom: 36px;
}
.events-tab {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: transparent;
}
.events-tab.active {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(28,20,112,0.2);
}
.events-tab:not(.active):hover { color: var(--purple); background: rgba(28,20,112,0.06); }

/* Featured event */
.events-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.event-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple) 0%, #3A2AB8 100%);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.event-card-featured::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 30px 30px;
}
.event-featured-content {
  padding: 56px;
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  justify-content: center;
}
.event-featured-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.event-type-badge {
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.type-conference  { background: var(--orange); color: var(--white); }
.type-training    { background: rgba(255,255,255,0.15); color: var(--white); }
.type-announcement{ background: rgba(224,120,32,0.25); color: var(--orange); }
.type-programme   { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.type-news        { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }

.event-featured-date {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 5px;
}
.event-featured-date svg { width: 13px; height: 13px; color: var(--orange); }
.event-featured-content h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--white); margin-bottom: 14px;
}
.event-featured-content p {
  color: rgba(255,255,255,0.65); font-size: 0.95rem;
  line-height: 1.75; margin-bottom: 28px; max-width: 460px;
}
.event-detail-chips {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px;
}
.event-chip {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px; padding: 6px 14px;
  font-size: 0.8rem; color: rgba(255,255,255,0.75); font-weight: 500;
}
.event-chip svg { width: 13px; height: 13px; color: var(--orange); flex-shrink: 0; }

.event-featured-img {
  position: relative; overflow: hidden;
}
.event-featured-img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(28,20,112,0.6) 0%, transparent 50%);
  z-index: 1;
}
.event-featured-img img { width: 100%; height: 100%; object-fit: cover; }

/* Small event cards */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.event-card-top {
  padding: 24px 24px 0;
  display: flex; align-items: flex-start;
  justify-content: space-between;
}
.event-date-block {
  background: var(--lavender);
  border-radius: 10px;
  padding: 8px 14px;
  text-align: center;
  flex-shrink: 0;
}
.event-date-block .day {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--purple); line-height: 1;
}
.event-date-block .mon {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--orange); margin-top: 2px;
}
.event-card-body { padding: 16px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.event-card-body h4 {
  font-size: 1rem; color: var(--purple);
  font-family: 'Inter', sans-serif; font-weight: 700;
  margin-bottom: 8px; line-height: 1.4;
}
.event-card-body p {
  font-size: 0.83rem; line-height: 1.65; flex: 1; margin-bottom: 16px;
}
.event-card-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.event-card-meta {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.78rem; color: var(--muted); font-weight: 500;
}
.event-card-meta svg { width: 13px; height: 13px; color: var(--orange); }
.event-card-link {
  font-size: 0.8rem; font-weight: 700;
  color: var(--violet);
  display: flex; align-items: center; gap: 4px;
  transition: gap 0.2s;
}
.event-card-link:hover { gap: 8px; color: var(--orange); }
.event-card-link svg { width: 13px; height: 13px; }

/* Announcement card style */
.event-card.announcement {
  border-left: 4px solid var(--orange);
}
.event-card.announcement .event-date-block {
  background: rgba(224,120,32,0.12);
}
.event-card.announcement .event-date-block .day { color: var(--orange); }

/* ================================================================
   ABOUT SECTION (Homepage)
================================================================ */
.about-home { background: var(--white); }
.about-home-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; border-radius: 20px;
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 500px; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -32px; right: -32px;
  width: 220px; height: 220px; border-radius: 20px;
  overflow: hidden; border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.exp-badge {
  position: absolute; top: -20px; left: -20px;
  background: var(--orange);
  color: var(--white);
  border-radius: 16px; padding: 20px 24px;
  text-align: center; box-shadow: var(--shadow);
}
.exp-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700; line-height: 1;
}
.exp-badge .label {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 4px; opacity: 0.9;
}
.about-content .section-label { margin-bottom: 20px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p  { margin-bottom: 20px; }
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 32px 0;
}
.highlight-item { display: flex; align-items: flex-start; gap: 12px; }
.highlight-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--lavender); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.highlight-icon svg { width: 18px; height: 18px; color: var(--violet); }
.highlight-text h4 { font-size: 0.9rem; color: var(--purple); font-family: 'Inter', sans-serif; }
.highlight-text p  { font-size: 0.8rem; margin: 0; line-height: 1.5; }

/* ================================================================
   PILLARS
================================================================ */
.pillars { background: var(--light); }
.pillars-header { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.pillars-header .section-label { justify-content: center; }
.pillars-header .section-label::before { display: none; }
.pillars-header .divider { margin-top: 16px; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pillar-card {
  background: var(--white); border-radius: 20px;
  padding: 40px 32px; border: 1px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.pillar-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.pillar-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon {
  width: 64px; height: 64px; background: var(--lavender);
  border-radius: 16px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 24px; transition: var(--transition);
}
.pillar-card:hover .pillar-icon { background: var(--orange); }
.pillar-card:hover .pillar-icon svg { color: var(--white); }
.pillar-icon svg { width: 28px; height: 28px; color: var(--violet); }
.pillar-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.pillar-card p  { font-size: 0.9rem; line-height: 1.7; }

/* ================================================================
   MEMBERSHIP SECTION
================================================================ */
.membership { background: var(--purple); position: relative; overflow: hidden; }
.membership::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,120,32,0.08) 0%, transparent 70%);
}
.membership-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.membership-header .section-label { justify-content: center; }
.membership-header .section-label::before { display: none; }
.membership-header h2 { color: var(--white); }
.membership-header p  { color: rgba(255,255,255,0.6); }
.membership-header .divider { margin-top: 16px; }
.membership-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; position: relative; z-index: 1;
}
.membership-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 40px 32px;
  transition: var(--transition); text-align: center;
}
.membership-card.featured {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(224,120,32,0.4);
}
.membership-card:not(.featured):hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-tier {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 20px; padding: 6px 16px;
  border-radius: 50px; display: inline-block;
}
.membership-card:not(.featured) .card-tier {
  background: rgba(255,255,255,0.1); color: var(--orange);
}
.membership-card.featured .card-tier {
  background: rgba(28,20,112,0.2); color: var(--white);
}
.card-price { margin-bottom: 24px; }
.card-price .amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.membership-card.featured .card-price .amount { color: var(--white); }
.card-price .period {
  font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px;
}
.membership-card.featured .card-price .period { color: rgba(255,255,255,0.75); }
.card-title {
  font-size: 1.1rem; font-weight: 700; color: var(--white);
  font-family: 'Playfair Display', serif; margin-bottom: 8px;
}
.card-desc {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  margin-bottom: 28px; line-height: 1.6;
}
.membership-card.featured .card-desc { color: rgba(255,255,255,0.8); }
.card-features { text-align: left; margin-bottom: 32px; }
.card-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: 0.85rem; color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.card-features li:last-child { border-bottom: none; }
.check-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  background: rgba(255,255,255,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.check-icon svg { width: 10px; height: 10px; color: var(--orange); }
.membership-card.featured .check-icon svg { color: var(--white); }
.btn-card {
  display: inline-flex; width: 100%; justify-content: center;
  padding: 13px 24px; border-radius: 50px; font-size: 0.9rem;
  font-weight: 700; transition: var(--transition);
}
.membership-card:not(.featured) .btn-card {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.25); color: var(--white);
}
.membership-card:not(.featured) .btn-card:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5);
}
.membership-card.featured .btn-card {
  background: var(--white); color: var(--purple);
  border: 2px solid var(--white);
}
.membership-card.featured .btn-card:hover { background: rgba(255,255,255,0.9); }

/* ================================================================
   LEADERSHIP
================================================================ */
.leadership { background: var(--white); }
.leadership-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.leadership-header .section-label { justify-content: center; }
.leadership-header .section-label::before { display: none; }
.leadership-header .divider { margin-top: 16px; }
.leadership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.leader-card { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.leader-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.leader-photo { position: relative; height: 280px; overflow: hidden; background: var(--light); }
.leader-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.leader-card:hover .leader-photo img { transform: scale(1.05); }
.leader-info { padding: 24px; }
.leader-info h4 { font-size: 1.05rem; color: var(--purple); margin-bottom: 4px; }
.leader-title { font-size: 0.8rem; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.leader-bio { font-size: 0.82rem; line-height: 1.6; }
.leader-featured {
  grid-column: span 3;
  display: grid; grid-template-columns: 300px 1fr;
  gap: 0; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.leader-featured .leader-photo { height: 100%; min-height: 360px; }
.leader-featured .leader-info {
  padding: 48px; background: var(--purple);
  display: flex; flex-direction: column; justify-content: center;
}
.leader-featured h4 {
  font-size: 1.7rem; color: var(--white);
  font-family: 'Playfair Display', serif; margin-bottom: 6px;
}
.leader-featured .leader-title { font-size: 0.9rem; margin-bottom: 20px; }
.leader-featured .leader-bio { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.8; margin-bottom: 28px; }
.leader-featured .credentials { display: flex; gap: 10px; flex-wrap: wrap; }
.credential-tag {
  padding: 6px 14px; background: rgba(255,255,255,0.08);
  border-radius: 50px; font-size: 0.78rem;
  color: rgba(255,255,255,0.7); font-weight: 600;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ================================================================
   STATS BAND
================================================================ */
.stats-band {
  background: linear-gradient(135deg, var(--purple) 0%, #2A1FA0 100%);
  padding: 72px 0; position: relative; overflow: hidden;
}
.stats-band::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 30px 30px;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; position: relative; z-index: 1; }
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem; color: rgba(255,255,255,0.55); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.stat-divider { position: relative; }
.stat-divider::before {
  content: ''; position: absolute; left: 0; top: 50%;
  height: 60px; width: 1px;
  background: rgba(255,255,255,0.1); transform: translateY(-50%);
}

/* ================================================================
   CONFERENCE BANNER
================================================================ */
.conference { background: var(--light); }
.conference-inner {
  background: linear-gradient(135deg, var(--purple) 0%, #2A1FA0 50%, var(--violet) 100%);
  border-radius: 28px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 420px; position: relative;
}
.conference-inner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 32px 32px;
}
.conference-content { padding: 72px; position: relative; z-index: 1; }
.conference-content .section-label { margin-bottom: 20px; }
.conference-content h2 { color: var(--white); margin-bottom: 16px; }
.conference-content p  { color: rgba(255,255,255,0.65); margin-bottom: 32px; font-size: 1rem; }
.conf-details { display: flex; gap: 32px; margin-bottom: 40px; }
.conf-detail {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); font-size: 0.9rem;
}
.conf-detail svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }
.conference-visual { position: relative; overflow: hidden; }
.conference-visual::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to left, transparent 40%, rgba(28,20,112,0.6) 100%); z-index: 1;
}
.conference-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ================================================================
   TRAINING CALENDAR
================================================================ */
.training { background: var(--white); }
.training-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.training-header .section-label { justify-content: center; }
.training-header .section-label::before { display: none; }
.training-header .divider { margin-top: 16px; }
.training-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.training-card { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: var(--transition); }
.training-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-4px); }
.training-month {
  padding: 20px 24px; background: var(--purple);
  display: flex; align-items: center; justify-content: space-between;
}
.training-month h4 { color: var(--white); font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; }
.training-month .year { font-size: 0.8rem; color: var(--orange); font-weight: 600; }
.training-body { padding: 24px; }
.training-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.training-item:last-child { border-bottom: none; padding-bottom: 0; }
.training-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 6px; }
.training-item-text { font-size: 0.85rem; color: var(--text); line-height: 1.5; font-weight: 500; }
.training-item-date { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials { background: var(--light); }
.testimonials-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.testimonials-header .section-label { justify-content: center; }
.testimonials-header .section-label::before { display: none; }
.testimonials-header .divider { margin-top: 16px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--white); border-radius: 20px;
  padding: 36px; border: 1px solid var(--border); transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; line-height: 0.8; color: var(--orange);
  opacity: 0.3; margin-bottom: 16px; display: block;
}
.testimonial-text {
  font-size: 0.92rem; line-height: 1.8; color: var(--text);
  margin-bottom: 28px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--lavender); overflow: hidden; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-avatar-placeholder {
  width: 100%; height: 100%; display: flex;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--violet));
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  font-weight: 700; color: var(--white);
}
.author-name { font-size: 0.9rem; font-weight: 700; color: var(--purple); }
.author-role { font-size: 0.78rem; color: var(--muted); }
.stars { display: flex; gap: 2px; margin-bottom: 2px; }
.stars svg { width: 12px; height: 12px; color: var(--orange); }

/* ================================================================
   CTA SECTION
================================================================ */
.cta-section { background: var(--white); padding: 96px 0; }
.cta-inner {
  background: linear-gradient(135deg, var(--orange) 0%, #C86810 100%);
  border-radius: 28px; padding: 72px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 28px 28px;
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { color: var(--white); margin-bottom: 16px; }
.cta-inner p  { color: rgba(255,255,255,0.8); margin-bottom: 36px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   FOOTER
================================================================ */
.site-footer { background: #0D0A2E; color: rgba(255,255,255,0.6); padding-top: 80px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p { margin-top: 16px; font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-link:hover { background: var(--orange); border-color: var(--orange); }
.social-link svg { width: 16px; height: 16px; color: rgba(255,255,255,0.7); }
.social-link:hover svg { color: var(--white); }
.footer-col h5 {
  font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--white); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 16px; font-size: 0.85rem;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: 0.82rem; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: var(--orange); }
.footer-bottom a:hover { text-decoration: underline; }

/* ================================================================
   PAGE HERO (Inner Pages)
================================================================ */
.page-hero {
  background: var(--purple);
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 36px 36px;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 60px; background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 0.82rem; }
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }

/* ================================================================
   ABOUT PAGE
================================================================ */
.about-story { background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-content .section-label { margin-bottom: 20px; }
.story-content h2 { margin-bottom: 20px; }
.story-content p  { margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.value-card {
  padding: 32px; background: var(--light); border-radius: 16px;
  text-align: center; border: 1px solid var(--border); transition: var(--transition);
}
.value-card:hover { background: var(--purple); border-color: var(--purple); }
.value-card:hover h3 { color: var(--white); }
.value-card:hover p  { color: rgba(255,255,255,0.6); }
.value-card:hover .value-icon { background: rgba(224,120,32,0.2); }
.value-card:hover .value-icon svg { color: var(--orange); }
.value-icon {
  width: 56px; height: 56px; background: var(--lavender); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; transition: var(--transition);
}
.value-icon svg { width: 24px; height: 24px; color: var(--violet); }
.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p  { font-size: 0.85rem; }
.objectives { background: var(--light); }
.objectives-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.objective-item {
  display: flex; gap: 16px; background: var(--white);
  padding: 24px; border-radius: 14px; border: 1px solid var(--border); transition: var(--transition);
}
.objective-item:hover { box-shadow: var(--shadow); border-color: var(--orange); }
.obj-num {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  font-weight: 700; color: var(--orange); opacity: 0.4;
  line-height: 1; flex-shrink: 0; width: 48px;
}
.obj-text h4 { font-size: 1rem; margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.obj-text p  { font-size: 0.85rem; line-height: 1.6; }

/* ================================================================
   MEMBERSHIP PAGE
================================================================ */
.benefits-section { background: var(--light); }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.benefit-item {
  display: flex; gap: 20px; background: var(--white);
  padding: 28px; border-radius: 14px; border: 1px solid var(--border); transition: var(--transition);
}
.benefit-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.benefit-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--lavender); border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
}
.benefit-icon svg { width: 22px; height: 22px; color: var(--violet); }
.benefit-content h4 { font-size: 1rem; margin-bottom: 6px; font-family: 'Inter', sans-serif; font-weight: 700; }
.benefit-content p  { font-size: 0.85rem; line-height: 1.6; }

/* ================================================================
   RESPONSIVE
================================================================ */

/* ---- 1024px — tablets landscape ---- */
@media (max-width: 1024px) {
  .section    { padding: 72px 0; }
  .section-sm { padding: 48px 0; }

  .hero-right { display: none; }

  .about-home-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-accent { display: none; }
  .about-img-main img { height: 380px; }

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

  .membership-cards { grid-template-columns: 1fr 1fr; max-width: none; }
  .membership-card.featured { transform: none; }

  .leadership-grid { grid-template-columns: 1fr; }
  .leader-featured { grid-column: span 1; }

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

  .conference-inner { grid-template-columns: 1fr; }
  .conference-visual { height: 280px; }

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

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

  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .objectives-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }

  .event-card-featured { grid-template-columns: 1fr; grid-column: span 1; }
  .event-featured-img { height: 260px; }
  .events-featured { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr 1fr; }

  .grid-4 { grid-template-columns: 1fr 1fr !important; }
  .grid-2 { grid-template-columns: 1fr !important; }
  .join-steps { grid-template-columns: 1fr 1fr !important; }
}

/* ---- 900px — mobile nav breakpoint ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-toggle { display: flex; }
  .top-bar { display: none !important; }

  /* Mobile nav drawer */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--purple);
    z-index: 999;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    padding: 80px 24px 40px;
    overflow-y: auto;
  }
  .nav-links.open .nav-item { width: 100%; max-width: 340px; }
  .nav-links.open .nav-link {
    font-size: 1.1rem;
    padding: 14px 20px;
    width: 100%;
    border-radius: 12px;
  }
  .nav-links.open .dropdown {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 10px;
    margin-top: 4px;
  }
  .nav-links.open .dropdown-item { color: rgba(255,255,255,0.75); }
  .nav-links.open .dropdown-item:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
  }
  .nav-links.open .dropdown-item-icon {
    background: rgba(255,255,255,0.08);
  }
  .nav-links.open .dropdown-item-text span { color: rgba(255,255,255,0.45); }
  .nav-links.open .nav-cta {
    display: flex;
    margin-top: 24px;
    gap: 12px;
    width: 100%;
    max-width: 340px;
  }
  .nav-links.open .btn-login,
  .nav-links.open .btn-join {
    flex: 1;
    text-align: center;
    justify-content: center;
    padding: 12px 16px;
  }

  /* Close button in nav */
  #nav-close-btn {
    position: fixed;
    top: 20px; right: 20px;
    z-index: 1000;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: white;
  }
}

/* ---- 768px — tablets portrait / large phones ---- */
@media (max-width: 768px) {
  .section    { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .container  { padding: 0 16px; }

  h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* Hero */
  .hero { padding-top: 90px; min-height: auto; padding-bottom: 60px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Events */
  .events-header { flex-direction: column; align-items: flex-start; }
  .events-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 50px;
    padding-bottom: 4px;
  }
  .events-tabs::-webkit-scrollbar { display: none; }
  .events-tab { white-space: nowrap; flex-shrink: 0; }
  .events-grid { grid-template-columns: 1fr; }
  .events-featured { grid-template-columns: 1fr; }
  .event-card-featured { grid-template-columns: 1fr; }
  .event-featured-content { padding: 32px 24px; }
  .event-featured-img { height: 220px; }

  /* About */
  .about-img-main img { height: 280px; }
  .about-highlights { grid-template-columns: 1fr; }

  /* Pillars */
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card  { padding: 28px 24px; }

  /* Membership */
  .membership-cards { grid-template-columns: 1fr; }

  /* President card */
  .president-card { grid-template-columns: 1fr !important; }
  .president-photo { height: 300px !important; min-height: unset !important; }
  .president-photo img { min-height: unset !important; height: 300px !important; }
  .president-info { padding: 28px 24px !important; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number { font-size: 2.2rem; }
  .stat-divider::before { display: none; }

  /* Conference */
  .conference-content { padding: 36px 28px; }
  .conf-details { flex-direction: column; gap: 12px; }

  /* Training */
  .training-grid { grid-template-columns: 1fr; }
  .training-cta-grid { grid-template-columns: 1fr !important; text-align: center; padding: 36px 24px !important; }
  .training-cta-grid .btn { width: 100%; justify-content: center; }

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

  /* CTA */
  .cta-inner { padding: 48px 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Trust bar */
  .trust-bar .container { justify-content: center; gap: 16px; }

  /* Inline grids */
  .grid-4 { grid-template-columns: 1fr 1fr !important; }
  .grid-2 { grid-template-columns: 1fr !important; }
  .join-steps { grid-template-columns: 1fr 1fr !important; }

  /* About page */
  .values-grid { grid-template-columns: 1fr; }

  /* Page hero */
  .page-hero { padding: 120px 0 60px; }
}

/* ---- 480px — small phones ---- */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section   { padding: 48px 0; }

  h1 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  h2 { font-size: clamp(1.4rem, 6vw, 1.8rem); }

  .btn { padding: 13px 24px; font-size: 0.9rem; }

  /* Hero */
  .hero-stats { flex-direction: column; gap: 20px; padding-top: 28px; }
  .hero-stat-num { font-size: 1.6rem; }

  /* Events tabs scroll */
  .events-tabs { gap: 4px; padding: 4px; }
  .events-tab  { padding: 8px 16px; font-size: 0.8rem; }

  /* Stats band */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stats-band { padding: 48px 0; }

  /* Conference */
  .conference-content { padding: 28px 20px; }
  .conference-inner { border-radius: 16px; }

  /* Membership cards */
  .membership-card { padding: 28px 20px; }

  /* Leader card */
  .leader-featured .leader-info { padding: 28px 20px; }

  /* Footer */
  .footer-social { flex-wrap: wrap; }

  /* Inline grids go single column */
  .grid-4      { grid-template-columns: 1fr !important; }
  .join-steps  { grid-template-columns: 1fr !important; }
  .join-steps > div:nth-child(n) > div[style*="position:absolute"] { display: none; }

  /* Nav logo — hide long text on tiny screens */
  .nav-logo-text .full { display: none; }
  .nav-logo img { height: 40px; }

  /* CTA inner */
  .cta-inner { padding: 36px 16px; border-radius: 20px; }

  /* Page hero */
  .page-hero { padding: 100px 0 48px; }

  /* Training filter */
  .filter-bar { top: 72px; }
}

/* ================================================================
   ANIMATIONS
================================================================ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }
