@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Noto+Sans+Gujarati:wght@400;700;800&family=Playfair+Display:ital,wght@1,600;1,700;1,800&display=swap');

:root {
  --primary: #0b5c54;
  --primary-light: #0f7d72;
  --primary-dark: #073b36;
  --accent: #cda851;
  --accent-light: #dfbe6f;
  --accent-dark: #b18e3c;
  --bg-base: #fcf8d3;
  /* Event warm cream */
  --bg-card: #ffffff;
  --bg-alt: #f4efe0;
  --text-main: #1c2e2c;
  --text-muted: #5d7572;
  --border-color: rgba(11, 92, 84, 0.12);
  --border-gold: rgba(205, 168, 81, 0.4);
  --shadow-sm: 0 4px 6px -1px rgba(11, 92, 84, 0.04), 0 2px 4px -1px rgba(11, 92, 84, 0.02);
  --shadow-md: 0 10px 30px -5px rgba(11, 92, 84, 0.1), 0 8px 12px -6px rgba(11, 92, 84, 0.04);
  --shadow-lg: 0 20px 45px -10px rgba(11, 92, 84, 0.18);
  --radius: 12px;
  --max: 1200px;

  font-family: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  /* Offset for fixed sticky header */
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-base);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 0.95rem;
  width: 100%;
  overflow-x: hidden;
}

a,
button,
.cta-btn,
.adv-card,
.pillar-teal-card,
.pub-btn,
.spoke-node,
.floor-btn,
.pathway-card,
.exhibitor-card,
.vol-card,
.update-card,
.inquiry-item {
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary-dark);
  line-height: 1.25;
}

p {
  color: var(--text-muted);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section.alt-bg {
  background-color: var(--bg-alt);
}

.section-hdr {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-sub-badge {
  display: inline-block;
  background-color: rgba(205, 168, 81, 0.15);
  color: var(--accent-dark);
  border: 1px solid var(--border-gold);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}

.section-hdr h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  letter-spacing: -0.5px;
}

.section-hdr p {
  font-size: 1.05rem;
}

/* Base CTA Buttons */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.cta-btn:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cta-btn.gold-btn {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--primary-dark);
}

.cta-btn.gold-btn:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  color: var(--primary-dark);
}

/* ==========================================================================
   1. STICKY TOP HEADER NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #073b36;
  border-bottom: 1.5px solid rgba(205, 168, 81, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
  width: 100%;
}

.site-header.scrolled {
  background: #06322e;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo img {
  height: 44px;
  width: auto;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.logo-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.4rem 0.25rem;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Header Action CTAs */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.hdr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.hdr-btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light)) !important;
  color: var(--primary-dark) !important;
  box-shadow: 0 2px 10px rgba(205, 168, 81, 0.3) !important;
  border: none !important;
}

.hdr-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(205, 168, 81, 0.45) !important;
}

.hdr-btn-secondary {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.hdr-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
}

/* Hamburger Toggle Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle .bar {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.open .bar:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 59, 54, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2rem 1.5rem 3rem 1.5rem;
  overflow-y: auto;
  border-top: 1px solid rgba(205, 168, 81, 0.3);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.3s ease;
}

.mobile-nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.mob-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  display: block;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.mob-action-btn {
  text-align: center;
  width: 100%;
  padding: 0.9rem;
}

/* ==========================================================================
   2. HERO SECTION & COUNTDOWN
   ========================================================================== */
.hero {
  position: relative;
  background-color: #fdf8d8;
  background-image:
    linear-gradient(180deg, rgba(253, 248, 216, 0.15) 0%, rgba(253, 248, 216, 0.3) 40%, rgba(252, 248, 211, 0.75) 80%, var(--bg-base) 100%),
    url('../assets/hero_bg.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding: 2.5rem 0 3.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ==========================================================================
   2B. SUBPAGE BANNER & BREADCRUMBS (MULTI-PAGE ARCHITECTURE)
   ========================================================================== */
.page-banner {
  position: relative;
  background: linear-gradient(135deg, #073b36 0%, #0b5c54 55%, #084740 100%);
  color: #ffffff;
  padding: 3.5rem 0 3.8rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-gold);
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/bg-pattern.svg');
  opacity: 0.05;
  pointer-events: none;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

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

.breadcrumb a:hover {
  color: #ffffff;
}

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

.page-banner h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.page-banner p {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.5;
}

.hero-slide-header {
  margin-bottom: 1rem;
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-brands-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 0 1.5rem;
  margin-bottom: 0.8rem;
}

.hero-brand-jyf,
.hero-brand-km {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 0.45rem;
  text-align: center;
}

.hero-brand-jyf img {
  height: 62px;
  width: auto;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.08));
}

.hero-brand-km img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.08));
}

.hero-brand-jyf .jyf-text {
  font-family: 'Noto Sans Gujarati', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #b91c1c;
  /* Vibrant Gujarati Red */
  letter-spacing: -0.2px;
  line-height: 1.2;
}

.hero-brand-km .km-text {
  font-family: 'Noto Sans Gujarati', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #0284c7;
  /* Vibrant Kutchmitra Blue */
  letter-spacing: -0.2px;
  line-height: 1.2;
}

.hero-presents {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1c2e2c;
  letter-spacing: 0.5px;
  margin: 0.3rem 0 0.8rem 0;
  text-align: center;
}

/* Center Oval Graphic Logo */
.hero-logo-wrapper {
  margin: 0.5rem 0 0.8rem 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-oval-logo {
  max-width: 380px;
  width: 90%;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(11, 92, 84, 0.16));
}

/* Hero Dates & Venue Headline Block */
.hero-dates-venue-headline {
  margin: 0.8rem 0 1.8rem 0;
  text-align: center;
}

.hero-dates-main {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 4.5vw, 1.95rem);
  font-weight: 800;
  color: #073b36;
  letter-spacing: 1px;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.hero-venue-main {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.95rem, 3vw, 1.2rem);
  font-weight: 700;
  color: #073b36;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

.hero-positioning {
  margin: 0.5rem 0 1.5rem 0;
}

.positioning-badge {
  display: inline-block;
  background: var(--primary-dark);
  color: var(--accent-light);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.45rem 1.4rem;
  border-radius: 30px;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-gold);
}

/* Hero Dates & Venue Details */
.hero-footer-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.2rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(205, 168, 81, 0.35);
  box-shadow: 0 10px 30px rgba(11, 92, 84, 0.08);
  margin-bottom: 2rem;
  max-width: 900px;
  width: 100%;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}

.hero-meta-icon {
  font-size: 1.6rem;
}

.hero-dates,
.hero-venue,
.hero-timings {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin: 0;
}

.hero-meta-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
}

.hero-meta-divider {
  width: 1px;
  height: 36px;
  background-color: var(--border-color);
}

