/* ═══════════════════════════════════════════════════════════
   AIR MOBILITY EXPO 2027 — Master Stylesheet
   Classic Aesthetic Edition
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&display=swap');

/* ─── DESIGN TOKENS ─── */
:root {
  --orange: #E8610A;
  --orange-dark: #C4520A;
  --orange-light: #FF7A2F;
  --gold: #B89A3E;
  --gold-light: #D4B45A;
  --navy: #0B1E3D;
  --navy-mid: #1A3460;
  --sky: #1B8FD4;
  --white: #FFFFFF;
  --cream: #F8F5EF;
  --off-white: #F7F8FA;
  --light-gray: #F0F2F5;
  --border: #E3E6EC;
  --border-gold: rgba(184, 154, 62, 0.25);
  --text: #1A2540;
  --text-mid: #4A5568;
  --text-muted: #8A96AA;

  --font-serif: 'DM Sans', system-ui, sans-serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.13);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── FLYING PLANE ANIMATION ─── */
#fly-plane {
  position: fixed;
  top: 90px;
  left: -160px;
  z-index: 999;
  pointer-events: none;
  animation: flyAcross 7s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
  opacity: 0;
}

@keyframes flyAcross {
  0% {
    left: -160px;
    top: 90px;
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  100% {
    left: 110vw;
    top: 60px;
    opacity: 0;
  }
}

#fly-plane svg {
  filter: drop-shadow(0 2px 8px rgba(232, 97, 10, 0.4));
}

.contrail {
  position: fixed;
  top: 100px;
  left: -160px;
  width: 140px;
  height: 3px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6));
  border-radius: 2px;
  pointer-events: none;
  animation: flyAcross 7s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
  filter: blur(1px);
  transform: translateX(-120px);
  z-index: 998;
}

/* ════════════════════════════════════════
   HEADER
   ════════════════════════════════════════ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 90px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

header.scrolled {
  /* box-shadow: 0 4px 24px rgba(11, 30, 61, 0.10); */
  border-bottom-color: rgba(227, 230, 236, 0.5);
}

.hdr-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hdr-logo-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.logo-img {
  height: 90px;
  max-width: 240px;
  object-fit: contain;
}

.logo-img1 {
  height: 46px;
  max-width: 130px;
  object-fit: contain;
}

.logo-img2 {
  height: 66px;
  max-width: 130px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

nav a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #17191d;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 7px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

/* nav a:hover {
  color: var(--navy);
  background: var(--light-gray);
} */

nav a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.22s ease;
  transform-origin: center;
}

nav a.active {
  color: var(--orange);
  font-weight: 600;
}

nav a.active::after {
  transform: scaleX(1);
}

.hdr-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.partner-pill {
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.pp-badge {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pp-cii .pp-badge {
  background: #E85F0A;
  color: white;
}

.pp-gov .pp-badge {
  background: var(--navy);
  color: white;
  font-size: 8px;
}

.pp-label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.25;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: flex;
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  flex-direction: column;
  gap: 2px;
  z-index: 999;
  box-shadow: 0 8px 28px rgba(11, 30, 61, 0.09);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1), padding 0.28s ease;
}

.mobile-nav.open {
  max-height: 520px;
  padding: 12px 24px 16px;
}

.mobile-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 11px 14px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.mobile-nav a:hover {
  background: var(--light-gray);
  color: var(--navy);
}

.mobile-nav a.active {
  color: var(--orange);
  border-left-color: var(--orange);
  background: rgba(232, 97, 10, 0.05);
  font-weight: 600;
}

/* ════════════════════════════════════════
   BANNER / CAROUSEL
   ════════════════════════════════════════ */
.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 90px;
}

.slides-track {
  display: flex;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
  min-width: 100%;
  position: relative;
  line-height: 0;
}

.slide img {
  display: block;
  width: 100%;
  height: auto;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 20, 45, 0.88) 0%, rgba(9, 20, 45, 0.65) 55%, rgba(9, 20, 45, 0.2) 100%);
}

/* Floating eVTOL */
.evtol-float {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  pointer-events: none;
  z-index: 3;
  animation: evtolHover 4s ease-in-out infinite;
}

