/* ==========================================================================
   IMWTE 2026 - International Medical Wellness Tourism Expo
   World-Class Modern UI/UX Stylesheet (100% Faithful to Source Mockup)
   ========================================================================== */

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

:root {
  /* Brand Primary Colors */
  --primary-navy: #092853;
  --primary-navy-dark: #051937;
  --primary-blue: #0b3c78;
  --secondary-blue: #15559a;
  --accent-cyan: #14c8db;
  --accent-cyan-dark: #0b9fb0;
  --accent-red: #e02b20;
  --accent-red-hover: #c42016;
  
  /* Button & Action Colors */
  --btn-exhibitor-bg: #092853;
  --btn-visitor-bg: #4988e3;
  --btn-visitor-hover: #3b76cc;
  
  /* Dark Glassmorphic Card Colors */
  --card-dark-bg: linear-gradient(145deg, #0b3469 0%, #0d4282 50%, #114e97 100%);
  --card-dark-border: rgba(255, 255, 255, 0.14);
  --card-glow-cyan: rgba(20, 200, 219, 0.25);
  
  /* Neutral Palette */
  --text-main: #0c2340;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-white: #ffffff;
  --text-light-blue: #d4e6fb;
  
  /* Backgrounds */
  --bg-page: #ffffff;
  --bg-soft-gradient: linear-gradient(180deg, #ffffff 0%, #f0f7fe 35%, #e1effe 100%);
  --bg-components-gradient: linear-gradient(180deg, #edf5fd 0%, #e2f0fd 100%);
  --bg-audience-gradient: linear-gradient(180deg, #f0f7ff 0%, #e1effe 100%);
  --footer-bg: #071e3d;
  --footer-border: #13335e;
  
  /* Shadows & Radius */
  --shadow-sm: 0 4px 14px rgba(9, 40, 83, 0.06);
  --shadow-md: 0 10px 25px rgba(9, 40, 83, 0.09);
  --shadow-lg: 0 20px 40px rgba(9, 40, 83, 0.14);
  --shadow-card-dark: 0 12px 30px rgba(5, 25, 55, 0.28);
  --shadow-glow: 0 0 25px rgba(20, 200, 219, 0.35);
  
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Icon Utilities */
.svg-icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  vertical-align: middle;
}

.svg-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================================
   Top Header & Navigation Bar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(9, 40, 83, 0.08);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 4px 25px rgba(9, 40, 83, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

/* Top Partner Strip */
.header-top {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 8px 0;
  background: #ffffff;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  transition: var(--transition-fast);
}

.brand-logo-wrap:hover {
  transform: scale(1.02);
}

.brand-logo-wrap img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.header-partners-combined img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* Main Nav Bar */
.header-nav-row {
  padding: 10px 0;
  background: #ffffff;
}

.header-nav-row .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.mobile-actions {
  display: none;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--primary-navy);
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--btn-visitor-bg);
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--btn-visitor-bg);
}

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

/* Header Action Buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: var(--transition-normal);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(9, 40, 83, 0.12);
}

.btn-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(9, 40, 83, 0.2);
}

.btn-pill:active {
  transform: translateY(0);
}

.btn-exhibitor {
  background: var(--btn-exhibitor-bg);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-exhibitor:hover {
  background: #051a38;
}

.btn-visitor {
  background: var(--btn-visitor-bg);
  color: #ffffff;
}

.btn-visitor:hover {
  background: var(--btn-visitor-hover);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.6rem;
  color: var(--primary-navy);
  padding: 4px;
  line-height: 1;
}

/* ==========================================================================
   Hero Section (layered composition -- background + text/logo layers +
   collage + floating badges, built from separate PNG assets)
   ========================================================================== */
.hero-section {
  width: 100%;
  margin-top: -24px;
  position: relative;
  z-index: 1;
}

.hero-layered {
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.hero-bg-image {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-color: #eaf3ff;
}

.hero-layered .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 10px 0 8px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.hero-logo-lockup {
  width: 260px;
  max-width: 70%;
  height: auto;
}

.hero-headline-img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.hero-tagline-img {
  width: 100%;
  max-width: 520px;
  height: auto;
}

.hero-date-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  margin-top: 4px;
}

/* Hero Live Pill */
.hero-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 200, 219, 0.35);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
  align-self: flex-start;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.12;
  color: var(--primary-navy);
  letter-spacing: -0.03em;
}

