/* ELASIA Expo — Brand: Blue #2A5FB0 + Red #ED3237 (elasiaexpo.com) */

:root {
  --el-blue: #2a5fb0;
  --el-blue-dark: #1e4687;
  --el-blue-soft: #eaf1fb;
  --el-red: #ed3237;
  --el-red-dark: #c41e24;
  --el-ink: #121826;
  --el-muted: #5b6578;
  --el-line: #d7e0ef;
  --el-bg: #f4f7fc;
  --el-white: #ffffff;
  --shadow: 0 18px 40px rgba(18, 24, 38, 0.1);
  --radius: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, "Segoe UI", sans-serif;
  color: var(--el-ink);
  background: var(--el-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-tint {
  background: var(--el-white);
}

.section-exhibit {
  background: linear-gradient(180deg, #fff7f7 0%, #ffe9ea 100%);
}

.section-visit {
  background:
    radial-gradient(circle at 12% 18%, rgba(42, 95, 176, 0.35), transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(237, 50, 55, 0.18), transparent 40%),
    linear-gradient(145deg, #061833 0%, #0b2a52 48%, #123a6f 100%);
  color: #fff;
}

.section-visit .section-label {
  color: #ffb4b6;
}

.section-visit .section-label.label-blue {
  color: #9ec0f5;
}

.section-visit .section-head h2 {
  color: #fff;
}

.section-visit .section-head p {
  color: rgba(255, 255, 255, 0.82);
}

.section-label {
  margin: 0 0 10px;
  color: var(--el-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label.label-blue {
  color: var(--el-blue);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head h2,
.about-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
  line-height: 1.15;
  color: var(--el-blue-dark);
}

.section-head p {
  margin: 0;
  color: var(--el-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-red {
  background: var(--el-red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(237, 50, 55, 0.28);
}

.btn-red:hover {
  background: var(--el-red-dark);
  color: #fff;
}

.btn-blue {
  background: var(--el-blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(42, 95, 176, 0.28);
}

.btn-blue:hover {
  background: var(--el-blue-dark);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--el-blue);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 14px 0;
  transition: 0.3s ease;
}

.site-header.is-solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(18, 24, 38, 0.08);
}

.header-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 8px 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
}

.site-header.is-solid .header-bar {
  background: #fff;
  border-color: rgba(42, 95, 176, 0.12);
}

.brand {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  line-height: 0;
  z-index: 2;
}

.brand img {
  display: block;
  height: 56px;
  width: auto;
  max-width: none;
  border-radius: 6px;
  background: #fff;
  padding: 2px 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 0 auto;
}

.nav-item {
  position: relative;
}

.nav-link {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  font-family: inherit;
  font-weight: 650;
  font-size: 0.88rem;
  padding: 8px 11px;
  border-radius: 999px;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-link i {
  font-size: 0.65rem;
  opacity: 0.85;
  transition: transform 0.25s ease;
}

.site-header.is-solid .nav-link {
  color: var(--el-ink);
}

.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item.is-open > .nav-link {
  background: rgba(237, 50, 55, 0.18);
  color: var(--el-red);
  -webkit-text-stroke: 0.35px #fff;
  paint-order: stroke fill;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff,
     0 0 4px rgba(255, 255, 255, 0.85);
}

.site-header.is-solid .nav-link:hover,
.site-header.is-solid .nav-item:hover > .nav-link,
.site-header.is-solid .nav-item.is-open > .nav-link {
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.nav-item:hover > .nav-link i,
.nav-item.is-open > .nav-link i {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(42, 95, 176, 0.12);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s ease;
  z-index: 30;
}

.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown,
.nav-item.is-open > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a,
.nav-dropdown-item {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--el-ink-soft);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: 0.2s ease;
  cursor: default;
}

.nav-dropdown a {
  cursor: pointer;
}

.nav-dropdown a:hover,
.nav-dropdown-item:hover {
  background: linear-gradient(90deg, rgba(42, 95, 176, 0.1), rgba(237, 50, 55, 0.08));
  color: var(--el-blue);
  padding-left: 16px;
}

.header-cta {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.site-header.is-solid .nav-toggle {
  background: var(--el-blue-soft);
}

.site-header.is-solid .nav-toggle span {
  background: var(--el-blue);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12, 22, 48, 0.55) 0%, rgba(12, 22, 48, 0.35) 40%, rgba(12, 22, 48, 0.82) 100%),
    radial-gradient(circle at 12% 20%, rgba(42, 95, 176, 0.45), transparent 42%),
    radial-gradient(circle at 88% 75%, rgba(237, 50, 55, 0.3), transparent 40%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd2d4;
}

.hero h1 {
  margin: 0 0 16px;
  max-width: 13ch;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: #ffd2d4;
}

.hero-copy {
  margin: 0 0 24px;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-bottom: 28px;
}

.meta-item span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}

.meta-item strong {
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Stats */
.stats {
  margin-top: -42px;
  position: relative;
  z-index: 5;
  padding-bottom: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  padding: 26px 18px;
  border-radius: var(--radius);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-card h2 {
  margin: 0 0 6px;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: 1;
}

.stat-card p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.95;
}

.stat-red { background: linear-gradient(145deg, #ed3237, #c41e24); }
.stat-blue { background: linear-gradient(145deg, #2a5fb0, #1e4687); }
.stat-red-soft { background: linear-gradient(145deg, #f0575b, #d6282d); }
.stat-blue-soft { background: linear-gradient(145deg, #3b73c8, #25539b); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.about-badge strong {
  display: block;
  color: var(--el-blue);
  font-size: 1.5rem;
  line-height: 1;
}

.about-badge span {
  color: var(--el-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.about-copy p {
  color: var(--el-muted);
}

.about-copy .btn {
  margin-top: 8px;
}

/* Vision & Mission — poles with animated current (cover, not tiled) */
.section-purpose {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #f6ca43;
}

.section-purpose > .container {
  position: relative;
  z-index: 2;
}

.purpose-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.purpose-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.purpose-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(246, 202, 67, 0.22) 0%, rgba(246, 202, 67, 0.12) 45%, rgba(232, 184, 46, 0.24) 100%);
}

.section-purpose .section-head h2 {
  color: #1e4687;
}

.section-purpose .section-head p:not(.section-label) {
  color: rgba(18, 24, 38, 0.78);
}

.section-purpose .section-label {
  color: #2a5fb0;
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.purpose-block {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.92);
  color: var(--el-ink);
  box-shadow: 0 16px 36px rgba(30, 70, 135, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.purpose-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(30, 70, 135, 0.2);
}

.purpose-vision {
  border-top: 4px solid #2a5fb0;
}

.purpose-mission {
  border-top: 4px solid var(--el-red);
}

.purpose-block::before {
  content: none;
}

.purpose-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  font-size: 1.2rem;
}

.purpose-vision .purpose-icon {
  background: rgba(42, 95, 176, 0.12);
  color: var(--el-blue);
}

.purpose-mission .purpose-icon {
  background: rgba(237, 50, 55, 0.12);
  color: var(--el-red);
}

.purpose-block h3 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  letter-spacing: 0.02em;
  color: var(--el-ink);
}

.purpose-block p {
  margin: 0;
  max-width: 42ch;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--el-muted);
}

/* Glimpses of 2024 */
.section-glimpses {
  background: linear-gradient(180deg, #0f1a2e 0%, #1a2f52 100%);
  color: #fff;
}

.section-glimpses .section-head h2,
.section-glimpses .section-head p {
  color: #fff;
}

.section-glimpses .section-head p:not(.section-label) {
  color: rgba(255, 255, 255, 0.78);
}

.section-glimpses .section-label {
  color: #ff8a8d;
}

.section-glimpses .label-blue {
  color: #8eb6f5;
}

.glimpse-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
}

.glimpse-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.glimpse-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.glimpse-item:hover img {
  transform: scale(1.06);
}

.glimpse-item--wide {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 900px) {
  .purpose-grid {
    grid-template-columns: 1fr;
  }

  .glimpse-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
}

@media (max-width: 560px) {
  .glimpse-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 120px;
  }

  .glimpse-item--wide {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* Why Exhibit — Indplas-style glass cards, Elasia blue/red */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(42, 95, 176, 0.1);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(18, 24, 38, 0.14);
}

.glass-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--el-blue), var(--el-red));
  transition: background 0.35s ease, transform 0.35s ease;
}

.why-card h3,
.why-card p {
  transition: color 0.35s ease;
}

.why-card h3 {
  margin: 0 0 8px;
  color: var(--el-blue-dark);
  font-size: 1.12rem;
}

.why-card p {
  margin: 0;
  color: var(--el-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.why-card[data-hue="1"]:hover {
  background: linear-gradient(145deg, #2a5fb0, #1e4687);
  color: #fff;
  border-color: transparent;
}

.why-card[data-hue="2"]:hover {
  background: linear-gradient(145deg, #ed3237, #c41e24);
  color: #fff;
  border-color: transparent;
}

.why-card:hover h3,
.why-card:hover p {
  color: #fff;
}

.why-card:hover .glass-card__icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

/* Why Visit — Indplas-style image cards */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.visit-media-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visit-media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
}

.visit-media-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.visit-media-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(30, 70, 135, 0.25));
}

.visit-media-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.visit-media-card:hover .visit-media-card__img img {
  transform: scale(1.06);
}

.visit-media-card__body {
  padding: 1.25rem 1.35rem 1.45rem;
}

.visit-tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--el-red);
}

.visit-media-card:nth-child(even) .visit-tag {
  color: var(--el-blue);
}

.visit-media-card h3 {
  margin: 0 0 0.5rem;
  color: var(--el-blue-dark);
  font-size: 1.08rem;
}

.visit-media-card p {
  margin: 0;
  color: var(--el-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Legacy card grid kept for partners if needed */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Sectors */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sector-card {
  background: var(--el-blue-soft);
  border: 1px solid rgba(42, 95, 176, 0.14);
  border-radius: 14px;
  padding: 20px;
}

.sector-card h3 {
  margin: 0 0 8px;
  color: var(--el-blue-dark);
  font-size: 1rem;
}

.sector-card p {
  margin: 0;
  color: var(--el-muted);
  font-size: 0.92rem;
}

/* Partners — tiered colour bands with logo pills */
.section-partners {
  padding: 0 0 20px;
  background: #f4f7fc;
}

.partners-intro {
  padding: 72px 0 28px;
}

.partner-tier {
  padding: 28px 0;
}

.tier-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  color: inherit;
}

.tier-head h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.logo-rail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 14px 18px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo-pill:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.logo-pill img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Tier themes */
.partner-tier--platinum {
  background: linear-gradient(120deg, #0b1f3f 0%, #1e4687 55%, #2a5fb0 100%);
  color: #fff;
}

.partner-tier--platinum .tier-badge {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.partner-tier--gold {
  background: linear-gradient(120deg, #fff8e8 0%, #ffe8b0 100%);
  color: #7a5a12;
}

.partner-tier--gold .tier-badge {
  background: #c9971a;
  color: #fff;
}

.partner-tier--silver {
  background: linear-gradient(120deg, #eef2f7 0%, #d9e1ec 100%);
  color: #3d4a5c;
}

.partner-tier--silver .tier-badge {
  background: #7b8798;
  color: #fff;
}

.partner-tier--event {
  background: linear-gradient(120deg, #fff1f2 0%, #ffd6d8 100%);
  color: var(--el-red-dark);
}

.partner-tier--event .tier-badge {
  background: var(--el-red);
  color: #fff;
}

.partner-tier--assoc {
  background: linear-gradient(120deg, #eaf1fb 0%, #d5e4f8 100%);
  color: var(--el-blue-dark);
}

.partner-tier--assoc .tier-badge {
  background: var(--el-blue);
  color: #fff;
}

.partner-tier--overseas {
  background: #ffffff;
  color: var(--el-blue-dark);
  border-top: 1px solid var(--el-line);
  border-bottom: 1px solid var(--el-line);
}

.partner-tier--overseas .tier-badge {
  background: linear-gradient(135deg, var(--el-blue), var(--el-red));
  color: #fff;
}

.partner-tier--media {
  background: #f7f9fc;
  color: var(--el-ink);
}

.partner-tier--media .tier-badge {
  background: #334155;
  color: #fff;
}

.partner-tier--hospitality {
  background: linear-gradient(120deg, #102a52 0%, #1e4687 100%);
  color: #fff;
}

.partner-tier--hospitality .tier-badge {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* Descending logo sizes — Platinum fixed at 282×156, others smaller */
.logo-rail .logo-pill {
  box-sizing: border-box;
  overflow: hidden;
}

.logo-rail .logo-pill img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain;
}

.logo-rail--platinum .logo-pill {
  width: 282px;
  max-width: 282px;
  height: 156px;
  max-height: 156px;
  min-width: 282px;
  min-height: 156px;
  padding: 16px 18px;
  border-radius: 14px;
}
.logo-rail--platinum .logo-pill img {
  max-width: 240px !important;
  max-height: 118px !important;
}

.logo-rail--gold .logo-pill {
  width: 230px;
  max-width: 230px;
  height: 128px;
  max-height: 128px;
  min-width: 230px;
  min-height: 128px;
  padding: 14px 16px;
  border-radius: 13px;
}
.logo-rail--gold .logo-pill img {
  max-width: 196px !important;
  max-height: 94px !important;
}

.logo-rail--silver .logo-pill {
  width: 190px;
  max-width: 190px;
  height: 106px;
  max-height: 106px;
  min-width: 190px;
  min-height: 106px;
  padding: 12px 14px;
  border-radius: 12px;
}
.logo-rail--silver .logo-pill img {
  max-width: 160px !important;
  max-height: 76px !important;
}

.logo-rail--association .logo-pill {
  width: 168px;
  max-width: 168px;
  height: 94px;
  max-height: 94px;
  min-width: 168px;
  min-height: 94px;
  padding: 12px;
}
.logo-rail--association .logo-pill img {
  max-width: 140px !important;
  max-height: 66px !important;
}

.logo-rail--overseas .logo-pill {
  width: 150px;
  max-width: 150px;
  height: 84px;
  max-height: 84px;
  min-width: 150px;
  min-height: 84px;
  padding: 10px 12px;
}
.logo-rail--overseas .logo-pill img {
  max-width: 124px !important;
  max-height: 58px !important;
}

.logo-rail--media .logo-pill {
  width: 128px;
  max-width: 128px;
  height: 72px;
  max-height: 72px;
  min-width: 128px;
  min-height: 72px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #fff;
}
.logo-rail--media .logo-pill img {
  max-width: 108px !important;
  max-height: 48px !important;
  filter: grayscale(0.2);
  transition: filter 0.25s ease;
}
.logo-rail--media .logo-pill:hover img {
  filter: none;
}

/* Event partner tiles */
.event-rail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.event-tile {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 12px 10px 14px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(196, 30, 36, 0.08);
  transition: transform 0.25s ease;
  width: 170px;
  max-width: 170px;
  min-height: 120px;
  box-sizing: border-box;
  margin: 0 auto;
}

.event-tile:hover {
  transform: translateY(-4px);
}

.event-tile span {
  display: block;
  min-height: 2.4em;
  margin-bottom: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--el-red-dark);
  line-height: 1.3;
}

.event-tile img {
  max-height: 58px !important;
  max-width: 140px !important;
  width: auto !important;
  height: auto !important;
  margin: 0 auto;
  object-fit: contain;
  display: block;
}

.event-tile a {
  display: inline-block;
}

/* Hospitality spotlight */
.hospitality-wrap {
  text-align: center;
}

.hospitality-spotlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  max-width: 132px;
  min-width: 132px;
  height: 72px;
  max-height: 72px;
  min-height: 72px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease;
  box-sizing: border-box;
}

.hospitality-spotlight:hover {
  transform: translateY(-4px) scale(1.03);
}

.hospitality-spotlight img {
  max-height: 42px !important;
  max-width: 108px !important;
  width: auto !important;
  height: auto !important;
  display: block;
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--el-blue-dark), var(--el-blue) 55%, var(--el-red));
  color: #fff;
  padding: 72px 0;
  text-align: center;
}

.cta-inner h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.cta-inner p {
  margin: 0 0 24px;
  opacity: 0.92;
}

.cta-inner .hero-actions {
  justify-content: center;
}

/* Footer */
.site-footer {
  background: #0f1728;
  color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
  padding: 56px 0 36px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}

.site-footer h4 {
  margin: 0 0 12px;
  color: #fff;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 8px;
}

.site-footer a {
  text-decoration: none;
  color: #c9d8f2;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

/* Base: 1366 and desktop */
@media (max-width: 1200px) {
  .container {
    width: calc(100% - 40px);
  }

  .sector-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1280px) {
  .header-cta .btn-blue {
    display: none;
  }

  .nav-link {
    font-size: 0.82rem;
    padding: 8px 9px;
  }
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin: 0;
    padding: 12px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(42, 95, 176, 0.14);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    color: var(--el-ink);
    border-radius: 12px;
  }

  .nav-item {
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border: 0;
    background: var(--el-blue-soft);
    margin: 4px 0 8px;
    padding: 6px;
  }

  .nav-item.is-open > .nav-dropdown {
    display: block;
  }

  .nav-dropdown a,
  .nav-dropdown-item {
    color: var(--el-ink);
  }

  .header-cta {
    display: none;
  }

  .stats-grid,
  .why-grid,
  .visit-grid,
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-pill {
    flex: 1 1 140px;
  }

  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .container {
    width: calc(100% - 24px);
  }

  .section {
    padding: 64px 0;
  }

  .hero-inner {
    padding: 120px 0 64px;
  }

  .hero h1 {
    max-width: none;
  }

  .stats {
    margin-top: -28px;
  }

  .stats-grid,
  .why-grid,
  .visit-grid,
  .card-grid,
  .event-rail,
  .sector-grid {
    grid-template-columns: 1fr 1fr;
  }

  .header-bar {
    border-radius: 18px;
  }
}
