/* ============================================
   GVTO - Global Vision Trade Organization
   Premium Redesign Stylesheet v2.0
   Colors: Deep Navy #0b1a31 | Gold #C9A227 | White
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');
/* === CSS VARIABLES === */
:root {
  --navy: #0b1a31;
  --navy-light: #1e4a85;
  --navy-dark: #0d2347;
  --gold: #2B7FD4;
  --gold-light: #4D9FE8;
  --gold-dark: #1a5fb0;
  --white: #ffffff;
  --off-white: #f0f5fb;
  --light-gray: #333f4b;
  --mid-gray: #c8daf0;
  --text-muted: #4a6080;
  --text-body: #1e3050;

  --font-display: 'Manrope', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 1px 3px rgba(26,58,107,0.10);
  --shadow-md: 0 4px 20px rgba(26,58,107,0.15);
  --shadow-lg: 0 12px 48px rgba(26,58,107,0.20);
  --shadow-xl: 0 24px 80px rgba(26,58,107,0.28);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;

  --nav-height: 80px;
}
/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-body); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5 { font-family: var(--font-heading); color: var(--navy); line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
.display { font-family: var(--font-display); font-weight: 700; font-style: normal; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem,3.8vw,3rem);
  margin-bottom: 1.25rem;
  color: var(--navy);
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
  align-items: center;
}

.gold-rule {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.5rem 0 2.5rem;
  border-radius: 2px;
}
.gold-rule.centered { margin-left: auto; margin-right: auto; }

/* === LAYOUT === */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4,.section-dark h5 { color: var(--white); }
.section-dark .section-eyebrow { color: var(--gold-light); }
.section-dark .section-eyebrow::before { background: var(--gold-light); }
.section-light { background: var(--off-white); }
.section-cream { background: var(--cream); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.95rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.8rem; }
.btn-full { width: 100%; justify-content: center; }

/* === TOP CONTACT BAR === */
.top-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(201,162,39,0.3);
  padding: 0.5rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.top-bar-left { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.top-bar-right { display: flex; gap: 1.5rem; align-items: center; }
.top-bar a { color: var(--gold-light); transition: var(--transition); font-weight: 500; }
.top-bar a:hover { color: var(--white); }
.top-bar .social-mini { display: flex; gap: 0.75rem; }
.top-bar .social-mini a {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(201,162,39,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.7rem;
  transition: var(--transition);
}
.top-bar .social-mini a:hover { background: var(--gold); color: var(--navy); }

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 40px; left: 0; right: 0;
  z-index: 1000;
  height: 125px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.navbar-transparent { background: transparent; }
.navbar-scrolled {
  top: 0;
  background: rgba(11,26,49,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(201,162,39,0.2);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 60px; width: auto; }
.nav-logo img.scrolled-logo { display: none; }
.navbar-scrolled .nav-logo img.default-logo { display: none; }
.navbar-scrolled .nav-logo img.scrolled-logo { display: block; }

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0.9rem; right: 0.9rem;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.navbar-scrolled .nav-links a { color: rgba(255,255,255,0.85); }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 1px; transition: var(--transition); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1800&q=80&fit=crop') center/cover no-repeat;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,26,49,0.97) 0%, rgba(11,26,49,0.85) 50%, rgba(18,36,68,0.75) 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(201,162,39,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,162,39,0.05) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 100px;
  padding: 4px 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 36px;
  margin-bottom:11px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem,5vw,4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--gold-light); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.70);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-pillars {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-pillar {
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-transform: uppercase;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,162,39,0.2);
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 0.25rem; letter-spacing: 0.05em; }

/* Hero Right - Conclave Card */
.hero-card {
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.hero-card-event-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.hero-card-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.hero-card-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
}
.hero-card-detail-icon { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }
.hero-card-divider { border: none; border-top: 1px solid rgba(201,162,39,0.2); margin: 1.25rem 0; }
.hero-card-guests { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.75rem; font-weight: 600; }
.guest-item {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}
.guest-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--gold-dark));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--white);
  font-weight: 600;
}
.guest-name { font-weight: 600; color: rgba(255,255,255,0.9); display: block; }
.guest-role { font-size: 0.72rem; color: rgba(255,255,255,0.5); }

