/* =====================
   GLOBAL RESET
   ===================== */

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

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Roboto", sans-serif;
}

/* =====================
   HERO SECTION
   ===================== */

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-image: url("./images/sustainableBackground3.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Dark overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
}

/* Layout container */
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;

  display: flex;
  align-items: center; /* vertical center */
  justify-content: flex-end; /* move to right */

  padding-right: 8%; /* space from right edge */
  padding-left: 0;
}

/* =====================
   GLASS CARD
   ===================== */

.hero-glass {
  max-width: 520px;
  padding: 48px;
  border-radius: 22px;

  background: rgba(10, 50, 15, 0.55); /* darker, green-tinted glass */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.25);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45),
    inset 0 0 0.5px rgba(255, 255, 255, 0.4);

  color: #f3f6f4; /* base text color */
  animation: glassFadeUp 1.1s ease-out forwards;
  animation-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-glass {
    animation: none;
  }
}

.hero-glass::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.05)
  );
  opacity: 0.35;
  pointer-events: none;
}

/* =====================
   TEXT STYLES
   ===================== */

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;

  color: #f5f8f6; /* soft white */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-sub-condensed {
  font-size: 1.1rem;
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;

  color: #d0e4d8; /* light emerald */
}

.hero-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(220, 235, 225, 0.75);
}

.meta-value {
  font-size: 1.05rem;
  font-weight: 500;
  color: #e6f0ea;
}

/* =====================
   BUTTON
   ===================== */

.hero-btn {
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;

  border: none;
  background: #f4f7f5;
  color: #0c1a14;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.hero-themes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.theme-pill {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;

  background: rgba(34, 90, 60, 0.55); /* emerald tint */
  border: 1px solid rgba(120, 200, 160, 0.45);

  color: #eafff4;
  backdrop-filter: blur(10px);

  white-space: nowrap;
}

@media (max-width: 768px) {
}

/* =====================
   HERO – MOBILE LAYOUT
   ===================== */

@media (max-width: 768px) {
  .hero-content {
    padding-left: 0;
    justify-content: center; /* center horizontally */
    padding: 0 16px; /* side margins */
  }

  .hero-glass {
    width: 100%;
    max-width: 100%;
    padding: 32px 24px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-meta {
    align-items: center;
    font-size: 1rem;
  }

  .theme-pill {
    white-space: normal; /* allow wrapping */
    line-height: 1.4;
    max-width: 100%;
    word-break: break-word;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
}

.scroll-indicator span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: #ffffff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDown 1.6s infinite;
}

@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}

/* =====================
   HERO GLASS ENTRANCE
   ===================== */

@keyframes glassFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =====================
   EVENT OVERVIEW SECTION
   ===================== */

.event-overview {
  background: #faf6ef;
  padding: 50px 6%;
}

.event-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.event-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #0e1430;
  margin-bottom: 70px;
}

.event-title span {
  display: block;
  margin-top: 10px;
  background: linear-gradient(90deg, #27c8f5, #011318);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Content layout */
.event-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Text */
.event-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2a2a2a;
  margin-bottom: 18px;
  text-align: justify;
}

.event-text strong {
  color: #0e1430;
}

.event-text ul {
  margin: 20px 0 30px;
  padding-left: 20px;
}

.event-text li {
  margin-bottom: 10px;
  font-weight: 500;
}

/* =====================
   IMAGE COLLAGE (ALL SCREENS)
   ===================== */

.event-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: clamp(180px, 28vw, 320px) clamp(180px, 28vw, 320px);
  gap: 16px;
}

/* Base image styling */
.event-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* Image 1 (top-left) */
.event-images img:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

/* Image 2 (top-right) */
.event-images img:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

/* Image 3 (bottom, full width) */
.event-images img:nth-child(3) {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

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

@media (max-width: 768px) {
  .event-overview {
    padding: 70px 5%;
  }

  .event-title {
    font-size: 2.2rem;
  }

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

@media (max-width: 420px) {
  .event-images {
    gap: 12px;
  }
}

/* =====================
   SPEAKERS SECTION
   ===================== */

.speakers-section {
  background: #f2f5ff;
  padding: 90px 6%;
}

.speakers-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

/* Title */
.speakers-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1c2455;
  margin-bottom: 14px;
}

.speakers-divider {
  height: 1px;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

/* =====================
   SPEAKER CARD
   ===================== */

.speaker-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #0f163a;

  flex: 0 0 300px; /* KEY CHANGE */
  height: 480px;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* Image */
.speaker-image {
  position: absolute;
  inset: 0;
}

.speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlay */
.speaker-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 29, 0, 0.95) 30%,
    rgba(10, 29, 0, 0.45) 55%,
    rgba(12, 18, 60, 0) 80%
  );
}

/* Info */
.speaker-info {
  position: absolute;
  bottom: 26px;
  left: 26px;
  right: 26px;
  z-index: 2;
  color: #ffffff;
}

.speaker-info h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.speaker-info p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 22px;
}

.speaker-card {
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.speaker-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

/* =====================
   SCROLLABLE SPEAKERS TRACK
   ===================== */

.speakers-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 12px;

  scrollbar-width: none; /* Firefox */
}

.speakers-track::-webkit-scrollbar {
  display: none;
}

.speakers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.speakers-nav {
  display: flex;
  gap: 12px;
}

.nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.25);
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
}

.nav-btn:hover {
  background: #1c2455;
  color: #ffffff;
}

@media (max-width: 600px) {
  .speakers-nav {
    display: none;
  }
}

.swipe-indicator {
  display: none;
  text-align: center;
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .swipe-indicator {
    display: block;
  }
}

.speaker-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  pointer-events: none;
  z-index: 4; /* bump layer up */
}

/* Gold VIP Styling */
.speaker-tag.vip {
  background: linear-gradient(135deg, #fbdc74, #e1b545);
  color: #1c2455;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 215, 0, 0.6);

  z-index: 4; /* higher than speaker-card::after overlay */
  position: relative;
  overflow: hidden; /* keeps animation inside pill */
}

.speaker-tag.normal {
  background: rgb(255, 255, 255);
  color: #1c2455;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 215, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.speaker-tag.vip::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 150%;
  }
}

/* =====================
   AGENDA SECTION
   ===================== */

.agenda-section {
  background: #faf6ef; /* same as event-overview */
  padding: 100px 6%;
}

.agenda-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Layout */
.agenda-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  margin-top: 50px;
}

/* =====================
   DATE SELECTOR
   ===================== */