@keyframes evtolHover {

  0%,
  100% {
    transform: translateY(-50%) translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-50%) translateY(-14px) rotate(1.5deg);
  }

  75% {
    transform: translateY(-50%) translateY(8px) rotate(-1deg);
  }
}

.evtol-float img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.slide-inner {
  position: relative;
  z-index: 4;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 72px;
  width: 100%;
}

.slide-text {
  max-width: 600px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 97, 10, 0.18);
  border: 1px solid rgba(232, 97, 10, 0.45);
  color: #FF9055;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.slide-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--orange-light);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.slide h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.8vw, 54px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.slide h1 em {
  color: var(--orange-light);
  font-style: normal;
}

.slide-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 500px;
}

.slide-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.meta-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.meta-chip svg {
  color: var(--orange-light);
  flex-shrink: 0;
}

.slide-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  z-index: 10;
  animation: fadeIn 2s 3s forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1
  }
}

.scroll-hint-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
  animation: bounceDown 1.4s ease infinite;
}

@keyframes bounceDown {

  0%,
  100% {
    transform: rotate(45deg) translateY(0)
  }

  50% {
    transform: rotate(45deg) translateY(5px)
  }
}

/* Banner controls */
.banner-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  backdrop-filter: blur(6px);
}

.banner-arr:hover {
  background: rgba(255, 255, 255, 0.2);
}

.banner-arr.prev {
  left: 24px;
}

.banner-arr.next {
  right: 24px;
}

.banner-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.dot.active {
  background: var(--orange-light);
  width: 26px;
  border-radius: 4px;
}

/* ════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════ */
.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(232, 97, 10, 0.4);
  transition: all 0.25s;
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 97, 10, 0.5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.25s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-orange-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--orange-light);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: 1.5px solid rgba(232, 97, 10, 0.5);
  transition: all 0.25s;
  cursor: pointer;
}

.btn-orange-outline:hover {
  background: rgba(232, 97, 10, 0.15);
  border-color: var(--orange-light);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--orange);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 9px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.25s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(11, 30, 61, 0.25);
  transition: all 0.25s;
}

.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════
   SECTION BASE — CLASSIC AESTHETIC
   ════════════════════════════════════════ */
section {
  padding: 60px 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 56px;
}

/* Classic section eyebrow */
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.sec-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* Classic serif headings */
.sec-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.18;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.sec-title strong {
  color: white;
  font-weight: 700;
}

.sec-title em {
  color: var(--orange-light);
  font-style: normal;
}

.sec-lead {
  font-size: 16.5px;
  color: white;
  line-height: 1.78;
  /* max-width: 600px; */
  text-align: center;
}

/* Classic ornamental divider */
.sec-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0 40px;
  color: var(--gold);
}

.sec-divider::before,
.sec-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border));
}

.sec-divider::before {
  background: linear-gradient(to left, transparent, var(--border));
}

/* ════════════════════════════════════════
   INNER PAGE HERO
   ════════════════════════════════════════ */
.page-hero {
  position: relative;
  margin-top: 90px;
  padding: 72px 0 60px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 55%;
  height: 130%;
  background: radial-gradient(ellipse, rgba(232, 97, 10, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--orange-light);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.25);
}

.breadcrumb .current {
  color: var(--orange-light);
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 97, 10, 0.18);
  border: 1px solid rgba(232, 97, 10, 0.35);
  color: var(--orange-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.page-hero h1 em {
  color: var(--orange-light);
  font-style: normal;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.72;
  max-width: 600px;
}

.page-hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-meta-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.hero-meta-chip svg {
  color: var(--orange-light);
  flex-shrink: 0;
}

/* Classic gold accent bar at bottom of hero */
.page-hero-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  /* background: linear-gradient(90deg, var(--orange), var(--gold), var(--orange-light)); */
}

/* Compact page hero — inner pages that only need a title band */
.page-hero-sm {
  padding: 42px 0 34px;
}

.page-hero-sm h1 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.page-hero-sm .breadcrumb {
  margin-bottom: 14px;
}

/* ════════════════════════════════════════
   BACKGROUND SECTION
   ════════════════════════════════════════ */
#background {
  background: var(--white);
}

.bg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.bg-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.bg-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bg-point:hover {
  border-color: rgba(232, 97, 10, 0.3);
  box-shadow: var(--shadow-sm);
}