/* === ASSOCIATION PARTNER BANNER === */
.assoc-banner {
  background: linear-gradient(135deg, var(--navy-card), var(--navy));
  border-bottom: 1px solid rgba(201,162,39,0.25);
  padding: 1rem 0;
}
.assoc-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.assoc-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.assoc-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius-md);
  padding: 0.6rem 1.25rem;
  transition: var(--transition);
  cursor: pointer;
}
.assoc-link:hover { background: rgba(201,162,39,0.2); transform: translateY(-1px); }
.assoc-link-text {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
}
.assoc-link-sub { font-size: 0.7rem; color: rgba(255,255,255,0.5); }

/* === WHY GVTO === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,162,39,0.3);
}
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(201,162,39,0.12), rgba(201,162,39,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--navy); }
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* === EVENTS SECTION === */
.events-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--border-navy);
  overflow-x: auto;
}
.events-tab {
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font-body);
}
.events-tab:hover { color: var(--navy); }
.events-tab.active { color: var(--gold-dark); border-bottom-color: var(--gold); }

/* Featured Event */
.featured-event {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-bottom: 4rem;
}
.featured-event-img {
  position: relative;
  background: url('https://gvtoconclave.com/assets/v6.jpg') center/cover;
  min-height: 480px;
}
.featured-event-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,26,49,0.7), rgba(11,26,49,0.3));
}
.featured-event-badge {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}
.featured-event-content {
  background: var(--navy);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-event-content .section-eyebrow { color: var(--gold-light); }
.featured-event-content .section-eyebrow::before { background: var(--gold-light); }
.featured-event-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.featured-event-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.event-detail-list { margin-bottom: 1.75rem; }
.event-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(201,162,39,0.1);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
}
.event-detail-item:last-child { border-bottom: none; }
.event-detail-item .icon { color: var(--gold); width: 18px; text-align: center; }
.event-detail-item strong { color: var(--white); }
.featured-event-partners {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}
.partner-logo-row { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; margin-bottom: 1.5rem; }
.partner-logo-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 0.35rem 0.8rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* Event Cards Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-navy);
  transition: var(--transition);
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.event-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  position: relative;
  overflow: hidden;
}
.event-card-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.event-card-status {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.event-card-status.upcoming { background: rgba(201,162,39,0.9); color: var(--navy); }
.event-card-status.registration { background: rgba(34,197,94,0.9); color: var(--white); }
.event-card-body { padding: 1.5rem; }
.event-card-date {
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.event-card h3 { font-size: 1rem; margin-bottom: 0.5rem; line-height: 1.3; }
.event-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.25rem; }
.event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-navy);
}
.event-card-location { font-size: 0.78rem; color: var(--text-light); display: flex; align-items: center; gap: 0.3rem; }

/* === MEMBERSHIP === */
.membership-hero {
  background: linear-gradient(135deg, var(--navy-card) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 8rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.membership-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 25% 50%, rgba(201,162,39,0.08) 0%, transparent 60%),
    radial-gradient(circle at 75% 30%, rgba(201,162,39,0.06) 0%, transparent 60%);
}
.membership-hero h1 { color: var(--white); font-size: clamp(2.5rem,5vw,3.5rem); position: relative; }
.membership-hero p { color: rgba(255,255,255,0.65); max-width: 600px; margin: 1rem auto 0; position: relative; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border-navy);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

/* Silver */
.pricing-card.silver { border-color: rgba(192,192,192,0.4); }
.pricing-card.silver .tier-gem { background: linear-gradient(135deg, #C0C0C0, #E8E8E8); }
.pricing-card.silver .tier-name { color: #808080; }

/* Gold - Featured */
.pricing-card.gold {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-gold);
  transform: scale(1.03);
  background: linear-gradient(180deg, rgba(201,162,39,0.04) 0%, var(--white) 100%);
}
.pricing-card.gold:hover { transform: scale(1.03) translateY(-8px); }
.pricing-card.gold .tier-gem { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.pricing-card.gold .tier-name { color: var(--gold-dark); }

/* Platinum */
.pricing-card.platinum { border-color: rgba(229,228,226,0.6); background: linear-gradient(180deg, rgba(11,26,49,0.03) 0%, var(--white) 100%); }
.pricing-card.platinum .tier-gem { background: linear-gradient(135deg, #E5E4E2, var(--navy-light)); }
.pricing-card.platinum .tier-name { color: var(--navy); }

.tier-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.tier-gem {
  width: 48px; height: 48px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.tier-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  text-align: center;
  margin-bottom: 0.5rem;
}
.tier-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.25rem;
}
.tier-price-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 0.5rem;
}
.tier-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-navy);
}
.tier-features { margin-bottom: 2rem; }
.tier-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--text-body);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.tier-feature:last-child { border-bottom: none; }
.tier-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(201,162,39,0.15);
  color: var(--gold-dark);
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}
.pricing-card.gold .tier-check { background: rgba(201,162,39,0.2); }
.pricing-card.platinum .tier-check { background: rgba(11,26,49,0.1); color: var(--navy); }

