/* =========================================================
   CONFERA — REDESIGNED STYLES
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Cormorant+Garamond:ital,wght@1,400;1,500&display=swap');

:root {
  --white:        #FFFFFF;
  --black:        #171717;
  --slate:        #64748B;
  --emerald:      #5e5e5e;
  --emerald-dark: #2c2e3a;
  --emerald-light:#d7e6de;
  --bg:           #F8FAFC;
  --bg-mid:       #F1F5F9;
  --border:       #E2E8F0;
  --border-mid:   #CBD5E1;
  --text:         #333333;
  --text-mid:     #444444;
  --text-soft:    #555555;
  --text-muted:   #777777;
  --text-dark:    #1e1e1e;

  --grad-emerald: linear-gradient(135deg, #ddeee8 0%, #3d5252 100%);
  --grad-dark:    linear-gradient(135deg, #f7f7f7 0%, #f3f3f3 100%);
  --grad-hero:    linear-gradient(135deg, #296870 0%, #242322fb 50%, #375a57 100%);

  --shadow-sm:    0 1px 3px rgba(23,23,23,0.06), 0 1px 2px rgba(23,23,23,0.04);
  --shadow-md:    0 4px 24px rgba(16,185,129,0.08), 0 2px 8px rgba(23,23,23,0.06);
  --shadow-lg:    0 20px 60px rgba(16,185,129,0.12), 0 8px 24px rgba(23,23,23,0.08);
  --shadow-card:  0 2px 16px rgba(23,23,23,0.06), 0 1px 4px rgba(23,23,23,0.04);
  --transition:   all 0.3s cubic-bezier(0.4,0,0.2,1);
  --radius:       12px;
  --radius-lg:    20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.py-section    { padding: 100px 0; }
.py-section-sm { padding: 64px 0; }
.bg-off-white  { background: var(--bg); }
.bg-navy       { background: var(--black); }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #000000;
  background:white;
  border: 1px solid rgba(178,228,211,0.192);
  padding: 6px 16px 6px 12px; border-radius: 100px; margin-bottom: 18px;
}
.section-tag::before {
  content: ''; width: 7px; height: 7px;
  background: var(--emerald); border-radius: 50%; flex-shrink: 0;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 700; color: #ffffff; line-height: 1.2; margin-bottom: 18px;
}
.section-title .highlight { color: var(--blue); }
.section-divider {
  width: 52px; height: 3px;
  background: var(--grad-emerald); border-radius: 2px; margin-bottom: 28px;
}
.section-divider.center { margin-left: auto; margin-right: auto; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-primary, .btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black); color: rgb(255, 254, 254);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; font-weight: 700;
  padding: 15px 32px; border-radius: 8px; border: none; cursor: pointer;
  transition: var(--transition); box-shadow: 0 4px 16px rgb(255, 255, 255);
  text-decoration: none;
}
.btn-primary:hover, .btn-gold:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgb(156, 158, 157);
}
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: white; border: 2px solid rgba(255,255,255,0.65);
  font-size: 0.9rem; font-weight: 700;
  padding: 14px 32px; border-radius: 8px;
  transition: var(--transition); text-decoration: none;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--emerald-dark); border: 2px solid var(--emerald);
  font-size: 0.9rem; font-weight: 700;
  padding: 14px 32px; border-radius: 8px;
  transition: var(--transition); text-decoration: none;
}
.btn-outline:hover { background: var(--emerald); color: white; }
.btn-navy, .btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black); color: white;
  font-size: 0.9rem; font-weight: 700; padding: 15px 32px; border-radius: 8px;
  transition: var(--transition); text-decoration: none;
}
.btn-navy:hover, .btn-dark:hover { background: #2d2d2d; transform: translateY(-1px); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--black);
  font-size: 0.9rem; font-weight: 700; padding: 15px 32px; border-radius: 8px;
  transition: var(--transition); text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(23,23,23,0.05);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(94, 153, 185, 0.08); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 88px; max-width: 1200px; margin: 0 auto; padding: 0 40px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 800; color:black;
  display: flex; align-items: center; gap: 2px;
  margin-left: -40px;
}

.logo span { color: var(--emerald); margin-left: 4px; font-size: 1.45rem; font-weight: 600; opacity: 0.9; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 0.9rem; font-weight: 600; color: #222;
  padding: 9px 15px; border-radius: 8px; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: #222; background: #f5f5f5; }
.nav-cta {
   color: white ;
  padding: 10px 22px !important; border-radius: 8px !important;
  box-shadow: 0 2px 10px rgba(209, 255, 240, 0.3) !important;
}
.nav-cta:hover { background: var(--white) !important; color: white !important; transform: translateY(-1px); }
.nav-item { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: var(--transition); z-index: 100; overflow: hidden;
}
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 11px 18px !important; font-size: 0.88rem !important;
  color: var(--text-mid) !important; border-bottom: 1px solid var(--border);
  background: white !important; transition: var(--transition);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { color: var(--emerald-dark) !important; background: var(--bg) !important; padding-left: 22px !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--black); transition: var(--transition); }
.mobile-nav { display: none; flex-direction: column; background: white; border-top: 1px solid var(--border); padding: 16px 0; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--text-mid); font-size: 1rem; font-weight: 600; padding: 13px 40px; border-bottom: 1px solid var(--border); transition: var(--transition); }
.mobile-nav a:hover { color: var(--emerald-dark); background: var(--bg); }

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #1a3a3f 0%, #2c2e3a 50%, #1e3535 100%);
  padding: 100px 0 60px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.15;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800; color: white; margin-bottom: 12px;
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.breadcrumb a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ─── HERO (landing) ──────────────────────────────────────── */
.hero-section {
  position: relative; overflow: hidden;
  padding: 140px 0 100px;
  min-height: 88vh; display: flex; align-items: center;
}
.hero-bg-image {
  position: absolute; inset: 0;
  background-image: url('https://www.fisu.net/app/uploads/2024/01/DAA_1027-scaled.jpg');
  background-size: cover; background-position: center;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,20,18,0.55) 0%, rgba(10,20,18,0.45) 60%, rgba(10,20,18,0.60) 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(16,185,129,0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 15%, rgba(16,185,129,0.05) 0%, transparent 45%);
}
.hero-content { position: relative; z-index: 1; width: 100%; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 5rem); font-weight: 800; color: white; line-height: 1.12; margin-bottom: 22px;
}
.hero-title .gold-text { color: var(--emerald); }
.gold-text { color: var(--emerald); -webkit-text-fill-color: var(--emerald); }
.hero-subtitle { font-size: 1.2rem; color: rgba(255,255,255,0.78); line-height: 1.85; max-width: 520px; margin-bottom: 40px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #f9fffc; border: 1px solid rgba(0, 0, 0, 0.445); background: rgba(2, 41, 28, 0.12);
  padding: 8px 18px; border-radius: 100px; margin-bottom: 26px;
}
.hero-badge::before { content: ''; width: 7px; height: 7px; background: var(--emerald); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }

