/* ==========================================================================
   CAREER BONANZA - PREMIER EDUCATION & CAREER EXPO
   Organized by Exhiconnect Media Private Limited (30+ Years Legacy)
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --primary: #0a4f9f;
  --primary-dark: #07346b;
  --primary-light: #1e70d4;
  --primary-glow: rgba(10, 79, 159, 0.25);
  
  --secondary: #e63946;
  --secondary-hover: #c92a37;
  --accent-gold: #f59e0b;
  --accent-gold-light: #fef08a;
  --accent-cyan: #06b6d4;
  --accent-emerald: #10b981;
  --accent-purple: #8b5cf6;
  
  /* Social Brand Colors */
  --color-instagram: #E4405F;
  --color-facebook: #1877F2;
  --color-linkedin: #0A66C2;
  --color-youtube: #FF0000;
  --color-whatsapp: #25D366;

  /* Neutrals */
  --bg-dark: #0b1120;
  --bg-dark-card: #131d33;
  --bg-dark-surface: #1e293b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #f1f5f9;
  --text-white: #ffffff;
  --border-light: #e2e8f0;
  --border-dark: #334155;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, rgba(6, 17, 34, 0.92) 0%, rgba(10, 79, 159, 0.8) 50%, rgba(6, 17, 34, 0.95) 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --gradient-primary: linear-gradient(135deg, #0a4f9f 0%, #1e70d4 100%);
  --gradient-accent: linear-gradient(135deg, #e63946 0%, #f43f5e 100%);
  --gradient-emerald: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  --gradient-announcement: linear-gradient(135deg, #991b1b 0%, #b91c1c 50%, #7f1d1d 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.14);
  --shadow-glow: 0 0 25px rgba(30, 112, 212, 0.4);
  --shadow-gold: 0 8px 25px rgba(245, 158, 11, 0.35);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

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

/* 80% Spacious Proportions for Desktop View */
html {
  scroll-behavior: smooth;
  font-size: 14px; /* Base 80-85% density for desktop */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 1440px) {
  html {
    font-size: 14.5px;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 3.5rem auto;
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(10, 79, 159, 0.1);
  color: var(--primary);
  margin-bottom: 1rem;
  border: 1px solid rgba(10, 79, 159, 0.2);
}

.section-badge.badge-light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.section-badge.badge-red {
  background: rgba(230, 57, 70, 0.15);
  color: #e63946;
  border-color: rgba(230, 57, 70, 0.3);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-title.title-light {
  color: #ffffff;
}

.section-title .text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title .text-gradient-gold {
  background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-subtitle.subtitle-light {
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   2027 Mega Announcement & Social Bar
   ========================================================================== */
.next-event-banner {
  background: var(--gradient-announcement);
  color: #fff;
  padding: 0.55rem 0;
  font-size: 0.88rem;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(185, 28, 28, 0.35);
}

.next-event-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.next-event-text {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.next-event-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fcd34d;
  color: #111827;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(252, 211, 77, 0.6); }
  50% { transform: scale(1.04); box-shadow: 0 0 20px rgba(252, 211, 77, 0.9); }
}

.next-event-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-social-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar-social-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.topbar-social-btn.btn-ig:hover { background: var(--color-instagram); color: #fff; transform: translateY(-2px); }
.topbar-social-btn.btn-li:hover { background: var(--color-linkedin); color: #fff; transform: translateY(-2px); }
.topbar-social-btn.btn-fb:hover { background: var(--color-facebook); color: #fff; transform: translateY(-2px); }
.topbar-social-btn.btn-yt:hover { background: var(--color-youtube); color: #fff; transform: translateY(-2px); }
.topbar-social-btn.btn-wa:hover { background: var(--color-whatsapp); color: #fff; transform: translateY(-2px); }

.btn-early-call {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.28rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-fast);
}

.btn-early-call:hover {
  background: #fff;
  color: #b91c1c;
  border-color: #fff;
}

/* ==========================================================================
   Header & Navigation (Spacious & Clean Layout)
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  transition: var(--transition-normal);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  gap: 1.5rem;
}

/* Brand Container */
.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  min-width: 290px;
}

.logo-career-bonanza {
  height: 58px;
  max-height: 58px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
  transition: transform var(--transition-fast);
}

.logo-career-bonanza:hover {
  transform: scale(1.03);
}

.brand-divider {
  width: 1.5px;
  height: 40px;
  background: rgba(15, 23, 42, 0.15);
  flex-shrink: 0;
}

.logo-exhiconnect {
  height: 42px;
  max-height: 42px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin: 0 auto;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 0.35rem 0.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

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

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

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.45rem 1.15rem;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(10, 79, 159, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(10, 79, 159, 0.5);
  color: #fff;
}

.btn-secondary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.35);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(230, 57, 70, 0.5);
  color: #fff;
}

.btn-gold {
  background: var(--gradient-gold);
  color: #111827;
  box-shadow: var(--shadow-gold);
  font-weight: 800;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.5);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background: #1eb954;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--primary-dark);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.4rem;
}

/* ==========================================================================
   Hero Section with Dynamic Responsive Background Video
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.15);
  transform: scale(1.02);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--gradient-hero);
  backdrop-filter: blur(1.5px);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.35;
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  padding: 4.5rem 0 3.5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-tag {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

.hero-tag.tag-next {
  background: rgba(230, 57, 70, 0.3);
  border-color: #e63946;
  color: #ffccd5;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.14;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-title .highlight {
  background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 50%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
  max-width: 620px;
  line-height: 1.7;
}

.hero-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.meta-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.meta-pill-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.2);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.meta-pill-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.meta-pill-text span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-trust-avatars {
  display: flex;
  align-items: center;
}

.hero-trust-avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #061122;
  margin-left: -10px;
  object-fit: cover;
}

.hero-trust-avatars img:first-child {
  margin-left: 0;
}

.hero-trust-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-trust-text strong {
  color: var(--accent-gold);
}

/* Hero Right: 2027 Next Edition Card */
.hero-glass-card {
  background: rgba(19, 29, 51, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.hero-glass-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -40%;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.3), transparent 70%);
  pointer-events: none;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.card-edition-badge {
  background: var(--gradient-gold);
  color: #111;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.countdown-box {
  margin-bottom: 1.5rem;
}

.countdown-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  text-align: center;
}

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

.countdown-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.2rem;
  text-align: center;
}

.countdown-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.countdown-unit {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  margin-top: 0.2rem;
}

.hero-official-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-official-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.15rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.hero-official-btn:hover {
  background: var(--primary);
  border-color: var(--primary-light);
  transform: translateX(4px);
  color: #fff;
}

.hero-official-btn i {
  color: var(--accent-gold);
}

/* ==========================================================================
   Stats Banner
   ========================================================================== */
.stats-banner {
  background: #ffffff;
  padding: 2.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 20;
  margin-top: -2.5rem;
  border-radius: var(--radius-xl);
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-card {
  position: relative;
  padding: 0.5rem 1rem;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-light);
}

.stat-number-wrap {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-card:nth-child(2) .stat-number-wrap { color: var(--secondary); }
.stat-card:nth-child(3) .stat-number-wrap { color: var(--accent-gold); }
.stat-card:nth-child(4) .stat-number-wrap { color: var(--accent-emerald); }

.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

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

/* ==========================================================================
   2027 Mega Announcement Spotlight Section
   ========================================================================== */
.next-edition-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #091a33 0%, #061122 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.next-edition-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.25), transparent 70%);
  pointer-events: none;
}

.next-edition-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 5;
}

.next-edition-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.next-edition-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.next-edition-content p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.next-edition-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.next-feat-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.next-feat-box i {
  color: var(--accent-gold);
  font-size: 1.25rem;
}

.early-book-box {
  background: linear-gradient(145deg, #1e293b 0%, #131d33 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.early-book-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.early-book-box p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.direct-call-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
}

.direct-call-badge i {
  color: var(--accent-gold);
}

/* ==========================================================================
   Resource Center & Official Downloads Hub
   ========================================================================= */
.resources-section {
  padding: 7rem 0;
  background: #ffffff;
}

.resource-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.resource-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 79, 159, 0.3);
}

.resource-card.card-featured::before { background: var(--gradient-accent); }
.resource-card.card-gold::before { background: var(--gradient-gold); }
.resource-card.card-emerald::before { background: var(--gradient-emerald); }
.resource-card.card-purple::before { background: var(--gradient-purple); }

.resource-icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-lg);
  background: rgba(10, 79, 159, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.resource-card:hover .resource-icon-wrap {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
}

.resource-card.card-featured .resource-icon-wrap { background: rgba(230, 57, 70, 0.08); color: var(--secondary); }
.resource-card.card-featured:hover .resource-icon-wrap { background: var(--secondary); color: #fff; }

.resource-card.card-gold .resource-icon-wrap { background: rgba(245, 158, 11, 0.08); color: var(--accent-gold); }
.resource-card.card-gold:hover .resource-icon-wrap { background: var(--accent-gold); color: #111; }

.resource-card.card-emerald .resource-icon-wrap { background: rgba(16, 185, 129, 0.08); color: var(--accent-emerald); }
.resource-card.card-emerald:hover .resource-icon-wrap { background: var(--accent-emerald); color: #fff; }

.resource-card.card-purple .resource-icon-wrap { background: rgba(139, 92, 246, 0.08); color: var(--accent-purple); }
.resource-card.card-purple:hover .resource-icon-wrap { background: var(--accent-purple); color: #fff; }

.resource-badge {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  background: #eff6ff;
  color: var(--primary);
}

.resource-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.resource-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.resource-btn {
  width: 100%;
}

/* ==========================================================================
   Outdoor Hoardings & City Publicity Showcase
   ========================================================================== */
.hoardings-section {
  padding: 6rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

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

.hoarding-card {
  background: #0f172a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  aspect-ratio: 16 / 10;
  cursor: pointer;
  transition: var(--transition-normal);
}

.hoarding-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hoarding-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.hoarding-card:hover img {
  transform: scale(1.06);
}

.hoarding-badge-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
  padding: 1.25rem 1rem 0.85rem 1rem;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

/* ==========================================================================
   Stakeholders Section
   ========================================================================== */
.audience-section {
  padding: 7rem 0 5rem 0;
  background: #f8fafc;
}

.audience-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.aud-tab-btn {
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.aud-tab-btn.active, .aud-tab-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 79, 159, 0.25);
}

.aud-tab-pane {
  display: none;
}

.aud-tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.audience-card-main {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.audience-card-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audience-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(10, 79, 159, 0.08);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.audience-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.audience-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.audience-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.aud-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
}

.aud-feat-item i {
  color: var(--accent-emerald);
  font-size: 1.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.audience-media-col {
  position: relative;
  min-height: 420px;
  background: #0f172a;
}

.audience-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  color: #fff;
}

.aud-quote-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.95rem;
  font-style: italic;
}

/* ==========================================================================
   Multi-Format 4-Video Showcase (100% Strictly Silent Motion)
   ========================================================================== */
.video-hub-section {
  padding: 7rem 0;
  background: #0f172a;
  color: #fff;
  position: relative;
}

.video-hub-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.video-card {
  background: #1e293b;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: 0 20px 50px rgba(10, 79, 159, 0.4);
}

.video-frame-container {
  position: relative;
  background: #000;
  overflow: hidden;
  pointer-events: none;
}

.video-card.vertical-reel .video-frame-container {
  aspect-ratio: 9 / 16;
  max-height: 400px;
}

.video-card.horizontal-cinema .video-frame-container {
  aspect-ratio: 16 / 9;
}

.expo-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.video-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.video-type-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.6rem;
  align-self: flex-start;
}

.tag-reel { background: rgba(230, 57, 70, 0.2); color: #ffccd5; }
.tag-cinema { background: rgba(10, 79, 159, 0.25); color: #93c5fd; }

.video-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
}

.video-card-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
  flex-grow: 1;
}

/* ==========================================================================
   Photo Gallery & Lightbox
   ========================================================================== */
.gallery-section {
  padding: 7rem 0;
  background: #f8fafc;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.gal-filter-btn {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition-fast);
}

.gal-filter-btn.active, .gal-filter-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #000;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: transform var(--transition-normal);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 79, 159, 0.9) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  color: #fff;
}

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

.gallery-overlay-text {
  font-size: 0.95rem;
  font-weight: 700;
}

.gallery-overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition-normal);
  opacity: 0;
}

.gallery-item:hover .gallery-overlay-icon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* ==========================================================================
   Press & News Coverage
   ========================================================================== */
.press-section {
  padding: 6rem 0;
  background: #ffffff;
}

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

.press-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  cursor: pointer;
}

.press-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.press-img-wrap {
  position: relative;
  height: 280px;
  background: #f1f5f9;
  overflow: hidden;
}

.press-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.press-card:hover .press-img-wrap img {
  transform: scale(1.05);
}

.press-overlay-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.press-content {
  padding: 1.5rem;
}

.press-headline {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.press-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================================================
   Leadership / Chief Coordinator Section
   ========================================================================== */
.coordinator-section {
  padding: 7rem 0;
  background: #f8fafc;
}

.coordinator-card {
  background: linear-gradient(135deg, #091a33 0%, #0a4f9f 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.coordinator-card::after {
  content: '\f10e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 2rem;
  bottom: 1rem;
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.coordinator-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.coordinator-profile {
  text-align: center;
}

.coord-img-box {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid var(--accent-gold);
  margin: 0 auto 1.25rem auto;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.coord-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coord-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.coord-title {
  font-size: 0.9rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.coord-org {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}

.coordinator-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.coordinator-quote-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.guru-shishya-box {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--accent-gold);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.95rem;
  color: #fef08a;
  font-style: italic;
}

/* ==========================================================================
   Partners & Institutional Supporters
   ========================================================================== */
.partners-section {
  padding: 4.5rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.partners-title {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.partners-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.5rem;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  font-weight: 700;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.partner-item:hover {
  border-color: var(--primary);
  background: #eff6ff;
  transform: translateY(-2px);
}

.partner-item i {
  color: var(--primary);
  font-size: 1.25rem;
}

/* ==========================================================================
   Venue & Location Guide
   ========================================================================== */
.venue-section {
  padding: 6rem 0;
  background: #ffffff;
}

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.venue-card-info {
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
}

.venue-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.venue-address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.venue-address i {
  color: var(--secondary);
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

.transit-list {
  margin-bottom: 2rem;
}

.transit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 600;
}

.transit-item i {
  color: var(--primary);
}

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
  border: 1px solid var(--border-light);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   Interactive FAQ Section
   ========================================================================== */
.faq-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-toggle-icon {
  font-size: 0.9rem;
  color: var(--primary);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.25rem;
}

/* ==========================================================================
   Master Footer (With Rich Social Media Links)
   ========================================================================== */
.main-footer {
  background: #061122;
  color: #fff;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.85fr 1.1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  margin: 1.25rem 0 1.5rem 0;
  line-height: 1.7;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: fit-content;
}

.footer-logos .footer-cb-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  background: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.footer-logos .footer-exhi-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  background: #fff;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-btn.btn-ig:hover { background: var(--color-instagram); border-color: var(--color-instagram); color: #fff; transform: translateY(-3px); }
.social-btn.btn-li:hover { background: var(--color-linkedin); border-color: var(--color-linkedin); color: #fff; transform: translateY(-3px); }
.social-btn.btn-fb:hover { background: var(--color-facebook); border-color: var(--color-facebook); color: #fff; transform: translateY(-3px); }
.social-btn.btn-yt:hover { background: var(--color-youtube); border-color: var(--color-youtube); color: #fff; transform: translateY(-3px); }
.social-btn.btn-wa:hover { background: var(--color-whatsapp); border-color: var(--color-whatsapp); color: #fff; transform: translateY(-3px); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-links-list li {
  margin-bottom: 0.75rem;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-list i {
  color: var(--accent-gold);
  margin-top: 0.25rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Floating Widgets & Mobile Action Bar
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 62px;
  height: 62px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: transform var(--transition-fast);
  animation: bounce-float 3s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: #fff;
}

@keyframes bounce-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 0.6rem 1rem;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-bar-inner {
  display: flex;
  gap: 0.5rem;
}

.mobile-bar-inner .btn {
  flex: 1;
  padding: 0.6rem 0.5rem;
  font-size: 0.82rem;
}

/* ==========================================================================
   Lightbox Modal
   ========================================================================== */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  color: #fff;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.lightbox-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: #fff;
  background: transparent;
  cursor: pointer;
  z-index: 2010;
  transition: transform var(--transition-fast);
}

.lightbox-close-btn:hover {
  transform: scale(1.2);
  color: var(--secondary);
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1200px) {
  .nav-links {
    gap: 0.85rem;
  }
  .nav-link {
    font-size: 0.85rem;
  }
  .brand-wrapper {
    min-width: 250px;
  }
  .logo-career-bonanza {
    height: 50px;
  }
  .logo-exhiconnect {
    height: 36px;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .next-edition-grid {
    grid-template-columns: 1fr;
  }

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

  .hoarding-slider-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-card:nth-child(2)::after {
    display: none;
  }
  
  .audience-card-main {
    grid-template-columns: 1fr;
  }
  
  .video-hub-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .coordinator-grid {
    grid-template-columns: 1fr;
  }
  
  .venue-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
    display: none;
    border-bottom: 2px solid var(--primary);
  }
  
  .nav-links.nav-open {
    display: flex;
  }
  
  .header-cta-group .btn-sm {
    display: none;
  }
}

@media (max-width: 768px) {
  .next-event-inner {
    justify-content: center;
    text-align: center;
  }

  .brand-wrapper {
    min-width: unset;
  }

  .logo-career-bonanza {
    height: 46px;
  }

  .logo-exhiconnect {
    height: 34px;
  }

  .resource-cards-grid {
    grid-template-columns: 1fr;
  }

  .hoarding-slider-grid {
    grid-template-columns: 1fr;
  }

  .video-hub-grid-4 {
    grid-template-columns: 1fr;
  }
  
  .press-grid {
    grid-template-columns: 1fr;
  }
  
  .audience-card-content {
    padding: 2rem;
  }
  
  .audience-feature-list {
    grid-template-columns: 1fr;
  }

  .next-edition-highlights {
    grid-template-columns: 1fr;
  }

  .next-edition-card {
    padding: 2rem 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .mobile-bottom-bar {
    display: block;
  }
  
  body {
    padding-bottom: 65px;
  }
}