/* Comparison Table */
.comparison-wrap { overflow-x: auto; margin-top: 2.5rem; }
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.875rem;
}
.comparison-table thead th {
  background: var(--navy);
  color: var(--white);
  padding: 1.1rem 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.comparison-table thead th:first-child { text-align: left; border-radius: var(--radius-sm) 0 0 0; }
.comparison-table thead th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.comparison-table thead th.gold-col { background: var(--gold); color: var(--navy); }
.comparison-table tbody tr:nth-child(even) { background: var(--off-white); }
.comparison-table tbody td {
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid var(--border-navy);
  text-align: center;
  color: var(--text-muted);
}
.comparison-table tbody td:first-child { text-align: left; font-weight: 500; color: var(--navy); }
.comparison-table td.yes { color: var(--gold-dark); font-weight: 700; font-size: 1rem; }
.comparison-table td.no { color: #ccc; }

/* === IMPACT === */
.impact-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}
.impact-counter {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,162,39,0.2);
  position: relative;
  overflow: hidden;
  background: rgba(201,162,39,0.04);
}
.impact-counter::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.impact-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.impact-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.story-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.story-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.story-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.story-author { display: flex; align-items: center; gap: 0.75rem; }
.story-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.85rem;
}
.story-name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.story-role { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* === NEWS SECTION === */
.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-navy);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  position: relative;
  overflow: hidden;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.news-card.featured .news-card-img { height: 300px; }
.news-card-body { padding: 1.5rem; }
.news-source {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.news-card h3 { font-size: 1rem; line-height: 1.35; margin-bottom: 0.6rem; color: var(--navy); }
.news-card.featured h3 { font-size: 1.2rem; }
.news-date { font-size: 0.75rem; color: var(--text-light); margin-bottom: 0.75rem; }
.news-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }

/* === INDUSTRY TRENDS === */
.trends-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.trend-card {
  background: var(--white);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.trend-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.trend-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trend-card:hover::after { transform: scaleX(1); }
.trend-icon { font-size: 2rem; margin-bottom: 1rem; }
.trend-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.trend-card h3 { font-size: 1rem; margin-bottom: 0.6rem; line-height: 1.3; }
.trend-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.trend-meta { font-size: 0.75rem; color: var(--text-light); display: flex; gap: 1rem; }

/* === PARTNERS/SPONSORS === */
.partners-section { padding: 5rem 0; }
.partners-category { margin-bottom: 3.5rem; }
.partners-category-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-navy);
}
.partners-logos {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.partner-logo-card {
  background: var(--white);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-md);
  padding: 1rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  transition: var(--transition);
  cursor: pointer;
}
.partner-logo-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-2px); }
.partner-logo-card span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1.3;
}

/* === GALLERY === */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.gallery-filter {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border-navy);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  background: none;
  font-family: var(--font-body);
}
.gallery-filter:hover, .gallery-filter.active { border-color: var(--gold); color: var(--gold-dark); background: rgba(201,162,39,0.08); }
.gallery-masonry {
  columns: 4;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(11,26,49,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay-icon { color: var(--white); font-size: 1.5rem; }

/* === CONTACT / FOOTER === */
.page-hero {
  background: var(--navy);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(201,162,39,0.08) 0%, transparent 60%);
}
.page-hero-content { position: relative; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem,4vw,3.2rem); }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 600px; margin-top: 0.75rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-navy);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(201,162,39,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.25rem; font-weight: 600; }
.contact-info-value { font-size: 0.92rem; font-weight: 500; color: var(--navy); }
.contact-info-value a { color: var(--gold-dark); transition: var(--transition); }
.contact-info-value a:hover { color: var(--navy); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.form-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border-navy);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-body);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,0.1); }
textarea.form-input { resize: vertical; min-height: 120px; }

/* === FOOTER === */
/* Footer styles have been moved to css/footer.css — kept separate intentionally */