.hero-title .highlight-red {
  color: var(--accent-red);
  display: block;
}

.hero-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-blue);
  letter-spacing: -0.01em;
}

/* Event Date & Location Pill */
.hero-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #13bccf 0%, #0c9ab0 100%);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(19, 188, 207, 0.35);
  margin-top: 4px;
  align-self: flex-start;
}

.hero-date-badge svg {
  width: 1.1em;
  height: 1.1em;
}

/* Countdown Timer */
.hero-countdown-wrap {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(20, 200, 219, 0.25);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
  align-self: flex-start;
  box-shadow: var(--shadow-sm);
}

.countdown-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown-units {
  display: flex;
  align-items: center;
  gap: 10px;
}

.countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
}

.countdown-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
}

.countdown-text {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.countdown-colon {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-cyan-dark);
  margin-top: -6px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.hero-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 0 0 auto;
}

.hero-visual-img {
  width: 78%;
  display: block;
  margin-left: auto;
  filter: drop-shadow(0 18px 35px rgba(9, 40, 83, 0.15));
}

.hero-badge {
  position: absolute;
  width: 32%;
  max-width: 230px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(9, 40, 83, 0.28));
}

.hero-badge-stemcell { top: 16%; left: 0%; }
.hero-badge-ivf      { top: 38%; left: -2%; }
.hero-badge-hospital { top: 58%; left: 1%; }

/* Continuous gentle float loop -- only added by JS once an element has
   finished its entrance transition, so nothing fights the slide-in. */
.is-floating {
  animation: floatSubtle 6s ease-in-out infinite alternate;
}

.hero-badge-ivf.is-floating { animation-duration: 5.2s; animation-delay: 0.2s; }
.hero-badge-hospital.is-floating { animation-duration: 6.6s; animation-delay: 0.4s; }

@keyframes floatSubtle {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

/* Hero entrance -- each element fades + slides in on load (the hero is
   above the fold, so this plays right away); logo/headline/tagline/date
   come in from the left, the collage + badges come in from the right.
   See js/app.js -> initHeroAnimation(). */
.hero-el {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 0.8, 0.32, 1);
}

.hero-content .hero-el {
  transform: translateX(-36px);
}

.hero-visual-wrap .hero-el {
  transform: translateX(36px) scale(0.94);
}

.hero-el.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .hero-el { transition: none; opacity: 1; transform: none; }
  .is-floating { animation: none; }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 40px 0 32px;
    gap: 28px;
  }
  .hero-content { align-items: center; text-align: center; }
  .hero-visual-wrap { max-width: 360px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero-badge { max-width: 150px; }
  .hero-badge-stemcell { top: 12%; left: 0%; }
  .hero-badge-ivf      { top: 40%; left: -2%; }
  .hero-badge-hospital { top: 66%; left: 1%; }
}

/* Hero image: lihat rule .hero-section di atas (Hero Section - satu gambar penuh) */
.hero-full-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Countdown Banner (full-width, between Hero and Bridging)
   Timer digits (#cdDays etc.) are driven by initCountdownTimer() in js/app.js
   ========================================================================== */
.section-countdown {
  background-image: url('../assets/sections/countdown_bg.jpg');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  background-color: var(--primary-navy-dark);
  padding: 30px 0;
}

.countdown-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.countdown-banner-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(20px, 2.6vw, 32px);
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  color: var(--text-white);
  margin: 0;
  flex: 1 1 260px;
}

.countdown-banner-timer {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  flex: 0 0 auto;
}

.countdown-banner-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
}

.countdown-banner-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1;
  color: var(--text-white);
  font-variant-numeric: tabular-nums;
}

.countdown-banner-label {
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 6px;
  color: var(--text-light-blue);
  text-transform: uppercase;
  letter-spacing: .3px;
}

