/* =============================================
   INDIA-THAILAND GLOBAL VISION CONCLAVE 2026
   Premium Dark Luxury Stylesheet
   ============================================= */

/* === CSS Variables === */
:root {
  --navy: #050d1a;
  --navy-2: #071228;
  --navy-3: #0a1a35;
  --navy-4: #0f2347;
  --gold: #C9A84C;
  --gold-light: #e2c46a;
  --gold-dark: #9a7a2e;
  --gold-glow: rgba(201, 168, 76, 0.25);
  --white: #ffffff;
  --white-85: rgba(255,255,255,0.85);
  --white-60: rgba(255,255,255,0.6);
  --white-30: rgba(255,255,255,0.3);
  --white-10: rgba(255,255,255,0.08);
  --white-5: rgba(255,255,255,0.04);
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.1);
  --glass-gold: rgba(201,168,76,0.12);
  --font-display: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-sans: 'Jost', sans-serif;
  --max-width: 1280px;
  --section-pad: 120px;
  --radius: 4px;
  --radius-lg: 12px;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white-85);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

/* === Utility === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 48px; }
.section-pad { padding: var(--section-pad) 0; }
.centered { text-align: center; }

/* === Section Label === */
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before, .section-label::after {
  content: '';
  height: 1px;
  width: 40px;
  background: var(--gold-dark);
  flex-shrink: 0;
}
.centered + .section-label, .section-label.centered {
  justify-content: center;
}

/* === Section Title === */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 40px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1em;
}
h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.02em; }

/* === Buttons === */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: #050d1a;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(201, 168, 76, 0.3);
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-gold:hover::after { transform: translateX(100%); }
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.5);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 15px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.4s var(--transition);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold-glow);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.2);
}

/* ========================================================
   NAVBAR
   ======================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.5s var(--transition);
}
#navbar.scrolled {
  background: rgba(5, 13, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  height: 100px;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-emblem svg { width: 36px; height: 36px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--white-60);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-60);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #050d1a;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 2px;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  border-radius: 1px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 80px; left: 0; right: 0;
  background: rgba(5,13,26,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.4s var(--transition);
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu ul { padding: 24px 48px; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-60);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ========================================================
   HERO SECTION
   ======================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5,13,26,0.55) 0%,
    rgba(5,13,26,0.75) 40%,
    rgba(5,13,26,0.90) 70%,
    rgba(5,13,26,1) 100%
  );
  z-index: 1;
}
#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 24px;
  border-radius: 100px;
  margin-bottom: 36px;
  backdrop-filter: blur(10px);
}
.flag-emoji { font-size: 20px; }
.badge-text {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  line-height: 1.05;
  margin-bottom: 28px;
}
.title-line {
  display: block;
  color: var(--white);
}
.line-1 {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--white-60);
  margin-bottom: 4px;
}
.line-2 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #e8d5a0, var(--gold), #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.line-3 {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--white);
}
.line-3 em {
  font-style: normal;
  color: var(--gold);
}
.hero-tagline {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 48px;
}
.hero-info-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: left;
}
.info-icon { font-size: 22px; }
.info-label {
  display: block;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.info-value {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--white-85);
  font-weight: 500;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}
.scroll-indicator span {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}



/* Combined hero sponsor row: Reflections + Informa Markets, same height, equal spacing */
.hero-sponsor-combo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-sponsor-combo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 10px 22px;
  transition: var(--transition);
}
.hero-sponsor-combo-item:hover {
  border-color: rgba(201,168,76,0.55);
  background: rgba(201,168,76,0.14);
  transform: translateY(-2px);
}
.hero-sponsor-combo-logo {
  height: 44px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
}
.hero-sponsor-combo-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.5), transparent);
}
@media (max-width: 600px) {
  .hero-sponsor-combo { gap: 16px; margin-bottom: 28px; }
  .hero-sponsor-combo-item { padding: 8px 14px; }
  .hero-sponsor-combo-logo { height: 32px; max-width: 100px; }
  .hero-sponsor-combo-divider { height: 26px; }
}

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

.hero-sponsor-label{
  font-family:var(--font-display);
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--gold);
  opacity:.9;
}

.hero-sponsor-logo{
  height:92px;
  width:auto;
  object-fit:contain;
  background:#bbc2d15e;
  padding:8px 16px;
  border-radius:10px;
  border:1px solid rgba(201,168,76,.25);
  box-shadow:0 8px 25px rgba(0,0,0,.25);
}

@media(max-width:768px){

  .hero-sponsor{
    gap:12px;
    margin-bottom:30px;
  }

  .hero-sponsor-logo{
    height:34px;
    padding:6px 12px;
  }

}

/* ========================================================
   ABOUT SECTION
   ======================================================== */
.about { background: var(--navy-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.section-label { display: flex; margin-bottom: 16px; }
.about-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--white-60);
  line-height: 1.9;
  margin-bottom: 24px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  vertical-align: super;
}
.stat-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-30);
  margin-top: 8px;
}
.about-images { position: relative; }
.img-stack { position: relative; height: 520px; }
.img-main {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.img-accent {
  position: absolute;
  bottom: 0;
  right: -30px;
  width: 55%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(201,168,76,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ========================================================
   WHY ATTEND
   ======================================================== */
.why-attend { background: var(--navy); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.why-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--glass-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.why-card:hover::before { opacity: 1; }
.why-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,168,76,0.15);
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}
.why-card h3 {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1.3;
}
.why-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white-60);
  line-height: 1.7;
}

/* ========================================================
   WHAT YOU RECEIVE
   ======================================================== */
.receive { background: var(--navy-2); }
.receive-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 0;
  margin-top: 60px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.receive-col {
  padding: 48px 36px;
  border-right: 1px solid rgba(201,168,76,0.12);
}
.receive-col:last-child { border-right: none; }
.receive-col--center {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.25) !important;
}
.receive-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.receive-icon { font-size: 1.8rem; }
.receive-header h3 {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.receive-list { display: flex; flex-direction: column; gap: 18px; }
.receive-list li {
  display: flex;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white-60);
  line-height: 1.5;
  align-items: flex-start;
}
.r-check {
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 4px;
}
.lifetime-band {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  margin-top: 32px;
}
.lifetime-icon { font-size: 2.5rem; flex-shrink: 0; }
.lifetime-content h3 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.lifetime-content p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--white-60);
}

/* ========================================================
   SPEAKERS
   ======================================================== */
.speakers { background: var(--navy); }
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.speaker-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 24px 32px;
  text-align: center;
  transition: all 0.4s var(--transition);
}
.speaker-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-8px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.speaker-avatar {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
}
.avatar-ring {
  position: absolute;
  inset: -4px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  animation: rotateSlow 8s linear infinite;
  border-top-color: transparent;
  border-right-color: transparent;
}
@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}
.avatar-inner {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--navy-4), var(--navy-3));
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 2px;
}
.speaker-info h3 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.speaker-title {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1.5;
}
.speaker-bio {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-60);
  line-height: 1.7;
}

/* ========================================================
   GVTO SECTION
   ======================================================== */