/* === ANIMATIONS === */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@keyframes counter-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* === UTILITIES === */
.text-center { text-align: center; }
.text-gold { color: var(--gold-dark); }
.text-white { color: var(--white); }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* === MOBILE RESPONSIVE === */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pricing-card.gold { transform: none; }
  .pricing-card.gold:hover { transform: translateY(-8px); }
  .impact-counter-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card.featured { grid-column: span 2; }
  .trends-grid { grid-template-columns: repeat(2, 1fr); }
  /* .footer-main responsive → see css/footer.css */
  .gallery-masonry { columns: 3; }
  .contact-grid { grid-template-columns: 1fr; }
  .featured-event { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 72px; }
  .section { padding: 4rem 0; }
  .why-grid, .events-grid, .news-grid { grid-template-columns: 1fr; }
  .news-card.featured { grid-column: auto; }
  .impact-counter-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid, .trends-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1.25rem; }
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; background: var(--navy); justify-content: center; align-items: center; gap: 1.5rem; z-index: 999; padding: 5rem 2rem; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; color: rgba(255,255,255,0.85); }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; position: relative; z-index: 1001; }
  .top-bar-left { display: none; }
  .gallery-masonry { columns: 2; }
  /* .footer-main responsive → see css/footer.css */
  .featured-event-content { padding: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}






/* ========================================================
   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: 10px;
}

.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,0.04);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 14px;
  padding: 35px;
  min-height: 90px;


  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: 130px;
  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;
  }

}



/* ==========================
   INDIA-THAILAND CONCLAVE
========================== */

.conclave-card{
    background: linear-gradient(
        135deg,
        #0F2341 0%,
        #142d56 50%,
        #1a3768 100%
    );
    border-radius: 24px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 25px 60px rgba(15,35,65,0.18);
    border: 1px solid rgba(255,255,255,0.08);
}

.conclave-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:32px 40px;
    background:rgba(255,255,255,0.04);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.conclave-title{
    font-size:2rem;
    font-weight:700;
    line-height:1.2;
    margin-bottom:8px;
}

.conclave-tagline{
    color:rgba(255,255,255,0.75);
    font-size:1rem;
    max-width:700px;
}

.conclave-badge{
    background:linear-gradient(
        135deg,
        #D4AF37,
        #F4D06F
    );
    color:#0F2341;
    font-weight:700;
    padding:12px 20px;
    border-radius:999px;
    white-space:nowrap;
    font-size:0.9rem;
}

/* BODY */

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

.conclave-panel{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    padding:24px;
    backdrop-filter:blur(10px);
}

.conclave-panel-label{
    font-size:0.85rem;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#D4AF37;
    margin-bottom:20px;
    font-weight:600;
}

/* DETAILS */

.conclave-detail{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:18px;
    line-height:1.6;
}

.conclave-detail .icon{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:12px;
    background:rgba(212,175,55,0.12);
    color:#D4AF37;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1rem;
}

.conclave-detail strong{
    display:block;
    color:#fff;
    margin-bottom:2px;
}

/* SPEAKERS */

.speaker-card{
    display:flex;
    align-items:center;
    gap:15px;
    padding:15px;
    border-radius:14px;
    margin-bottom:15px;
    background:rgba(255,255,255,0.04);
    transition:.3s;
}

.speaker-card:hover{
    transform:translateY(-3px);
    background:rgba(255,255,255,0.08);
}

.speaker-avatar{
    width:55px;
    height:55px;
    min-width:55px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #D4AF37,
        #F4D06F
    );
    color:#0F2341;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.speaker-name{
    font-weight:700;
    margin-bottom:4px;
}

.speaker-role{
    font-size:0.88rem;
    color:rgba(255,255,255,0.7);
    line-height:1.4;
}

/* PARTNER PILLS */

.partner-logo-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    color:#fff;
    font-size:0.88rem;
    transition:.3s;
}

.partner-logo-pill:hover{
    background:#D4AF37;
    color:#0F2341;
    transform:translateY(-2px);
}

/* FOOTER */

.conclave-footer{
    padding:25px 35px;
    border-top:1px solid rgba(255,255,255,0.08);
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    background:rgba(0,0,0,0.15);
}

/* BUTTON */

.btn-full{
    width:100%;
}

.btn-gold{
    background:linear-gradient(
        135deg,
        #D4AF37,
        #F4D06F
    );
    color:#0F2341;
    font-weight:700;
    border:none;
    padding:14px 22px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    transition:.3s;
}

.btn-gold:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(212,175,55,0.25);
}

/* RESPONSIVE */

@media(max-width:992px){

    .conclave-body{
        grid-template-columns:1fr;
    }

    .conclave-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .conclave-title{
        font-size:1.6rem;
    }
}

