/* ============================================================================
   ConfAcadGlobal — style.css (clean, deduplicated)
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700;800&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --sapphire:    #0a2342;
  --sapphire-mid:#0d2d52;
  --sapphire-lg: #1a3d6e;
  --emerald:     #0b7d6e;
  --emerald-lt:  #0e9e8c;
  --gold:        #f5a623;
  --gold-lt:     #fdb94b;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --slate-50:    #f1f5f9;
  --slate-100:   #e2e8f0;
  --slate-200:   #cbd5e1;
  --slate-500:   #64748b;
  --slate-700:   #334155;
  --slate-900:   #0f172a;
  --text:        #1e2d3d;
  --muted:       #64748b;
  --border:      #e2e8f0;
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(10,35,66,.08), 0 1px 2px rgba(10,35,66,.06);
  --shadow:      0 4px 16px rgba(10,35,66,.10), 0 2px 6px rgba(10,35,66,.08);
  --shadow-lg:   0 20px 60px rgba(10,35,66,.18), 0 8px 24px rgba(10,35,66,.10);
  --transition:  0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--sapphire);
  line-height: 1.2;
  font-weight: 800;
}

a { color: var(--emerald); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--emerald-lt); }
img { max-width: 100%; display: block; }

.container       { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide  { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section-pad     { padding: 80px 0; }
.section-pad-sm  { padding: 56px 0; }
.text-center     { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.muted { color: var(--muted); font-size: 14px; }
.empty-note { color: var(--muted); font-style: italic; font-size: 15px; }

/* ── Section labels ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
}
.section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.section-desc  { color: var(--muted); font-size: 17px; max-width: 600px; line-height: 1.7; }

/* ============================================================================
   HEADER
   ============================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,35,66,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(10,35,66,.99);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  flex-shrink: 0;
  text-decoration: none;
}
.brand:hover { color: var(--white); }
.brand-logo-wrap { flex-shrink: 0; }
.brand-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-lt));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 800; color: white; flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .brand-name {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700;
  color: white; letter-spacing: .01em;
}
.brand-text .brand-sub {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,.55); letter-spacing: .02em;
}
.conf-home-link {
  font-family: 'Inter', sans-serif; font-size: 12px;
  color: rgba(255,255,255,.45);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px; white-space: nowrap;
  transition: all var(--transition); margin-right: 8px;
}
.conf-home-link:hover { color: white; border-color: rgba(255,255,255,.4); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,.8);
  font-size: 13.5px; font-weight: 500;
  padding: 7px 14px; border-radius: 8px;
  transition: all var(--transition); white-space: nowrap;
}
.main-nav a:hover { color: white; background: rgba(255,255,255,.1); }
.main-nav a.active { color: white; background: rgba(255,255,255,.12); }
.nav-cta { background: var(--emerald) !important; color: white !important; padding: 8px 18px !important; }
.nav-cta:hover { background: var(--emerald-lt) !important; color: white !important; }

.nav-toggle {
  display: none; background: none; border: none; color: white;
  cursor: pointer; padding: 8px; border-radius: 8px; transition: background var(--transition);
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.nav-toggle svg { display: block; }

/* ============================================================================
   HERO
   ============================================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 68px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1596422846543-75c6fc197f11?w=1800&q=80&fit=crop');
  background-size: cover; background-position: center 30%;
  filter: brightness(.32) saturate(1.2);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,35,66,.92) 0%, rgba(10,35,66,.75) 50%, rgba(11,125,110,.35) 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(11,125,110,.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245,166,35,.08) 0%, transparent 40%);
}
.hero-content { position: relative; z-index: 1; max-width: 900px; padding: 80px 0 60px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px); border-radius: 100px; padding: 6px 16px; margin-bottom: 28px;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.9); letter-spacing: .06em; text-transform: uppercase;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 58px); font-weight: 800;
  color: white; line-height: 1.12; margin-bottom: 24px; letter-spacing: -.02em;
}
.hero h1 .accent { color: var(--gold); }
.hero-tagline { font-size: 18px; color: rgba(255,255,255,.75); max-width: 640px; line-height: 1.7; margin-bottom: 36px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 40px; }
.hero-meta-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px; padding: 10px 18px;
}
.hero-meta-item .meta-icon { font-size: 18px; line-height: 1; }
.hero-meta-item .meta-text { font-family: 'Inter', sans-serif; }
.hero-meta-item .meta-label {
  font-size: 11px; color: rgba(255,255,255,.5); font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; display: block;
}
.hero-meta-item .meta-value { font-size: 14px; color: white; font-weight: 600; display: block; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }

.countdown-label {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 12px;
}
.countdown-blocks { display: flex; gap: 10px; }
.countdown-block {
  text-align: center; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14); border-radius: 12px;
  padding: 14px 18px; min-width: 72px;
}
.countdown-num {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 800; color: white; line-height: 1;
}
.countdown-unit {
  display: block; font-family: 'Inter', sans-serif; font-size: 11px;
  color: rgba(255,255,255,.5); letter-spacing: .1em; text-transform: uppercase; margin-top: 6px;
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.4); font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; animation: bounce 2s infinite;
}
.hero-scroll svg { opacity: .5; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px;
  padding: 13px 28px; border-radius: 10px;
  transition: all var(--transition); cursor: pointer;
  text-decoration: none; border: none; white-space: nowrap;
}
.btn-primary { background: var(--emerald); color: white; box-shadow: 0 4px 14px rgba(11,125,110,.35); }
.btn-primary:hover { background: var(--emerald-lt); color: white; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(11,125,110,.45); }
.btn-gold { background: var(--gold); color: var(--sapphire); box-shadow: 0 4px 14px rgba(245,166,35,.30); }
.btn-gold:hover { background: var(--gold-lt); color: var(--sapphire); transform: translateY(-1px); }
.btn-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); color: white; }
.btn-outline-dark { background: transparent; color: var(--sapphire); border: 1.5px solid var(--slate-200); }
.btn-outline-dark:hover { border-color: var(--emerald); color: var(--emerald); }
.btn-sm  { padding: 9px 20px; font-size: 13px; }
.btn-lg  { padding: 16px 36px; font-size: 16px; }

/* ============================================================================
   STATS STRIP
   ============================================================================ */