/* ─── COUNTDOWN BOX ──────────────────────────────────────── */
.countdown-box {
  background: white; border-radius: var(--radius-lg); padding: 40px 36px; text-align: center;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
  border: 1px solid var(--border);
}
.countdown-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-emerald); }
.countdown-number {
  font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 800;
  color: var(--black); line-height: 1;
}
.countdown-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate); display: block; margin-top: 5px;
}
.countdown-sep { font-size: 2rem; font-weight: 700; color: var(--border-mid); }

/* ─── STATS BAR ──────────────────────────────────────────── */
.stats-bar { background: white; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.stat-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 36px 20px; border-right: 1px solid var(--border); text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800;
  color: var(--emerald-dark); line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--slate);
}

/* ─── MARQUEE ────────────────────────────────────────────── */
.marquee-wrap { background: var(--black); overflow: hidden; padding: 15px 0; }
.marquee-track { display: flex; animation: marquee 32s linear infinite; width: max-content; }
.marquee-item {
  display: flex; align-items: center; gap: 10px; padding: 0 36px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); white-space: nowrap;
}
.marquee-dot { width: 6px; height: 6px; background: var(--emerald); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── CONFERENCE CARDS ───────────────────────────────────── */
.conf-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); border: 1px solid var(--border); transition: var(--transition);
}
.conf-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(16,185,129,0.25); }
.conf-card-header {
  background: var(--grad-hero); padding: 32px 28px 28px; position: relative; overflow: hidden;
  min-height: 160px; display: flex; flex-direction: column; justify-content: flex-end;
}
.conf-card-badge {
  display: inline-flex; align-items: center; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgb(0, 0, 0);
  background: rgba(247, 255, 252, 0.973); border: 1px solid rgba(14, 39, 29, 0.35);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 10px;
  position: relative; z-index: 1; width: fit-content;
}
.conf-card-title {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  color: white; line-height: 1.4; position: relative; z-index: 1;
}
.conf-card-body { padding: 28px; }
.conf-card-meta {
  font-size: 0.88rem; color: var(--slate); padding: 8px 0;
  border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px;
}
.conf-card-meta:last-of-type { border-bottom: none; margin-bottom: 14px; }
.conf-card-meta strong { color: var(--black); font-weight: 600; min-width: 70px; }