.agenda-dates {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.agenda-date-item {
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 10px;
  color: #1c2455;
}

.agenda-date-item.active {
  background: linear-gradient(90deg, #e8ecff, #f5f7ff);
  color: #1c2455;
}

/* =====================
   AGENDA DETAILS
   ===================== */

.agenda-details {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.1);
}

.agenda-day-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1c2455;
}

.agenda-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.agenda-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.agenda-time {
  color: #3a6bff;
  font-weight: 600;
}

.agenda-title {
  font-weight: 500;
}

/* =====================
   NOTE
   ===================== */

.agenda-note {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #555;
}

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

@media (max-width: 768px) {
  .agenda-layout {
    grid-template-columns: 1fr;
  }
}

/* =====================
   MULTI-TRACK STYLES
   ===================== */

.agenda-theme {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 30px;
}

.agenda-tracks {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.agenda-track {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 24px;
}

.agenda-track-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1c2455;
  margin-bottom: 18px;
}

.agenda-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.agenda-time {
  color: #3a6bff;
  font-weight: 600;
}

.agenda-title {
  font-weight: 500;
}

.agenda-note-text {
  font-size: 0.85rem;
  color: #666;
  margin-top: 4px;
}

.agenda-layout {
  align-items: flex-start; /* IMPORTANT */
}

/* =====================
   MOBILE DATE SCROLLER
   ===================== */

@media (max-width: 768px) {
  .agenda-layout {
    gap: 24px;
  }

  .agenda-dates {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 12px 10px;

    scrollbar-width: none; /* Firefox */
  }

  .agenda-dates::-webkit-scrollbar {
    display: none;
  }

  .agenda-date-item {
    flex: 0 0 auto;
    min-width: 80px;
    text-align: center;
    margin-bottom: 0;
  }
}

/* =====================
   TIME-ALIGNED AGENDA
   ===================== */

.agenda-grid {
  display: grid;
  grid-template-columns: 120px repeat(3, 1fr);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.agenda-grid-header {
  font-weight: 700;
  padding: 12px;
  background: #f5f7ff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.agenda-time-cell {
  padding: 14px;
  font-weight: 600;
  color: #3a6bff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.agenda-cell {
  padding: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.agenda-block {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.agenda-block-title {
  font-weight: 600;
}

.agenda-block-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 4px;
}

/* Mobile fallback */
@media (max-width: 900px) {
  .agenda-grid {
    display: none;
  }
}

.agenda-mobile {
  display: none;
}

@media (max-width: 900px) {
  .agenda-mobile {
    display: block;
  }
}

/* =====================
   TIMELINE AGENDA (SEQUENTIAL)
   ===================== */

.agenda-timeline {
  display: flex;
  flex-direction: column;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.timeline-time {
  font-weight: 600;
  color: #3a6bff;
}

.timeline-title {
  font-weight: 600;
}

.timeline-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 6px;
}

/* Small time inside parallel blocks */
.agenda-block-time {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: #f0f2ff;
  color: #3a6bff;
  font-size: 0.7rem;
  margin-bottom: 8px;
}

/* =====================
   MOBILE AGENDA VIEW
   ===================== */

.agenda-mobile {
  display: none;
}

@media (max-width: 900px) {
  .agenda-grid {
    display: none;
  }

  .agenda-mobile {
    display: block;
  }
}

/* Track section */
.mobile-track {
  margin-bottom: 36px;
}

.mobile-track-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1c2455;
  margin-bottom: 14px;
}

/* Item card */
.mobile-agenda-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.mobile-agenda-time {
  font-size: 0.8rem;
  font-weight: 600;
  color: #3a6bff;
  margin-bottom: 6px;
}

.mobile-agenda-title {
  font-weight: 600;
}

.mobile-agenda-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 4px;
}

/* =====================
   AGENDA SLIDE ANIMATIONS
   ===================== */

.agenda-animate {
  animation-duration: 420ms;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.agenda-slide-in {
  animation-name: agendaSlideIn;
}

.agenda-slide-out {
  animation-name: agendaSlideOut;
}

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

@keyframes agendaSlideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-16px);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .agenda-animate {
    animation: none !important;
  }
}

/* =====================
   AGENDA CTA
   ===================== */