/* Live Countdown Timer */
.countdown-wrapper,
.countdown-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 65%, #0d6e64 100%);
  padding: 1.6rem 2.2rem;
  border-radius: 20px;
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 15px 40px rgba(7, 59, 54, 0.28);
  margin: 0 auto 2.8rem auto;
  width: 100%;
  max-width: 620px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.countdown-wrapper::before,
.countdown-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
}

.countdown-title,
.countdown-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--accent-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.95rem;
}

.countdown-box {
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(205, 168, 81, 0.35);
  padding: 0.9rem 0.5rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.countdown-box:hover {
  border-color: var(--accent-light);
  transform: translateY(-2px);
}

.countdown-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.3rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.countdown-unit {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: 1.5px;
  margin-top: 0.45rem;
  text-transform: uppercase;
}

/* 4 Audience Participation Pathways */
.hero-pathways-section {
  width: 100%;
  max-width: 1100px;
}

.pathways-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1.2rem;
}

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  width: 100%;
}

.pathway-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 1.4rem 1.15rem;
  border: 1px solid rgba(205, 168, 81, 0.25);
  box-shadow: 0 6px 20px rgba(11, 92, 84, 0.06);
  text-decoration: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.pathway-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transition: height 0.25s ease;
}

.pathway-card.pathway-stall::before {
  background: #0b5c54;
}

.pathway-card.pathway-visitor::before {
  background: #0f7d72;
}

.pathway-card.pathway-sponsor::before {
  background: #cda851;
}

.pathway-card.pathway-volunteer::before {
  background: #2563eb;
}

.pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.pathway-card:hover::before {
  height: 6px;
}

.pathway-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.pathway-content h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.pathway-content p {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pathway-arrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.pathway-card:hover .pathway-arrow {
  color: var(--accent-dark);
  transform: translateX(3px);
}

/* ==========================================================================
   3. ABOUT SECTION (CONCLAVE & VALUE PILLARS)
   ========================================================================== */
.slide-2-layout {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 3rem;
  align-items: stretch;
}

.slide-2-left {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.conclave-item-card {
  background: var(--bg-card);
  padding: 1.3rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.conclave-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.conclave-item-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.conclave-item-card p {
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0;
}

.pillars-teal-block {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 2.2rem;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
}

.pillars-teal-block h3 {
  color: white;
  font-size: 1.55rem;
  margin-bottom: 0.3rem;
}

.pillars-intro {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

.pillars-teal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  flex: 1;
}

.pillar-teal-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.2rem 1rem;
  border-radius: 10px;
}

.pillar-teal-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.pillar-teal-card .icon-box {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.pillar-teal-card h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pillar-teal-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  line-height: 1.35;
  margin: 0;
}

/* ==========================================================================
   4. INDUSTRIES SECTION
   ========================================================================== */
.industries-layout-grid {
  display: grid;
  grid-template-columns: minmax(360px, 480px) 1fr;
  gap: 3rem;
  align-items: center;
}

.hub-outer-container {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  overflow: visible;
}

.hub-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  aspect-ratio: 1 / 1;
  min-width: 78px;
  max-width: 110px;
  background: radial-gradient(circle, #dfbe6f 0%, #cda851 50%, #b18e3c 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(0.72rem, 2.2vw, 0.92rem);
  line-height: 1.15;
  box-shadow: 0 8px 30px rgba(205, 168, 81, 0.45), inset 0 2px 6px rgba(255, 255, 255, 0.6);
  border: 3px solid #ffffff;
  z-index: 5;
  text-align: center;
}

.hub-center span {
  display: block;
}

.hub-center .hub-year {
  font-size: 0.85em;
  font-weight: 800;
  color: #073b36;
}

.spoke-node {
  position: absolute;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border: 1.5px solid var(--primary);
  color: var(--primary-dark);
  padding: 0.26rem 0.6rem;
  border-radius: 30px;
  font-size: clamp(0.68rem, 1.8vw, 0.78rem);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.15px;
  box-shadow: 0 4px 12px rgba(11, 92, 84, 0.1);
  z-index: 4;
  white-space: nowrap;
  cursor: default;
  user-select: none;
  transition: all 0.25s ease;
}

.spoke-node:hover {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--accent);
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 8px 22px rgba(11, 92, 84, 0.25);
  z-index: 6;
}

.hub-spokes-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.industries-desc-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.industry-desc-item {
  background-color: var(--bg-card);
  padding: 0.95rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  scroll-margin-top: 80px;
}

.industry-desc-item:target,
.industry-desc-item.highlighted {
  border-color: var(--accent);
  background-color: #fffdf5;
  box-shadow: 0 0 0 2px var(--border-gold), var(--shadow-sm);
  animation: pulseCard 1.2s ease-out;
}

@keyframes pulseCard {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.industry-desc-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.ind-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.industry-desc-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.industry-desc-item p {
  font-size: 0.78rem;
  line-height: 1.3;
  margin: 0;
}

/* ==========================================================================
   5. TRUST & ORGANIZER PILLARS
   ========================================================================== */
.trust-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.trust-brand-card {
  background-color: var(--bg-card);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.trust-brand-card.highlighted {
  border-color: var(--border-gold);
  background: linear-gradient(180deg, #ffffff 0%, #faf8ec 100%);
}

.trust-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.trust-card-header img {
  height: 52px;
  width: auto;
}

.trust-card-header h3 {
  font-size: 1.35rem;
  margin: 0;
}

.trust-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-sub-list {
  list-style: none;
  margin: 0.6rem 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.trust-sub-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  position: relative;
  padding-left: 1.1rem;
}

.trust-sub-list li::before {
  content: '✦';
  color: var(--accent);
  position: absolute;
  left: 0;
}

/* Paanjo Vyapar Box inside JYF Card */
.trust-paanjo-box {
  margin-top: 1.2rem;
  background-color: var(--bg-base);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1rem;
}

.paanjo-header strong {
  color: var(--primary-dark);
  font-size: 0.92rem;
  display: block;
}

.paanjo-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-style: italic;
  display: block;
  margin-bottom: 0.6rem;
}

.paanjo-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.p-feat {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--primary-dark);
}

/* Publication Buttons in Janmabhoomi Card */
.pub-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin: 0.8rem 0;
}

.pub-btn {
  background-color: #e1eff0;
  color: var(--primary-dark);
  border: 1px solid var(--border-color);
  padding: 0.45rem;
  border-radius: 6px;
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  font-family: 'Outfit', sans-serif;
}

.pub-btn.full-width {
  grid-column: span 2;
}

.trust-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-color);
}

.trust-stat-box {
  text-align: center;
  background-color: var(--bg-base);
  padding: 0.7rem 0.4rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.trust-stat-box .num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary-dark);
  display: block;
  line-height: 1;
}

.trust-stat-box .label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-main);
  display: block;
}