.bp-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(232, 97, 10, 0.1);
  border: 1px solid rgba(232, 97, 10, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.bg-point p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

.bg-point p strong {
  color: var(--navy);
  font-weight: 700;
}

.bg-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bg-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex: 1;
  min-height: 220px;
  position: relative;
  box-shadow: var(--shadow-md);
}

.bg-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}

.bg-hero-img:hover img {
  transform: scale(1.04);
}

.bg-hero-img .img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(9, 20, 45, 0.78));
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  padding: 28px 16px 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.bg-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bg-stat {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}

.bg-stat:hover {
  border-color: rgba(232, 97, 10, 0.3);
  transform: translateY(-2px);
}

.bg-stat .val {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.bg-stat .lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
  line-height: 1.4;
}

.bg-event-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.bg-event-card .ev-eyebrow {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--orange-light);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.bg-event-card .ev-eyebrow::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--orange-light);
  border-radius: 2px;
  display: block;
}

.bg-event-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.bg-event-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bg-event-row:first-of-type {
  padding-top: 0;
}

.bg-event-row .er-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(232, 97, 10, 0.18);
  border: 1px solid rgba(232, 97, 10, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-light);
  flex-shrink: 0;
}

.bg-event-row .er-label {
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.bg-event-row .er-value {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-top: 2px;
  line-height: 1.3;
}

/* ════════════════════════════════════════
   ABOUT TEASER (homepage compact section)
   ════════════════════════════════════════ */
.about-teaser-sec {
  background: var(--cream);
  border-top: 1px solid rgba(184, 154, 62, 0.18);
}

.at-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
}

/* Image column */
.at-img-col {
  position: relative;
}

.at-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(11, 30, 61, 0.18);
  display: block;
  transition: transform 8s ease;
}

.at-img-col:hover .at-img {
  transform: scale(1.03);
}

.at-img-col {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.at-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--navy), #162b52);
  border: 1px solid rgba(184, 154, 62, 0.35);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.at-badge-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.at-badge-lbl {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

/* Content column */
.at-lead {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 15px 0 15px;
  /* border-left: 3px solid var(--gold); */
  /* padding-left: 16px; */
}

.at-lead-list {
  font-size: 16.5px;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 15px 0 28px;
  /* padding-left: 20px; */
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.at-lead-list li {
  position: relative;
  padding-left: 20px;
}

.at-lead-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: #f37735;
  border-radius: 50%;
}

.at-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
}

.at-hl-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.at-hl-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid rgba(184, 154, 62, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.at-hl-text strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  font-family: var(--font-serif);
}

.at-hl-text p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

.btn-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f27642;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  /* box-shadow: 0 4px 16px rgba(11, 30, 61, 0.2); */
}

.btn-readmore:hover {
  background: #f27642;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 154, 62, 0.3);
}

.btn-readmore svg {
  transition: transform 0.2s;
}

.btn-readmore:hover svg {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .at-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .at-img {
    aspect-ratio: 16/9;
  }
}

/* ════════════════════════════════════════
   EVENT OBJECTIVES
   ════════════════════════════════════════ */
#objectives {
  position: relative;
  background: #0a0a1a;
  overflow: hidden;
}

.objectives-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

#objectives::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(45 60 115 / 95%) 0%, rgb(1 111 158 / 81%) 45%, rgb(4 139 187 / 55%) 100%);
  pointer-events: none;
  z-index: 1;
}

#objectives .container {
  position: relative;
  z-index: 2;
}

#objectives .sec-eyebrow {
  color: var(--orange-light);
}

#objectives .sec-eyebrow::before {
  background: var(--orange-light);
}

#objectives .sec-title {
  color: white;
}

.obj-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 52px;
}

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

.obj-card:nth-child(1),
.obj-card:nth-child(2),
.obj-card:nth-child(3) {
  grid-column: span 2;
}

.obj-card:nth-child(4) {
  grid-column: 2/4;
}

.obj-card:nth-child(5) {
  grid-column: 4/6;
}