.countdown-banner-colon {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 44px);
  padding-bottom: 20px;
  color: var(--accent-cyan);
}

@media (max-width: 700px) {
  .section-countdown { padding: 18px 0; }
  .countdown-banner-inner { flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: 4px; }
  .countdown-banner-heading { align-items: center; margin: 0 0 6px 0; flex: none; }
  .countdown-banner-timer { gap: 8px; margin: 0; }
  .countdown-banner-unit { min-width: 52px; }
}

/* ==========================================================================
   Section 2: Bridging Indonesian Markets
   ========================================================================== */
.section-bridging {
  padding: 45px 0 338px 0;
  background-image: url('../assets/sections/bridging_bg.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
}

.section-bridging .container {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding-top: 8px;
  padding-bottom: 24px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 22px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.section-bridging .lead-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 18px;
  text-align: justify;
}

/* Highlights Row */
.bridging-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 35px 0;
}

.highlight-item {
  background: #f8fbff;
  border: 1px solid #e2eaf4;
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: var(--transition-normal);
}

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

.highlight-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(20, 200, 219, 0.12);
  color: var(--secondary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 2px;
}

.highlight-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   Section 3: Key Components
   ========================================================================== */
.section-components {
  padding: 90px 0 110px 0;
  background-image: url('../assets/sections/components_bg_plain.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.components-hex-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: none;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 900px) {
  .components-hex-img {
    display: none;
  }
}

.section-components .container {
  position: relative;
  z-index: 1;
}

.components-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 540px;
}

.component-card {
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  position: relative;
}

.component-card:hover {
  transform: none;
  box-shadow: none;
}

/* Divider between Key Components text blocks — replaces the boxed card look
   with a soft gradient rule, matching the reference design. */
.component-divider {
  border: none;
  height: 3px;
  margin: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, rgba(9, 40, 83, .55) 0%, rgba(9, 40, 83, .12) 55%, rgba(9, 40, 83, 0) 100%);
}

.component-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.component-card .sub-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--secondary-blue);
  margin-bottom: 6px;
}

.component-card p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
}

.engagement-block {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.engagement-item {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.55;
}

.engagement-item strong {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary-navy);
}

/* ==========================================================================
   Section 4: Why IMWTE 2026 -> auto+click slider, per-slide background
   ========================================================================== */
.section-why {
  padding: 75px 0 60px 0;
  background: #ffffff;
  text-align: center;
}

.section-why .section-title {
  margin-bottom: 40px;
}

.why-slider {
  position: relative;
  overflow: hidden;
  padding: 44px 0 56px;
  margin-top: 6px;
}

.why-slider-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 0;
}

.why-bg-layer {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.why-bg-layer.is-active {
  opacity: 1;
}

.why-slider-bg::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(180deg, rgba(5, 25, 55, 0.58) 0%, rgba(5, 25, 55, 0.78) 100%);
}

.why-slider-viewport {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
}

.why-slider-track {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 22px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  width: max-content;
}

.why-slide {
  flex: 0 0 340px;
  max-width: 78vw;
  cursor: pointer;
  opacity: 1;
  transform: scale(0.86);
  transition: transform 0.5s ease;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) {
  .why-slide { max-width: 45vw; }
}

@media (min-width: 1000px) {
  .why-slide { max-width: 340px; }
}

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

.why-slide.is-active {
  transform: scale(1.08);
  z-index: 2;
  cursor: default;
}

.why-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary-navy);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
}

.why-slider-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

.why-slider-arrow.prev {
  left: 16px;
}

.why-slider-arrow.next {
  right: 16px;
}