.gvto-section { background: var(--navy-2); }
.gvto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.gvto-image { position: relative; }
.gvto-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.2);
}
.gvto-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
}
.gvto-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.g-badge {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 100px;
}
.partners-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-30);
  margin-bottom: 14px;
}
.partner-logos { display: flex; flex-wrap: wrap; gap: 10px; }
.partner-chip {
  background: var(--white-5);
  border: 1px solid var(--glass-border);
  color: var(--white-60);
  font-family: var(--font-sans);
  font-size: 11px;
  padding: 8px 16px;
  border-radius: 4px;
}

/* ========================================================
   VENUE SECTION
   ======================================================== */
.venue { background: var(--navy); }
.venue-intro {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--white-60);
  text-align: center;
  max-width: 680px;
  margin: -20px auto 60px;
  line-height: 1.8;
}
.venue-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.venue-main-img { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.venue-main-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s ease;
  border: 1px solid rgba(201,168,76,0.15);
}
.venue-main-img:hover img { transform: scale(1.03); }
.venue-main-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(5,13,26,0.9));
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.venue-grid-small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.venue-thumb {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.1);
}
.venue-thumb img {
  width: 100%;
  height: 218px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.venue-thumb:hover img { transform: scale(1.05); }
.venue-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.venue-info-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.venue-info-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.vi-icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.venue-info-card h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 10px;
}
.venue-info-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-60);
  line-height: 1.6;
}
/* ========================================================
   GALLERY
======================================================== */

.gallery{
    background:#071228;
}

.gallery .container{
    max-width:1100px;
    margin:auto;
}

.gallery-subtitle{
    text-align:center;
    max-width:800px;
    margin:20px auto 0;
}

/* Masonry Layout */

.gallery-masonry{
    column-count:4;
    column-gap:14px;
    margin-top:60px;
}

.g-item{
    position:relative;
    break-inside:avoid;
    margin-bottom:14px;
    overflow:hidden;
    border-radius:12px;
    cursor:pointer;
    background:#081427;
    border:1px solid rgba(255,255,255,.08);
    transition:all .35s ease;
}

.g-item img{
    width:100%;
    height:auto;
    display:block;
    border-radius:12px;
    transition:transform .5s ease;
}

.g-item:hover{
    transform:translateY(-5px);
}

.g-item:hover img{
    transform:scale(1.05);
}

/* Remove overlay completely */

.g-overlay,
.g-tag,
.g-caption{
    display:none;
}

/* Responsive */

@media(max-width:1200px){

    .gallery-masonry{
        column-count:3;
    }

}

@media(max-width:768px){

    .gallery-masonry{
        column-count:2;
    }

}

@media(max-width:576px){

    .gallery-masonry{
        column-count:1;
    }

}

/* ========================================================
   LIGHTBOX
======================================================== */

.lightbox{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    z-index:9999;
    justify-content:center;
    align-items:center;
    backdrop-filter:blur(10px);
}

.lightbox.active{
    display:flex;
}

.lightbox img{
    max-width:90vw;
    max-height:85vh;
    object-fit:contain;
    border-radius:12px;
}

.lb-close,
.lb-prev,
.lb-next{
    position:absolute;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    font-size:22px;
    color:#fff;
    background:rgba(255,255,255,.1);
    transition:.3s;
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover{
    background:rgba(255,255,255,.2);
}

.lb-close{
    top:25px;
    right:25px;
}

.lb-prev{
    left:25px;
    top:50%;
    transform:translateY(-50%);
}

.lb-next{
    right:25px;
    top:50%;
    transform:translateY(-50%);
}

/* Hover Overlay */

.g-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(2,10,25,.95) 0%,
        rgba(2,10,25,.7) 30%,
        transparent 75%
    );
    
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    
    padding:20px;
    
    opacity:0;
    transition:all .4s ease;
}

.g-item:hover .g-overlay{
    opacity:1;
}

/* Tag */

.g-tag{
    display:inline-block;
    width:max-content;
    
    padding:6px 12px;
    
    background:rgba(201,168,76,.15);
    border:1px solid rgba(201,168,76,.35);
    border-radius:30px;
    
    color:var(--gold);
    
    font-size:10px;
    letter-spacing:1px;
    text-transform:uppercase;
    
    margin-bottom:10px;
}

/* Caption */

.g-caption{
    display:block;
    
    color:#fff;
    
    font-size:15px;
    line-height:1.5;
    font-weight:500;
    
    transform:translateY(20px);
    transition:.4s ease;
}

.g-item:hover .g-caption{
    transform:translateY(0);
}

/* ========================================================
   APPLICATION / TIMELINE
   ======================================================== */
.apply-section { background: var(--navy); }
.apply-timeline { margin-top: 60px; position: relative; }
.timeline-track {
  position: absolute;
  top: 48px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: rgba(201,168,76,0.15);
  z-index: 0;
}
.timeline-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transition: width 1.5s ease;
}
.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.t-step {
  text-align: center;
  padding: 0 16px;
}
.t-number {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--white-30);
  margin-bottom: 8px;
}
.t-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--navy-4);
  border: 2px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}
.t-step:hover .t-icon {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: scale(1.1);
}
.t-step h3 {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.t-step p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-60);
  line-height: 1.6;
}
.t-step p strong { color: var(--gold); }
.apply-deadline {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  margin-top: 60px;
  justify-content: center;
}
.deadline-icon { font-size: 2rem; }
.apply-deadline div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.apply-deadline strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.5px;
}
.apply-deadline span {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 1px;
}

/* ========================================================
   PLATFORM FEE
   ======================================================== */
.fee-section { background: var(--navy-2); }
.fee-card {
  max-width: 760px;
  margin: 60px auto 0;
  background: var(--glass);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(201,168,76,0.08), inset 0 0 80px rgba(201,168,76,0.03);
}
.fee-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.fee-header { text-align: center; margin-bottom: 48px; }
.fee-event {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.fee-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}
.fee-currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 12px;
}
.fee-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
}
.fee-note {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--white-30);
  text-transform: uppercase;
}
.fee-benefits { display: flex; flex-direction: column; gap: 20px; margin-bottom: 44px; }
.fee-benefit {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--white-5);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}
.fb-icon { font-size: 1.3rem; flex-shrink: 0; }
.fee-benefit > div { display: flex; flex-direction: column; gap: 4px; }
.fee-benefit strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.5px;
}
.fee-benefit span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-60);
}
.fee-cta { width: 100%; display: block; text-align: center; }

/* ========================================================
   WHO SHOULD APPLY
   ======================================================== */
.who-section { background: var(--navy); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.who-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s var(--transition);
}
.who-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}
.who-icon { font-size: 2.4rem; display: block; margin-bottom: 20px; }
.who-card p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--white-60);
  line-height: 1.7;
}

/* ========================================================
   CONTACT
   ======================================================== */
.contact { background: var(--navy-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}
.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.ci-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.ci-label {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.ci-value {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--white-85);
}
.ci-value:hover { color: var(--gold); }
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.social-btn {
  width: 44px;
  height: 44px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--white-60);
  transition: all 0.3s ease;
}
.social-btn:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
/* Contact Form */
.contact-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.contact-form h3 {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 32px;
  letter-spacing: 1px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white-85);
  font-family: var(--font-sans);
  font-size: 14px;
  transition: border-color 0.3s;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-30); }
.form-group input:focus,
.form-group textarea:focus { border-color: rgba(201,168,76,0.5); }
.form-success {
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-align: center;
}

/* ========================================================
   FOOTER
   ======================================================== */