.trust-stat-box .desc {
  font-size: 0.62rem;
  color: var(--text-muted);
}

.trust-stats-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.trust-stat-long {
  background-color: #f3efe2;
  border: 1px solid var(--border-gold);
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
}

.trust-stat-long .num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary-dark);
  display: block;
  line-height: 1;
}

.trust-stat-long .label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-main);
}

.trust-stat-long .desc {
  font-size: 0.65rem;
  color: var(--text-muted);
  display: block;
}

.trust-outbound-box {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-ext-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: #e1eff0;
  color: var(--primary-dark);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem 0.95rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.trust-ext-btn:hover {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   6. WHY PARTICIPATE (AUDIENCE-SEGMENTED TABS)
   ========================================================================== */
.audience-tab-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.aud-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  cursor: pointer;
}

.aud-tab-btn:hover {
  background: var(--primary-light);
  color: white;
}

.aud-tab-btn.active {
  background: var(--primary-dark);
  color: var(--accent-light);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.adv-card {
  background-color: var(--bg-card);
  padding: 1.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.adv-card .icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.card-tag {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  width: fit-content;
  margin-bottom: 0.6rem;
}

.card-tag.exhibitor-tag {
  background: rgba(11, 92, 84, 0.1);
  color: var(--primary);
}

.card-tag.sponsor-tag {
  background: rgba(205, 168, 81, 0.2);
  color: var(--accent-dark);
}

.card-tag.visitor-tag {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.adv-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.adv-card p {
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0;
}

/* 3-Phase Omnichannel Campaign Block */
.omnichannel-wrapper {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.omni-heading {
  text-align: center;
  font-size: 1.45rem;
  margin-bottom: 2rem;
}

.omni-columns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.omni-col {
  padding: 1.6rem;
  border-radius: 12px;
}

.omni-col.col-teal {
  background-color: #e6f3f2;
  border-top: 4px solid var(--primary);
}

.omni-col.col-gold {
  background-color: #fdf8eb;
  border-top: 4px solid var(--accent);
}

.omni-col.col-blue {
  background-color: #eaf1fb;
  border-top: 4px solid #3b82f6;
}

.phase-badge {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.omni-col.col-teal .phase-badge {
  color: var(--primary);
}

.omni-col.col-gold .phase-badge {
  color: var(--accent-dark);
}

.omni-col.col-blue .phase-badge {
  color: #2563eb;
}

.omni-col h4 {
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
}

.omni-col-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.omni-col-item {
  background: #ffffff;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.omni-col-item h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

.omni-col-item p {
  font-size: 0.74rem;
  line-height: 1.3;
  margin: 0;
}

/* ==========================================================================
   7. DEDICATED EXHIBITOR SECTION
   ========================================================================== */

/* Exhibitor Hero Banner */
.exhibitor-hero-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0d4a43 50%, var(--primary) 100%);
  color: white;
  padding: 4.5rem 0 4rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 10px 30px rgba(7, 59, 54, 0.25);
}

.exhibitor-hero-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(205, 168, 81, 0.15) 0%, rgba(205, 168, 81, 0) 70%);
  pointer-events: none;
  border-radius: 50%;
}

.exhibitor-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.exhibitor-hero-content h1 {
  color: white;
  font-size: 2.8rem;
  font-weight: 900;
  margin: 0.8rem 0 1.2rem 0;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.exhibitor-hero-content .hero-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.gold-badge {
  background: rgba(205, 168, 81, 0.2);
  color: var(--accent-light);
  border: 1px solid var(--border-gold);
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.stat-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-align: left;
  transition: transform 0.3s ease, background 0.3s ease;
}

.stat-pill:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
  border-color: var(--accent);
}

.stat-pill .stat-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.stat-pill strong {
  display: block;
  color: white;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

.stat-pill span {
  display: block;
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 0.15rem;
}

/* Exhibitor Options Grid */
.exhibitor-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-bottom: 4rem;
  align-items: stretch;
}

.exhibitor-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2.2rem 1.6rem 1.8rem 1.6rem;
  border: 2px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(11, 92, 84, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.exhibitor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11, 92, 84, 0.12);
  border-color: rgba(205, 168, 81, 0.6);
}

.exhibitor-card.featured {
  border-color: var(--accent);
  border-width: 2.5px;
  box-shadow: 0 18px 45px rgba(205, 168, 81, 0.25);
  background: linear-gradient(180deg, #fffdf5 0%, #ffffff 100%);
}

.exhibitor-card.featured:hover {
  box-shadow: 0 24px 55px rgba(205, 168, 81, 0.35);
  transform: translateY(-10px);
}

.featured-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--primary-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.35rem 1.1rem;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(205, 168, 81, 0.4);
  white-space: nowrap;
}

.stall-badge {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  background: rgba(11, 92, 84, 0.08);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  margin-bottom: 0.8rem;
}

.stall-badge.gold {
  color: var(--primary-dark);
  background: rgba(205, 168, 81, 0.22);
  border: 1px solid var(--border-gold);
}

.exhibitor-card-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px dashed rgba(11, 92, 84, 0.12);
}

.exhibitor-card-header h3 {
  font-size: 1.45rem;
  font-weight: 900;
  margin: 0.4rem 0 0 0;
  color: var(--primary-dark);
  line-height: 1.25;
}

.stall-dims {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 800;
  margin-top: 0.5rem;
  letter-spacing: 0.3px;
  background: rgba(11, 92, 84, 0.05);
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}

.exhibitor-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-grow: 1;
  padding: 0;
}

.exhibitor-features-list li {
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.45;
  padding-left: 1.5rem;
  position: relative;
}

.exhibitor-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.95rem;
}

.exhibitor-card.featured .exhibitor-features-list li::before {
  color: var(--accent-dark);
}

.stall-card-footer {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(11, 92, 84, 0.08);
}

.stall-btn {
  width: 100%;
  text-align: center;
  font-size: 0.88rem;
  padding: 0.85rem 1.2rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.stall-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(205, 168, 81, 0.35);
}

/* Exhibitor Benefits Section */
.exhibitor-benefits-section {
  margin: 4.5rem 0;
  background: var(--bg-alt);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  border: 1px solid var(--border-color);
}

.benefits-section-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 2.8rem;
  font-family: 'Outfit', sans-serif;
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.benefit-item {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-item:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 15px 35px rgba(205, 168, 81, 0.18);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(11, 92, 84, 0.1) 0%, rgba(205, 168, 81, 0.15) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--border-gold);
}

.benefit-item h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--primary-dark);
}

.benefit-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Floor Plan Section */
.floor-plan-section {
  margin: 4.5rem 0;
}

.floor-plan-card {
  background: var(--bg-card);
  border-radius: 24px;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
}

.floor-plan-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(11, 92, 84, 0.08);
  flex-wrap: wrap;
}

.floor-plan-header-flex h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin: 0;
}