.agenda-cta {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.agenda-register-btn {
  padding: 16px 44px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;

  background: linear-gradient(135deg, #3a6bff, #7a5cff);
  color: #ffffff;
  border: none;
  cursor: pointer;

  box-shadow: 0 18px 40px rgba(58, 107, 255, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.agenda-register-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(58, 107, 255, 0.45);
}

.agenda-register-btn:active {
  transform: translateY(-1px);
}

.agenda-export-btn {
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;

  background: transparent;
  color: #7a5cff;
  border: 2px solid #7a5cff;

  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.agenda-export-btn:hover {
  background: #7a5cff;
  color: #ffffff;
  transform: translateY(-2px);
}

/* =====================
   AGENDA – TIMELINE GLOW & DEPTH (OPTION A)
   ===================== */

/* Timeline glow for desktop grid & timeline */
.agenda-grid,
.agenda-timeline {
  position: relative;
}

.agenda-grid::before,
.agenda-timeline::before {
  content: "";
  position: absolute;
  left: 112px; /* aligns with time column */
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(58, 107, 255, 0),
    rgba(58, 107, 255, 0.35),
    rgba(58, 107, 255, 0)
  );
  pointer-events: none;
}

/* Agenda blocks (parallel + timeline) */
.agenda-block {
  background: linear-gradient(135deg, #ffffff, #f8f9ff);
  border-radius: 14px;
  padding: 14px;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(58, 107, 255, 0.08);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.agenda-block:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(58, 107, 255, 0.12);
}

/* Time column subtle emphasis */
.agenda-time-cell {
  background: linear-gradient(180deg, rgba(58, 107, 255, 0.06), transparent);
}

/* =====================
   AGENDA – LIGHT THEME
   ===================== */

.agenda-light {
  background: #faf6ef; /* Same as original base */
}
.agenda-light .agenda-details,
.agenda-light .agenda-dates {
  background: #ffffff;
  color: #1c2455;
}
.agenda-light .agenda-day-title,
.agenda-light .agenda-track-title {
  color: #1c2455;
}
.agenda-light .agenda-time-cell {
  color: #3a6bff;
}

/* =====================
   AGENDA – DARK THEME
   ===================== */

.agenda-dark {
  background: #0c1024;
}

@media (max-width: 900px) {
  .agenda-dark .agenda-dates {
    background: rgba(18, 22, 55, 0.96);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.85);
  }
}
/* Date selector */
.agenda-dark .agenda-dates {
  background: rgba(18, 22, 55, 0.95);
  box-shadow:
    0 22px 30px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(222, 122, 255, 0.98),
    0 0 32px rgba(22, 192, 5, 0.65);

  border-radius: 16px;
}

.agenda-dark .agenda-date-item {
  color: rgba(255, 255, 255, 0.75);
}

.agenda-dark .agenda-date-item.active {
  background: linear-gradient(135deg, #3a6bff, #7a5cff);
  color: #ffffff;
}

/* Main container */
.agenda-dark .agenda-details {
  background: rgba(18, 22, 55, 0.96);
  color: #e6e9ff;
  box-shadow:
    0 22px 30px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(222, 122, 255, 0.98),
    0 0 32px rgba(22, 192, 5, 0.65);

  border-radius: 16px;
}

/* Titles */
.agenda-dark .agenda-day-title {
  color: #ffffff;
}

.agenda-dark .agenda-theme {
  color: rgba(200, 210, 255, 0.75);
}

/* Timeline glow (stronger on dark) */
.agenda-dark .agenda-grid::before,
.agenda-dark .agenda-timeline::before {
  background: linear-gradient(
    to bottom,
    rgba(122, 92, 255, 0),
    rgba(122, 92, 255, 0.65),
    rgba(122, 92, 255, 0)
  );
}

/* Time column */
.agenda-dark {
  color: #8fa2ff;
  background: linear-gradient(180deg, rgba(122, 92, 255, 0.12), transparent);
}

/* Agenda blocks */
.agenda-dark .agenda-block {
  background: linear-gradient(
    135deg,
    rgba(28, 134, 85, 0.35),
    rgba(200, 2, 55, 0.25)
  );

  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.95),
    0 0 0 0.5px rgba(222, 122, 255, 0.78),
    0 0 32px rgba(222, 192, 5, 0.35);

  border-radius: 16px;
}

.agenda-dark .agenda-block:hover {
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(122, 92, 255, 0.3),
    0 0 44px rgba(122, 92, 255, 0.45);
}
/* Block text */
.agenda-dark .agenda-block-title {
  color: #ffffff;
}

.agenda-dark .agenda-block-note {
  color: rgba(210, 220, 255, 0.8);
}

.agenda-dark .agenda-block-time {
  color: rgba(180, 195, 255, 0.75);
}

/* Force dark-friendly time badge inside agenda blocks */
.agenda-dark .agenda-block-time {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;

  background: rgba(10, 15, 40, 0.65); /* dark backing */
  color: #cdd6ff;

  font-size: 0.72rem;
  font-weight: 600;

  box-shadow: inset 0 0 0 1px rgba(122, 92, 255, 0.25);
}

/* Mobile cards */
.agenda-dark .mobile-agenda-item {
  background: linear-gradient(
    135deg,
    rgba(28, 134, 85, 0.35),
    rgba(200, 2, 55, 0.25)
  );
  color: #ffffff;
}

/* Fix white grid headers & background in dark mode */

.agenda-dark .agenda-grid {
  background: transparent;
}

.agenda-dark .agenda-grid-header {
  background: rgba(18, 22, 55, 0.95);
  color: rgba(220, 225, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.agenda-dark .agenda-time-cell {
  background: linear-gradient(
    180deg,
    rgba(122, 92, 255, 0),
    rgba(122, 92, 255, 0)
  );
  color: #9fb0ff;
}

/* Mobile track titles – dark theme fix */
.agenda-dark .mobile-track-title {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.agenda-dark .mobile-track-title::after {
  content: "";
  display: block;
  margin-top: 6px;
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #7a5cff, #3a6bff);
}

.agenda-dark .speakers-title {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* =====================
   FIXED HEADER AGENDA (DESKTOP)
   ===================== */

@media (min-width: 901px) {
  .agenda-grid-wrapper {
    max-height: 520px;
    overflow-y: auto;
    border-radius: 16px;
  }

  .agenda-grid {
    display: block;
  }

  .agenda-grid-header-row {
    display: grid;
    grid-template-columns: 120px repeat(3, 1fr);
    position: sticky;
    top: 0;
    z-index: 3;
    background: inherit;
  }

  .agenda-grid-body {
    display: grid;
    grid-template-columns: 120px repeat(3, 1fr);
  }
}
/* =====================
   AGENDA GRID SCROLL (DESKTOP ONLY)
   ===================== */

@media (min-width: 901px) {
  .agenda-grid-wrapper {
    max-height: 520px; /* adjust if needed */
    overflow-y: auto;
    border-radius: 16px;
  }
}

@media (min-width: 901px) {
  .agenda-grid-header {
    position: sticky;
    top: 0;
    z-index: 2;
  }
}

/* =====================
   MOBILE STICKY AGENDA DATES
   ===================== */
@media (max-width: 900px) {
  .agenda-dates {
    position: sticky;
    top: 0;
    z-index: 50;

    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

    padding-top: 12px;
    padding-bottom: 12px;
  }
}

@media (max-width: 900px) {
  .agenda-details {
    padding-top: 28px;
  }
}

@media (max-width: 900px) {
  .agenda-dates::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(58, 107, 255, 0.4),
      transparent
    );
  }
}

/* =====================
   VENUE SECTION
   ===================== */

.venue-section {
  background: #f6f7fb;
  padding: 20px 6%;
}

.venue-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.venue-header {
  text-align: center;
  margin-bottom: 70px;
}

.venue-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1c2455;
  margin-bottom: 10px;
}

.venue-subtitle {
  font-size: 1.05rem;
  color: #555;
}

/* Layout */
.venue-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: stretch;
}

/* Info */
.venue-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0e1430;
  margin-bottom: 18px;
}

.venue-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2a2a2a;
  margin-bottom: 28px;
}

.venue-amenities {
  list-style: none;
  padding: 0;
  margin-bottom: 36px;
}

.venue-amenities li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #1c2455;
}

/* Buttons */
.venue-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.venue-btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.venue-btn.primary {
  background: linear-gradient(135deg, #3a6bff, #7a5cff);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(58, 107, 255, 0.35);
}

.venue-btn.secondary {
  border: 1.5px solid #3a6bff;
  color: #3a6bff;
  background: transparent;
}

.venue-btn:hover {
  transform: translateY(-2px);
}

/* Card */
.venue-card {
  background: linear-gradient(135deg, #ffffff, #f1f3ff);
  border-radius: 26px;
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
}

.venue-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1c2455;
}

.venue-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 24px;
}

.venue-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.venue-highlights span {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #e8ecff;
  color: #1c2455;
}

/* Venue visual */
.venue-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* .venue-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.venue-slider img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
} */

/* =====================
   VENUE IMAGE SLIDER
   ===================== */

.venue-slider-container {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 16px;
  align-items: stretch;
}