.why-slider-dots {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.why-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.why-dot.is-active {
  background: var(--accent-cyan);
  width: 22px;
  border-radius: var(--radius-pill);
}

@media (max-width: 720px) {
  .why-slider-arrow {
    width: 36px;
    height: 36px;
  }
}

/* ==========================================================================
   Section 5: Target Audience (background gambar dari js/data.js,
   badge = gambar shape+icon, teks Exhibitors/Buyers/dst di-render dari code)
   ========================================================================== */
.section-audience {
  padding: 65px 0 70px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
}

.section-audience .section-title {
  margin-bottom: 40px;
  color: #ffffff;
}

.audience-badges-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.ta-badge-card {
  aspect-ratio: 301 / 455;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 42% 14px 0 14px;
  opacity: 0.86;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.ta-badge-card:hover {
  transform: translateY(-8px);
  opacity: 1;
}

.ta-badge-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ta-badge-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 10px;
}

.ta-badge-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.ta-badge-sub {
  font-size: 0.78rem;
  color: #cbd5e1;
  margin-top: 10px;
}

@media (max-width: 700px) {
  .audience-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 360px;
  }
  .ta-badge-card { justify-content: center; }
  .ta-badge-title { font-size: 1.9rem; }
  .ta-badge-number { font-size: 3rem; }
  .ta-badge-sub { font-size: 0.88rem; }
}

/* ==========================================================================
   Section 6: Who Will Attend IMWTE 2026?
   ========================================================================== */
.section-attendees {
  padding: 75px 0 60px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.section-attendees .section-title {
  margin-bottom: 18px;
}

.section-attendees .lead-text {
  max-width: 980px;
  margin: 0 auto 40px auto;
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.7;
  text-align: justify;
}

/* Who Will Attend hero banner slider (auto + click, crossfade between
   the B2C / B2B category banners -- images are pre-baked with their
   own text overlay, see js/data.js -> attendeeHeroBanners) */
.attendee-hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 2200 / 854;
  overflow: hidden;
  margin-bottom: 18px;
}

.attendee-hero-slide {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.attendee-hero-slide.is-active {
  opacity: 1;
}

.attendee-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.attendee-hero-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.attendee-hero-dots .why-dot,
.attendee-hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  background: rgba(9, 40, 83, 0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.attendee-hero-dots button.is-active {
  background: var(--accent-cyan);
  width: 22px;
  border-radius: var(--radius-pill);
}

.attendee-cards-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
  text-align: left;
}

.attendee-card {
  background: var(--card-dark-bg);
  border-radius: var(--radius-md);
  padding: 26px 32px;
  color: #ffffff;
  box-shadow: var(--shadow-card-dark);
  border: 1px solid var(--card-dark-border);
  transition: var(--transition-normal);
}

.attendee-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(20, 200, 219, 0.2);
  border-color: var(--accent-cyan);
}

.attendee-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.attendee-card h3 {
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
}

.attendee-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  background: rgba(20, 200, 219, 0.2);
  border: 1px solid rgba(20, 200, 219, 0.4);
  border-radius: var(--radius-pill);
  color: #14c8db;
}

.attendee-subtitle {
  font-size: 0.92rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 16px;
}

.attendee-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.attendee-list li {
  font-size: 0.9rem;
  color: #f1f5f9;
  line-height: 1.45;
  position: relative;
  padding-left: 22px;
  display: flex;
  align-items: flex-start;
}

.attendee-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: 800;
  font-size: 0.9rem;
}

/* ==========================================================================
   Section 7: How to Take Part in The Promotion
   ========================================================================== */
.section-promotion {
  padding: 75px 0 0 0;
  background: #f8fbff;
  text-align: center;
}

.section-promotion .section-title {
  margin-bottom: 18px;
}

.section-promotion .lead-text {
  max-width: 980px;
  margin: 0 auto 40px auto;
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.7;
  text-align: justify;
}

.promo-slider-viewport {
  position: relative;
  max-width: 1120px;
  margin: 34px auto 0;
  overflow: hidden;
  padding: 10px 0;
}

.promo-slider-track {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  width: max-content;
}

.promo-slide {
  flex: 0 0 380px;
  max-width: 78vw;
  cursor: pointer;
  transform: scale(0.86);
  transition: transform 0.5s ease;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) {
  .promo-slide { max-width: 45vw; }
}

@media (min-width: 1000px) {
  .promo-slide { max-width: 380px; }
}

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