/* ─── FEATURE CARDS ──────────────────────────────────────── */
.feature-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: var(--transition);
}
.feature-card:hover { border-color: rgba(120, 145, 137, 0.185); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon-box {
  width: 100%; border-radius: 10px; overflow: hidden;
  margin-bottom: 14px; background: var(--emerald-light);
  border: 1px solid rgba(16,185,129,0.15); display: block;
}
.feature-icon-box img { width: 100%; height: 110px; object-fit: cover; display: block; }

/* ─── DISCIPLINE CARDS ───────────────────────────────────── */
.discipline-card {
  padding: 20px; border: 1px solid var(--border); border-radius: var(--radius);
  text-align: center; transition: var(--transition); cursor: pointer; background: white;
  overflow: hidden;
}
.discipline-card img { border-radius: 8px; transition: transform 0.4s ease; }
.discipline-card:hover img { transform: scale(1.05); }
.discipline-card:hover {
  border-color: var(--emerald); background: var(--black);
  transform: translateY(-4px); box-shadow: var(--shadow-md);
}
.discipline-card:hover h4 { color: white !important; }
.discipline-card:hover p { color: rgba(255,255,255,0.55) !important; }

/* ─── TESTIMONIAL CARDS ──────────────────────────────────── */
.testimonial-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px 32px; box-shadow: var(--shadow-card); transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(16,185,129,0.3); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-stars { color: var(--emerald); font-size: 1rem; letter-spacing: 2px; margin-bottom: 18px; }
.testimonial-text { font-size: 1rem; font-style: italic; color: var(--text-mid); line-height: 1.85; margin-bottom: 28px; }

/* ─── PARTNER ITEMS ──────────────────────────────────────── */
.partner-item {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  color: var(--text-muted); letter-spacing: 0.04em; transition: var(--transition);
  padding: 10px 22px; border-radius: 8px; cursor: default;
}
.partner-item:hover { color: var(--black); background: var(--bg-mid); }

/* ─── NEWSLETTER ─────────────────────────────────────────── */
.newsletter-section { background: var(--bg); padding: 70px 0; border-top: 1px solid var(--border); }
.newsletter-form {
  display: flex; max-width: 520px; border-radius: 10px; overflow: hidden;
  border: 1.5px solid var(--border); background: white; box-shadow: var(--shadow-sm);
}
.newsletter-form input {
  flex: 1; padding: 16px 22px; border: none;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; color: var(--black); outline: none;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button {
  background: var(--emerald); color: white; border: none; padding: 16px 28px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap; transition: var(--transition);
}
.newsletter-form button:hover { background: var(--emerald-dark); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--black); padding: 130px 0 0; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 800; color: white; margin-bottom: 16px; }
.footer-logo span { color: var(--white); }
.footer-desc { font-size: 0.9rem; color: rgba(221, 213, 213, 0.952); line-height: 1.8; max-width: 280px; margin-bottom: 28px; }
.footer-heading { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 22px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.4); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--emerald); padding-left: 4px; }
.footer-bottom { margin-top: 60px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.25); }