.footer {
  background: var(--navy);
  padding-top: 100px;
  position: relative;
}
.footer-gradient {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo svg { width: 32px; height: 32px; }
.footer-tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white-30);
  line-height: 1.7;
  max-width: 340px;
}
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--white-30);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--white-30);
  margin-bottom: 10px;
}
.footer-contact a { color: var(--white-30); }
.footer-contact a:hover { color: var(--gold); }
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  margin-bottom: 32px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}
.footer-copy, .footer-event {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--white-30);
  letter-spacing: 0.5px;
}
.footer-event { color: rgba(201,168,76,0.4); }

/* ========================================================
   SCROLL REVEAL ANIMATIONS
   ======================================================== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: all 0.8s var(--transition);
  transition-delay: var(--delay, 0s);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .img-accent { right: 0; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .speakers-grid { grid-template-columns: repeat(2, 1fr); }
  .gvto-grid { grid-template-columns: 1fr; gap: 48px; }
  .venue-showcase { grid-template-columns: 1fr; }
  .venue-main-img img { height: 320px; }
  .venue-info-cards { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .g-item--wide { grid-column: span 2; }
  .receive-grid { grid-template-columns: 1fr; }
  .receive-col { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.12); }
  .receive-col:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 80px; }
  .container { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .hero-title { padding: 0 8px; }
  .hero-info-cards { flex-direction: column; align-items: center; }
  .info-card { width: 100%; max-width: 340px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-gold, .btn-outline { width: 100%; max-width: 280px; text-align: center; justify-content: center; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .speakers-grid { grid-template-columns: 1fr; }
  .timeline-steps { grid-template-columns: 1fr 1fr; }
  .timeline-track { display: none; }
  .who-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .g-item--wide { grid-column: auto; }
  .g-item img, .g-item--wide img { height: 240px; }
  .fee-card { padding: 40px 24px; }
  .fee-number { font-size: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .venue-grid-small { grid-template-columns: 1fr; }
  .venue-thumb img { height: 200px; }
  .venue-info-cards { grid-template-columns: 1fr; }
  .lifetime-band { flex-direction: column; text-align: center; padding: 32px 24px; }
  .apply-deadline { flex-direction: column; text-align: center; padding: 28px 24px; }
}

@media (max-width: 480px) {
  .nav-container { padding: 0 20px; }
  .container { padding: 0 20px; }
  .mobile-menu ul { padding: 20px 24px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .timeline-steps { grid-template-columns: 1fr; }
  .hero-badge { padding: 6px 16px; }
  .badge-text { font-size: 9px; letter-spacing: 2px; }
  .section-title { font-size: 1.6rem; }
}



/* ========================================================
   PARTNERS SECTION
======================================================== */

.partners-section {
  background: var(--navy);
  position: relative;
}

.partners-intro {
  max-width: 850px;
  margin: -10px auto 70px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--white-60);
  line-height: 1.9;
}

.partner-category {
  margin-bottom: 70px;
}

.partner-headings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 30px;
  text-align: center;
}

.partner-headings.second-row {
  grid-template-columns: repeat(2, 1fr);
}

.partner-headings span {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.partner-grid {
  display: grid;
  gap: 24px;
}

.top-grid {
  grid-template-columns: repeat(3, 1fr);
}

.second-grid {
  grid-template-columns: repeat(5, 1fr);
}

.bottom-grid {
  grid-template-columns: repeat(3, 1fr);
}

.partner-card {
  background: rgba(255,255,255);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 14px;
  padding: 35px;
  min-height: 140px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.partner-card img {
  max-width: 170px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1);
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {

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

  .partner-headings,
  .partner-headings.second-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

}

@media (max-width: 576px) {

  .top-grid,
  .second-grid,
  .bottom-grid {
    grid-template-columns: 1fr;
  }

  .partner-card {
    min-height: 120px;
    padding: 25px;
  }

}



/* LOGO */


.logo-container{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo-img{
  width:110px;
  height:auto;
  object-fit:contain;
}

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

.logo-main{
  font-size:32px;
  font-weight:700;
  color:#c9a84c;
  letter-spacing:2px;
  line-height:1;
}

.logo-sub{
  font-size:11px;
  color:#ffffffb0;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-top:4px;
}


/* FOOTER LOGO */

.footer-logo-container{
  display:flex;
  align-items:center;
  gap:14px;
}

.footer-logo-img{
  width:70px;
  height:auto;
  object-fit:contain;
}



/* ============================================================
   INSTAGRAM UPDATES SECTION
   ============================================================ */

.instagram-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind the section */
.instagram-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(188, 24, 136, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Header Row ---- */
.ig-header {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 18px;
}

.ig-icon-wrap {
  flex-shrink: 0;
  filter: drop-shadow(0 4px 20px rgba(188,24,136,0.35));
}

.ig-icon {
  width: 64px;
  height: 64px;
  display: block;
  border-radius: 16px;
}

.ig-title-block .section-label {
  margin-bottom: 6px;
}

.ig-subtext {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--white-60);
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
  line-height: 1.8;
}

/* ---- Reels Grid ---- */
.ig-reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  align-items: start;
}

/* ---- Individual Reel Card ---- */
.ig-reel-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.4s cubic-bezier(0.16,1,0.3,1);
}

.ig-reel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45),
              0 0 0 1px rgba(201,168,76,0.15);
}

.ig-reel-frame {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ---- Reel Card Top Bar ---- */
.ig-reel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.ig-profile-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  flex-shrink: 0;
  position: relative;
}

.ig-profile-dot::after {
  content: 'G';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.ig-handle {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--white-85);
  flex: 1;
  letter-spacing: 0.3px;
}

.ig-logo-small {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ---- Embed Wrapper ---- */
.ig-embed-wrapper {
  flex: 1;
  min-height: 480px;
  background: #000;
  position: relative;
  overflow: hidden;
}

/* Override Instagram's default blockquote styles */
.ig-embed-wrapper .instagram-media {
  min-width: 100% !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  background: #000 !important;
}

/* Fallback UI shown before embed loads */
.ig-fallback-link {
  display: block;
  height: 100%;
  min-height: 460px;
  text-decoration: none;
}

.ig-fallback-thumb {
  width: 100%;
  height: 100%;
  min-height: 460px;
  background: linear-gradient(160deg, #0d1117 0%, #1a0a1a 50%, #0d0d1a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: background 0.3s ease;
}

.ig-fallback-thumb:hover {
  background: linear-gradient(160deg, #110e1a 0%, #200a22 50%, #0e0e20 100%);
}

.ig-play-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  box-shadow: 0 8px 30px rgba(188,24,136,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-left: 4px;
}

.ig-fallback-thumb:hover .ig-play-btn {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(188,24,136,0.6);
}

.ig-fallback-thumb span {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-60);
}

/* ---- Reel Card Footer ---- */
.ig-reel-footer {
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: center;
}

.ig-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--white-60);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  background: transparent;
}

.ig-view-btn:hover {
  color: var(--gold);
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.06);
}

/* ---- Follow CTA ---- */
.ig-follow-cta {
  text-align: center;
  margin-top: 8px;
}

.ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg,
    rgba(240,148,51,0.12) 0%,
    rgba(220,39,67,0.12) 50%,
    rgba(188,24,136,0.12) 100%);
  border: 1px solid rgba(188,24,136,0.35);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-85);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  text-decoration: none;
}