@media(max-width:576px){

    .conclave-header,
    .conclave-body,
    .conclave-footer{
        padding:20px;
    }

    .conclave-title{
        font-size:1.4rem;
    }

    .speaker-card{
        flex-direction:column;
        text-align:center;
    }
}

/* ==========================
   INDIA-THAILAND CONCLAVE
========================== */

.conclave-card{
    background: linear-gradient(
        135deg,
        #0F2341 0%,
        #142d56 50%,
        #1a3768 100%
    );
    border-radius: 24px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 25px 60px rgba(15,35,65,0.18);
    border: 1px solid rgba(255,255,255,0.08);
}

.conclave-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:32px 40px;
    background:rgba(255,255,255,0.04);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.conclave-title{
    font-size:2rem;
    font-weight:700;
    line-height:1.2;
    margin-bottom:8px;
}

.conclave-tagline{
    color:rgba(255,255,255,0.75);
    font-size:1rem;
    max-width:700px;
}

.conclave-badge{
    background:linear-gradient(
        135deg,
        #D4AF37,
        #F4D06F
    );
    color:#0F2341;
    font-weight:700;
    padding:12px 20px;
    border-radius:999px;
    white-space:nowrap;
    font-size:0.9rem;
}

/* BODY */

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

.conclave-panel{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    padding:24px;
    backdrop-filter:blur(10px);
}

.conclave-panel-label{
    font-size:0.85rem;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#D4AF37;
    margin-bottom:20px;
    font-weight:600;
}

/* DETAILS */

.conclave-detail{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:18px;
    line-height:1.6;
}

.conclave-detail .icon{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:12px;
    background:rgba(212,175,55,0.12);
    color:#D4AF37;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1rem;
}

.conclave-detail strong{
    display:block;
    color:#fff;
    margin-bottom:2px;
}

/* SPEAKERS */

.speaker-card{
    display:flex;
    align-items:center;
    gap:15px;
    padding:15px;
    border-radius:14px;
    margin-bottom:15px;
    background:rgba(255,255,255,0.04);
    transition:.3s;
}

.speaker-card:hover{
    transform:translateY(-3px);
    background:rgba(255,255,255,0.08);
}

.speaker-avatar{
    width:55px;
    height:55px;
    min-width:55px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #D4AF37,
        #F4D06F
    );
    color:#0F2341;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.speaker-name{
    font-weight:700;
    margin-bottom:4px;
}

.speaker-role{
    font-size:0.88rem;
    color:rgba(255,255,255,0.7);
    line-height:1.4;
}

/* PARTNER PILLS */

.partner-logo-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    color:#fff;
    font-size:0.88rem;
    transition:.3s;
}

.partner-logo-pill:hover{
    background:#D4AF37;
    color:#0F2341;
    transform:translateY(-2px);
}

/* FOOTER */

.conclave-footer{
    padding:25px 35px;
    border-top:1px solid rgba(255,255,255,0.08);
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    background:rgba(0,0,0,0.15);
}

/* BUTTON */

.btn-full{
    width:100%;
}

.btn-gold{
    background:linear-gradient(
        135deg,
        #D4AF37,
        #F4D06F
    );
    color:#0F2341;
    font-weight:700;
    border:none;
    padding:14px 22px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    transition:.3s;
}

.btn-gold:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(212,175,55,0.25);
}

/* RESPONSIVE */

@media(max-width:992px){

    .conclave-body{
        grid-template-columns:1fr;
    }

    .conclave-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .conclave-title{
        font-size:1.6rem;
    }
}

@media(max-width:576px){

    .conclave-header,
    .conclave-body,
    .conclave-footer{
        padding:20px;
    }

    .conclave-title{
        font-size:1.4rem;
    }

    .speaker-card{
        flex-direction:column;
        text-align:center;
    }
}

/* ==========================
   INDIA-THAILAND CONCLAVE
========================== */

.conclave-card{
    background: linear-gradient(
        135deg,
        #0F2341 0%,
        #142d56 50%,
        #1a3768 100%
    );
    border-radius: 24px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 25px 60px rgba(15,35,65,0.18);
    border: 1px solid rgba(255,255,255,0.08);
}

.conclave-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:32px 40px;
    background:rgba(255,255,255,0.04);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.conclave-title{
    font-size:2rem;
    font-weight:700;
    line-height:1.2;
    margin-bottom:8px;
}

.conclave-tagline{
    color:rgba(255,255,255,0.75);
    font-size:1rem;
    max-width:700px;
}