/* Main image */
.venue-main-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.venue-main-image {
  height: 340px; /* FIXED HEIGHT */
}

@media (max-width: 600px) {
  .venue-main-image {
    height: 260px;
  }
}

.venue-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: opacity;
  transform: translateZ(0);
}

/* Thumbnails */
.venue-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.venue-thumbnails img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  opacity: 0.55;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.venue-thumbnails img:hover {
  opacity: 0.9;
}

.venue-thumbnails img.active {
  opacity: 1;
  transform: scale(1.05);
  outline: 2px solid #3a6bff;
}

/* Mobile */
@media (max-width: 900px) {
  .venue-slider-container {
    grid-template-columns: 1fr;
  }

  .venue-thumbnails {
    flex-direction: row;
    justify-content: center;
  }

  .venue-thumbnails img {
    height: 70px;
    width: 70px;
  }
}

/* Quick badges */
.venue-quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 14px;
}

.venue-badge {
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  background: #eef1ff;
  color: #1c2455;
}

.venue-location {
  margin-top: 10px;
}

.venue-location h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1c2455;
}

.venue-distance {
  list-style: none;
  padding: 0;
  margin: 16px 0 14px;
}

.venue-distance li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.venue-map-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3a6bff;
  text-decoration: none;
}

.venue-special-rate {
  margin: 28px 0;
  padding: 16px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f4f7ff, #eef1ff);
  border-left: 4px solid #3a6bff;
  font-size: 0.95rem;
  color: #1c2455;
}

@media (max-width: 900px) {
  .venue-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .venue-visual {
    display: contents;
  }

  .venue-info {
    display: contents;
  }

  /* Mobile order */
  .venue-name {
    order: 1;
  }

  .venue-gallery {
    order: 2;
  }

  .venue-description {
    order: 3;
  }

  .venue-amenities {
    order: 4;
  }

  .venue-location {
    order: 5;
  }

  .venue-special-rate {
    order: 6;
  }

  .venue-actions {
    order: 7;
  }
}

/* =====================
   PRICING SECTION
   ===================== */

.pricing-section {
  position: relative;
  padding: 110px 6%;
  background:
    radial-gradient(
      900px 300px at 10% -10%,
      rgba(250, 46, 239, 0.68),
      transparent 60%
    ),
    radial-gradient(
      800px 320px at 90% 0%,
      rgba(158, 107, 255, 0.46),
      transparent 55%
    ),
    linear-gradient(180deg, #fbfcff, #f2f4fb);
}

.pricing-section::after {
  content: "";
  display: block;
  margin: 90px auto 0;
  width: 80px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #3a6bff, #7a5cff);
  opacity: 0.25;
}
.pricing-wrapper {
  position: relative;
  z-index: 2;
}
.pricing-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  color: #1c2455;
  margin-bottom: 70px;
}

.pricing-title span {
  display: block;
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #555;
}

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Card */
.pricing-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* Highlighted cards */
.pricing-card.featured,
.pricing-card.highlight {
  border: 2px solid #7a5cff;
}

.pricing-card.limited {
  border: 2px dashed #f0a500;
}

/* Badge */
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #3a6bff, #7a5cff);
  color: #fff;
}

.limited-badge {
  background: linear-gradient(135deg, #f0a500, #ffcc66);
  color: #1c2455;
}

/* Text */
.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #1c2455;
}

.pricing-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0e1430;
}

.pricing-amount span {
  font-size: 1rem;
  font-weight: 600;
  color: #555;
}

.pricing-tax {
  font-size: 0.85rem;
  margin-bottom: 24px;
  color: #777;
}

/* Features */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #333;
}

/* Button */
.pricing-btn {
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #3a6bff, #7a5cff);
  color: #ffffff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(58, 107, 255, 0.35);
}

.pricing-btn.outline {
  background: transparent;
  border: 2px solid #7a5cff;
  color: #7a5cff;
}

.pricing-btn.outline:hover {
  background: #7a5cff;
  color: #ffffff;
}

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

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

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-title {
    font-size: 2.1rem;
  }
}

/* =====================
   CURRENCY TOGGLE
   ===================== */

.currency-toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

.currency-btn {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1.5px solid #d6dcff;
  background: #ffffff;
  color: #3a6bff;
  cursor: pointer;
  transition: all 0.25s ease;
}

.currency-btn.active {
  background: linear-gradient(135deg, #3a6bff, #7a5cff);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(58, 107, 255, 0.35);
}

.currency-btn:hover {
  transform: translateY(-1px);
}

/* Price visibility */
.price.usd {
  display: none;
}

/* =====================
   PRICING – BUSINESS BENEFITS
   ===================== */

.pricing-benefits {
  margin-top: 90px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pricing-benefits-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1c2455;
  margin-bottom: 40px;
}

.pricing-benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-benefits-list li {
  position: relative;
  padding-left: 28px;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

/* Checkmark icon */
.pricing-benefits-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #3a6bff;
  font-weight: 700;
}

/* Tablet */
@media (max-width: 900px) {
  .pricing-benefits-list {
    grid-template-columns: 1fr;
  }

  .pricing-benefits {
    margin-top: 70px;
  }
}

/* =====================
   EXHIBITION SECTION
   ===================== */

.exhibition-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.exhibition-section .speakers-title {
  text-align: center;
}

.exhibition-subtitle {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
  font-size: 1.05rem;
  color: rgba(220, 225, 255, 0.8);
}

/* =====================
   EXHIBITION BENEFITS – CARD STYLE
   ===================== */

.exhibition-benefits {
  max-width: 1000px;
  margin: 0 auto 90px;
  text-align: center;
}

.exhibition-benefits h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 44px;
  color: #ffffff;
}

.exhibition-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 14px;

  background: rgba(18, 22, 55, 0.75);
  box-shadow: inset 0 0 0 1px rgba(122, 92, 255, 0.25);

  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(225, 230, 255, 0.9);
}

.benefit-item span {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 900px) {
  .exhibition-benefit-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   PACKAGES
   ===================== */

.exhibition-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.exhibition-card {
  background: linear-gradient(
    135deg,
    rgba(28, 134, 85, 0.55),
    rgba(200, 2, 55, 0.45)
  );

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(122, 92, 255, 0.3);
  color: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
}

.exhibition-card.highlight {
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.9),
    0 0 0 2px rgba(122, 92, 255, 0.6);
}

.exhibition-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(12, 16, 36, 0.35);
  z-index: 0;
}

.exhibition-card > * {
  position: relative;
  z-index: 1;
}

.exhibition-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 65px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(122, 92, 255, 0.45);
}

.exhibition-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #3a6bff, #7a5cff);
}