.ig-follow-btn:hover {
  background: linear-gradient(135deg,
    rgba(240,148,51,0.22) 0%,
    rgba(220,39,67,0.22) 50%,
    rgba(188,24,136,0.22) 100%);
  border-color: rgba(220,39,67,0.6);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(188,24,136,0.2);
  color: var(--white);
}

/* ============================================================
   RESPONSIVE — Instagram Section
   ============================================================ */

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

@media (max-width: 768px) {
  .ig-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .ig-subtext {
    font-size: 0.98rem;
    margin-bottom: 40px;
  }

  .ig-reels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .ig-embed-wrapper {
    min-height: 360px;
  }

  .ig-fallback-link,
  .ig-fallback-thumb {
    min-height: 340px;
  }

  .ig-follow-btn {
    padding: 14px 28px;
    font-size: 11px;
  }
}

@media (max-width: 520px) {
  .ig-reels-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .ig-embed-wrapper {
    min-height: 500px;
  }

  .ig-fallback-link,
  .ig-fallback-thumb {
    min-height: 480px;
  }

  .ig-follow-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* ============================================================
   GALLERY — 10-IMAGE MASONRY (3 rows)
   Row 1: wide(2) + 1 + 1  → items 1,2,3
   Row 2: 1 + 1 + wide(2)  → items 4,5,6
   Row 3: 1 + 1 + 1 + 1    → items 7,8,9,10
   ============================================================ */

.gallery-subtitle {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--white-60);
  text-align: center;
  max-width: 660px;
  margin: -20px auto 50px;
  line-height: 1.8;
}

.gallery-masonry--10 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  gap: 10px;
  margin-top: 0;
}

/* Row 1: item 1 spans 2 cols */
.gallery-masonry--10 .g-item:nth-child(1) { grid-column: span 2; }
.gallery-masonry--10 .g-item:nth-child(2) { grid-column: span 1; }
.gallery-masonry--10 .g-item:nth-child(3) { grid-column: span 1; }

/* Row 2: item 6 spans 2 cols (last in row) */
.gallery-masonry--10 .g-item:nth-child(4) { grid-column: span 1; }
.gallery-masonry--10 .g-item:nth-child(5) { grid-column: span 1; }
.gallery-masonry--10 .g-item:nth-child(6) { grid-column: span 2; }

/* Row 3: all 1 col each */
.gallery-masonry--10 .g-item:nth-child(7),
.gallery-masonry--10 .g-item:nth-child(8),
.gallery-masonry--10 .g-item:nth-child(9),
.gallery-masonry--10 .g-item:nth-child(10) { grid-column: span 1; }

/* Image heights */
.gallery-masonry--10 .g-item img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s ease;
  display: block;
}

.gallery-masonry--10 .g-item:nth-child(1) img,
.gallery-masonry--10 .g-item:nth-child(6) img {
  height: 320px;
}

.gallery-masonry--10 .g-item { overflow: hidden; border-radius: 8px; }
.gallery-masonry--10 .g-item:hover img { transform: scale(1.06); }

/* Enhanced overlay with tag + caption */
.gallery-masonry--10 .g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,13,26,0.92) 0%, rgba(5,13,26,0.3) 55%, transparent 80%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 16px;
  gap: 4px;
}

.gallery-masonry--10 .g-item:hover .g-overlay { opacity: 1; }

.g-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 3px 9px;
  border-radius: 100px;
  width: fit-content;
}

.g-caption {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--white-85);
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

/* Lightbox caption */
.lb-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 24px;
  background: linear-gradient(transparent, rgba(5,13,26,0.9));
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  pointer-events: none;
}

/* ---- Speaker Photo Fix ---- */
.speaker-avatar {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
}

/* Hide inner nested duplicate avatar div */
.speaker-avatar > .speaker-avatar {
  position: static;
  width: 100%;
  height: 100%;
  margin: 0;
  display: contents;
}

.avatar-inner {
  width: 100px;
  height: 100px;
  border: 2px solid rgba(201,168,76,0.35);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-4);
  position: relative;
  z-index: 0;
}

.avatar-inner img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block;
}

/* ============================================================
   GALLERY 10 — RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .gallery-masonry--10 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-masonry--10 .g-item:nth-child(1),
  .gallery-masonry--10 .g-item:nth-child(6) {
    grid-column: span 2;
  }
  .gallery-masonry--10 .g-item:nth-child(1) img,
  .gallery-masonry--10 .g-item:nth-child(6) img {
    height: 280px;
  }
  .gallery-masonry--10 .g-item img { height: 230px; }
}

@media (max-width: 600px) {
  .gallery-masonry--10 {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .gallery-masonry--10 .g-item:nth-child(1) { grid-column: span 2; }
  .gallery-masonry--10 .g-item:nth-child(6) { grid-column: span 2; }
  .gallery-masonry--10 .g-item img { height: 180px; }
  .gallery-masonry--10 .g-item:nth-child(1) img,
  .gallery-masonry--10 .g-item:nth-child(6) img { height: 220px; }
  .gallery-subtitle { font-size: 0.95rem; margin-bottom: 32px; }
}


/* =============================================
   BEYOND BORDERS: THE GVTO STORY SECTION
   ============================================= */

/* --- Section Container --- */
.gvto-story {
  position: relative;
  background: linear-gradient(160deg, #050D1A 0%, #081427 55%, #071228 100%);
  overflow: hidden;
}

/* Subtle top border line */
.gvto-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* --- Floating Particles Canvas --- */
.story-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.story-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: storyParticleFloat linear infinite;
}

@keyframes storyParticleFloat {
  0%   { transform: translateY(0) scale(1);   opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.15; }
  100% { transform: translateY(-120px) scale(0.4); opacity: 0; }
}

/* --- Grid --- */
.story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* --- Content Side --- */
.story-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.story-description {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--white-60);
  margin-bottom: 36px;
}

/* --- Supporting Points --- */
.story-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 44px;
}

.story-point {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--white-85);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.story-point:hover { color: var(--gold-light); }

.story-point-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--gold);
  border-radius: 50%;
  background: var(--glass-gold);
  border: 1px solid rgba(201,168,76,0.2);
  transition: all 0.3s ease;
}

.story-point:hover .story-point-icon {
  background: rgba(201,168,76,0.2);
  box-shadow: 0 0 12px var(--gold-glow);
}

/* CTA Button */
.story-cta {
  align-self: flex-start;
}

.cta-play-icon {
  transition: transform 0.3s ease;
}

.story-cta:hover .cta-play-icon {
  transform: translateX(3px) scale(1.1);
}

/* --- Video Card Side --- */
.story-video-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.story-video-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  outline: none;
  background: var(--navy-3);
  transition: transform 0.5s var(--transition), box-shadow 0.5s var(--transition);
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.2),
    0 8px 40px rgba(0,0,0,0.5),
    0 0 60px rgba(201,168,76,0.05);
}

/* Glow layer */
.story-video-glow {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, rgba(201,168,76,0.5), transparent 40%, rgba(201,168,76,0.3));
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.story-video-card:hover .story-video-glow,
.story-video-card:focus-visible .story-video-glow {
  opacity: 1;
}

.story-video-card:hover,
.story-video-card:focus-visible {
  transform: scale(1.03) translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.5),
    0 20px 60px rgba(0,0,0,0.6),
    0 0 80px rgba(201,168,76,0.15);
}

