/* 
  Malaysia Halal Lifestyle Fest 2026 (MHLife 2026)
  Vibrant 9-Color Solid Crisp Swirling Vector Background System & Executive Programme Highlights Media Integration
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --canvas: #3A5BB8;
  --frame: #FFFFFF;
  --ink: #0F172A;
  --ink-soft: #334155;
  --ink-faint: #64748B;
  
  /* OFFICIAL BRAND PALETTE */
  --brand: #ec027e;            /* Hot Pink / Magenta */
  --brand-deep: #c4006b;       /* Deep Magenta */
  --gold: #fdbc11;             /* Sun Gold / Warm Yellow */
  --teal: #00ae97;             /* Islamic Teal / Emerald */
  --red: #ec1c24;              /* Festival Crimson Red */
  --tool: #00aeef;             /* Sky / Cyan Blue */
  --navy: #0f2b5c;             /* Deep Navy Anchor */
  --navy-light: #163670;
  
  --faint: var(--ink-faint);
  --grid: #E2E8F0;
  --line: rgba(15, 23, 42, 0.08);
  --line-2: rgba(15, 23, 42, 0.14);
  --soft: #F8FAFC;
  --sh: 0 12px 32px -16px rgba(15, 23, 42, 0.1);
  
  /* STRICT MAXIMUM 2 FONTS */
  --display: 'Plus Jakarta Sans', sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --mono: 'Plus Jakarta Sans', sans-serif;

  --ease-fluid: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background-color: #2B438D;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
  position: relative;
  min-height: 100vh;
}

/* FIXED ROBUST CRISP 9-COLOR SWIRLING VECTOR BACKGROUND */
.swirl-bg-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background-color: #2B438D;
  pointer-events: none;
}

.swirl-svg {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120vw;
  height: 120vh;
  display: block;
}

.swirl-layer {
  transform-origin: 50% 50%;
  will-change: transform;
}