.stats-strip { background: white; border-bottom: 1px solid var(--slate-100); padding: 32px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; text-align: center; }
.stat-item { padding: 16px 20px; border-right: 1px solid var(--slate-100); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 800; color: var(--sapphire); line-height: 1; margin-bottom: 4px; }
.stat-num .accent { color: var(--emerald); }
.stat-label { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--muted); font-weight: 500; letter-spacing: .04em; }

/* ============================================================================
   IMPORTANT DATES
   ============================================================================ */
.dates-section { background: var(--off-white); padding: 80px 0; }
.dates-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; }
.date-card {
  background: white; border: 1px solid var(--slate-100); border-radius: var(--radius);
  padding: 24px; display: flex; align-items: flex-start; gap: 18px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.date-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--emerald); border-radius: 4px 0 0 4px; opacity: 0; transition: opacity var(--transition);
}
.date-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.date-card:hover::before { opacity: 1; }
.date-card.passed { opacity: .6; }
.date-card.passed::before { background: var(--slate-200); opacity: 1; }
.date-card.highlight::before { opacity: 1; background: var(--gold); }
.date-card.highlight { border-color: rgba(245,166,35,.25); background: rgba(245,166,35,.03); }
.date-icon { width: 48px; height: 48px; background: var(--off-white); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px; }
.date-card.highlight .date-icon { background: rgba(245,166,35,.12); }
.date-info .date-label { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; color: var(--sapphire); margin-bottom: 4px; }
.date-info .date-value { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--emerald); }
.date-card.passed .date-value { color: var(--muted); }
.date-card.highlight .date-value { color: var(--gold); }
.date-passed-badge {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
  background: var(--slate-100); border-radius: 100px; padding: 2px 8px;
  display: inline-block; margin-top: 4px;
}