/* Thumbnail */
.story-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.story-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
  display: block;
}

.story-video-card:hover .story-thumb,
.story-video-card:focus-visible .story-thumb {
  transform: scale(1.06);
}

/* Dark overlay on thumbnail */
.story-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,13,26,0.1) 0%,
    rgba(5,13,26,0.15) 40%,
    rgba(5,13,26,0.65) 100%
  );
  transition: background 0.4s ease;
}

.story-video-card:hover .story-thumb-overlay {
  background: linear-gradient(
    to bottom,
    rgba(5,13,26,0.05) 0%,
    rgba(5,13,26,0.1) 40%,
    rgba(5,13,26,0.7) 100%
  );
}

/* --- Play Button --- */
.story-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #050d1a;
  z-index: 3;
  transition: transform 0.4s var(--transition), box-shadow 0.4s ease;
  box-shadow: 0 0 30px rgba(201,168,76,0.5), 0 4px 20px rgba(0,0,0,0.4);
}

.story-video-card:hover .story-play-btn,
.story-video-card:focus-visible .story-play-btn {
  transform: translate(-50%, -60%) scale(1.12);
  box-shadow: 0 0 50px rgba(201,168,76,0.75), 0 8px 30px rgba(0,0,0,0.4);
}

.story-play-svg {
  position: relative;
  z-index: 1;
  margin-left: 4px;
}

/* Animated rings around play button */
.story-play-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.5);
  animation: storyPlayRingPulse 2.4s ease-out infinite;
}

.story-play-ring--delay {
  inset: -22px;
  animation-delay: 1.2s;
}

@keyframes storyPlayRingPulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* --- Duration Badge --- */
.story-duration-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(5,13,26,0.85);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 3px;
  backdrop-filter: blur(8px);
  z-index: 4;
}

/* --- Card Label --- */
.story-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px 18px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.story-card-eyebrow {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}

.story-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

/* --- Video Modal --- */
.story-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.story-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.story-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,13,26,0.93);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.story-modal-inner {
  position: relative;
  z-index: 1;
  width: 92vw;
  max-width: 1000px;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.45s var(--transition);
}

.story-modal.is-open .story-modal-inner {
  transform: scale(1) translateY(0);
}

.story-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.story-modal-close:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
}

.story-modal-video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.3);
  box-shadow: 0 0 80px rgba(0,0,0,0.8), 0 0 40px rgba(201,168,76,0.1);
  aspect-ratio: 16 / 9;
  background: #000;
}

.story-modal-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border: none;
}

.story-yt-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .story-video-card {
    max-width: 620px;
    margin: 0 auto;
  }
  .story-cta { align-self: flex-start; }
}

@media (max-width: 768px) {
  .story-description { font-size: 0.97rem; }
  .story-grid { gap: 44px; }
  .story-play-btn { width: 60px; height: 60px; }
  .story-modal-inner { width: 96vw; }
  .story-modal-close { top: -40px; }
  .story-card-title { font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .story-play-btn { width: 52px; height: 52px; }
  .story-play-svg { width: 22px; height: 22px; }
}


/* ==========================================
   LEADERSHIP SECTION
========================================== */

.leadership{
  background: var(--navy-2);
}

.leadership-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:70px;
  align-items:center;
}

.leadership-image img{
  width:100%;
  display:block;
  border-radius:18px;
  border:1px solid rgba(201,168,76,.15);
  box-shadow:
  0 20px 60px rgba(0,0,0,.35);
}

.leadership-content{
  max-width:550px;
}

.leadership-description{
  color:rgba(255,255,255,.75);
  line-height:1.9;
  margin-top:20px;
}

@media(max-width:992px){

  .leadership-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .leadership-content{
    max-width:100%;
  }
}



/* ==========================================
   AMBASSADOR SECTION
========================================== */

.ambassador-section{
  background: linear-gradient(
    180deg,
    #081427 0%,
    #050d1a 100%
  );
}

.ambassador-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.ambassador-image{
  position:relative;
}

.ambassador-image img{
  width:100%;
  display:block;
  border-radius:20px;
  border:1px solid rgba(201,168,76,.2);
  box-shadow:
  0 20px 60px rgba(0,0,0,.45),
  0 0 40px rgba(201,168,76,.08);
}

.ambassador-designation{
  color:var(--gold);
  font-size:15px;
  font-weight:500;
  margin-bottom:24px;
  letter-spacing:.5px;
}

.ambassador-content .about-text{
  margin-bottom:18px;
}

.ambassador-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:18px;
  padding:14px 28px;
  border-radius:6px;
  text-decoration:none;
  background:var(--gold);
  color:#050d1a;
  font-weight:600;
  transition:.3s ease;
}

.ambassador-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(201,168,76,.25);
}

@media(max-width:992px){

  .ambassador-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

}


/* ==========================================
   KOCH VISIT PAGE
========================================== */


.koch-hero{
  text-align:center;
  padding: 0px,-500px;
}

.koch-intro{
  max-width:850px;
  margin:20px auto 40px;
  color:rgba(255,255,255,.75);
}

.koch-hero-img{
  width:100%;
  border-radius:20px;
  border:1px solid rgba(201,168,76,.15);
}

.koch-info-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin:60px 0;
}

.koch-info-card{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(201,168,76,.15);
  border-radius:16px;
  padding:30px;
  text-align:center;
}

.koch-info-card span{
  font-size:2rem;
  display:block;
  margin-bottom:12px;
}

.koch-info-card h4{
  margin-bottom:10px;
  color:#fff;
}

.koch-info-card p{
  color:rgba(255,255,255,.7);
}

.koch-content-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
  margin:90px 0;
}

.koch-content-grid.reverse{
  grid-template-columns:1fr 1fr;
}

.koch-image img{
  width:100%;
  border-radius:18px;
  display:block;
}

.koch-content p{
  color:rgba(255,255,255,.75);
  line-height:1.9;
  margin-bottom:18px;
}

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

.highlight-card{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(201,168,76,.15);
  border-radius:16px;
  padding:28px;
}

.highlight-card h3{
  color:var(--gold);
  margin-bottom:12px;
}

.highlight-card p{
  color:rgba(255,255,255,.75);
}

.koch-gallery{
  margin-top:40px;
  columns:3;
  column-gap:16px;
}

.koch-gallery img{
  width:100%;
  margin-bottom:16px;
  border-radius:16px;
  display:block;
}

@media(max-width:992px){

  .koch-content-grid,
  .koch-content-grid.reverse{
    grid-template-columns:1fr;
  }

  .koch-info-grid{
    grid-template-columns:1fr 1fr;
  }

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

}

@media(max-width:768px){

  .koch-info-grid{
    grid-template-columns:1fr;
  }

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

  .koch-gallery{
    columns:1;
  }

}


.koch-video-btn-wrap{
  margin-top:30px;
}

.koch-video-btn{
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:14px 28px;
  border-radius:100px;
  text-decoration:none;
  color:#050d1a;
  font-weight:600;
  font-size:14px;
  letter-spacing:.5px;

  background:linear-gradient(
    135deg,
    #e8d5a0,
    #c9a84c,
    #f0dfb1
  );

  box-shadow:
    0 8px 25px rgba(201,168,76,.25);

  transition:all .35s ease;
}