/* ─── ACCORDION (FAQ) ────────────────────────────────────── */
.accordion-item {
  border-bottom: 1px solid var(--border);
  background: white;
  transition: var(--transition);
}
.accordion-item:first-child { border-top: 1px solid var(--border); }
.accordion-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: var(--black);
  transition: var(--transition);
  user-select: none;
  gap: 16px;
}
.accordion-header:hover { color: var(--emerald-dark); background: var(--bg); }
.accordion-item.open .accordion-header { color: var(--emerald-dark); background: var(--bg); }
.accordion-icon {
  width: 28px; height: 28px; border: 1.5px solid var(--border-mid);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition); font-size: 1.1rem; color: var(--slate);
  font-weight: 400; line-height: 1;
}
.accordion-item.open .accordion-icon {
  background: var(--emerald-dark); border-color: var(--emerald-dark); color: white;
  transform: rotate(45deg);
}
.accordion-arrow { display: none; }
.accordion-body {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
}
.accordion-item.open .accordion-body { max-height: 300px; }
.accordion-body-inner {
  padding: 0 24px 22px;
  font-size: 0.97rem; color: var(--text-mid); line-height: 1.85;
}

/* ─── PRICING CARDS ──────────────────────────────────────── */
.pricing-card {
  border: 1.5px solid var(--border); background: white;
  padding: 44px 36px; text-align: center;
  border-radius: var(--radius-lg); position: relative; transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.pricing-card:hover { border-color: rgba(63, 78, 73, 0.35); box-shadow: var(--grey); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--emerald); background: var(--black); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.featured:hover { transform: translateY(-12px); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--emerald); color: white; font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 18px; border-radius: 100px;
}
.pricing-name { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--emerald-dark); margin-bottom: 18px; }
.pricing-card.featured .pricing-name { color: rgba(255,255,255,0.6); }
.pricing-price { font-family: 'Playfair Display', serif; font-size: 3.4rem; font-weight: 800; line-height: 1; margin-bottom: 8px; }
.pricing-period { font-size: 0.85rem; opacity: 0.6; margin-bottom: 32px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li { font-size: 0.92rem; display: flex; align-items: flex-start; gap: 10px; }
.pricing-features li::before { content: '✓'; color: var(--emerald); font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.pricing-features li.disabled { opacity: 0.4; }
.pricing-features li.disabled::before { content: '✗'; color: var(--slate); }

/* ─── FORM ───────────────────────────────────────────────── */
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--black); margin-bottom: 7px; display: block; }
.form-control {
  width: 100%; padding: 14px 18px; border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; color: var(--black);
  background: white; outline: none; transition: var(--transition);
}
.form-control:focus { border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(94,94,94,0.1); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-group { margin-bottom: 22px; }

/* ─── MISC ───────────────────────────────────────────────── */
.gold-quote {
  border-left: 3px solid var(--emerald); padding: 18px 22px;
  background: var(--emerald-light); font-style: italic;
  color: var(--text-mid); line-height: 1.7; border-radius: 0 8px 8px 0;
}
.search-bar { display: flex; border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden; background: white; transition: var(--transition); }
.search-bar:focus-within { border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(16,185,129,0.1); }
.search-bar input { flex: 1; padding: 15px 18px; border: none; background: transparent; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; outline: none; }
.search-bar button { background: var(--emerald); color: white; border: none; padding: 14px 28px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: var(--transition); }
.search-bar button:hover { background: var(--emerald-dark); }
.filter-tab { padding: 9px 20px; border: 1.5px solid var(--border); background: white; border-radius: 8px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mid); cursor: pointer; transition: var(--transition); }
.filter-tab:hover, .filter-tab.active { background: var(--emerald); color: white; border-color: var(--emerald); }
.timeline-item { display: flex; gap: 24px; position: relative; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: 20px; top: 48px; bottom: 0; width: 1px; background: var(--border); }
.timeline-item:last-child::before { display: none; }
.timeline-dot { width: 44px; height: 44px; border-radius: 50%; background: var(--emerald-light); border: 2px solid var(--emerald); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; box-shadow: 0 0 0 5px rgba(16,185,129,0.1); }
.timeline-dot-inner { width: 11px; height: 11px; border-radius: 50%; background: var(--emerald); }