/* ============================================================================
   CONFERENCE TRACKS
   ============================================================================ */
.tracks-section { background: white; padding: 80px 0; }
.tracks-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.track-card {
  background: var(--off-white); border: 1px solid var(--slate-100);
  border-radius: var(--radius); padding: 28px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.track-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-lt));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.track-card:hover { box-shadow: var(--shadow); background: white; transform: translateY(-3px); }
.track-card:hover::after { transform: scaleX(1); }
.track-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.track-card h3 { font-size: 17px; margin-bottom: 10px; color: var(--sapphire); }
.track-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ============================================================================
   ABOUT SECTION
   ============================================================================ */
.about-section { background: var(--sapphire); padding: 80px 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text .section-label { color: var(--gold); }
.about-text .section-label::before { background: var(--gold); }
.about-text .section-title { color: white; }
.about-text p { color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
.about-text .btn-primary { margin-top: 12px; }
.about-img-frame { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; position: relative; }
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: 20px; left: 20px; background: white;
  border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.about-img-badge .badge-icon { font-size: 24px; }
.about-img-badge .badge-label { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.about-img-badge .badge-val  { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 800; color: var(--sapphire); line-height: 1; }

/* ============================================================================
   EDITORIAL BOARD
   ============================================================================ */
.board-section { background: var(--off-white); padding: 80px 0; }
.board-full    { padding: 60px 0 80px; }
.board-header  { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; gap: 20px; flex-wrap: wrap; }
.board-grid      { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.board-grid-full { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.board-card {
  background: white; border: 1px solid var(--slate-100);
  border-radius: var(--radius); padding: 24px; text-align: center; transition: all var(--transition);
}
.board-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--slate-200); }
.board-photo {
  width: 80px; height: 80px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 16px; background: var(--slate-50); border: 3px solid var(--slate-100);
  display: flex; align-items: center; justify-content: center;
}
.board-photo img { width: 100%; height: 100%; object-fit: cover; }
.avatar-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--emerald), var(--sapphire));
  color: white; font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800;
}
.board-card h4  { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; color: var(--sapphire); margin-bottom: 4px; }
.board-role     { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; color: var(--emerald); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.board-affil    { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--muted); }
.board-bio      { font-size: 13px; color: var(--muted); margin-top: 12px; text-align: left; line-height: 1.6; border-top: 1px solid var(--slate-100); padding-top: 12px; }

/* ============================================================================
   MALAYSIA TRAVEL
   ============================================================================ */