.floor-plan-header-flex p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0.3rem 0 0 0;
}

.floor-toggle-btns {
  display: flex;
  gap: 0.5rem;
  background: var(--bg-alt);
  padding: 0.4rem;
  border-radius: 14px;
  border: 1px solid var(--border-color);
}

.floor-tab-btn {
  padding: 0.75rem 1.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.floor-tab-btn.active,
.floor-tab-btn:hover {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(11, 92, 84, 0.2);
}

.map-display-body {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #073b36;
  border: 2px solid var(--border-gold);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.floor-map-pane {
  display: none;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floor-map-pane.active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.3s ease-out forwards;
}

.floor-img {
  width: 100%;
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  display: block;
}

.map-zoom-hint {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  background: rgba(7, 59, 54, 0.88);
  color: var(--accent-light);
  border: 1px solid var(--border-gold);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.25s ease;
}

.map-display-body:hover .map-zoom-hint {
  transform: scale(1.05);
  background: var(--primary);
  color: white;
}

.map-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.map-inquire-link {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.map-inquire-link:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* 3-Step Booking Journey Box */
.booking-journey-box {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0b5c54 100%);
  color: white;
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  border: 2px solid var(--border-gold);
  box-shadow: 0 15px 45px rgba(7, 59, 54, 0.25);
  text-align: center;
  margin: 4.5rem 0;
}

.booking-journey-box h3 {
  color: white;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 2.8rem;
}

.booking-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.b-step {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  padding: 2rem 1.5rem;
  border-radius: 18px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.b-step:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
}

.b-step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--primary-dark);
  border-radius: 50%;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  box-shadow: 0 4px 15px rgba(205, 168, 81, 0.4);
}

.b-step h4 {
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.b-step p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

/* Final CTA Section */
.exhibitor-final-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0c423d 50%, var(--primary) 100%);
  color: white;
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  margin-top: 4.5rem;
  border: 2px solid var(--accent);
  box-shadow: 0 25px 60px rgba(11, 92, 84, 0.3);
  position: relative;
  overflow: hidden;
}

.exhibitor-final-cta h3 {
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: white;
}

.exhibitor-final-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons-group {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.cta-buttons-group .cta-btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.cta-buttons-group .cta-btn:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transform: translateY(-3px);
}

.cta-urgency {
  font-size: 0.95rem;
  color: var(--accent-light);
  font-weight: 700;
  margin: 0;
  background: rgba(205, 168, 81, 0.12);
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  border: 1px solid var(--border-gold);
}

/* ==========================================================================
   8. NETWORKING SECTION
   ========================================================================== */
.matchmaking-flow-card {
  background: var(--bg-card);
  padding: 1.8rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
  text-align: center;
}

.matchmaking-flow-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.matchmaking-steps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.m-step {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.m-step-circle {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.4rem auto;
}

.m-step strong {
  display: block;
  font-size: 0.88rem;
  color: var(--primary-dark);
}

.m-step span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.m-step-arrow {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--accent);
}

.networking-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.2rem;
  align-items: start;
}

.networking-left {
  background-color: var(--bg-card);
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.networking-left h3 {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  color: var(--primary-dark);
}

.networking-formats-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.networking-format-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--bg-base);
  border: 1px solid var(--border-color);
  padding: 0.85rem 0.9rem;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.networking-format-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background: #ffffff;
}

.icon-circle {
  width: 26px;
  height: 26px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  min-width: 26px;
  flex-shrink: 0;
  margin-top: 1px;
}

.networking-format-item h5 {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
  line-height: 1.25;
}

.networking-format-item p {
  font-size: 0.74rem;
  line-height: 1.35;
  margin: 0;
}

.networking-right {
  background-color: var(--bg-card);
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.networking-right h3 {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  color: var(--primary-dark);
}

.deliverables-grid {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.deliverable-card {
  background-color: var(--bg-base);
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  border-top: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.deliverable-card:hover {
  background: #ffffff;
  border-left-color: var(--primary);
  transform: translateX(3px);
}

.deliverable-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.15rem;
}

.deliverable-card p {
  font-size: 0.75rem;
  line-height: 1.35;
  margin: 0;
}

/* ==========================================================================
   9. VENUE & TRANSIT GUIDE
   ========================================================================== */
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.venue-info-pane {
  background-color: var(--bg-card);
  border-radius: 18px;
  padding: 2.2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.venue-info-pane h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

/* ==========================================================================
   10. VENUE, TRANSIT & FLOOR PLANS
   ========================================================================== */
.venue-showcase-grid {
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: 2rem;
  align-items: stretch;
}

/* Left: Venue Info & Transit Card */
.venue-info-card {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.venue-info-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.venue-info-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.transit-pills-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.transit-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  transition: all 0.25s ease;
}

.transit-pill:hover {
  border-color: var(--border-gold);
  background: #fdfae3;
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(11, 92, 84, 0.08);
}

.transit-pill .t-icon {
  font-size: 1.45rem;
  flex-shrink: 0;
}

.transit-pill strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.transit-pill span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.venue-map-embed {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  height: 220px;
  margin-top: auto;
}

.venue-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Right: Floor Plan Viewer Card */
.venue-map-card {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.map-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.map-card-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0;
}

.map-card-header p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0.2rem 0 0 0;
}

.floor-toggle-btns {
  display: flex;
  gap: 0.4rem;
  background: var(--bg-base);
  padding: 0.35rem;
  border-radius: 30px;
  border: 1px solid var(--border-color);
}

.floor-tab-btn {
  border: none;
  background: transparent;
  padding: 0.5rem 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 25px;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.25s ease;
}

.floor-tab-btn:hover {
  color: var(--primary-dark);
}

.floor-tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(11, 92, 84, 0.25);
}

.map-display-body {
  position: relative;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.map-display-body:hover {
  border-color: var(--border-gold);
}



.map-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(7, 59, 54, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 0.45rem 1rem;
  border-radius: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid var(--border-gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.map-zoom-hint:hover {
  background: var(--primary);
  transform: scale(1.04);
}

.map-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.88rem;
}

.map-footer span {
  color: var(--accent-dark);
  font-weight: 700;
}

.map-inquire-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s ease;
}

.map-inquire-link:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* Floor Plan Lightbox Modal Extra Styles */
.modal-card-wide {
  max-width: 980px !important;
  width: 95% !important;
}

.modal-header-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.modal-floor-switch {
  display: flex;
  gap: 0.3rem;
  background: var(--bg-base);
  padding: 0.25rem;
  border-radius: 25px;
  border: 1px solid var(--border-color);
}

.modal-fl-btn {
  border: none;
  background: transparent;
  padding: 0.35rem 0.9rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 20px;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.modal-fl-btn:hover {
  color: var(--primary-dark);
}

.modal-fl-btn.active {
  background: var(--primary);
  color: #ffffff;
}

.modal-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.modal-download-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(205, 168, 81, 0.3);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.modal-download-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(205, 168, 81, 0.4);
}

.modal-body-scrollable {
  max-height: 65vh;
  overflow-y: auto;
  text-align: center;
  padding: 1.2rem;
  background: #fdfdfd;
}

.modal-floor-pane {
  display: none;
}

.modal-floor-pane.active {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 400px;
  animation: fadeIn 0.3s ease-out forwards;
}

.modal-floor-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  display: block;
}

.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.6rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-card);
  gap: 1rem;
  flex-wrap: wrap;
}