.conclave-badge{
    background:linear-gradient(
        135deg,
        #D4AF37,
        #F4D06F
    );
    color:#0F2341;
    font-weight:700;
    padding:12px 20px;
    border-radius:999px;
    white-space:nowrap;
    font-size:0.9rem;
}

/* BODY */

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

.conclave-panel{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    padding:24px;
    backdrop-filter:blur(10px);
}

.conclave-panel-label{
    font-size:0.85rem;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#D4AF37;
    margin-bottom:20px;
    font-weight:600;
}

/* DETAILS */

.conclave-detail{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:18px;
    line-height:1.6;
}

.conclave-detail .icon{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:12px;
    background:rgba(212,175,55,0.12);
    color:#D4AF37;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1rem;
}

.conclave-detail strong{
    display:block;
    color:#fff;
    margin-bottom:2px;
}


/* ==========================
   INDIA-THAILAND CONCLAVE
========================== */

.conclave-card{
    background: linear-gradient(
        135deg,
        #0F2341 0%,
        #142d56 50%,
        #1a3768 100%
    );
    border-radius: 24px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 25px 60px rgba(15,35,65,0.18);
    border: 1px solid rgba(255,255,255,0.08);
}

.conclave-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:32px 40px;
    background:rgba(255,255,255,0.04);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.conclave-title{
    font-size:2rem;
    font-weight:700;
    line-height:1.2;
    margin-bottom:8px;
}

.conclave-tagline{
    color:rgba(255,255,255,0.75);
    font-size:1rem;
    max-width:700px;
}

.conclave-badge{
    background:linear-gradient(
        135deg,
        #D4AF37,
        #F4D06F
    );
    color:#0F2341;
    font-weight:700;
    padding:12px 20px;
    border-radius:999px;
    white-space:nowrap;
    font-size:0.9rem;
}

/* BODY */

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

.conclave-panel{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    padding:24px;
    backdrop-filter:blur(10px);
}

.conclave-panel-label{
    font-size:0.85rem;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#D4AF37;
    margin-bottom:20px;
    font-weight:600;
}

/* DETAILS */

.conclave-detail{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:18px;
    line-height:1.6;
}

.conclave-detail .icon{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:12px;
    background:rgba(212,175,55,0.12);
    color:#D4AF37;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1rem;
}

.conclave-detail strong{
    display:block;
    color:#fff;
    margin-bottom:2px;
}

/* SPEAKERS */

.speaker-card{
    display:flex;
    align-items:center;
    gap:15px;
    padding:15px;
    border-radius:14px;
    margin-bottom:15px;
    background:rgba(255,255,255,0.04);
    transition:.3s;
}

.speaker-card:hover{
    transform:translateY(-3px);
    background:rgba(255,255,255,0.08);
}

.speaker-avatar{
    width:55px;
    height:55px;
    min-width:55px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #D4AF37,
        #F4D06F
    );
    color:#0F2341;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.speaker-name{
    font-weight:700;
    margin-bottom:4px;
}

.speaker-role{
    font-size:0.88rem;
    color:rgba(255,255,255,0.7);
    line-height:1.4;
}

/* PARTNER PILLS */

.partner-logo-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    color:#fff;
    font-size:0.88rem;
    transition:.3s;
}

.partner-logo-pill:hover{
    background:#D4AF37;
    color:#0F2341;
    transform:translateY(-2px);
}

/* FOOTER */

.conclave-footer{
    padding:25px 35px;
    border-top:1px solid rgba(255,255,255,0.08);
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    background:rgba(0,0,0,0.15);
}

/* BUTTON */

.btn-full{
    width:100%;
}

.btn-gold{
    background:linear-gradient(
        135deg,
        #D4AF37,
        #F4D06F
    );
    color:#0F2341;
    font-weight:700;
    border:none;
    padding:14px 22px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    transition:.3s;
}

.btn-gold:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(212,175,55,0.25);
}

/* RESPONSIVE */

@media(max-width:992px){

    .conclave-body{
        grid-template-columns:1fr;
    }

    .conclave-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .conclave-title{
        font-size:1.6rem;
    }
}

@media(max-width:576px){

    .conclave-header,
    .conclave-body,
    .conclave-footer{
        padding:20px;
    }

    .conclave-title{
        font-size:1.4rem;
    }

    .speaker-card{
        flex-direction:column;
        text-align:center;
    }
}

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