.obj-card {
  background: rgb(255 255 255);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.obj-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

/* .obj-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(232, 97, 10, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.obj-card:hover::before {
  transform: scaleX(1);
} */

.obj-num {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.obj-icon {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  /* background: rgba(232, 97, 10, 0.16); */
  border: 1px solid rgba(76, 76, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}

.obj-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.obj-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  line-height: 1.38;
  margin-bottom: 10px;
}

.obj-card p {
  font-size: 16.5px;
  color: rgb(0 0 0 / 59%);
  line-height: 1.62;
}

/* Full-page objectives grid (objectives.html) */
.obj-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.obj-grid-full .obj-card {
  grid-column: auto;
}

/* ════════════════════════════════════════
   EXHIBITOR PROFILE
   ════════════════════════════════════════ */
#exhibitors {
  background: var(--cream);
  padding: 80px 0;
}

.exhibitor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ex-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 5/6;
  cursor: default;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.ex-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  transform: translateY(-6px) scale(1.015);
}

.ex-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.4, 0, .2, 1), filter 0.45s ease;
  filter: brightness(0.88);
}

.ex-card:hover img {
  transform: scale(1.07);
  filter: brightness(0.68);
}

/* Subtle vignette on default state */
.ex-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.10) 45%, transparent 70%);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.ex-card:hover .ex-card-overlay {
  opacity: 0;
}

/* ── Slide-up content panel ── */
.ex-content {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  padding: 16px 18px 20px;
  z-index: 2;
  background: linear-gradient(to top, rgb(58 85 164) 0%, rgb(1 9 17) 100%);
  /* tab offset = padding-top(16) + num(12) + num-gap(6) + h3 2-lines(50) + buffer(12) = 96px */
  transform: translateY(calc(100% - 96px));
  transition: transform 0.46s cubic-bezier(0.4, 0, 0.2, 1);
}

.ex-card:hover .ex-content {
  transform: translateY(0);
}

/* Category number */
.ex-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange-light);
  text-transform: uppercase;
  display: block;
  line-height: 1.2;
  margin-bottom: 6px;
}

/* Title */
.ex-content h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  line-height: 1.38;
  margin: 0;
  transition: font-size 0.36s cubic-bezier(.4, 0, .2, 1);
}

/* Orange accent divider — hidden until hover */
.ex-content h3::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  background: var(--orange-light);
  border-radius: 2px;
  margin-top: 0;
  transition: width 0.36s cubic-bezier(.4, 0, .2, 1) 0.18s,
    height 0.01s linear 0.18s,
    margin-top 0.36s ease 0.15s;
}

.ex-card:hover .ex-content h3 {
  font-size: 15px;
}

.ex-card:hover .ex-content h3::after {
  width: 28px;
  height: 2px;
  margin-top: 10px;
}

/* Bullet list */
.ex-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 11px;
  max-height: 210px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease 0.24s;
}

.ex-card:hover .ex-list {
  opacity: 1;
}

.ex-list li {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.52;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.ex-list li::before {
  content: '›';
  color: var(--orange-light);
  font-size: 14px;
  line-height: 1.35;
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}

/* Exhibitor card rows (full page) */
.exhibitor-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ex-row-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, border-color 0.25s;
}

.ex-row-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 97, 10, 0.25);
}

.ex-row-img {
  position: relative;
  overflow: hidden;
}

.ex-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.ex-row-card:hover .ex-row-img img {
  transform: scale(1.04);
}

.ex-row-body {
  padding: 24px 28px;
}

.ex-row-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.ex-row-body h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.ex-row-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ex-row-list li {
  font-size: 13.5px;
  color: var(--text-mid);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}

.ex-row-list li::before {
  content: '›';
  color: var(--orange);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.25;
}

/* ════════════════════════════════════════
   VISITOR PROFILE
   ════════════════════════════════════════ */
#visitors {
  background: var(--white);
  position: relative;
}

.visitors-bg-img {
  position: absolute;
  inset: 0;
  /* background: radial-gradient(ellipse at 80% 50%, rgba(27, 143, 212, 0.05) 0%, transparent 65%); */
  pointer-events: none;
}

/* Carousel wrapper */
.vis-carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.vis-carousel-viewport {
  flex: 1;
  overflow: hidden;
}

.vis-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Arrow buttons */
.vis-arr {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid #f3885a;
  background: #FF7A2F;
  /* box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08); */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.22s;
}