.koch-video-btn:hover{
  transform:translateY(-3px);
  box-shadow:
    0 15px 35px rgba(201,168,76,.35);
}

.koch-play-icon{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#050d1a;
  color:#c9a84c;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:12px;
  flex-shrink:0;
}


.back-home-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:6px 8px;
    margin-left:20px;
    margin-top:30px;

    background:rgba(201,168,76,0.08);
    border:1px solid rgba(201,168,76,0.3);
    border-radius:50px;

    color:var(--gold);
    text-decoration:none;

    font-size:14px;
    font-weight:500;
    letter-spacing:0.5px;

    transition:all 0.35s ease;
    backdrop-filter:blur(10px);
}

.back-home-btn:hover{
    background:var(--gold);
    color:#050D1A;

    transform:translateY(-2px);

    box-shadow:
        0 10px 25px rgba(201,168,76,0.25),
        0 0 20px rgba(201,168,76,0.15);
}

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

.back-home-btn::before{
    content:"";
    font-size:16px;
    transition:transform 0.3s ease;
}

.back-home-btn:hover::before{
    transform:translateX(-4px);
}


/* partner-banner section styles */
.partner-banner {
  padding: 40px 0;
  background: var(--navy-2);
}

.partner-banner-img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}



.hero-badge{
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(201,168,76,0.1);
    border:1px solid rgba(201,168,76,0.3);
    padding:10px 25px;
    border-radius:100px;
    margin-bottom:6px;
    backdrop-filter:blur(10px);
    width:fit-content;
    margin-left:auto;
    margin-right:auto;
}

.hero-badge-logo{
    height: 80px; /* adjust as needed */
    width:auto;
    display:block;
    object-fit:contain;
}



/* ==========================================
   DIPLOMATIC IMAGE STACK
========================================== */

.ambassador-image{
    position:relative;
}

.ambassador-image .img-stack{
    position:relative;
    height:520px;
}

.ambassador-image .img-main{
    width:100%;
    height:600px;
    object-fit:cover;

    border-radius:24px;

    border:1px solid rgba(201,168,76,.15);

    box-shadow:
        0 20px 60px rgba(0,0,0,.45);

    display:block;
}

.ambassador-image .img-accent{
    position:absolute;

    right:-30px;
    bottom:-150px;
    

    width:52%;
    height:200px;

    object-fit:cover;

    border-radius:20px;

    border:1px solid rgba(201,168,76,.18);

    background:#fff;

    box-shadow:
        0 20px 50px rgba(0,0,0,.35);

    transition:.4s ease;
}

.ambassador-image .img-main:hover,
.ambassador-image .img-accent:hover{
    transform:translateY(-4px);
}


/* ==========================================
   MOBILE RESPONSIVE
========================================== */



@media (max-width: 767px){

    .ambassador-section{
        overflow:hidden;
    }

    .ambassador-grid{
        display:flex;
        flex-direction:column;
        gap:50px;
    }

    .ambassador-image .img-stack{
        height:auto;
        padding-bottom:100px;
    }

    .ambassador-image .img-main{
       
        border-radius:18px;
    }

    .ambassador-image .img-accent{
        

        right:10px;
        bottom:0;

        border-radius:14px;
    }

    .section-title{
        font-size:32px;
        line-height:1.25;
    }

    .ambassador-designation{
        font-size:16px;
    }

    .about-text{
        font-size:15px;
        line-height:1.8;
    }

    .ambassador-btn{
        width:100%;
        text-align:center;
        justify-content:center;
    }

}

@media (max-width: 480px){

    .ambassador-image .img-main{
        height:260px;
    }

    .ambassador-image .img-accent{
        width:65%;
        height:110px;
        right:8px;
        bottom:0;
    }

    .section-title{
        font-size:28px;
    }

}

/* ================================================================
   PROPAK ASIA NEW SECTIONS — Using existing GVTO design system only
   All colors from :root variables. No new colors introduced.
   ================================================================ */

/* ---- Section backgrounds — alternating navy/navy-2 same as rest of site ---- */

.pz-section  { background: var(--navy);   position: relative; overflow: hidden; }
.wvp-section { background: var(--navy);   position: relative; overflow: hidden; }


/* Consistent subtle top-divider matching gvto-story::before */
.pv-section::before, .pz-section::before, .pa-section::before,
.wvp-section::before, .im-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ================================================================
   SECTION 1 — Video Highlights
   ================================================================ */
.pv-subheading {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-60);
  text-align: center;
  max-width: 620px;
  margin: -20px auto 48px;
  line-height: 1.7;
}

.pv-video-wrap {
  max-width: 860px;
  margin: 0 auto;
}

/* Card reuses the story-video-card aesthetic */
.pv-video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-3);
  cursor: pointer;
  outline: none;
  aspect-ratio: 16/9;
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.2),
    0 8px 40px rgba(0,0,0,0.5),
    0 0 60px rgba(201,168,76,0.05);
  transition: transform 0.5s var(--transition), box-shadow 0.5s var(--transition);
}
.pv-video-card:hover,
.pv-video-card:focus-visible {
  transform: scale(1.015) translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.45),
    0 20px 60px rgba(0,0,0,0.6),
    0 0 80px rgba(201,168,76,0.12);
}

/* Glow overlay — same as story-video-glow */
.pv-glow {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, rgba(201,168,76,0.45), transparent 40%, rgba(201,168,76,0.25));
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.pv-video-card:hover .pv-glow,
.pv-video-card:focus-visible .pv-glow { opacity: 1; }

.pv-thumb-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(5,13,26,0.86), rgba(10,26,53,0.80));
  transition: background 0.3s;
}
.pv-thumb-overlay:hover { background: linear-gradient(135deg, rgba(5,13,26,0.70), rgba(10,26,53,0.65)); }

.pv-thumb-logo {
  width: clamp(160px, 32%, 340px);
  height: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

/* Play button — identical structure to story-play-btn */
.pv-play-btn {
  position: relative;
  width: 76px; height: 76px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s var(--transition);
}
.pv-video-card:hover .pv-play-btn { transform: scale(1.08); }

.pv-play-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.65);
  animation: pvRingPulse 2.5s ease-out infinite;
}
.pv-ring-2 { animation-delay: 1.25s; }
@keyframes pvRingPulse {
  0%   { transform: scale(1); opacity: 0.75; }
  100% { transform: scale(2.2); opacity: 0; }
}

.pv-play-svg {
  color: var(--gold);
  width: 32px; height: 32px;
  background: var(--glass-gold);
  border-radius: 50%;
  padding: 8px 6px 8px 11px;
  border: 1.5px solid rgba(201,168,76,0.5);
  flex-shrink: 0;
}

.pv-play-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* YouTube iframe (injected on play) */
.pv-iframe {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  z-index: 5;
}

/* Meta row */
.pv-meta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 28px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 14px 24px;
}
.pv-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--white-60);
  padding: 4px 16px;
  letter-spacing: 0.04em;
}
.pv-meta-icon { font-size: 1rem; }
.pv-meta-sep {
  width: 1px; height: 18px;
  background: var(--glass-border);
  flex-shrink: 0;
}


.pv-thumb-overlay{
  position:absolute;
  inset:0;
  overflow:hidden;
  cursor:pointer;
}

.pv-cover-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}

.pv-dark-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.15),
    rgba(0,0,0,.35)
  );
  z-index:2;
}