/* Card text */
.exhibition-card h4 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stall-size {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 22px;
}

.stall-features {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  flex-grow: 1;
}

.stall-features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(235, 240, 255, 0.9);
}

.stall-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #7a5cff;
  font-weight: 700;
}

.stall-price {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.stall-price span {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

/* Buttons */
.exhibition-btn {
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #3a6bff, #7a5cff);
  color: #ffffff;
}

.exhibition-btn.outline {
  background: transparent;
  border: 2px solid #7a5cff;
}

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

@media (max-width: 900px) {
  .exhibition-benefits ul {
    grid-template-columns: 1fr;
  }

  .exhibition-packages {
    grid-template-columns: 1fr;
  }
}

/* =====================
   EXHIBITION SECTION
   ===================== */

.exhibition-section {
  position: relative;
  padding: 120px 6%;
  background-image: url("./images/exhBack.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.exhibition-section {
  padding: 120px 6%;
}

/*  MOBILE FIX — disable fixed backgrounds */
@media (max-width: 1024px) {
  .exhibition-section {
    background-attachment: scroll;
  }
}

/* Dark overlay */
.exhibition-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 16, 36, 0.22), rgba(12, 16, 36, 0.35)),
    radial-gradient(
      900px 400px at 10% 0%,
      rgba(122, 92, 255, 0.25),
      transparent 60%
    );
  z-index: 1;
}

/* Content wrapper */
.exhibition-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  color: #e6e9ff;
}

@media (max-width: 900px) {
  .exhibition-section {
    background-image: url("./images/exhBack.jpg");
    background-attachment: scroll; /* REQUIRED for mobile */
    background-position: center top;
    min-height: 100vh;
  }

  .exhibition-overlay {
    background: linear-gradient(
      180deg,
      rgba(12, 16, 36, 0.15),
      rgba(12, 16, 36, 0.25)
    );
  }
}

/* =====================
   EXHIBITION – TITLE FIX ONLY
   ===================== */

.exhibition-section .speakers-title {
  color: #e6e9ff; /* same as other section titles */
  text-align: center;
  margin-top: 0px;
}

.exhibition-section .speakers-divider {
  background: rgba(0, 0, 0, 0.15);
}

.exhibition-subtitle {
  color: #e6e9ff; /* normal body text */
}

/* =====================
   SPONSORSHIP SECTION
===================== */
.sponsorship-section {
  position: relative;
  padding: 120px 6%;
  background-color: #fcfbf7; /* warm white */
  overflow: hidden;
}

/* Abstract gold geometry */
.sponsorship-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='600' viewBox='0 0 1200 600'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0%25' stop-color='%23d4af37' stop-opacity='0.18'/%3E%3Cstop offset='100%25' stop-color='%23bfa14a' stop-opacity='0.08'/%3E%3C/linearGradient%3E%3Cpattern id='lines' width='10' height='8' patternUnits='userSpaceOnUse'%3E%3Cline x1='0' y1='0' x2='10' y2='0' stroke='%23d4af37' stroke-width='0.35' opacity='0.12'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='1200' height='600' fill='white'/%3E%3Cpath d='M0 120 Q300 40 600 160 T1200 140 L1200 0 L0 0 Z' fill='url(%23g)'/%3E%3Cpath d='M0 360 Q400 260 800 380 T1200 360 L1200 600 L0 600 Z' fill='url(%23g)' opacity='0.6'/%3E%3Crect width='1200' height='600' fill='url(%23lines)'/%3E%3C/svg%3E");

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.sponsorship-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.sponsorship-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  color: #1c2455;
  margin-bottom: 14px;
}

.sponsorship-subtitle {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
  color: #555;
}

/* Grid */
.sponsorship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 36px;
}

@media (max-width: 900px) {
  .sponsorship-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}
/* Card */
.sponsor-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
}

.sponsor-card.highlight {
  border: 2px solid #7a5cff;
  box-shadow: 0 30px 70px rgba(122, 92, 255, 0.25);
}

/* Badge */
.sponsor-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3a6bff, #7a5cff);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Text */
.sponsor-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1c2455;
  margin-bottom: 10px;
}

.sponsor-price {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 22px;
  color: #0e1430;
}

.sponsor-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #777;
}

/* Features */
.sponsor-features {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  flex-grow: 1;
}

.sponsor-features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #333;
}

.sponsor-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #3a6bff;
  font-weight: 700;
}

/* Buttons */
.sponsor-btn {
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  background: linear-gradient(135deg, #3a6bff, #7a5cff);
  color: #ffffff;
  cursor: pointer;
}

.sponsor-btn.outline {
  background: transparent;
  border: 2px solid #7a5cff;
  color: #7a5cff;
}

.sponsor-btn.outline:hover {
  background: #7a5cff;
  color: #ffffff;
}

/* Extras */
.sponsor-extra,
.sponsor-advertising {
  margin-top: 90px;
  text-align: center;
}

.sponsor-extra h3,
.sponsor-advertising h3 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1c2455;
  margin-bottom: 28px;
}

.sponsor-extra-list {
  list-style: none;
  padding: 0;
  max-width: 720px;
  margin: 0 auto;
}

.sponsor-extra-list li {
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #444;
}

/* =====================
   VISIBILITY SECTION
===================== */

.visibility-section {
  position: relative;
  padding: 110px 6%;
  background-color: #f7f9ff;
  overflow: hidden;
}

.visibility-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='600' viewBox='0 0 1200 600'%3E%3Cdefs%3E%3ClinearGradient id='b' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0%25' stop-color='%233a6bff' stop-opacity='0.16'/%3E%3Cstop offset='100%25' stop-color='%237a5cff' stop-opacity='0.08'/%3E%3C/linearGradient%3E%3Cpattern id='lines' width='10' height='10' patternUnits='userSpaceOnUse'%3E%3Cline x1='0' y1='0' x2='10' y2='0' stroke='%233a6bff' stroke-width='0.35' opacity='0.11'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='1200' height='600' fill='white'/%3E%3Cpath d='M0 140 Q300 40 600 180 T1200 160 L1200 0 L0 0 Z' fill='url(%23b)'/%3E%3Cpath d='M0 380 Q400 260 800 400 T1200 380 L1200 600 L0 600 Z' fill='url(%23b)' opacity='0.6'/%3E%3Crect width='1200' height='600' fill='url(%23lines)'/%3E%3C/svg%3E");

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.visibility-wrapper {
  position: relative;
  z-index: 2;
}
.visibility-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #1c2455;
  margin-bottom: 12px;
}

.visibility-subtitle {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
  color: #555;
}

/* Grid */
.visibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* Card */
.visibility-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
}