.gallery-grid img{
  width:100%;
  height:250px;
  object-fit:cover;
  border-radius:16px;
  cursor:pointer;
  transition:all .35s ease;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.gallery-grid img:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/* SPEAKERS */

.speaker-card{
    display:flex;
    align-items:center;
    gap:15px;
    padding:15px;
    border-radius:14px;
    margin-bottom:15px;
    background:rgba(255,255,255,0.04);
    transition:.3s;
}

.speaker-card:hover{
    transform:translateY(-3px);
    background:rgba(255,255,255,0.08);
}

.speaker-avatar{
    width:55px;
    height:55px;
    min-width:55px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #D4AF37,
        #F4D06F
    );
    color:#0F2341;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.speaker-name{
    font-weight:700;
    margin-bottom:4px;
}

.speaker-role{
    font-size:0.88rem;
    color:rgba(255,255,255,0.7);
    line-height:1.4;
}

/* PARTNER PILLS */

.partner-logo-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    color:#fff;
    font-size:0.88rem;
    transition:.3s;
}

.partner-logo-pill:hover{
    background:#D4AF37;
    color:#0F2341;
    transform:translateY(-2px);
}

/* FOOTER */

.conclave-footer{
    padding:25px 35px;
    border-top:1px solid rgba(255,255,255,0.08);
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    background:rgba(0,0,0,0.15);
}

/* BUTTON */

.btn-full{
    width:100%;
}

.btn-gold{
    background:linear-gradient(
        135deg,
        #D4AF37,
        #F4D06F
    );
    color:#0F2341;
    font-weight:700;
    border:none;
    padding:14px 22px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    transition:.3s;
}

.btn-gold:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(212,175,55,0.25);
}

/* RESPONSIVE */

@media(max-width:992px){

    .conclave-body{
        grid-template-columns:1fr;
    }

    .conclave-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .conclave-title{
        font-size:1.6rem;
    }
}

@media(max-width:576px){

    .conclave-header,
    .conclave-body,
    .conclave-footer{
        padding:20px;
    }

    .conclave-title{
        font-size:1.4rem;
    }

    .speaker-card{
        flex-direction:column;
        text-align:center;
    }
}


.world-gallery{
    background:#061f4a;
    padding:100px 0;
    overflow:hidden;
}

.world-gallery h2{
    text-align:center;
    color:#fff;
    font-size:4rem;
    font-weight:800;
    margin-bottom:15px;
}

.world-gallery h2 span{
    color:#1ea7ff;
}

.world-gallery p{
    text-align:center;
    color:rgba(255,255,255,.8);
    margin-bottom:60px;
    font-size:1.2rem;
}





.slider-full{
    width:100%;
    overflow:hidden;
    position:relative;
    cursor:grab;
    touch-action: pan-y;
}

.slider-full.dragging{
    cursor:grabbing;
}

/* width/animation are now handled by js/gallery-slider.js so that ALL slides
   are shown correctly at every breakpoint (the old CSS keyframe version only
   ever scrolled through a handful of the images before jumping back). */
.slide-track{
    display:flex;
    gap:24px;
    will-change: transform;
}

.slide{
    width:400px;
    flex-shrink:0;
}

.slide img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:28px;
    transition:.4s ease;
    -webkit-user-drag:none;
    user-select:none;
    pointer-events:none;
}

.slide img:hover{
    transform:scale(1.04);
}