.pv-thumb-overlay .pv-play-btn,
.pv-thumb-overlay .pv-play-label {
  position: relative;
  z-index: 3;
}

/* CENTER PLAY BUTTON */
.pv-center-play{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:90px;
  height:90px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:10;
  transition:all .35s ease;
  box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.pv-center-play svg{
  width:38px;
  height:38px;
  color:#c9a84c;
  margin-left:4px;
}

.pv-thumb-overlay:hover .pv-center-play{
  transform:translate(-50%,-50%) scale(1.08);
  background:#ffffff;
}

/* LABEL */
.pv-video-info{
  position:absolute;
  bottom:24px;
  left:0;
  right:0;
  text-align:center;
  z-index:10;
}

.pv-play-label{
  font-family:var(--font-display);
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#fff;
  background:rgba(0,0,0,.45);
  padding:10px 18px;
  border-radius:30px;
  backdrop-filter:blur(8px);
}

/* ================================================================
   SECTION 2 — 9 Industry Focused Zones
   Matches why-card design language exactly
   ================================================================ */
.pz-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--white-60);
  text-align: center;
  max-width: 680px;
  margin: -20px auto 56px;
  line-height: 1.75;
}

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

/* Inherits why-card base pattern */
.pz-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--transition);
}
.pz-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--glass-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.pz-card:hover::before { opacity: 1; }
.pz-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,168,76,0.15);
}

.pz-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 6px;
}

/* Zone number — matches t-number pattern */
.pz-zone-num {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-30);
  margin-bottom: 4px;
}

/* Zone name */
.pz-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold);
  line-height: 1.35;
  margin: 0;
}
.pz-name em {
  font-style: normal;
  color: var(--white-85);
}

/* Zone desc */
.pz-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-60);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* ================================================================
   SECTION 3 — Activity Highlights
   Matches highlight-card / who-card language
   ================================================================ */
.pa-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--white-60);
  text-align: center;
  max-width: 640px;
  margin: -20px auto 56px;
  line-height: 1.75;
}

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

.pa-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--transition);
}
.pa-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--glass-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.pa-card:hover::before { opacity: 1; }
.pa-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,168,76,0.15);
}

.pa-icon {
  font-size: 2rem;
  display: block;
}

.pa-card h3 {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: var(--gold);
  line-height: 1.3;
  margin: 0;
}

.pa-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-60);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* ================================================================
   SECTION 4 — Why Visit ProPak Asia
   Uses venue-info-card layout (4 col) with glass cards + gold
   ================================================================ */
.wvp-intro {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--white-60);
  text-align: center;
  max-width: 660px;
  margin: -20px auto 56px;
  line-height: 1.75;
}

.wvp-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.wvp-card {
  background: var(--navy-4);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--transition);
}

/* Top gold accent line — matches gvto-story::before for each card */
.wvp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.wvp-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--glass-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.wvp-card:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-8px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.2);
}
.wvp-card:hover::after { opacity: 1; }

/* Card number — ghost display like t-number */
.wvp-card-num {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-30);
}

/* Icon circle — inherits t-icon styling */
.wvp-icon-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--navy-4);
  border: 1.5px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  position: relative; z-index: 1;
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.wvp-card:hover .wvp-icon-circle {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.wvp-card h3 {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: var(--gold);
  line-height: 1.35;
  margin: 0;
  position: relative; z-index: 1;
}

.wvp-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white-60);
  line-height: 1.7;
  margin: 0;
  flex: 1;
  position: relative; z-index: 1;
}

/* CTA buttons — plain site buttons, no color override */
.wvp-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================================
   SECTION 5 — Powered by Informa Markets
   Inherits gvto-grid two-column layout + g-badge + glass cards
   ================================================================ */
.im-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.im-logo-wrap { margin-bottom: 28px; }
.im-logo {
  max-width: 200px;
  height: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.im-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--white-60);
  line-height: 1.85;
  margin-bottom: 18px;
}
.im-body strong { color: var(--white-85); }

/* Reuses .g-badge exactly */
.im-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

/* Cards right side — 2×2 grid, same glass card */
.im-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.im-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.4s var(--transition);
}
.im-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}

.im-card-icon {
  font-size: 1.8rem;
  display: block;
}

.im-card-body h3 {
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1.3;
}

.im-card-body p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-60);
  line-height: 1.65;
  margin: 0;
}

/* ================================================================
   RESPONSIVE — New Sections
   ================================================================ */
@media (max-width: 1100px) {
  .pz-grid { grid-template-columns: repeat(3, 1fr); }
  .wvp-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .pa-grid { grid-template-columns: repeat(2, 1fr); }
  .im-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .pz-grid { grid-template-columns: repeat(2, 1fr); }
  .pa-grid { grid-template-columns: 1fr 1fr; }
  .wvp-cards { grid-template-columns: 1fr; }
  .im-cards { grid-template-columns: 1fr; }
  .pv-meta-row { flex-direction: column; gap: 8px; text-align: center; }
  .pv-meta-sep { width: 40px; height: 1px; }
  .wvp-cta { flex-direction: column; align-items: center; }
  .wvp-cta .btn-gold,
  .wvp-cta .btn-outline { width: 100%; max-width: 300px; text-align: center; justify-content: center; }
}

@media (max-width: 600px) {
  .pz-grid { grid-template-columns: 1fr; }
  .pa-grid { grid-template-columns: 1fr; }
  .im-grid { gap: 40px; }
}



/* ==========================================
   PROPAK IMAGE STACK
========================================== */

.koch-image-wrap{
  position:relative;
  max-width:650px;
  margin:auto;
}

.koch-main-image{
  width:100%;
  display:block;
  border-radius:24px;
  border:1px solid rgba(201,168,76,.15);
  box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.koch-floating-image{
  position:absolute;
  bottom:-40px;
  right:-50px;
  width:62%;
  border-radius:18px;
  border:6px solid #fff;
  background:#fff;
  box-shadow:
    0 20px 40px rgba(0,0,0,.35),
    0 0 0 1px rgba(201,168,76,.15);
  transition:all .4s ease;
}

.koch-image-wrap:hover .koch-floating-image{
  transform:translateY(-8px);
}

@media(max-width:992px){

  .koch-image-wrap{
    margin-bottom:60px;
  }

  .koch-floating-image{
    width:40%;
    right:-15px;
    bottom:-25px;
  }

}

@media(max-width:768px){

  .koch-floating-image{
    width:38%;
    right:10px;
    bottom:-20px;
    border-width:4px;
  }

}

/* ================================================================
   MOBILE RESPONSIVE IMAGE FIX — Global Patch
   Fixes all image stretching, overflow, and aspect-ratio issues
   on screens 320px–768px without altering desktop layout.
   ================================================================ */

/* --- 1. Global baseline (safe for all screens) --- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- 2. Hero background: disable fixed attachment on mobile (causes stretch on iOS) --- */
@media (max-width: 768px) {
  .hero-bg {
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
  }
}

/* --- 3. About section image stack --- */
@media (max-width: 768px) {
  .img-stack {
    height: auto !important;
    padding-bottom: 0 !important;
    min-height: 0 !important;
  }
  .img-main {
    width: 100% !important;
    height: auto !important;
    max-height: 320px;
    object-fit: cover !important;
    border-radius: 12px;
  }
  .img-accent {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    max-height: 200px;
    object-fit: cover !important;
    margin-top: 12px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .img-main {
    max-height: 240px;
  }
  .img-accent {
    max-height: 160px;
  }
}

/* --- 4. Speaker avatars: always circle, never distort --- */
.speaker-avatar,
.avatar-inner {
  flex-shrink: 0;
  overflow: hidden;
}
.avatar-inner img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .speaker-avatar,
  .avatar-inner {
    width: 90px !important;
    height: 90px !important;
  }
}

/* --- 5. GVTO section image --- */
@media (max-width: 768px) {
  .gvto-image img {
    height: auto !important;
    max-height: 320px;
    object-fit: cover !important;
    width: 100% !important;
  }
}
@media (max-width: 480px) {
  .gvto-image img {
    max-height: 250px;
  }
}

/* --- 6. Venue section images --- */
@media (max-width: 768px) {
  .venue-main-img img {
    height: auto !important;
    max-height: 280px;
    object-fit: cover !important;
    width: 100% !important;
  }
  .venue-thumb img {
    height: 180px !important;
    object-fit: cover !important;
    width: 100% !important;
  }
}
@media (max-width: 480px) {
  .venue-main-img img {
    max-height: 220px;
  }
  .venue-thumb img {
    height: 150px !important;
  }
}

/* --- 7. Gallery (who-attended 14-image) --- */
@media (max-width: 768px) {
  .g-item img,
  .g-item--wide img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    object-position: center top !important;
  }
}
@media (max-width: 480px) {
  .g-item img,
  .g-item--wide img {
    height: 170px !important;
  }
}