.visibility-card.highlight {
  border: 2px solid #7a5cff;
  box-shadow: 0 26px 60px rgba(122, 92, 255, 0.25);
}

/* Badge */
.visibility-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 999px;
  background: linear-gradient(135deg, #3a6bff, #7a5cff);
  color: #ffffff;
}

/* Text */
.visibility-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1c2455;
  margin-bottom: 8px;
}

.visibility-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0e1430;
  margin-bottom: 18px;
}

.visibility-price span {
  font-size: 0.75rem;
  font-weight: 500;
  color: #777;
}

/* Features */
.visibility-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
  flex-grow: 1;
}

.visibility-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #333;
}

.visibility-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #3a6bff;
  font-weight: 700;
}

/* Button */
.visibility-btn {
  padding: 12px 26px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  background: linear-gradient(135deg, #3a6bff, #7a5cff);
  color: #ffffff;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.visibility-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(58, 107, 255, 0.35);
}

/* Ads */
.visibility-ads {
  margin-top: 90px;
  text-align: center;
}

.visibility-ads h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1c2455;
  margin-bottom: 18px;
}

.visibility-ads p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #555;
}

/* Mobile */
@media (max-width: 600px) {
  .visibility-title {
    font-size: 2rem;
  }
}

/* =====================
   ADVERTISING OPTIONS
===================== */

.advertising-section {
  margin-top: 110px;
}

.advertising-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1c2455;
  margin-bottom: 60px;
}

.advertising-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}

/* Card */
.advertising-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 34px 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

/* Text */
.advertising-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1c2455;
  margin-bottom: 18px;
}

.advertising-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 26px;
  flex-grow: 1;
}

.advertising-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #333;
}

.advertising-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  color: #7a5cff;
}

/* Button tweak */
.visibility-btn.outline {
  background: transparent;
  border: 2px solid #7a5cff;
  color: #7a5cff;
}

.visibility-btn.outline:hover {
  background: #7a5cff;
  color: #ffffff;
}

/* Mobile */
@media (max-width: 600px) {
  .advertising-title {
    font-size: 1.9rem;
  }
}

/* =====================
 CONTACT MODAL
===================== */

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.contact-modal.active {
  display: block;
}

.contact-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 35, 0.75);
  backdrop-filter: blur(6px);
}

.contact-modal-box {
  position: relative;
  max-width: 460px;
  margin: 8vh auto;
  background: #ffffff;
  border-radius: 22px;
  padding: 36px 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  animation: modalIn 0.35s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #555;
}

.contact-modal-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1c2455;
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 24px;
}

.contact-form .form-group {
  margin-bottom: 16px;
}

.contact-form label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1c2455;
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid #d6dcff;
  font-size: 0.9rem;
}

.contact-form input:disabled {
  background: #f2f4ff;
  font-weight: 600;
}

.contact-submit {
  margin-top: 10px;
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, #3a6bff, #7a5cff);
  color: #ffffff;
}

/* =====================
   SPONSORS SECTION
===================== */

.sponsors-section {
  padding: 100px 6%;
  background: #ffffff;
}

.sponsors-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.sponsors-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1c2455;
  margin-bottom: 12px;
}

.sponsors-subtitle {
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 1rem;
  color: #555;
}

/* Grid */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 36px;
  align-items: center;
}

/* Logo Card */
.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.sponsor-logo img {
  max-width: 140px;
  max-height: 70px;
  object-fit: contain;
  opacity: 0.85;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}

/* Hover */
.sponsor-logo:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.12);
}

.sponsor-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Mobile */
@media (max-width: 600px) {
  .sponsors-title {
    font-size: 2rem;
  }

  .sponsor-logo img {
    max-width: 120px;
  }
}

/* =====================
   VISA SECTION
===================== */

.visa-section {
  padding: 100px 6%;
  background: #fafbff;
}

.visa-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.visa-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #1c2455;
  margin-bottom: 12px;
}

.visa-subtitle {
  text-align: left;
  max-width: 760px;
  margin: 0 auto 70px;
  font-size: 1rem;
  color: #555;
}

.visa-eligibility-note {
  max-width: 900px;
  margin: 18px auto 0;
  padding-left: 14px;
  border-left: 3px solid #3a6bff;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

/* =====================
   VISA FLOW (NO CARDS)
===================== */

.visa-flow {
  margin-top: 80px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.visa-flow-step {
  flex: 1;
  position: relative;
}

.visa-flow-number {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3a6bff, #7a5cff);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
}

.visa-flow-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1c2455;
  margin-bottom: 10px;
}

.visa-flow-step p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 10px;
}

.visa-flow-step ul {
  list-style: none;
  padding-left: 0;
}

.visa-flow-step li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #333;
}

.visa-flow-step li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #3a6bff;
  font-weight: 700;
}

/* Vertical dividers */
.visa-flow-divider {
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(58, 107, 255, 0),
    rgba(58, 107, 255, 0.45),
    rgba(58, 107, 255, 0)
  );
  margin-top: 26px;
}

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

@media (max-width: 900px) {
  .visa-flow {
    flex-direction: column;
  }

  .visa-flow-divider {
    width: 100%;
    height: 1px;
    margin: 24px 0;
  }
}

/* Actions */
.visa-actions {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.visa-btn {
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.visa-btn.primary {
  background: linear-gradient(135deg, #3a6bff, #7a5cff);
  color: #ffffff;
  border: none;
  box-shadow: 0 14px 34px rgba(58, 107, 255, 0.35);
}

.visa-btn.secondary {
  background: transparent;
  border: 2px solid #7a5cff;
  color: #7a5cff;
}

.visa-btn:hover {
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 900px) {
  .visa-process {
    grid-template-columns: 1fr;
  }

  .visa-process::before {
    display: none;
  }

  .visa-step {
    padding-top: 42px;
  }
}

.visa-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 10px;
}

/* Link */
.visa-link {
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 600;
  color: #3a6bff;
  text-decoration: none;
}

.visa-link:hover {
  text-decoration: underline;
}

/* Alert */
.visa-alert {
  margin-top: 70px;
  padding: 28px 30px;
  border-radius: 20px;
  background: #fff5f5;
  border-left: 5px solid #e55353;
}

.visa-alert h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #a82020;
  margin-bottom: 12px;
}

.visa-alert ul {
  list-style: none;
  padding: 0;
}

.visa-alert li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #5a1a1a;
}

/* Tips */
.visa-tips {
  margin-top: 50px;
  padding: 26px 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #eef1ff, #f7f8ff);
  border-left: 5px solid #3a6bff;
}

.visa-tips h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1c2455;
  margin-bottom: 12px;
}