/* 9 COLORFUL SOLID VECTOR LAYERS */
.swirl-gold { fill: #FDBC11; opacity: 0.95; animation: swirl-rotate-1 28s ease-in-out infinite alternate; }
.swirl-teal { fill: #00AE97; opacity: 0.92; animation: swirl-rotate-6 24s ease-in-out infinite alternate; }
.swirl-pink { fill: #EC027E; opacity: 0.95; animation: swirl-rotate-1 25s ease-in-out infinite alternate; }
.swirl-orange { fill: #F15A24; opacity: 0.90; animation: swirl-rotate-7 27s ease-in-out infinite alternate; }
.swirl-red { fill: #EC1C24; opacity: 0.92; animation: swirl-rotate-2 20s ease-in-out infinite alternate; }
.swirl-purple { fill: #92278F; opacity: 0.88; animation: swirl-rotate-8 29s ease-in-out infinite alternate; }
.swirl-cyan { fill: #00AEEF; opacity: 0.90; animation: swirl-rotate-4 22s ease-in-out infinite alternate; }
.swirl-magenta { fill: #D81159; opacity: 0.88; animation: swirl-rotate-5 30s ease-in-out infinite alternate; }
.swirl-green { fill: #00A651; opacity: 0.91; animation: swirl-rotate-3 26s ease-in-out infinite alternate; }

@keyframes swirl-rotate-1 {
  0% { transform: rotate(0deg) scale(1) translate(0, 0); }
  50% { transform: rotate(18deg) scale(1.12) translate(40px, 30px); }
  100% { transform: rotate(-12deg) scale(0.92) translate(-30px, 50px); }
}

@keyframes swirl-rotate-2 {
  0% { transform: rotate(0deg) scale(1) translate(0, 0); }
  50% { transform: rotate(-25deg) scale(1.15) translate(-50px, 40px); }
  100% { transform: rotate(15deg) scale(0.95) translate(30px, -40px); }
}

@keyframes swirl-rotate-3 {
  0% { transform: rotate(0deg) scale(1) translate(0, 0); }
  50% { transform: rotate(20deg) scale(1.1) translate(35px, -35px); }
  100% { transform: rotate(-18deg) scale(0.96) translate(-40px, 20px); }
}

@keyframes swirl-rotate-4 {
  0% { transform: rotate(0deg) scale(1) translate(0, 0); }
  50% { transform: rotate(-15deg) scale(1.2) translate(-30px, -50px); }
  100% { transform: rotate(22deg) scale(0.9) translate(45px, 30px); }
}

@keyframes swirl-rotate-5 {
  0% { transform: rotate(0deg) scale(1) translate(0, 0); }
  50% { transform: rotate(30deg) scale(1.08) translate(50px, 20px); }
  100% { transform: rotate(-25deg) scale(0.94) translate(-20px, -60px); }
}

@keyframes swirl-rotate-6 {
  0% { transform: rotate(0deg) scale(1) translate(0, 0); }
  50% { transform: rotate(-22deg) scale(1.14) translate(30px, -40px); }
  100% { transform: rotate(16deg) scale(0.93) translate(-35px, 25px); }
}

@keyframes swirl-rotate-7 {
  0% { transform: rotate(0deg) scale(1) translate(0, 0); }
  50% { transform: rotate(24deg) scale(1.18) translate(-45px, 35px); }
  100% { transform: rotate(-20deg) scale(0.91) translate(40px, -30px); }
}

@keyframes swirl-rotate-8 {
  0% { transform: rotate(0deg) scale(1) translate(0, 0); }
  50% { transform: rotate(-18deg) scale(1.09) translate(25px, 45px); }
  100% { transform: rotate(28deg) scale(0.97) translate(-50px, -20px); }
}

.wrap {
  max-width: 1280px; margin: 0 auto; padding: 0 34px; position: relative; z-index: 2;
}

/* DISTINCT WHITE BENTO SECTION CONTAINERS OVER ANIMATED BG */
section.wrap {
  background: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 60px 40px !important;
  margin-top: 45px;
  margin-bottom: 45px;
  box-shadow: 0 20px 50px -15px rgba(15, 27, 60, 0.4);
  position: relative;
  z-index: 2;
}

/* FLOATING TOP NAVIGATION BAR */
.topbar {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 34px;
  pointer-events: none;
  transition: transform 0.45s var(--ease-fluid);
}

.topbar > * { pointer-events: auto; }

.pill {
  background: var(--frame); border: 1.5px solid var(--line-2); border-radius: 999px; box-shadow: 0 8px 24px -12px rgba(15, 23, 42, 0.12); display: flex; align-items: center;
}

.nav-pill { padding: 5px; gap: 2px; position: relative; }

.nav-pill a {
  font-family: var(--display); font-size: 13.5px; font-weight: 700; color: var(--ink); padding: 8px 16px; border-radius: 999px; transition: background 0.2s, color 0.2s; text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
}

.nav-pill a:hover { background: var(--soft); color: var(--brand); }
.nav-pill a.active { color: var(--brand); font-weight: 800; }

/* NAV DROPDOWN MENU WITH INVISIBLE HOVER BRIDGE */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-item-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 18px;
  background: transparent;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: #FFFFFF;
  border: 1.5px solid var(--line-2);
  border-radius: 14px;
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.22);
  padding: 8px;
  z-index: 1000;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-dropdown-menu a {
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  text-align: left;
  justify-content: flex-start;
  white-space: nowrap;
  width: 100%;
}

.nav-dropdown-menu a:hover {
  background: var(--soft);
  color: var(--brand);
}

.topbar-ctas {
  display: flex; gap: 10px; align-items: center;
}

/* MOBILE TOGGLE BUTTON */
.mobile-nav-toggle {
  display: none;
}

/* MOBILE NAVIGATION DRAWER */
.mobile-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-drawer-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 999;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s var(--ease-fluid);
  overflow-y: auto;
}

.mobile-drawer.active {
  transform: translateX(-320px);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-2);
}

.mobile-drawer-close {
  background: var(--soft);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
  cursor: pointer;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.mobile-drawer-links a {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer-links a:hover, .mobile-drawer-links a.active {
  background: var(--brand);
  color: #FFFFFF;
}

.mobile-drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
}

/* HERO SECTION WITH CURSOR 3D PARALLAX TRACKING */
.hero {
  padding: 110px 0 50px; text-align: center; min-height: 80vh; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1; perspective: 1000px;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; background: transparent;
}

.hero .wrap {
  will-change: transform;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
}

/* FORMAL ORGANISER ENDORSEMENT BADGE (MOTAC & ITC LOGOS) */
.hero-organiser-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(15, 43, 92, 0.94);
  backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 8px 24px;
  margin: 0 auto 16px;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 6;
}

.org-badge-title {
  font-family: var(--display);
  font-size: 9.5px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.org-badge-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.org-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.org-logo-item img {
  height: 28px;
  width: auto;
  object-fit: contain;
  background: #FFFFFF;
  padding: 3px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.org-logo-item span {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.04em;
}

.org-badge-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-logo-container {
  width: 100%;
  max-width: 680px;
  margin: 6px auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 24px 36px;
  box-shadow: 0 20px 50px -12px rgba(15, 27, 60, 0.35);
}

.hero-logo-banner {
  max-width: 600px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
  display: block;
}

.hero .tagline {
  font-family: var(--body);
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 21px);
  color: #FFFFFF;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
  max-width: 54ch;
  margin: 12px auto 28px;
  line-height: 1.55;
}

.hero .tagline .highlight {
  color: var(--gold) !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700; font-size: 14px; padding: 13px 26px; border-radius: 999px; background: var(--brand); color: #fff; border: none; cursor: pointer; text-decoration: none; transition: transform 0.2s var(--ease-fluid), box-shadow 0.2s, background 0.2s; box-shadow: 0 8px 24px -6px rgba(236, 2, 126, 0.5); letter-spacing: 0.02em;
}

.btn:hover { transform: translateY(-2px); background: var(--brand-deep); }
.btn.ghost { background: var(--frame); color: var(--navy); border: 1.5px solid var(--line-2); box-shadow: 0 6px 16px -8px rgba(0,0,0,0.12); }
.btn.ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* PROGRAMME HIGHLIGHTS GRID & FEATURE MEDIA THUMBNAILS */
.ph-executive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.ph-card {
  background: #FFFFFF;
  border: 1.5px solid var(--line-2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 24px -12px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s var(--ease-fluid), box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.ph-card-img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
  display: block;
}

.ph-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand);
}

.ph-card:nth-child(2)::before { background: var(--tool); }
.ph-card:nth-child(3)::before { background: var(--gold); }
.ph-card:nth-child(4)::before { background: var(--teal); }
.ph-card:nth-child(5)::before { background: var(--brand); }
.ph-card:nth-child(6)::before { background: var(--navy); }
.ph-card:nth-child(7)::before { background: var(--gold); }
.ph-card:nth-child(8)::before { background: var(--teal); }

.ph-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -14px rgba(15, 23, 42, 0.16);
  border-color: var(--brand);
}

.ph-card-num {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ph-card-num .badge-tag {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--soft);
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ph-card-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 15.5px;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
}

.ph-card-desc {
  font-family: var(--body);
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.ph-card-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ph-card-list li {
  font-family: var(--body);
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.35;
  position: relative;
  padding-left: 14px;
}

.ph-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}

/* FESTIVAL ZONES SYSTEM */
.fz-executive-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.fz-executive-card {
  background: #FFFFFF;
  border: 1.5px solid var(--line-2);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px -15px rgba(15, 23, 42, 0.12);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fz-executive-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -16px rgba(15, 23, 42, 0.18);
}

.fz-top-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 20px;
}

.fz-zone-pillar {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: var(--display);
  font-weight: 800;
  flex-shrink: 0;
}

.fz-pillar-a { background: linear-gradient(135deg, #F15A24 0%, #D03E0B 100%); }
.fz-pillar-b { background: linear-gradient(135deg, #BE1E2D 0%, #92278F 100%); }
.fz-pillar-c { background: linear-gradient(135deg, #00AEEF 0%, #0072BC 100%); }
.fz-pillar-d { background: linear-gradient(135deg, #00A651 0%, #006837 100%); }

.fz-zone-pillar span:first-child { font-size: 9px; letter-spacing: 0.08em; opacity: 0.9; }
.fz-zone-pillar span:last-child { font-size: 20px; line-height: 1; }

.fz-title-group h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  line-height: 1.2;
}

.fz-title-group p {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

.fz-sub-group {
  margin-bottom: 18px;
}

.fz-sub-group:last-child {
  margin-bottom: 0;
}

.fz-sub-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy);
  background: var(--soft);
  padding: 6px 12px;
  border-radius: 6px;
  border-left: 3.5px solid var(--navy);
  margin-bottom: 10px;
}

.fz-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fz-bullet-list li {
  font-family: var(--body);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
  position: relative;
  padding-left: 18px;
}

.fz-bullet-list li::before {
  content: '›';
  position: absolute;
  left: 4px;
  top: -1px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  color: var(--brand);
}

/* MARQUEE TICKER */
.marquee { border-top: 1.5px solid rgba(255,255,255,0.3); border-bottom: 1.5px solid rgba(255,255,255,0.3); background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); overflow: hidden; padding: 16px 0; position: relative; z-index: 2; margin: 30px 0; }
.marquee .track { display: flex; gap: 60px; width: max-content; animation: scroll 28s linear infinite; }
.marquee .item { font-family: var(--display); font-weight: 800; font-size: 18px; display: flex; align-items: center; gap: 60px; color: var(--navy); letter-spacing: 0.03em; white-space: nowrap; }
.marquee .item::after { content: "✦"; color: var(--brand); font-size: 13px; }

@keyframes scroll { to { transform: translateX(-50%); } }

/* SECTION HEADINGS */
.sec-head { text-align: center; margin-bottom: 44px; }
.sec-head .scribble, .sec-head .sec-subtitle { font-family: var(--display); font-size: 12px; font-weight: 800; color: var(--brand); margin-bottom: 8px; display: inline-block; letter-spacing: 0.12em; text-transform: uppercase; }
.sec-head h2 { font-family: var(--display); font-weight: 800; font-size: clamp(30px, 4vw, 52px); letter-spacing: -.02em; line-height: 1.05; text-transform: uppercase; color: var(--navy); }

.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }

.cell { background: var(--frame); border: 1.5px solid var(--line-2); border-radius: 16px; padding: 28px; position: relative; box-shadow: var(--sh); transition: transform 0.25s, box-shadow 0.25s; }
.cell:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -18px rgba(15, 23, 42, 0.15); }
.cell .clbl { position: absolute; top: 16px; right: 16px; font-family: var(--display); font-size: 10px; font-weight: 800; letter-spacing: .1em; color: var(--ink-faint); text-transform: uppercase; }

.c-stmt { grid-column: span 7; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(28px, 3vw, 42px); }
.c-stmt .boxed { display: inline-block; align-self: flex-start; font-family: var(--display); font-size: 12px; font-weight: 800; border: 1.5px solid var(--navy); padding: 5px 14px; border-radius: 6px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--navy); }
.c-stmt p { font-family: var(--body); font-weight: 500; font-size: clamp(18px, 2vw, 25px); line-height: 1.45; color: var(--ink); }
.c-stmt p em { font-style: normal; font-weight: 700; color: var(--brand); }

.c-stats { grid-column: span 5; display: flex; flex-direction: column; justify-content: center; background: #0f2b5c; color: var(--frame); border-radius: 16px; }
.c-stats .clbl { color: rgba(255,255,255,0.4); }

.stat-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.stat-row:last-child { border-bottom: none; }
.stat-row .num { font-family: var(--display); font-weight: 800; font-size: 32px; color: var(--gold); }
.stat-row .cap { font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #a0aec0; text-align: right; }

/* SPONSOR LOGO SHOWCASE GRID */
.sponsor-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.sponsor-logo-card {
  background: #FFFFFF;
  border: 1.5px solid var(--line-2);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 6px 18px -8px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  min-height: 110px;
}

.sponsor-logo-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: 0 12px 28px -10px rgba(236, 2, 126, 0.18);
}

.sponsor-logo-card img {
  max-height: 55px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 8px;
}

.sponsor-logo-card span {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* FAQ & FORMS */
.faq-item { background: var(--frame); border: 1.5px solid var(--line-2); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-header { padding: 18px 24px; font-family: var(--display); font-weight: 700; font-size: 16.5px; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-body { padding: 0 24px 20px; font-family: var(--body); font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; display: none; }
.faq-item.active .faq-body { display: block; }
.faq-item.active .faq-header { color: var(--brand) !important; }

.form-group { margin-bottom: 18px; text-align: left; }
.form-group label { display: block; font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 0.05em; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; }
.form-input { width: 100%; padding: 12px 16px; font-family: var(--body); font-size: 14.5px; border: 1.5px solid var(--line-2); border-radius: 8px; background: #fff; color: var(--ink); outline: none; transition: border-color 0.2s; }
.form-input:focus { border-color: var(--brand); }

/* FOOTER */
.site-footer { background: #0f2b5c; color: #fff; padding: 60px 0 30px; margin-top: 90px; border-top: 4px solid var(--brand); position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 40px; text-align: left; }
.footer-brand h3 { font-family: var(--display); font-weight: 800; font-size: 22px; color: var(--gold); margin-bottom: 10px; }
.footer-logos { display: flex; gap: 16px; align-items: center; margin-top: 18px; flex-wrap: wrap; }
.footer-logos img { height: 56px; width: auto; background: #fff; padding: 8px 16px; border-radius: 8px; object-fit: contain; }

/* MOBILE & TABLET RESPONSIVE BREAKPOINTS */
@media (max-width: 980px) {
  .hero-organiser-badge {
    padding: 8px 18px;
    border-radius: 16px;
  }
  .org-badge-logos {
    gap: 10px;
  }
  .org-logo-item span {
    display: none;
  }

  .hero-logo-container {
    padding: 16px 20px;
    max-width: 90vw;
  }

  .ph-executive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .fz-executive-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .topbar {
    top: 16px;
    padding: 0 16px;
  }
  
  .nav-pill, .topbar-ctas {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--frame);
    border: 1.5px solid var(--line-2);
    border-radius: 999px;
    padding: 8px 16px;
    box-shadow: 0 10px 30px -15px rgba(15, 23, 42, 0.15);
  }

  .mobile-nav-toggle-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--display);
    font-weight: 800;
    font-size: 14px;
    color: var(--navy);
  }

  .mobile-nav-toggle-btn {
    background: var(--brand);
    color: #FFFFFF;
    border: none;
    padding: 8px 16px;
    border-radius: 999px;
    font-family: var(--display);
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
  }

  .wrap {
    padding: 0 16px;
  }

  section.wrap {
    padding: 36px 20px !important;
    margin-top: 24px;
    margin-bottom: 24px;
    border-radius: 18px;
  }

  .hero {
    padding: 95px 0 40px;
    min-height: auto;
  }

  .bento {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cell {
    grid-column: span 12 !important;
    padding: 22px;
  }

  .sponsor-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    font-size: 13.5px;
    padding: 12px 20px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

@media (max-width: 580px) {
  .ph-executive-grid {
    grid-template-columns: 1fr;
  }
}