.vis-arr:hover:not(:disabled) {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 18px rgba(232, 97, 10, 0.28);
  transform: scale(1.06);
}

.vis-arr:disabled {
  opacity: 0.32;
  cursor: not-allowed;
}

/* Dot indicators */
.vis-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
}

.vis-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d5dae0;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}

.vis-dot.active {
  background: var(--orange);
  width: 26px;
  border-radius: 4px;
}

/* Cards */
.vis-card {
  flex: none;
  background: #fff;
  border: 1px solid rgb(186 186 186 / 39%);
  border-radius: 18px;
  padding: 32px 26px 28px;
  position: relative;
  overflow: hidden;
  /* box-shadow: 0 2px 18px rgba(11,30,61,0.07); */
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}

/* .vis-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
} */

/* .vis-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(11,30,61,0.13);
  border-color: rgba(232,97,10,0.18);
} */

.vis-card:hover::before {
  transform: scaleX(1);
}

.vis-card-num {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 42px;
  font-weight: 800;
  color: #FF7A2F;
  font-family: var(--font-serif);
  line-height: 1;
  user-select: none;
}

.vis-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232, 97, 10, 0.09) 0%, rgba(184, 154, 62, 0.07) 100%);
  border: 1px solid rgba(232, 97, 10, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
}

.vis-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.vis-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 11px;
  line-height: 1.32;
}

.vis-card p {
  font-size: 16.5px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ════════════════════════════════════════
   BENEFITS & IMPACT
   ════════════════════════════════════════ */
#benefits {
  background: #0a0a1a;
  position: relative;
  overflow: hidden;
}

#benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(157 198 125 / 78%) 0%, rgb(93 162 75 / 86%) 45%, rgb(13 149 82 / 90%) 100%);
  pointer-events: none;
  z-index: 1;
}

#benefits .container {
  position: relative;
  z-index: 2;
}

#benefits .sec-eyebrow {
  color: var(--orange-light);
}

#benefits .sec-eyebrow::before {
  background: var(--orange-light);
}

#benefits .sec-title {
  color: white;
}

.ben-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgb(255, 255, 255);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}

.ben-stat {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgb(255, 255, 255);
}

.ben-stat:last-child {
  border-right: none;
}

.ben-stat-num {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: 8px;
}

.ben-stat-num em {
  color: var(--gold-light);
  font-style: normal;
}

.ben-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 56px;
}

.ben-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 18px;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: all 0.28s;
  cursor: default;
}

/* .ben-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 97, 10, 0.38);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
} */

.ben-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(232, 97, 10, 0.12);
  border: 1px solid rgba(232, 97, 10, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-light);
  flex-shrink: 0;
  margin-top: 1px;
}

.ben-item-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.ben-item-text {
  flex: 1;
}

.ben-item h4 {
  font-family: var(--font-serif);
  font-size: 16.5px;
  font-weight: 600;
  color: rgb(20, 20, 20);
  line-height: 1.35;
  margin-top: 13px;
}

.ben-item p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.58;
}

/* ════════════════════════════════════════
   BHARAT MOBILITY GALLERY
   ════════════════════════════════════════ */
.bharat-section {
  padding-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.bharat-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.bharat-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 5px;
}

.bharat-title span {
  color: var(--orange-light);
}

.bharat-sub {
  font-size: 13px;
  color: var(--text-mid);
}

.bharat-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(232, 97, 10, 0.15);
  border: 1px solid rgba(232, 97, 10, 0.3);
  color: var(--orange-light);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 30px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gal-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(9, 20, 45, 0.65));
  opacity: 0;
  transition: opacity 0.35s;
}

.gal-item:hover img {
  transform: scale(1.08);
}

.gal-item:hover::after {
  opacity: 1;
}

.gal-item.gal-wide {
  grid-column: span 2;
  aspect-ratio: 8/3;
}

.gal-item.gal-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* Gallery page full grid */
.gallery-full {
  columns: 3;
  column-gap: 14px;
}

.gallery-full .gal-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius);
  aspect-ratio: auto;
}

.gallery-full .gal-item img {
  height: auto;
}

/* ════════════════════════════════════════
   SPACE RENTALS
   ════════════════════════════════════════ */
#rates {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#rates::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
}

#rates .sec-eyebrow {
  color: var(--orange-light);
}