.travel-section { background: white; padding: 80px 0; }
.travel-intro {
  display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: center;
  margin-bottom: 48px; padding: 32px;
  background: linear-gradient(135deg, var(--sapphire), var(--sapphire-lg));
  border-radius: var(--radius-lg); color: white;
}
.travel-intro-text .section-label        { color: var(--gold); }
.travel-intro-text .section-label::before { background: var(--gold); }
.travel-intro-text h2 { color: white; font-size: clamp(22px,3vw,32px); }
.travel-intro-text p  { color: rgba(255,255,255,.7); font-size: 15px; margin-top: 12px; }
.travel-intro-art      { display: flex; gap: 10px; flex-wrap: wrap; }
.travel-intro-art span { font-size: 48px; filter: drop-shadow(0 4px 12px rgba(0,0,0,.3)); }
.travel-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.travel-card { border: 1px solid var(--slate-100); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); background: white; }
.travel-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.travel-photo { height: 180px; overflow: hidden; background: var(--slate-50); position: relative; }
.travel-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.travel-card:hover .travel-photo img { transform: scale(1.05); }
.travel-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; background: linear-gradient(135deg, var(--slate-50), var(--slate-100)); }
.travel-category-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(10,35,66,.85); color: white;
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.travel-body    { padding: 20px; }
.travel-body h4 { font-size: 16px; margin-bottom: 4px; color: var(--sapphire); }
.travel-distance { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; color: var(--emerald); margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.travel-body p  { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ============================================================================
   SPONSORS
   ============================================================================ */
.sponsors-strip  { background: var(--off-white); padding: 60px 0; border-top: 1px solid var(--slate-100); }
.sponsors-full   { padding: 60px 0 80px; }
.sponsors-header { text-align: center; margin-bottom: 36px; }
.sponsors-header p { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.sponsors-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.sponsors-tier { margin-bottom: 48px; }
.sponsors-tier h3 { font-size: 14px; font-family: 'Inter', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--slate-100); }
.sponsor-logo-link {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 28px; border: 1px solid var(--slate-100); border-radius: var(--radius);
  background: white; min-width: 140px; height: 72px; transition: all var(--transition);
}
.sponsor-logo-link:hover { box-shadow: var(--shadow); border-color: var(--slate-200); transform: translateY(-2px); }
.sponsor-logo-link img { max-height: 40px; max-width: 120px; object-fit: contain; filter: grayscale(1); opacity: .65; transition: all var(--transition); }
.sponsor-logo-link:hover img { filter: none; opacity: 1; }
.sponsor-text { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--muted); font-size: 14px; }

/* ============================================================================
   PUBLISHER BANNER
   ============================================================================ */
.publisher-banner  { background: linear-gradient(90deg, var(--sapphire), var(--sapphire-mid)); padding: 40px 0; }
.publisher-inner   { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.publisher-text    { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.publisher-name    { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; color: white; }
.publisher-name em { font-style: normal; color: var(--gold); }
.publisher-note    { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 4px; }
.publisher-icons   { display: flex; gap: 24px; align-items: center; }
.publisher-icon-item { text-align: center; color: white; }
.publisher-icon-item .icon-val { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800; display: block; line-height: 1; }
.publisher-icon-item .icon-lbl { font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); display: block; margin-top: 4px; }

/* ============================================================================
   PAGE HERO (inner pages)
   ============================================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--sapphire) 0%, var(--sapphire-lg) 100%);
  padding: 100px 0 52px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1596422846543-75c6fc197f11?w=1400&q=60') center/cover;
  opacity: .07;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .section-label        { color: var(--gold); }
.page-hero .section-label::before { background: var(--gold); }
.page-hero h1 { color: white; font-size: clamp(28px,4vw,44px); margin-bottom: 10px; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 17px; max-width: 580px; }

/* ============================================================================
   VENUE PAGE
   ============================================================================ */
.venue-section { padding: 80px 0; background: white; }
.venue-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.venue-detail-block { display: flex; flex-direction: column; gap: 16px; }
.venue-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: var(--off-white); border-radius: var(--radius); }
.venue-item-icon { width: 40px; height: 40px; background: var(--emerald); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.venue-item-label { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 3px; }
.venue-item-val   { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: var(--sapphire); }
.venue-map-placeholder { background: var(--slate-50); border: 1px solid var(--slate-100); border-radius: var(--radius-lg); aspect-ratio: 4/3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--muted); }
.venue-map-placeholder .map-icon { font-size: 56px; }
.venue-map-placeholder p { font-size: 14px; font-weight: 500; }

/* ============================================================================
   CONTACT PAGE
   ============================================================================ */
.contact-section { padding: 80px 0; background: var(--off-white); }
.contact-grid    { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info    { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px; background: white; border: 1px solid var(--slate-100); border-radius: var(--radius); }
.contact-info-item .ci-icon  { font-size: 22px; flex-shrink: 0; line-height: 1; }
.contact-info-item .ci-label { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 3px; }
.contact-info-item .ci-val   { font-size: 15px; font-weight: 600; color: var(--sapphire); }
.contact-form-wrap { background: white; border: 1px solid var(--slate-100); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.contact-form-wrap h3 { font-size: 22px; margin-bottom: 24px; }

/* Contact form fields */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; color: var(--slate-700); }
.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--text);
  border: 1.5px solid var(--slate-200); border-radius: var(--radius-sm);
  padding: 12px 14px; width: 100%; background: white; outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(11,125,110,.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.hp-field { position: absolute; left: -9999px; }

.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; margin-bottom: 18px; }
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; margin-bottom: 18px; }