.promo-slide.is-active {
  transform: scale(1.08);
  z-index: 2;
  cursor: default;
}

.promo-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-navy);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
}

.promo-slider-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

.promo-slider-arrow.prev { left: 16px; }
.promo-slider-arrow.next { right: 16px; }

.promo-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.promo-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  background: rgba(9, 40, 83, 0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.promo-dot.is-active {
  background: var(--accent-cyan);
  width: 22px;
  border-radius: var(--radius-pill);
}

@media (max-width: 720px) {
  .promo-slider-arrow { width: 36px; height: 36px; }
}

.promo-cta-banner {
  position: relative;
  width: 100%;
  background-image: url('../assets/sections/promo_cta_bg.png');
  background-size: cover;
  background-position: center;
  padding: 48px 20px;
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.promo-cta-banner::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(90deg, rgba(5, 25, 55, 0.72) 0%, rgba(9, 40, 83, 0.45) 100%);
}

.promo-cta-banner .container {
  display: flex;
  justify-content: center;
}

.promo-cta-btn {
  position: relative;
  z-index: 1;
  padding: 18px 46px;
  font-size: 1rem;
}

/* ==========================================================================
   Section 8: News
   ========================================================================== */
.section-news {
  padding: 80px 0 90px 0;
  background: linear-gradient(180deg, #eef4ff 0%, #dbe8fd 100%);
  text-align: center;
}

.section-news .section-title {
  margin-bottom: 45px;
}

.news-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
  text-align: left;
}

.news-card {
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  cursor: pointer;
  border: 1px solid #e8eff7;
  box-shadow: var(--shadow-sm);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--btn-visitor-bg);
}

.news-image-frame {
  position: relative;
  height: 240px;
  overflow: hidden;
  clip-path: polygon(8% 0%, 92% 0%, 100% 12%, 100% 100%, 0% 100%, 0% 12%);
}

.news-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-image-frame img {
  transform: scale(1.06);
}

.news-category-tag {
  position: absolute;
  bottom: 12px;
  left: 14px;
  background: rgba(9, 40, 83, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.news-body {
  padding: 20px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.news-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.news-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.news-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  text-align: justify;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--btn-visitor-bg);
  text-transform: uppercase;
  margin-top: auto;
  transition: var(--transition-fast);
}

.news-card:hover .news-read-more {
  color: var(--btn-visitor-hover);
  transform: translateX(4px);
}

/* ==========================================================================
   Footer & Contact Section
   ========================================================================== */
.site-footer {
  background: var(--footer-bg);
  color: #ffffff;
  padding: 65px 0 35px 0;
  border-top: 3px solid var(--secondary-blue);
  position: relative;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: flex-start;
}

.footer-heading {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.contact-person-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-person-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-normal);
}

.contact-person-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
}

.person-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.person-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #ffffff;
}

.contact-info-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #d1e4fb;
  transition: var(--transition-fast);
}

.contact-info-link:hover {
  color: var(--accent-cyan);
}

.contact-person-actions {
  display: flex;
  gap: 8px;
}

.btn-whatsapp-direct {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #25d366;
  color: #ffffff;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  transition: var(--transition-fast);
}

.btn-whatsapp-direct:hover {
  background: #20ba5a;
  transform: scale(1.04);
}

.info-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.organizer-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 8px;
}

.organizer-badge-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.office-block .footer-heading {
  margin-bottom: 12px;
}

.office-address {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #d1e4fb;
  margin-bottom: 16px;
}

.btn-office-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  transition: var(--transition-fast);
  align-self: flex-start;
}

.btn-office-map:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--accent-cyan);
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 24px;
  border-top: 1px solid var(--footer-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: #7d96b8;
}

/* Floating WhatsApp Button */
.btn-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition-normal);
}

.btn-whatsapp-float:hover {
  background: #1ebe5a;
  transform: translateY(-4px) scale(1.05);
}

@media (max-width: 600px) {
  .btn-whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
}

/* Floating Back to Top */
.btn-back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--btn-visitor-bg);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(9, 40, 83, 0.25);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