.visa-tips ul {
  list-style: none;
  padding: 0;
}

.visa-tips li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #333;
}

.visa-tips li::before {
  content: "➜";
  position: absolute;
  left: 0;
  color: #3a6bff;
  font-weight: 700;
}

/* Mobile */
@media (max-width: 600px) {
  .visa-title {
    font-size: 2rem;
  }
}

/* ---------------- FOOTER ---------------- */

.footer {
  background: #020617;
  color: #e5e7eb;
  text-align: center;
  padding: 26px 16px 22px;
  font-size: 12px;
}

.footer a {
  color: #e5e7eb;
}

.footer__dev a {
  color: #cbd5f5;
}

/* ============================= */
/* FOOTER — CONTACT DETAILS     */
/* ============================= */

.footer-contact {
  margin-top: 28px;
  margin-bottom: 24px;
  padding: 20px 22px 26px;
  background: linear-gradient(180deg, #020617, #020617);
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.footer-contact__title {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #e5e7eb;
  margin-bottom: 18px;
  text-align: center;
  font-weight: 600;
}

.footer-contact__grid {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 32px;
}

.footer-contact__block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact__label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #94a3b8;
}

.footer-contact__value {
  font-size: 12px;
  line-height: 1.6;
  color: #e5e7eb;
}

.footer-contact__value a {
  color: #93c5fd;
  text-decoration: none;
}

.footer-contact__value a:hover {
  text-decoration: underline;
}

/* ============================= */
/* FOOTER CONTACT — MOBILE      */
/* ============================= */

@media (max-width: 720px) {
  .footer-contact {
    padding: 18px 16px 22px;
  }

  .footer-contact__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    text-align: center;
  }

  .footer-contact__block {
    align-items: center;
  }
}

.footer-contact__map-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: #e5e7eb;
  text-decoration: none;
}

.footer-contact__map-link:hover {
  color: #93c5fd;
  text-decoration: none;
}

.footer-contact__map-icon {
  font-size: 15px;
  margin-top: 2px;
}

@media (max-width: 720px) {
  .footer-contact__map-link {
    justify-content: center;
    text-align: left;
  }
}

/* =====================
   FLOATING NAVBAR
===================== */

.floating-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  z-index: 9999;
}

.nav-container {
  background: #ffffff;
  border-radius: 999px;
  padding: 5px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.04);
}

/* BRAND */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #1c2455;
}

.nav-brand img {
  height: 60px;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.05em;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #3a6bff, #7a5cff);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA */
.nav-cta {
  background: linear-gradient(135deg, #3a6bff, #7a5cff);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.85rem;
  box-shadow: 0 12px 30px rgba(58, 107, 255, 0.4);
  transition: transform 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
}

/* =====================
   HAMBURGER
===================== */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #1c2455;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

.mobile-cta {
  margin-top: 14px;
  background: linear-gradient(135deg, #3a6bff, #7a5cff);
  color: #fff !important;
  text-align: center;
  padding: 12px;
  border-radius: 999px;
  font-weight: 700;
}

/* =====================
   GLASS EFFECT ON SCROLL
===================== */

.floating-nav.scrolled .nav-container {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.4);
}

@media (max-width: 900px) {
  .floating-nav {
    display: none !important;
  }
}
/* =====================
   RESPONSIVE
===================== */

@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* =====================
   FLOATING MOBILE FAB
===================== */

.mobile-fab {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

@media (max-width: 900px) {
  .mobile-fab.visible {
    display: flex;
  }
}

@media (min-width: 901px) {
  .mobile-fab {
    display: none !important;
  }
}

.mobile-fab span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: all 0.35s ease;
}

.mobile-fab span:nth-child(1) {
  transform: translateY(-6px);
}

.mobile-fab span:nth-child(2) {
  opacity: 1;
}

.mobile-fab span:nth-child(3) {
  transform: translateY(6px);
}

/* OPEN STATE */
.mobile-fab.open span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-fab.open span:nth-child(2) {
  opacity: 0;
}

.mobile-fab.open span:nth-child(3) {
  transform: rotate(-45deg);
}

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

@media (min-width: 901px) {
  .mobile-fab {
    display: none !important;
  }
}

/* =====================
   MOBILE FULLSCREEN MENU (FAB)
===================== */
/* =====================
 MOBILE NAV — NEW MODERN STYLE
===================== */

.mobile-nav {
  position: fixed;
  inset: 0;
  background: #ffffff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  z-index: 9999;
  padding: 100px 28px 40px;

  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* When opened */
.mobile-nav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Navigation Links */
.mobile-nav-links a {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #04194f;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid #e5e8f0; /* Divider */
  transition: color 0.25s ease;
}

.mobile-nav-links a:last-child {
  border-bottom: none; /* remove last divider */
}

.mobile-nav-links a:hover {
  color: #0a47d5;
}

/* CTA */
.mobile-cta {
  background: linear-gradient(135deg, #0a47d5, #6b8bff);
  color: #ffffff !important;
  padding: 15px;
  margin-top: 15px;
  border-radius: 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(10, 71, 213, 0.25);
  transition: transform 0.25s ease;
}

.mobile-cta:hover {
  transform: translateY(-2px);
}

/* Background Blur on page */
body.menu-open #app {
  filter: blur(5px) brightness(0.95);
  transition: filter 0.35s ease;
}

#app {
  transition: filter 0.35s ease;
}

/* Keep menu & FAB clickable */
.mobile-fab {
  pointer-events: auto;
}

@media (max-width: 900px) {
  section[id] {
    scroll-margin-top: 0;
  }
}

.agenda-date-item {
  touch-action: manipulation;
}

/* =====================
   REGISTRATION MODAL
===================== */

.registration-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.registration-modal.active {
  display: block;
}

.registration-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 36, 0.75);
  backdrop-filter: blur(6px);
}

.registration-box {
  max-width: 820px;
  max-height: 88vh;
  overflow-y: auto;
  margin: 5vh auto;
  background: #ffffff;
  border-radius: 22px;
  padding: 36px 34px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4);
  position: relative;
}

.registration-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.6rem;
  border: none;
  background: none;
  cursor: pointer;
}

.registration-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1c2455;
}

.registration-subtitle {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 26px;
}

.form-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 32px 0 14px;
  color: #1c2455;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.registration-form input,
.registration-form select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid #d6dcff;
  font-size: 0.9rem;
}

.delegate-block {
  background: #f6f7ff;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
}

.delegate-block h5 {
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 700;
}

.add-delegate-btn {
  margin: 10px 0 26px;
  background: transparent;
  border: 2px dashed #7a5cff;
  color: #7a5cff;
  padding: 12px;
  width: 100%;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
}