/* ============================================================================
   CONTENT PAGES / PROSE
   ============================================================================ */
.content-page { padding: 60px 0 80px; }
.prose { max-width: 800px; margin: 0 auto; background: white; border: 1px solid var(--slate-100); border-radius: var(--radius-lg); padding: 40px 48px; box-shadow: var(--shadow-sm); }
.prose h2 { font-size: 26px; margin: 24px 0 12px; color: var(--sapphire); }
.prose h2:first-child { margin-top: 0; }
.prose p  { margin-bottom: 14px; color: var(--text); font-size: 15.5px; line-height: 1.75; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 14px; }
.prose li { font-size: 15.5px; line-height: 1.75; color: var(--text); margin-bottom: 6px; }
.prose strong { color: var(--sapphire); }

/* ============================================================================
   FOOTER
   ============================================================================ */
.site-footer { background: var(--sapphire); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { max-width: 280px; }
.footer-brand .brand { margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: 16px; transition: all var(--transition); }
.footer-social a:hover { background: var(--emerald); color: white; }
.footer-col h4  { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: white; margin-bottom: 16px; }
.footer-col a   { display: block; color: rgba(255,255,255,.6); font-size: 13.5px; margin-bottom: 10px; transition: color var(--transition); }
.footer-col a:hover { color: white; }
.footer-bottom  { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: 'Inter', sans-serif; font-size: 12px; color: rgba(255,255,255,.35); }
.footer-bottom a      { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.link-more { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; color: var(--emerald); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition), color var(--transition); }
.link-more:hover { color: var(--emerald-lt); gap: 10px; }

/* ============================================================================
   DYNAMIC FORMS — form.php
   KEY FIX: form-page-wrap must be position:relative so nothing escapes it.
   All dform-group children must be display:block (not flex on the wrong axis).
   ============================================================================ */

.form-page-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow-sm);
  position: relative;        /* CRITICAL — stops children escaping */
  overflow: visible;
}