.modal-footer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   10. SPONSORSHIP PACKAGES & TABLE
   ========================================================================== */
.table-card {
  background-color: var(--bg-card);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-scroll-hint {
  display: none;
  background: linear-gradient(135deg, #f8f2be 0%, #faeec2 100%);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  margin-bottom: 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.table-card table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.table-card th {
  padding: 1.2rem 1.4rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  border-bottom: 2px solid var(--primary);
  white-space: nowrap;
}

.pkg-title {
  background-color: var(--accent);
  color: #ffffff;
  font-weight: 700;
}

.pkg-title-gold {
  background-color: var(--accent);
  color: #ffffff;
  font-weight: 700;
}

.pkg-title-dark {
  background-color: var(--primary-dark);
  color: #ffffff;
  font-weight: 700;
}

.pkg-title-silver {
  background-color: #b8b8b8;
  color: #ffffff;
  font-weight: 700;
}

.td-gold {
  background-color: rgba(205, 168, 81, 0.15);
}

.td-primary {
  background-color: rgba(11, 92, 84, 0.08);
}

.td-silver {
  background-color: rgba(184, 184, 184, 0.12);
}

.table-card td {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid rgba(11, 92, 84, 0.08);
  font-size: 0.95rem;
  white-space: nowrap;
}

.table-card th:first-child,
.table-card td:first-child {
  text-align: left;
  white-space: normal;
}

.table-card tr:nth-child(even) {
  background-color: rgba(248, 242, 190, 0.2);
}

.table-card tr:last-child td {
  border-bottom: none;
}

.table-card .highlight {
  font-weight: 700;
  color: var(--primary);
}

.table-card .gold-text {
  font-weight: 800;
  color: var(--accent-dark);
  font-size: 1.15rem;
}

/* ==========================================================================
   11. DEDICATED VOLUNTEER REGISTRATION SECTION
   ========================================================================== */
.volunteer-box {
  background: linear-gradient(135deg, #073b36 0%, #0b5c54 50%, #084740 100%);
  color: white;
  border-radius: 24px;
  padding: 4rem 3rem;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.volunteer-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/bg-pattern.svg');
  opacity: 0.04;
  pointer-events: none;
}

.volunteer-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  position: relative;
  z-index: 2;
}

.volunteer-pill {
  display: inline-block;
  background: rgba(205, 168, 81, 0.2);
  color: var(--accent-light);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  border: 1px solid var(--border-gold);
  margin-bottom: 0.8rem;
}

.volunteer-header h2 {
  color: white;
  font-size: 2.4rem;
  margin-bottom: 0.4rem;
}

.volunteer-subheading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.volunteer-intro {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  line-height: 1.6;
}

.volunteer-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.vol-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 1.6rem 1.2rem;
}

.vol-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
  border-color: var(--accent);
}

.vol-card-wide {
  grid-column: span 4;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(205, 168, 81, 0.12);
  border-color: rgba(205, 168, 81, 0.3);
}

.vol-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.vol-card-wide .vol-icon {
  margin-bottom: 0;
}

.vol-card h4 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.vol-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  line-height: 1.4;
  margin: 0;
}

.volunteer-cta-block {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.8rem 2.2rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.volunteer-cta-block p {
  color: white;
  font-size: 0.95rem;
}

.vol-cta-text h3 {
  color: white;
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

.vol-cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  margin: 0;
}

.vol-register-btn {
  font-size: 1.05rem;
  padding: 1rem 2rem;
  white-space: nowrap;
}

/* ==========================================================================
   12. LATEST UPDATES & ANNOUNCEMENTS
   ========================================================================== */
.updates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.update-card {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 1.6rem 1.3rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.update-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.update-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.update-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 0.2rem 0.55rem;
  border-radius: 10px;
}

.update-tag.tag-stall {
  background: rgba(11, 92, 84, 0.12);
  color: var(--primary);
}

.update-tag.tag-vol {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}

.update-tag.tag-media {
  background: rgba(205, 168, 81, 0.2);
  color: var(--accent-dark);
}

.update-tag.tag-speaker {
  background: rgba(156, 39, 176, 0.12);
  color: #8e24aa;
}

.update-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.update-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.update-card p {
  font-size: 0.82rem;
  line-height: 1.4;
  margin-bottom: 1.2rem;
}

.update-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.update-link:hover {
  color: var(--accent-dark);
}

.update-link.disabled {
  color: var(--text-muted);
  font-style: italic;
}

/* ==========================================================================
   13. FAQ ACCORDION
   ========================================================================== */
.faq-accordion-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary-dark);
  cursor: pointer;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: bold;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.35s ease;
  padding: 0 1.5rem;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 1.5rem 1.4rem 1.5rem;
  opacity: 1;
}

.faq-answer p {
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

.faq-answer a {
  color: var(--primary);
  font-weight: 600;
}

/* ==========================================================================
   14. CONTACT & DEDICATED INQUIRIES
   ========================================================================== */
.contact-card-box {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  border-radius: 20px;
  padding: 4rem 3.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.contact-card-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/bg-pattern.svg');
  opacity: 0.03;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
  align-items: start;
}

.contact-sub-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-txt-pane h2 {
  color: white;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.contact-txt-pane p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  margin-bottom: 1.8rem;
}

/* 4 Segmented Inquiry Channel Cards */
.inquiry-channels-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.inquiry-item,
a.inquiry-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 0.95rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-decoration: none !important;
  color: #ffffff !important;
  transition: all 0.25s ease;
}

.inquiry-item:hover,
a.inquiry-item:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(4px);
  border-color: var(--accent);
  color: #ffffff !important;
}

.inq-badge {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.3rem 0.65rem;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.inq-badge.exhibitor {
  background: var(--primary-light);
  color: white;
}

.inq-badge.sponsor {
  background: var(--accent);
  color: var(--primary-dark);
}

.inq-badge.visitor {
  background: #3b82f6;
  color: white;
}

.inq-badge.volunteer {
  background: #10b981;
  color: white;
}

.inq-content,
.inq-txt {
  flex: 1;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92) !important;
  line-height: 1.35;
}

.inq-content strong,
.inq-txt strong {
  color: #ffffff !important;
  font-weight: 700;
  display: block;
  margin-bottom: 0.15rem;
}