.registration-submit {
  width: 100%;
  padding: 16px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #3a6bff, #7a5cff);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.remove-delegate-btn {
  margin-top: 12px;
  background: transparent;
  border: none;
  color: #e55353;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  align-self: flex-end;
}

.remove-delegate-btn:hover {
  text-decoration: underline;
}

/* Validation */
.field-error {
  border-color: #e55353 !important;
  background: #fff5f5;
}

.error-text {
  color: #e55353;
  font-size: 0.75rem;
  margin-top: 4px;
  font-weight: 500;
}

button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* FAQ */
.faq-section {
  background: #f7f9ff;
  padding: 80px 20px;
}

.faq-wrapper {
  max-width: 1100px;
  margin: auto;
}

.faq-title {
  text-align: center;
  color: #04194f;
  font-size: 32px;
  margin-bottom: 12px;
}

.faq-subtitle {
  text-align: center;
  color: #666;
  font-size: 15px;
  margin-bottom: 40px;
}

/* Two-column layout */
.faq-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e3e6f1;
}

/* Button row */
.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 22px;
  font-size: 16px;
  font-weight: 600;
  color: #04194f;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.faq-icon {
  font-weight: bold;
  position: absolute;
  right: 22px;
  transition: transform 0.25s ease;
}

/* Hidden answers expand smoothly */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f9fbff;
  padding: 0 22px;
  line-height: 1.6;
  font-size: 14px;
  color: #333;
  border-top: 1px solid #e0e3ea;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}

.faq-item.active .faq-answer {
  padding: 18px 22px;
  max-height: 500px;
}

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

/* CTA */
.faq-contact-btn {
  display: block;
  margin: 32px auto 0;
  background: #04194f;
  color: #fff;
  border-radius: 6px;
  padding: 12px 30px;
  font-size: 15px;
  border: none;
  cursor: pointer;
}

/* =====================
   ENHANCED LIGHT THEME ✨
   ===================== */
/* =====================
   IMPROVED LIGHT THEME — STRONGER GRADIENTS 🌤️
   ===================== */

.agenda-section {
  background: linear-gradient(180deg, #ece6d8 0%, #ffffff 60%);
}

/* Panels / Cards */
.agenda-dates,
.agenda-details,
.mobile-agenda-item {
  background: linear-gradient(135deg, #ffffff 0%, #ebefff 100%);
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}

/* Active date highlight */
.agenda-date-item.active {
  background: linear-gradient(135deg, #ced8ff, #e3eaff);
  color: #0f1a48;
  box-shadow: 0 8px 22px rgba(58, 107, 255, 0.22);
}

/* Headings */
.agenda-day-title,
.agenda-track-title {
  color: #142060;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.65);
}

/* Time column */
.agenda-time-cell {
  background: linear-gradient(
    180deg,
    rgba(58, 107, 255, 0.15),
    rgba(58, 107, 255, 0.02)
  );
  color: #2550d0;
}

/* Agenda blocks */
.agenda-block {
  background: linear-gradient(135deg, #fcfdff 0%, #dfe7ff 100%);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(58, 107, 255, 0.14);
}

.agenda-block:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.14),
    inset 0 0 0 1px rgba(58, 107, 255, 0.18);
}

/* Vertical timeline glow */
.agenda-grid::before,
.agenda-timeline::before {
  background: linear-gradient(
    to bottom,
    rgba(58, 107, 255, 0),
    rgba(58, 107, 255, 0.28),
    rgba(58, 107, 255, 0)
  );
}

/* Slightly stronger dividers */
.agenda-item,
.timeline-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Mobile prettiness */
.mobile-track-title {
  color: #152060;
  font-weight: 700;
}
.mobile-track-title::after {
  content: "";
  width: 36px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #3a6bff, #7a5cff);
  margin-top: 6px;
  display: block;
}

/* Remove background from time cells */
.agenda-time-cell,
.timeline-time,
.mobile-agenda-time {
  background: none !important;
  box-shadow: none !important;
}

/* =====================
   FEATURED SPEAKING SLOTS
   ===================== */

.agenda-speaking-slot {
  position: relative;
  background: linear-gradient(135deg, #fff7e6 0%, #ffe1b3 50%, #fff0d6 100%);

  border-radius: 16px;
  padding: 16px 14px;

  box-shadow:
    0 18px 40px rgba(255, 180, 70, 0.35),
    inset 0 0 0 1px rgba(255, 160, 40, 0.45);

  border-left: 5px solid #ff9f1c;
}

/* Small badge */
.agenda-speaking-slot::before {
  content: "FEATURED SPEAKING SLOT";
  position: absolute;
  top: -10px;
  right: 12px;

  background: linear-gradient(135deg, #ff9f1c, #ffbf69);
  color: #3b2200;

  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.6px;

  padding: 4px 10px;
  border-radius: 999px;

  box-shadow: 0 6px 16px rgba(255, 159, 28, 0.45);
}

/* Title emphasis */
.agenda-speaking-slot .agenda-block-title {
  font-weight: 700;
  color: #3b2200;
}

/* Note text */
.agenda-speaking-slot .agenda-block-note {
  color: #5a3a00;
  font-weight: 500;
}

/* Time pill */
.agenda-speaking-slot .agenda-block-time {
  background: rgba(255, 159, 28, 0.18);
  color: #a85a00;
  font-weight: 700;
}

/* Hover effect */
.agenda-speaking-slot:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 26px 55px rgba(255, 170, 60, 0.45),
    inset 0 0 0 1px rgba(255, 160, 40, 0.6);
}

.mobile-agenda-item.speaking-slot {
  background: linear-gradient(135deg, #fff4dd, #ffe6b3);
  border-left: 5px solid #ff9f1c;
}

.mobile-agenda-item {
  overflow: visible;
  position: relative;
}

/* Mobile badge adjustment */
.mobile-agenda-item.agenda-speaking-slot::before {
  top: -8px;
  right: 10px;
  font-size: 0.6rem;
  padding: 4px 8px;
}

/* =====================
   AGENDA – SPONSOR BUTTON
   ===================== */

.agenda-sponsor-btn {
  margin-top: 12px;
  padding: 8px 18px;

  border-radius: 999px;
  border: none;

  background: linear-gradient(135deg, #ff9f1c, #ffbf69);
  color: #3b2200;

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4px;

  cursor: pointer;

  box-shadow: 0 8px 22px rgba(255, 159, 28, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Hover / tap */
.agenda-sponsor-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255, 159, 28, 0.45);
}

/* Mobile spacing */
.mobile-agenda-item .agenda-sponsor-btn {
  margin-top: 10px;
  font-size: 0.72rem;
}