/* ── Each field group: label stacked above control ── */
.dform-group {
  display: block;            /* block, not flex — prevents side-by-side layout */
  width: 100%;
  margin-bottom: 24px;
  position: relative;
}
.dform-group.has-error .dform-control   { border-color: #ef4444 !important; }
.dform-group.has-error .dform-file-wrap { border-color: #ef4444 !important; }

/* ── Label sits on its own line above everything ── */
.dform-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 7px;
  line-height: 1.4;
  width: 100%;
}
.req-star { color: #e53e3e; font-weight: 700; }

/* ── Inputs, selects, textareas: all full-width block ── */
.dform-control {
  display: block;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #1e2d3d;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  padding: 11px 14px;
  line-height: 1.5;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.dform-control:focus {
  border-color: #0b7d6e;
  box-shadow: 0 0 0 3px rgba(11,125,110,.12);
}

/* ── Textarea specifically ── */
textarea.dform-control {
  resize: vertical;
  min-height: 120px;
  max-width: 100%;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
}

/* ── Select ── */
select.dform-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* ── File upload zone ── */
.dform-file-wrap {
  display: block;
  width: 100%;
  border: 2px dashed #cbd5e1;
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease;
  background: #fafafa;
}
.dform-file-wrap:hover {
  border-color: #0b7d6e;
  background: rgba(11,125,110,.025);
}
.dform-file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.dform-file-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;  /* let clicks pass through to hidden input */
}
.dform-file-icon  { font-size: 32px; line-height: 1; display: block; }
.dform-file-text  { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; color: #0a2342; }
.dform-file-types { font-size: 12px; color: #64748b; }
.dform-file-name  { font-size: 12px; color: #0b7d6e; margin-top: 10px; font-weight: 600; }

/* ── Checkbox ── */
.dform-check-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #1e2d3d;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}
.dform-check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: #0b7d6e;
  cursor: pointer;
  border: 1.5px solid #cbd5e1;
  border-radius: 4px;
}

/* ── Inline error ── */
.dform-error {
  display: block;
  font-size: 12px;
  color: #e53e3e;
  margin-top: 5px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

/* ── Success screen ── */
.form-success-card { text-align: center; padding: 56px 32px; }
.form-success-icon { font-size: 64px; margin-bottom: 20px; line-height: 1; }
.form-success-card h2 { font-size: 28px; margin-bottom: 14px; }
.form-success-card p  { color: #64748b; font-size: 16px; max-width: 480px; margin: 0 auto; line-height: 1.7; }

/* ── Inline shortcode form ── */
.inline-form-wrap { background: var(--off-white); border: 1px solid var(--slate-100); border-radius: var(--radius); padding: 24px; margin: 20px 0; }
.inline-form-header h3 { font-size: 20px; margin-bottom: 8px; }
.inline-form-header p  { color: var(--muted); font-size: 14px; }

/* Admin form builder input (different class) */
.form-control {
  display: block; width: 100%; box-sizing: border-box;
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text);
  border: 1.5px solid var(--border); border-radius: 6px; padding: 10px 12px;
  outline: none; background: white; transition: border-color .2s;
}
.form-control:focus { border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(11,125,110,.1); }

/* ============================================================================
   ANIMATIONS
   ============================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp .5s ease forwards; }
.fade-up-1 { animation-delay: .1s; opacity: 0; }
.fade-up-2 { animation-delay: .2s; opacity: 0; }
.fade-up-3 { animation-delay: .3s; opacity: 0; }
.fade-up-4 { animation-delay: .4s; opacity: 0; }
.fade-up-5 { animation-delay: .5s; opacity: 0; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1024px) {
  .board-grid           { grid-template-columns: repeat(3,1fr); }
  .footer-inner         { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand         { grid-column: 1 / -1; max-width: 100%; }
  .about-inner          { grid-template-columns: 1fr; }
  .about-visual         { display: none; }
}
@media (max-width: 860px) {
  .dates-grid, .tracks-grid      { grid-template-columns: repeat(2,1fr); }
  .travel-grid                   { grid-template-columns: repeat(2,1fr); }
  .board-grid, .board-grid-full  { grid-template-columns: repeat(2,1fr); }
  .contact-grid                  { grid-template-columns: 1fr; }
  .venue-grid                    { grid-template-columns: 1fr; }
  .stats-inner                   { grid-template-columns: repeat(2,1fr); }
  .stats-inner .stat-item:nth-child(2) { border-right: none; }
  .travel-intro                  { grid-template-columns: 1fr; }
  .publisher-inner               { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .main-nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--sapphire); flex-direction: column; padding: 16px; gap: 4px;
    border-top: 1px solid rgba(255,255,255,.08); box-shadow: 0 10px 30px rgba(0,0,0,.3);
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 12px 16px; }
  .conf-home-link { display: none; }
  .hero h1         { font-size: 30px; }
  .hero-meta       { gap: 12px; }
  .countdown-blocks { gap: 8px; }
  .countdown-block  { min-width: 60px; padding: 12px 14px; }
  .countdown-num    { font-size: 26px; }
  .dates-grid, .tracks-grid, .travel-grid { grid-template-columns: 1fr; }
  .board-grid, .board-grid-full  { grid-template-columns: 1fr 1fr; }
  .stats-inner   { grid-template-columns: repeat(2,1fr); }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .footer-brand  { grid-column: 1 / -1; }
  .hero-cta      { flex-direction: column; align-items: flex-start; }
  .prose         { padding: 24px 20px; }
  .form-page-wrap { padding: 24px 18px; }
}