#rates .sec-eyebrow::before {
  background: var(--orange-light);
}

#rates .sec-title {
  color: white;
}

#rates .sec-lead {
  color: rgba(255, 255, 255, 0.65);
}

.rates-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.rates-table {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.rates-thead {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  padding: 20px 28px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
}

.rates-thead span {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.9);
}

.rates-thead span:not(:first-child) {
  text-align: right;
}

.rate-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  align-items: center;
  transition: background 0.2s;
}

.rate-row:last-child {
  border-bottom: none;
}

.rate-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.rate-name {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.rate-name small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.rate-inr,
.rate-usd {
  text-align: right;
}

.rate-inr .cur {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--orange-light);
}

.rate-usd .cur {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: #64C8F0;
}

.rate-inr .lbl,
.rate-usd .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.rates-note {
  padding: 14px 28px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.elec-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.elec-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: white;
}

.elec-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.elec-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 7px;
}

.elec-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.elec-item .amt {
  color: var(--orange-light);
  font-weight: 700;
}

.elec-item .amt-sky {
  color: #64C8F0;
  font-weight: 700;
}

.sponsor-box {
  background: rgba(232, 97, 10, 0.12);
  border: 1px solid rgba(232, 97, 10, 0.3);
  border-radius: var(--radius);
  padding: 20px;
}

.sponsor-box h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-light);
  margin-bottom: 6px;
}

.sponsor-box p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════ */
#contact {
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.con-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}

.con-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 30, 61, 0.2);
}

.con-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(11, 30, 61, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 18px;
}

.con-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.con-card .role {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.con-card a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-mid);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.con-card a:hover {
  color: var(--orange);
}

.con-card a svg {
  color: var(--orange);
  flex-shrink: 0;
}

.addr-card {
  grid-column: span 3;
  background: var(--navy);
  border-color: transparent;
  display: flex;
  align-items: center;
  gap: 28px;
}

.addr-card .con-icon {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  flex-shrink: 0;
}

.addr-card h3 {
  color: white;
}

.addr-card .role {
  color: rgba(255, 255, 255, 0.5);
}

.addr-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ─── Enquiry section two-col layout ─── */
.enq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ─── Full-width map below form ─── */
.enq-map {
  height: 360px;
  border-top: 1px solid var(--border);
}

/* ─── Contact Form ─── */
.contact-form-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form-wrap .form-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 97, 10, 0.1);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* ════════════════════════════════════════
   ABOUT CII
   ════════════════════════════════════════ */
#cii {
  background: linear-gradient(155deg, var(--navy) 0%, #0d2244 100%);
  border-top: none;
  position: relative;
  overflow: hidden;
}

#cii::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

#cii::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  /* background: radial-gradient(circle, rgba(232, 97, 10, 0.11) 0%, transparent 65%); */
  pointer-events: none;
}

#cii .container {
  position: relative;
  z-index: 1;
}

#cii .sec-eyebrow {
  color: var(--orange-light);
}

#cii .sec-eyebrow::before {
  background: var(--orange-light);
}

#cii .sec-title {
  color: white;
}

#cii .sec-lead {
  color: rgba(255, 255, 255, 0.62);
}

.cii-deco-text {
  position: absolute;
  top: 50%;
  left: -1%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 260px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.024);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
}

.cii-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: start;
}

.cii-identity {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cii {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.cii img {
  width: 58px;
  height: auto;
}

.cii-identity-text h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 3px;
}

.cii-identity-text p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.48);
}

.cii-est-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(184, 154, 62, 0.18);
  border: 1px solid rgba(184, 154, 62, 0.35);
  color: var(--gold-light);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.cii-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.78;
  margin-bottom: 22px;
}

.cii-desc strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

.cii-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.cii-points li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}

.cii-points li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 7px;
}

.cii-socials {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.soc-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: all 0.22s;
}

.soc-link:hover {
  border-color: var(--orange);
  color: var(--orange-light);
  background: rgba(232, 97, 10, 0.12);
  box-shadow: 0 4px 14px rgba(232, 97, 10, 0.15);
}

.cii-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.cii-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.cii-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.cii-stat:hover::before {
  transform: scaleX(1);
}