/* --- 8. Gallery masonry (conclave 10-image grid) --- */
@media (max-width: 480px) {
  .gallery-masonry--10 {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .gallery-masonry--10 .g-item:nth-child(1),
  .gallery-masonry--10 .g-item:nth-child(6) {
    grid-column: span 1 !important;
  }
  .gallery-masonry--10 .g-item img,
  .gallery-masonry--10 .g-item:nth-child(1) img,
  .gallery-masonry--10 .g-item:nth-child(6) img {
    height: 200px !important;
    object-fit: cover !important;
    width: 100% !important;
  }
}

/* --- 9. Ambassador image stack --- */
@media (max-width: 767px) {
  .ambassador-image .img-stack {
    height: auto !important;
    padding-bottom: 0 !important;
  }
  .ambassador-image .img-main {
    height: auto !important;
    max-height: 320px !important;
    object-fit: cover !important;
    width: 100% !important;
    border-radius: 16px !important;
  }
  .ambassador-image .img-accent {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    max-height: 180px !important;
    object-fit: cover !important;
    margin-top: 12px;
    border-radius: 12px !important;
  }
}
@media (max-width: 480px) {
  .ambassador-image .img-main {
    max-height: 240px !important;
  }
  .ambassador-image .img-accent {
    max-height: 140px !important;
  }
}

/* --- 10. Leadership section image --- */
@media (max-width: 768px) {
  .leadership-image img {
    width: 100% !important;
    height: auto !important;
    max-height: 360px;
    object-fit: cover !important;
    border-radius: 14px;
  }
}
@media (max-width: 480px) {
  .leadership-image img {
    max-height: 260px;
  }
}

/* --- 11. Koch visit section images --- */
@media (max-width: 768px) {
  .koch-hero-img {
    width: 100% !important;
    height: auto !important;
    max-height: 320px;
    object-fit: cover !important;
    border-radius: 16px;
  }
  .koch-image img {
    width: 100% !important;
    height: auto !important;
    max-height: 300px;
    object-fit: cover !important;
    border-radius: 14px;
  }
  .koch-gallery img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }
}

/* --- 12. PropPak image stack (koch-image-wrap) --- */
@media (max-width: 768px) {
  .koch-image-wrap {
    margin-bottom: 20px !important;
    overflow: visible;
  }
  .koch-main-image {
    width: 100% !important;
    height: auto !important;
    max-height: 300px;
    object-fit: cover !important;
    border-radius: 16px;
  }
  .koch-floating-image {
    position: relative !important;
    width: 100% !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 10px;
    border-radius: 12px !important;
    border-width: 3px !important;
    max-height: 200px;
    object-fit: cover !important;
    display: block;
  }
}

/* --- 13. Partner card logos — prevent stretching on mobile --- */
@media (max-width: 576px) {
  .partner-card img {
    max-width: 130px !important;
    max-height: 60px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

/* --- 14. Navbar & footer logos --- */
@media (max-width: 480px) {
  .logo-img {
    width: 90px !important;
    height: auto !important;
    object-fit: contain !important;
  }
  .footer-logo-img {
    width: 100px !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

/* --- 15. Hero sponsor logos --- */
@media (max-width: 480px) {
  .hero-sponsor-logo {
    height: 28px !important;
    width: auto !important;
    max-width: 100px;
    object-fit: contain !important;
    padding: 4px 8px !important;
  }
  .hero-badge-logo {
    height: 50px !important;
    width: auto !important;
    object-fit: contain !important;
  }
}

/* --- 16. ProPak video thumbnail image --- */
@media (max-width: 768px) {
  .pv-cover-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  .pv-thumb-logo {
    width: clamp(120px, 40%, 220px) !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

/* --- 17. Informa Markets logo --- */
@media (max-width: 768px) {
  .im-logo {
    max-width: 160px !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

/* --- 18. Prevent any image from overflowing its container --- */
@media (max-width: 768px) {
  .about-images,
  .gvto-image,
  .venue-main-img,
  .venue-thumb,
  .ambassador-image,
  .leadership-image,
  .koch-image,
  .koch-image-wrap,
  .partner-card,
  .speaker-avatar,
  .g-item,
  .pv-video-card {
    overflow: hidden;
  }
}

/* --- 19. Fix hero-info-cards logo/image inside card --- */
@media (max-width: 480px) {
  .info-card img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

/* --- 20. Fix lightbox image on mobile --- */
@media (max-width: 480px) {
  .lightbox img {
    max-width: 96vw !important;
    max-height: 80vh !important;
    object-fit: contain !important;
    width: auto !important;
    height: auto !important;
  }
}

/* END MOBILE IMAGE FIX */

/* --- 21. Partner banner image (propak page) --- */
.partner-banner-img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .partner-banner-img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}

/* --- 22. Propak delegation visit images --- */
@media (max-width: 768px) {
  .koch-content-grid,
  .koch-content-grid.reverse {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .koch-info-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 480px) {
  .koch-info-grid {
    grid-template-columns: 1fr !important;
  }
  .highlight-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ============================================================
   3. PARTNERS — infinite auto-scrolling logo marquee
   Pure CSS. Track holds the logo set TWICE; translating -50%
   loops seamlessly. Pauses on hover.
   ============================================================ */
.partners-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.partners-head .section-eyebrow { justify-content: center; }

.marquee-heading {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  color: var(--gold);
  margin: 56px 0 28px;
}
.partners-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;}
.partners-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: partners-scroll 40s linear infinite;
}
.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}
.partner-logo {
  flex-shrink: 0;
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: var(--transition);
}
.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

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

@media (max-width: 768px) {
  .partners-track { gap: 2.5rem; animation-duration: 28s; }
  .partner-logo { height: 200px; max-width: 200px; }
}
@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; }
}