/* ─── AVATAR IMAGES ──────────────────────────────────────── */
.avatar-img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--emerald-light); flex-shrink: 0;
}

/* ─── CONTACT SUCCESS POPUP ──────────────────────────────── */
.success-popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.success-popup-overlay.active { opacity: 1; pointer-events: all; }
.success-popup {
  background: white; border-radius: 20px; padding: 52px 48px;
  text-align: center; max-width: 440px; width: 90%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
  transform: scale(0.9) translateY(20px); transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.success-popup-overlay.active .success-popup { transform: scale(1) translateY(0); }
.success-popup-icon {
  width: 72px; height: 72px; background: #e8f7f2; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 2.2rem;
}
.success-popup h3 {
  font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 800;
  color: var(--black); margin-bottom: 12px;
}
.success-popup p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 28px; }
.success-popup-btn {
  background: var(--emerald-dark); color: white; border: none;
  padding: 13px 36px; border-radius: 8px; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: var(--transition); font-family: 'Plus Jakarta Sans', sans-serif;
}
.success-popup-btn:hover { background: var(--black); transform: translateY(-1px); }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .py-section { padding: 70px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-section { padding: 120px 0 70px; min-height: auto; }
  .hero-section .container > div { grid-template-columns: 1fr !important; }
  .stats-bar .container > div { grid-template-columns: repeat(2,1fr) !important; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ─── TARGETED COLOR RULES ──────────────────────────────── */
/* Body/paragraph text = dark/black */
body { color: #333; }
p, li, span.text, td, th, label { color: inherit; }

/* Only headings/titles get blue */
.section-title { color: #2b6cb0 !important; }
h1:not(.page-hero *):not(.hero-section *) { color: #2b6cb0 !important; }
h2:not(.bg-navy *):not(.site-footer *):not([style*="color:#ffffff"]) { color: #2b6cb0 !important; }
h3:not(.bg-navy *):not(.site-footer *):not([style*="color:#000000"]):not([style*="color:#080000"]):not([style*="color:var(--black)"]) { color: #2b6cb0 !important; }
h4:not(.bg-navy *):not(.site-footer *):not(.discipline-card *):not([style*="color:#171717"]):not([style*="color: #171717"]):not([style*="color:black"]) { color: #2b6cb0 !important; }
.discipline-card h4 { color: #171717 !important; }
.discipline-card:hover h4 { color: white !important; }

/* Nav links = black */
.nav-links a { color: #222 !important; }
.nav-links a:hover, .nav-links a.active { color: #111 !important; background: #f0f0f0 !important; }

/* Footer = white text (already dark bg) */
.site-footer, .site-footer * { color: rgba(255,255,255,0.6); }
.footer-logo, .footer-logo * { color: white !important; }
.footer-heading { color: rgba(255,255,255,0.4) !important; }
.footer-links a { color: rgba(255,255,255,0.5) !important; }
.footer-links a:hover { color: white !important; }
.footer-bottom p { color: rgba(255,255,255,0.3) !important; }

/* Page title bars - no background color */
.page-title-bar { background: transparent !important; border-bottom: none !important; padding-top: 90px !important; padding-bottom: 20px !important; }
.page-title-bar h1 { color: #2b6cb0 !important; }
.page-title-bar div { color: #777 !important; }

/* ─── SPECIFIC OVERRIDES (per user images) ─────────────────── */
/* "To Submit Your Research?" → white */
h2[style*="color:#ffffff"] { color: #ffffff !important; }
/* "Dr. James Robertson" → black */
h4[style*="color:black"] { color: #000000 !important; }
/* "How Can We Help You?" → black */
h3[style*="color:#000000"] { color: #000000 !important; }
/* "World Summit on AI & Society 2026" → black */
h3[style*="color:var(--black)"] { color: #000000 !important; }
/* "Transformer Architectures..." → black */
h3[style*="color:#080000"] { color: #000000 !important; }