.cii-stat:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(232, 97, 10, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.cii-stat .val {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.cii-stat .val em {
  color: var(--orange-light);
  font-style: normal;
}

.cii-stat .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cii-theme-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
}

.cii-theme-card::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  right: 14px;
  font-size: 130px;
  color: rgba(255, 255, 255, 0.06);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1;
  pointer-events: none;
}

.cii-theme-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--orange), var(--gold));
}

.cii-theme-eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 10px;
}

.cii-theme-text {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: white;
  line-height: 1.55;
}

.cii-theme-text em {
  color: var(--orange-light);
  font-style: italic;
}

.cii-offices-row {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cii-offices-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.cii-offices-label svg {
  color: var(--orange);
}

.offices-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  flex: 1;
}

.office-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  padding: 5px 13px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
  transition: all 0.2s;
}

.office-tag:hover {
  background: rgba(232, 97, 10, 0.15);
  border-color: rgba(232, 97, 10, 0.3);
  color: var(--orange-light);
}

.cii-offices-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════ */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  text-align: center;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background: url('../images/uploads/banner2.png') center/cover no-repeat;
}

.cta-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 20, 45, 0.9), rgba(232, 97, 10, 0.6));
}

.cta-band-content {
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.cta-band p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
}

.cta-band-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
/* ════════════════════════════════════════
   FOOTER (Editorial White — redesign)
   ════════════════════════════════════════ */
footer {
  background: #fff;
  border-top: 1px solid var(--border);
}

.footer-accent {
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--gold) 55%, var(--navy) 100%);
}

/* Hero row */
.footer-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 20px 0 40px;
  border-bottom: 1px solid gray;
}

.footer-hero-left {
  max-width: 420px;
}

.footer-logo-img {
  width: 112px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.footer-tagline {
  font-size: 16.5px;
  color: black;
  line-height: 1.76;
}

.footer-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.footer-event-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  white-space: nowrap;
}

.footer-event-pill svg {
  color: var(--orange);
  flex-shrink: 0;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-size: 16.5px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.18s;
  margin-top: 6px;
}

.footer-cta:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

/* Nav row */
.footer-nav-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 2px;
  padding: 16px 0;
  /* border-top: 1px solid var(--border); */
  border-bottom: 1px solid var(--border);
}

.footer-nav-row a {
  font-size: 16.5px;
  color: black;
  text-decoration: none;
  padding: 3px 6px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.footer-nav-row a:hover {
  color: var(--orange);
  background: rgba(232, 97, 10, 0.06);
}

.footer-sep {
  color: #ccc;
  font-size: 18px;
  line-height: 1;
  user-select: none;
  padding: 0 2px;
}

/* Contact row */
.footer-contact-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-contact-item svg {
  color: var(--orange);
  flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 16.5px;
  color: black;
  text-decoration: none;
  line-height: 1.4;
}

.footer-contact-item a:hover {
  color: var(--orange);
}

.footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d0d5de;
  flex-shrink: 0;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 0;
}

.footer-bottom p {
  font-size: 12.5px;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--orange);
  text-decoration: none;
}

/* Social icons — outlined circles */
.footer-soc {
  display: flex;
  gap: 8px;
}

.fsoc {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.fsoc:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232, 97, 10, 0.06);
}