.inq-content span,
.inq-txt span {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.82rem;
}

.inq-action,
.inq-arrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-light) !important;
  white-space: nowrap;
}

/* Right Contact Info Box */
.contact-info-pane {
  background-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  padding: 2.2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-info-pane h3 {
  color: white;
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.6rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.contact-details-item span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  display: block;
  margin-bottom: 0.2rem;
}

.contact-details-item a,
.contact-details-item p {
  font-size: 0.95rem;
  color: white;
  text-decoration: none;
  font-weight: 700;
  word-break: break-all;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.contact-details-item a:hover {
  color: var(--accent-light);
  transform: translateX(4px);
}

.contact-details-item a.contact-hl-link {
  color: #4ade80;
  font-weight: 700;
}

.contact-details-item a.contact-hl-link:hover {
  color: #86efac;
}

.contact-details-item a.contact-tel-link {
  color: #ffffff;
}

.contact-details-item a.contact-tel-link:hover {
  color: #fde047;
  text-decoration: underline;
}

.contact-details-item a.contact-mail-link {
  color: #ffffff;
}

.contact-details-item a.contact-mail-link:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.contact-map-wrapper {
  width: 100%;
  height: 190px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(0, 0, 0, 0.25);
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ==========================================================================
   15. SITE FOOTER
   ========================================================================== */
.site-footer {
  padding: 4rem 0 2rem 0;
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(205, 168, 81, 0.2);
}

.footer-top-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-logo strong {
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  display: block;
}

.footer-logo p {
  font-size: 0.75rem;
  color: var(--accent);
  margin: 0;
}

.footer-org-credit {
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.footer-org-credit strong {
  color: white;
}

.footer-nav-col h4,
.footer-contact-col h4 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.86rem;
}

.footer-nav-col a:hover {
  color: var(--accent-light);
}

.footer-contact-col p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.6rem;
}

.footer-contact-col a {
  color: white;
  text-decoration: none;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.legal-btn {
  background: none;
  border: none;
  color: var(--accent-light);
  font-size: 0.78rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.footer-bottom-row {
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-privacy-note {
  font-style: italic;
  font-size: 0.74rem;
}

/* ==========================================================================
   16. MODALS & LIGHTBOXES
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #ffffff;
  border-radius: 18px;
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-gold);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.modal-card-fullscreen {
  max-width: 960px;
}

.modal-backdrop.open .modal-card {
  transform: translateY(0);
}

.modal-header {
  padding: 1.2rem 1.6rem;
  background: var(--primary-dark);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-gold);
  position: sticky;
  top: 0;
  z-index: 10;
}

.modal-header h3 {
  color: white;
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.3;
}

.legal-tab-nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  padding: 0.3rem;
  border-radius: 30px;
  border: 1px solid rgba(205, 168, 81, 0.3);
}

.legal-tab-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Outfit', sans-serif;
}

.legal-tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.legal-tab-btn.active {
  color: var(--primary-dark);
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(205, 168, 81, 0.4);
}

.modal-close {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-body {
  padding: 1.6rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.legal-tab-content {
  display: none;
  animation: fadeIn 0.25s ease-in-out forwards;
}

.legal-tab-content.active {
  display: block;
}

.legal-tab-content h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.legal-update-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-style: italic;
  display: block;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 0.5rem;
}

.legal-section-block {
  margin-bottom: 1.2rem;
}

.legal-section-block h4 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.legal-section-block p,
.legal-section-block ul {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.6;
}

.legal-section-block ul {
  padding-left: 1.4rem;
  margin-top: 0.4rem;
}

.legal-section-block li {
  margin-bottom: 0.3rem;
}

.modal-body-image {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.floor-modal-controls {
  display: flex;
  gap: 0.5rem;
  background: var(--bg-base);
  padding: 0.35rem;
  border-radius: 30px;
  border: 1px solid var(--border-color);
}

.modal-image-wrapper {
  width: 100%;
  max-height: 58vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-base);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.modal-tier-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.modal-tier-item {
  background: var(--bg-base);
  padding: 1.2rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.modal-tier-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.modal-tier-item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.modal-tier-item li {
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.4;
}

.modal-footer {
  padding: 1rem 1.6rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-alt);
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Floor Plan Zoom Button */
.map-zoom-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(7, 59, 54, 0.88);
  color: var(--accent-light);
  border: 1px solid var(--border-gold);
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s ease;
}

.map-zoom-btn:hover {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.04);
}

/* Table Scroll Hint */
.table-scroll-hint {
  display: none;
  background: rgba(205, 168, 81, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  padding: 0.45rem 0.9rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 0.85rem;
}

/* ==========================================================================
   17. MOBILE FLOATING STICKY BAR & BACK-TO-TOP
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background: rgba(7, 59, 54, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(205, 168, 81, 0.35);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  z-index: 990;
  align-items: center;
  justify-content: space-around;
  padding: 0.3rem 0.8rem;
  padding-bottom: max(0.4rem, env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.mobile-sticky-bar.visible {
  transform: translateY(0);
}

.mob-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  min-width: 76px;
}

.mob-bar-btn:active {
  transform: scale(0.94);
}

.mob-bar-icon {
  font-size: 1.15rem;
  line-height: 1.2;
}

.mob-bar-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary-dark);
  box-shadow: 0 2px 10px rgba(205, 168, 81, 0.35);
}

.mob-bar-primary .mob-bar-text {
  color: var(--primary-dark);
  font-weight: 800;
}

.mob-bar-whatsapp {
  color: #4ade80;
}

.mob-bar-whatsapp .mob-bar-text {
  color: #4ade80;
}

/* Floating Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--primary-dark);
  color: var(--accent);
  border: 1.5px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 980;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   18. COMPREHENSIVE RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* --- 1200px: Small Desktops & Landscape Tablets --- */
@media (max-width: 1200px) {
  .nav-menu {
    gap: 0.75rem;
  }

  .nav-link {
    font-size: 0.8rem;
    padding: 0.3rem 0.1rem;
  }

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

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

  .exhibitor-card.featured {
    transform: none;
  }

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

  .floor-plan-content {
    grid-template-columns: 1fr;
  }

  .cta-buttons-group {
    flex-direction: column;
  }

  .cta-buttons-group .cta-btn {
    width: 100%;
  }

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

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

  .vol-card-wide {
    grid-column: span 2;
  }

  .industries-layout-grid {
    grid-template-columns: minmax(320px, 440px) 1fr;
    gap: 2rem;
  }

  .hub-outer-container {
    max-width: 440px;
  }
}

/* --- 1140px: Tablets & Small Laptops --- */
@media (max-width: 1140px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav-drawer {
    display: block;
  }

  .hdr-btn-secondary {
    display: none;
  }

  .industries-layout-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2.5rem;
  }

  .hub-outer-container {
    max-width: 420px;
    margin: 0 auto;
  }

  .trust-cards-grid,
  .venue-grid,
  .venue-showcase-grid,
  .contact-grid,
  .networking-grid,
  .slide-2-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .omni-columns-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .footer-top-row {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* --- 768px: Mobile Phones & Portrait Tablets --- */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 68px;
  }

  body {
    padding-bottom: 60px;
    /* Offset for mobile sticky bar */
  }

  .mobile-sticky-bar {
    display: flex;
  }

  .back-to-top {
    bottom: calc(72px + env(safe-area-inset-bottom));
    right: 14px;
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-hdr {
    margin-bottom: 2rem;
  }

  .section-hdr h2 {
    font-size: 1.85rem;
  }

  .site-header .header-inner {
    height: 64px;
  }

  .brand-logo img {
    height: 38px;
  }

  .logo-title {
    font-size: 1.02rem;
  }

  .logo-subtitle {
    font-size: 0.65rem;
  }

  .mobile-nav-drawer {
    top: 64px;
    height: calc(100dvh - 64px);
    max-height: calc(100dvh - 64px);
    padding: 1.5rem 1.2rem 3rem 1.2rem;
    padding-bottom: max(3rem, env(safe-area-inset-bottom));
  }

  .hero {
    background-image:
      linear-gradient(180deg, rgba(253, 248, 216, 0.15) 0%, rgba(253, 248, 216, 0.3) 40%, rgba(252, 248, 211, 0.85) 80%, var(--bg-base) 100%),
      url('../assets/hero_bg_mobile.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 1.8rem 0 2.8rem 0;
  }

  .hero-brands-top-row {
    padding: 0 1rem;
    margin-bottom: 0.6rem;
  }

  .hero-brand-jyf img {
    height: 54px;
  }

  .hero-brand-km img {
    height: 48px;
  }

  .hero-brand-jyf .jyf-text {
    font-size: 1.15rem;
  }

  .hero-brand-km .km-text {
    font-size: 1.3rem;
  }

  .hero-presents {
    font-size: 1.55rem;
    margin: 0.2rem 0 0.6rem 0;
  }

  .hero-oval-logo {
    max-width: 320px;
    width: 90%;
  }

  .hero-dates-main {
    font-size: 1.5rem;
  }

  .hero-venue-main {
    font-size: 1rem;
  }

  .positioning-badge {
    font-size: 0.88rem;
    padding: 0.4rem 1.1rem;
  }

  .hero-footer-details {
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.1rem 1.2rem;
  }

  .hero-meta-divider {
    width: 100%;
    height: 1px;
  }

  .hero-meta-item {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-dates,
  .hero-venue,
  .hero-timings {
    font-size: 0.95rem;
  }

  .countdown-wrapper {
    padding: 1.1rem 1rem;
    margin-bottom: 2.2rem;
  }

  .countdown-num {
    font-size: 1.5rem;
  }

  .pathways-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .audience-tab-controls {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 0.6rem;
    gap: 0.5rem;
    scrollbar-width: none;
  }

  .audience-tab-controls::-webkit-scrollbar {
    display: none;
  }

  .aud-tab-btn {
    white-space: nowrap;
    font-size: 0.82rem;
    padding: 0.5rem 1.1rem;
    flex-shrink: 0;
  }

  .exhibitor-options-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats-row {
    grid-template-columns: 1fr;
  }

  .exhibitor-hero-banner {
    padding: 3.2rem 0 2.5rem 0;
  }

  .exhibitor-hero-content h1 {
    font-size: 1.95rem;
  }

  .exhibitor-hero-content .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
  }

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

  .benefit-item {
    padding: 1.5rem;
  }

  .benefits-section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .floor-plan-card {
    padding: 1.5rem 1.2rem;
  }

  .floor-plan-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .floor-toggle-btns {
    width: 100%;
  }

  .floor-tab-btn {
    flex: 1;
    text-align: center;
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
  }

  .map-display-body {
    min-height: 280px;
  }

  .exhibitor-final-cta {
    padding: 2.5rem 1.5rem;
  }

  .exhibitor-final-cta h3 {
    font-size: 1.6rem;
  }

  .exhibitor-final-cta p {
    font-size: 0.95rem;
  }

  .cta-buttons-group {
    flex-direction: column;
  }

  .cta-buttons-group .cta-btn {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
  }

  .booking-steps-grid {
    grid-template-columns: 1fr;
  }

  /* Responsive Hub Diagram on Mobile - Fully Visible, No Clipping */
  .hub-outer-container {
    max-width: 380px;
    padding: 0.6rem;
    margin: 0 auto 1.5rem auto;
    height: auto;
    overflow: visible;
  }

  .spoke-node {
    padding: 0.22rem 0.48rem;
    font-size: 0.68rem;
    letter-spacing: -0.15px;
  }

  .industries-desc-list {
    grid-template-columns: 1fr;
    width: 100%;
  }

  /* Matchmaking 5-Step Connected Flow */
  .matchmaking-steps-row {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
  }

  .m-step {
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-align: left;
  }

  .m-step-circle {
    margin: 0;
    flex-shrink: 0;
  }

  .m-step-arrow {
    align-self: center;
    transform: rotate(90deg);
    font-size: 1rem;
    margin: -0.2rem 0;
  }

  .networking-formats-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .volunteer-box {
    padding: 2.2rem 1.4rem;
    border-radius: 18px;
  }

  .volunteer-header h2 {
    font-size: 1.85rem;
  }

  .volunteer-benefits-grid {
    grid-template-columns: 1fr;
  }

  .vol-card-wide {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }

  .volunteer-cta-block {
    flex-direction: column;
    text-align: center;
    padding: 1.4rem;
    gap: 1rem;
  }

  .vol-register-btn {
    width: 100%;
    text-align: center;
  }

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

  .venue-info-card,
  .venue-map-card {
    padding: 1.5rem 1.2rem;
    border-radius: 16px;
  }

  .map-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .floor-toggle-btns {
    width: 100%;
  }

  .floor-tab-btn {
    flex: 1;
    text-align: center;
    padding: 0.45rem 0.5rem;
    font-size: 0.8rem;
  }

  .map-display-body {
    min-height: 280px;
    padding: 0.5rem;
  }

  .floor-img {
    max-height: 320px;
  }

  .map-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .contact-card-box {
    padding: 2.2rem 1.4rem;
    border-radius: 18px;
  }

  .contact-txt-pane h2 {
    font-size: 1.85rem;
  }

  .inquiry-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .inq-action {
    align-self: flex-end;
  }

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

  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .table-card {
    padding: 0.85rem;
    -webkit-overflow-scrolling: touch;
    border-radius: 14px;
  }

  .table-scroll-hint {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.76rem;
    padding: 0.35rem 0.8rem;
  }

  .table-card table {
    min-width: 820px;
    /* Generous 820px width so all 5 columns never crowd or overlap */
    border-collapse: separate;
    border-spacing: 0;
  }

  .table-card th,
  .table-card td {
    padding: 0.85rem 1.1rem;
    font-size: 0.86rem;
    min-width: 145px;
    box-sizing: border-box;
  }

  /* Fixed sticky 1st column with clean solid background and separation border */
  .table-card th:first-child,
  .table-card td:first-child {
    position: sticky;
    left: 0;
    z-index: 3;
    min-width: 190px;
    max-width: 210px;
    width: 200px;
    background-color: #ffffff;
    border-right: 2px solid var(--border-gold);
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.08);
    white-space: normal;
    word-break: normal;
    line-height: 1.25;
    text-align: left;
  }

  .table-card th:first-child {
    background-color: #fcf9e8;
    z-index: 4;
    border-bottom: 2px solid var(--primary);
  }

  .table-card tr:nth-child(even) td:first-child {
    background-color: #faf7e8;
  }

  .table-card th:not(:first-child),
  .table-card td:not(:first-child) {
    text-align: center;
    white-space: nowrap;
  }
}

/* --- 480px: Standard Smartphones (iPhone, Samsung Galaxy, Pixel) --- */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-hdr h2 {
    font-size: 1.55rem;
  }

  .section-hdr p {
    font-size: 0.92rem;
  }

  .header-actions .hdr-btn {
    display: none;
  }

  .hero {
    background-image:
      linear-gradient(180deg, rgba(253, 248, 216, 0.12) 0%, rgba(253, 248, 216, 0.25) 35%, rgba(252, 248, 211, 0.88) 75%, var(--bg-base) 100%),
      url('../assets/hero_bg_mobile.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 1.5rem 0 2.4rem 0;
  }

  .hero-brands-top-row {
    padding: 0 0.5rem;
    margin-bottom: 0.5rem;
  }

  .hero-brand-jyf img {
    height: 50px;
  }

  .hero-brand-km img {
    height: 44px;
  }

  .hero-brand-jyf .jyf-text {
    font-size: 1.05rem;
  }

  .hero-brand-km .km-text {
    font-size: 1.2rem;
  }

  .hero-presents {
    font-size: 1.45rem;
    margin: 0.2rem 0 0.6rem 0;
  }

  .hero-oval-logo {
    max-width: 290px;
    width: 92%;
  }

  .hero-dates-main {
    font-size: 1.35rem;
  }

  .hero-venue-main {
    font-size: 0.92rem;
  }

  .hero-dates,
  .hero-venue,
  .hero-timings {
    font-size: 0.88rem;
  }

  .countdown-wrapper {
    padding: 0.9rem 0.6rem;
  }

  .countdown-grid {
    gap: 0.4rem;
  }

  .countdown-card {
    padding: 0.55rem 0.2rem;
  }

  .countdown-num {
    font-size: 1.3rem;
  }

  .countdown-unit {
    font-size: 0.56rem;
  }

  /* Responsive Hub Diagram on 480px Phones - Fully Visible, No Clipping */
  .hub-outer-container {
    max-width: 330px;
    padding: 0.5rem;
    margin: 0 auto 1.2rem auto;
    height: auto;
    overflow: visible;
  }

  .hub-center {
    min-width: 68px;
    max-width: 84px;
  }

  .spoke-node {
    padding: 0.18rem 0.4rem;
    font-size: 0.6rem;
    border-width: 1px;
    letter-spacing: -0.15px;
  }

  .pillars-teal-grid {
    grid-template-columns: 1fr;
  }

  .pub-btn-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }

  .pub-btn.full-width {
    grid-column: span 2;
  }

  .trust-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }

  .trust-stat-box {
    padding: 0.5rem 0.2rem;
  }

  .trust-stat-box .num {
    font-size: 1.15rem;
  }

  .trust-stats-bottom {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }

  .trust-brand-card {
    padding: 1.8rem 1.2rem;
  }

  .venue-info-pane {
    padding: 1.6rem 1.2rem;
  }

  .map-viewer-card {
    padding: 1rem 0.8rem;
  }

  .map-header {
    margin-bottom: 0.75rem;
  }

  .map-body {
    padding: 0.25rem;
  }

  .contact-info-pane {
    padding: 1.4rem 1.1rem;
  }

  .faq-question {
    padding: 1rem 1.1rem;
    font-size: 0.94rem;
  }

  .faq-answer {
    padding: 0 1.1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.1rem 1.1rem 1.1rem;
  }

  .modal-card {
    max-height: 92vh;
    border-radius: 14px;
  }

  .modal-header {
    padding: 1rem 1.2rem;
  }

  .modal-header h3 {
    font-size: 1.05rem;
  }

  .modal-body {
    padding: 1.2rem;
  }

  .modal-footer {
    padding: 0.85rem 1.2rem;
  }

  .modal-footer .cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* --- 360px: Compact Smartphones (iPhone SE, Small Androids) --- */
@media (max-width: 360px) {
  .logo-title {
    font-size: 0.92rem;
  }

  .logo-subtitle {
    font-size: 0.6rem;
  }

  .hero-brand-jyf img {
    height: 44px;
  }

  .hero-brand-km img {
    height: 38px;
  }

  .hero-brand-jyf .jyf-text {
    font-size: 0.95rem;
  }

  .hero-brand-km .km-text {
    font-size: 1.08rem;
  }

  .hero-presents {
    font-size: 1.3rem;
  }

  .hero-oval-logo {
    max-width: 250px;
  }

  .hero-dates-main {
    font-size: 1.2rem;
  }

  .hero-venue-main {
    font-size: 0.82rem;
  }

  .positioning-badge {
    font-size: 0.78rem;
    padding: 0.35rem 0.8rem;
  }

  .countdown-num {
    font-size: 1.15rem;
  }

  .countdown-unit {
    font-size: 0.52rem;
  }

  /* Responsive Hub Diagram on Small Phones - Fully Visible, No Clipping */
  .hub-outer-container {
    max-width: 290px;
    padding: 0.35rem;
    margin: 0 auto 1rem auto;
    height: auto;
    overflow: visible;
  }

  .hub-center {
    min-width: 58px;
    max-width: 72px;
  }

  .spoke-node {
    padding: 0.14rem 0.32rem;
    font-size: 0.52rem;
    border-width: 1px;
    letter-spacing: -0.2px;
  }

  .trust-stats-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .trust-stats-bottom {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}



.pub-btn-row {
  grid-template-columns: 1fr;
}

.pub-btn.full-width {
  grid-column: span 1;
}

.mob-bar-btn {
  min-width: 60px;
  padding: 0.25rem 0.4rem;
  font-size: 0.65rem;
}

.mob-bar-icon {
  font-size: 1rem;
}