@media (max-width: 600px) {
  .btn-back-to-top {
    bottom: 78px;
    right: 16px;
  }
}

.btn-back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.btn-back-to-top:hover {
  background: var(--btn-visitor-hover);
  transform: translateY(-4px);
}

/* ==========================================================================
   Modals & Interactive Dialogs
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 25, 55, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #ffffff;
  width: 100%;
  max-width: 640px;
  max-height: 92vh;
  border-radius: var(--radius-lg);
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 22px 28px;
  background: linear-gradient(135deg, #092853 0%, #15559a 100%);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.35rem;
  color: #ffffff;
}

.modal-close-btn {
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

.modal-body {
  padding: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--btn-visitor-bg);
  box-shadow: 0 0 0 3px rgba(73, 136, 227, 0.2);
}

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

.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #092853 0%, #15559a 100%);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 18px rgba(9, 40, 83, 0.25);
  margin-top: 10px;
  transition: var(--transition-fast);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(9, 40, 83, 0.35);
}

/* Success Card in Modal */
.modal-success-state {
  text-align: center;
  padding: 20px 10px;
  display: none;
}

.success-icon {
  width: 65px;
  height: 65px;
  background: #10b981;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px auto;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.pass-badge {
  background: #f8fafc;
  border: 2px dashed #94a3b8;
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 20px 0;
  text-align: left;
}

.pass-badge-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.pass-qr-canvas {
  width: 90px;
  height: 90px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pass-actions-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
}

/* ==========================================================================
   NEW: Page Top Spacing (untuk halaman tanpa hero: Exhibit, Visit, Media, Contact)
   ========================================================================== */
.page-top-section {
  padding-top: 64px;
}

.page-lead-title {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 8px auto;
}

.page-lead-text {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px auto;
  color: var(--text-body);
  line-height: 1.7;
}

/* ==========================================================================
   NEW: Media Page - Media Kit bar
   ========================================================================== */
.section-media-kit {
  padding: 20px 0 60px 0;
  text-align: center;
}

.media-kit-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 20px;
}

.media-kit-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.media-kit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 6px;
  background: var(--btn-exhibitor-bg);
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.media-kit-btn:nth-child(2) { background: var(--secondary-blue); }
.media-kit-btn:nth-child(3) { background: var(--primary-blue); }
.media-kit-btn:nth-child(4) { background: var(--btn-visitor-bg); }

.media-kit-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.media-kit-btn svg {
  flex-shrink: 0;
}

/* ==========================================================================
   NEW: Media Page - News meta row (date/category) above title
   ========================================================================== */
.news-meta-row {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--secondary-blue);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}

/* ==========================================================================
   NEW: Media Page - Gallery Grid (gambar sudah termasuk frame/styling)
   ========================================================================== */
.section-gallery {
  padding: 20px 0 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* ==========================================================================
   NEW: Visit Page - How To Get There (gambar saja, teks sudah baked-in)
   ========================================================================== */
.section-how-to-get-there {
  padding: 70px 0 90px 0;
  background-image: url('../assets/sections/htgt_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.venue-banner-wrap {
  margin-bottom: 32px;
}

.venue-banner-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

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

.transport-card-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.transport-card-img-wrap:hover img {
  transform: translateY(-6px);
}

/* ==========================================================================
   NEW: Contact Page - "For More Information" cards (background & card = gambar)
   ========================================================================== */
.section-contact-info {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 0 100px 0;
}

.section-contact-info .section-title {
  color: var(--primary-navy);
  text-align: center;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.info-card-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.info-card-img-wrap:hover img {
  transform: translateY(-4px);
}

/* ==========================================================================
   NEW: CTA Banner (dipakai di bawah halaman Exhibit)
   ========================================================================== */
.cta-banner-simple {
  text-align: center;
  padding: 50px 0 80px 0;
}

/* ==========================================================================
   Scroll Reveal (fade-in on scroll, applied site-wide)
   Class is added at runtime by js/app.js -> initScrollReveal(); no manual
   markup needed per page. Respects prefers-reduced-motion.
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