/* Manual navigation arrows */
.world-gallery{ position:relative; }
.slider-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.25);
    background:rgba(11,26,49,0.55);
    color:#fff;
    font-size:1.1rem;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:5;
    backdrop-filter: blur(6px);
    transition: background .25s ease, transform .25s ease;
}
.slider-nav:hover{ background: var(--gold, #C9A227); color:#0b1a31; transform:translateY(-50%) scale(1.08); }
.slider-nav.prev{ left:24px; }
.slider-nav.next{ right:24px; }
.slider-nav:focus-visible{ outline:2px solid #C9A227; outline-offset:2px; }

@media(max-width:768px){

    .world-gallery h2{
        font-size:2.5rem;
    }

    .slide{
        width:280px;
    }

    .slide img{
        height:220px;
    }

    .slider-nav{ width:42px; height:42px; font-size:0.95rem; }
    .slider-nav.prev{ left:10px; }
    .slider-nav.next{ right:10px; }
}

@media(max-width:425px){
    .slide{ width:220px; }
    .slide img{ height:170px; border-radius:18px; }
}


/* DOCUMENTARY SECTION */

.documentary-section{
    background:#f7f9fc;
}

.documentary-subtitle{
    margin-bottom:3rem;
}

.documentary-wrapper{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:50px;
    align-items:center;
}

.documentary-video{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
    background:#000;
}

.documentary-video iframe{
    width:100%;
    aspect-ratio:16/9;
    border:0;
    display:block;
}

.documentary-content h3{
    font-size:2rem;
    margin-bottom:20px;
}

.documentary-content p{
    margin-bottom:25px;
    line-height:1.8;
    color:#5b6780;
}

.documentary-badge{
    display:inline-block;
    background:#e8f1ff;
    color:#2B7FD4;
    font-weight:600;
    padding:8px 18px;
    border-radius:40px;
    margin-bottom:18px;
}

.documentary-highlights{
    margin:25px 0 35px;
    padding:0;
    list-style:none;
}

.documentary-highlights li{
    margin-bottom:14px;
    padding-left:28px;
    position:relative;
    font-weight:500;
}

.documentary-highlights li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#2B7FD4;
    font-weight:bold;
}

@media(max-width:992px){

.documentary-wrapper{
    grid-template-columns:1fr;
}

.documentary-content{
    text-align:center;
}

.documentary-highlights{
    display:inline-block;
    text-align:left;
}

}




/* ==========================================================
   PAST EVENTS
========================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 3rem;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.45s ease;
  box-shadow: 0 12px 35px rgba(0,0,0,.12);
}

.gallery-grid img:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,.22);
}


/* ==========================================================
   REGISTRATION BANNER
========================================================== */

.reg-banner {
  margin-top: 80px;
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  border-radius: 24px;
  padding: 70px 50px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  position: relative;
  overflow: hidden;
}

.reg-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right,
    rgba(212,175,55,.15),
    transparent 45%);
  pointer-events: none;
}

.reg-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}

.reg-banner p {
  max-width: 760px;
  margin: auto;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* ==========================================================
   BUTTONS
========================================================== */

.btn-lg {
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 600;
  transition: .35s;
  text-decoration: none;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover {
  background: #001f55;
  transform: translateY(-4px);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn-outline-white:hover {
  background: var(--navy);
  color: #fff !important;
  transform: translateY(-4px);
}

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

@media (max-width:768px){

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

  .gallery-grid img{
    height:220px;
  }

  .reg-banner{
    padding:50px 25px;
  }

  .reg-banner h2{
    font-size:2rem;
  }

  .close-btn{
    top:15px;
    right:20px;
    font-size:38px;
  }

}


/*======================================
        PAST EVENTS
======================================*/

.past-events-section{
    margin-top:5rem;
}

.past-events-title{
    font-size:2.4rem;
    font-weight:700;
    color:#0A2342;
    margin-top:.5rem;
}

.past-gallery{
    margin-top:3rem;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:22px;
}

.past-gallery img{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:18px;

    cursor:pointer;

    transition:.45s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.past-gallery img:hover{

    transform:translateY(-8px) scale(1.03);

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}
 
/*======================================
        REGISTER CTA
======================================*/

.gvto-register-banner{

    margin-top:90px;

    padding:70px 45px;

    text-align:center;

    background:#fff;

    border-radius:22px;

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

}

.gvto-register-banner h2{

    font-size:2.2rem;

    color:#0A2342;

    margin-bottom:20px;

}

.gvto-register-banner p{

    max-width:750px;

    margin:auto;

    color:#666;

    line-height:1.8;

    margin-bottom:35px;

}

.gvto-register-buttons{

    display:flex;

    justify-content:center;

    gap:16px;

    flex-wrap:wrap;

}

.gvto-member-btn{

    border-color:#0A2342!important;

    color:#0A2342!important;

}

.gvto-member-btn:hover{

    background:#0A2342;

    color:#fff!important;

}

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

@media(max-width:768px){

.past-gallery{

grid-template-columns:1fr;

}

.past-gallery img{

height:220px;

}

.gvto-register-banner{

padding:45px 25px;

}

.gvto-register-banner h2{

font-size:1.8rem;

}

}


.past-events-section{
    width:100%;
    margin:80px 0 0;
    padding:0;
}

.past-events-title{
    margin:10px 0 20px;
}

.past-gallery{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
    width:100%;
}

.past-gallery img{
    width:100%;
    display:block;
}


.past-events-section{
    width:100%;
    margin-top:80px;
    margin-left:0 !important;
    padding-left:0 !important;
    clear:both;
}

.past-events-section .section-eyebrow,
.past-events-section .past-events-title,
.past-events-section .gold-rule{
    margin-left:0 !important;
}

.past-gallery{
    width:100%;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}