.footer-enseur {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ════════════════════════════════════════
   STATS BAND (Classic style)
   ════════════════════════════════════════ */
.stats-band {
  background: var(--navy);
  padding: 0;
  border-top: 3px solid var(--orange);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-band-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-cell {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.stat-cell::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  height: 40%;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-50%);
}

.stat-cell .s-num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-cell .s-num em {
  color: var(--gold-light);
  font-style: normal;
}

.stat-cell .s-lbl {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 8px;
}

/* ════════════════════════════════════════
   FADE ANIMATION
   ════════════════════════════════════════ */
.fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade.in {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   TOUCH / NO-HOVER FALLBACK (mobile)
   ════════════════════════════════════════ */
@media (hover: none) {
  .ex-content {
    transform: translateY(0);
  }

  .ex-content h3::after {
    width: 28px;
    height: 2px;
    margin-top: 10px;
  }

  .ex-list {
    opacity: 1;
    max-height: 300px;
  }
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media(max-width:1200px) {
  header {
    padding: 0 32px;
  }

  nav a {
    font-size: 13.5px;
    padding: 6px 9px;
  }

  .logo-img {
    height: 64px;
  }

  .logo-img1 {
    height: 40px;
  }

  .logo-img2 {
    height: 58px;
  }
}

@media(max-width:1100px) {
  .exhibitor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ben-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-hero {
    flex-direction: column;
    gap: 28px;
    padding: 40px 0 32px;
  }

  .footer-hero-right {
    align-items: flex-start;
  }

  .stats-band-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .obj-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:900px) {
  header {
    padding: 0 20px;
    height: 64px;
    grid-template-columns: 1fr auto;
  }

  .logo-img {
    height: 48px;
  }

  .logo-img2 {
    height: 48px;
  }

  nav {
    display: none;
  }

  .hdr-right .partner-pill {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    top: 64px;
  }

  .banner {
    margin-top: 64px;
  }

  .page-hero {
    margin-top: 64px;
    padding: 52px 0 44px;
  }

  .slide-inner {
    padding: 0 32px;
  }

  .evtol-float {
    display: none;
  }

  .bg-grid,
  .obj-intro,
  .rates-grid,
  .cii-hero {
    grid-template-columns: 1fr;
  }

  .cii-offices-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cii-offices-label {
    border-right: none;
    padding-right: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .cii-offices-note {
    white-space: normal;
  }

  .ben-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .ben-stat:nth-child(2) {
    border-right: none;
  }

  .ben-stat:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .ben-stat:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-right: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gal-item.gal-wide {
    grid-column: span 2;
  }

  .obj-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .obj-card:nth-child(n) {
    grid-column: auto;
  }

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

  .addr-card {
    grid-column: span 2;
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .container {
    padding: 0 32px;
  }

  section {
    padding: 64px 0;
  }

  .footer-contact-row {
    gap: 8px 20px;
  }

  .hdr-right .partner-pill .pp-label {
    display: none;
  }

  .ex-row-card {
    grid-template-columns: 160px 1fr;
  }

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

  .enq-map {
    height: 280px;
  }

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

  .form-group.full {
    grid-column: span 1;
  }

  .stats-band-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-full {
    columns: 2;
  }
}

@media(max-width:640px) {

  .obj-grid,
  .obj-grid-full {
    grid-template-columns: 1fr;
  }

  .ben-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gal-item.gal-wide {
    grid-column: auto;
    aspect-ratio: 4/3;
  }

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

  .ex-card {
    aspect-ratio: unset;
    min-height: 400px;
  }

  .ex-content {
    transform: translateY(0);
    padding: 14px 16px 16px;
  }

  .ex-content h3 {
    font-size: 15px;
  }

  .ex-content h3::after {
    width: 24px;
    height: 2px;
    margin-top: 8px;
  }

  .ex-list {
    opacity: 1;
    max-height: none;
    gap: 4px;
    margin-top: 9px;
  }

  .ex-list li {
    font-size: 13.5px;
    line-height: 1.45;
  }

  #exhibitors {
    padding: 48px 0;
  }

  .enq-grid {
    gap: 28px;
  }

  .enq-map {
    height: 220px;
  }

  .contact-form-wrap {
    padding: 24px 18px;
  }

  .contact-form-wrap h3 {
    font-size: 18px;
  }

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

  .addr-card {
    grid-column: span 1;
  }

  .footer-contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-dot {
    display: none;
  }

  .footer-event-pill {
    white-space: normal;
  }

  .container {
    padding: 0 20px;
  }

  .slide-inner {
    padding: 0 20px;
  }

  .banner-arr {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  header {
    padding: 0 16px;
  }

  .ex-row-card {
    grid-template-columns: 1fr;
  }

  .ex-row-img {
    height: 180px;
  }

  .stats-band-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-full {
    columns: 2;
  }

  .vis-arr {
    display: none;
  }

  .vis-carousel-outer {
    gap: 0;
  }

  .page-hero-meta {
    gap: 10px;
  }

  .hero-meta-chip {
    font-size: 12px;
    padding: 6px 10px;
  }
}

/* ─── Utility ─── */
.text-center {
  text-align: center;
}

.text-center .sec-eyebrow {
  justify-content: center;
}

.text-center .sec-lead {
  margin: 0 auto;
}