/* ============================================
   INOXAP SALES MEET 2026 — Premium CSS v2
   Fonts: Montserrat, Poppins
   ============================================ */

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

/* ===== CSS VARIABLES ===== */
:root {
  --inox-blue: #1B4FBF;
  --inox-blue-dark: #0d2d7a;
  --inox-blue-light: #3a7bd5;
  --inox-green: #2DB84B;
  --inox-green-dark: #1a8c35;
  --inox-green-light: #4cd964;
  --gold: #f59e0b;
  --gold-light: #fbbf24;

  --bg-primary: #f0f4ff;
  --bg-secondary: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.9);
  --text-primary: #0a0f1e;
  --text-secondary: #3a4060;
  --text-muted: #6b7299;
  --border-color: rgba(27, 79, 191, 0.15);
  --shadow-color: rgba(27, 79, 191, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.9);
  --nav-bg: rgba(255, 255, 255, 0.93);
  --hero-overlay: rgba(5, 12, 40, 0.48);
  --modal-scrollbar: #c5cfe8;
  --section-pad: 70px 0;
  --container-max: 1280px;
  --trans: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg-primary: #060c1e;
  --bg-secondary: #0d1530;
  --bg-card: rgba(13, 21, 48, 0.88);
  --text-primary: #eef2ff;
  --text-secondary: #a8b4d8;
  --text-muted: #6b7aaa;
  --border-color: rgba(58, 123, 213, 0.25);
  --shadow-color: rgba(0, 0, 0, 0.4);
  --glass-bg: rgba(13, 21, 48, 0.72);
  --glass-border: rgba(58, 123, 213, 0.3);
  --nav-bg: rgba(6, 12, 30, 0.96);
  --hero-overlay: rgba(5, 12, 40, 0.58);
  --modal-scrollbar: #1e2d5a;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: background 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
  cursor: auto !important;
}

/* FORCE cursor visible always */
*,
button,
a,
[role="button"],
input,
select,
textarea {
  cursor: auto !important;
}

button,
a,
[role="button"] {
  cursor: pointer !important;
}

input,
select,
textarea {
  cursor: text !important;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  z-index: 9999;
  background: linear-gradient(90deg, var(--inox-blue), var(--inox-green));
  width: 0%;
  transition: width 0.1s linear;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 2px 0;
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-color);
  transition: var(--trans);
  box-shadow: 0 4px 30px var(--shadow-color);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 8px 40px var(--shadow-color);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(27, 79, 191, 0.3));
  transition: var(--trans);
}

.nav-logo img:hover {
  transform: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--trans);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--inox-blue);
  border-radius: 2px;
  transition: var(--trans);
}

.nav-links a:hover {
  color: var(--inox-blue);
  background: rgba(27, 79, 191, 0.08);
}

.nav-links a:hover::after {
  left: 16px;
  right: 16px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Theme Toggle */
.theme-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-icon {
  font-size: 16px;
}

.theme-toggle {
  width: 52px;
  height: 28px;
  background: var(--inox-blue);
  border-radius: 100px;
  border: none;
  cursor: pointer !important;
  position: relative;
  transition: var(--trans);
  flex-shrink: 0;
}

.theme-toggle::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  transition: var(--trans);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .theme-toggle::before {
  transform: translateX(24px);
}

[data-theme="dark"] .theme-toggle {
  background: var(--inox-green);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer !important;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--trans);
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-secondary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--trans);
}

.mobile-nav a:hover {
  color: var(--inox-blue);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--inox-blue), var(--inox-blue-light));
  color: white;
  border: none;
  border-radius: 12px;
  padding: 13px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer !important;
  transition: var(--trans);
  box-shadow: 0 4px 20px rgba(27, 79, 191, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(27, 79, 191, 0.45);
  filter: brightness(1.08);
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed !important;
  transform: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 11px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer !important;
  transition: var(--trans);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: white;
  transform: translateY(-2px);
}

/* ===== SECTION COMMON ===== */
section {
  padding: var(--section-pad);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(27, 79, 191, 0.1), rgba(45, 184, 75, 0.1));
  border: 1px solid var(--border-color);
  border-radius: 100px;
  padding: 6px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--inox-blue);
  margin-bottom: 16px;
}

[data-theme="dark"] .section-tag {
  color: var(--inox-green-light);
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.section-title span {
  background: linear-gradient(135deg, var(--inox-blue), var(--inox-green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--inox-blue), var(--inox-green));
  border-radius: 2px;
  margin: 24px auto 0;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-bg.png');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.05);
  animation: heroZoom 22s ease-in-out infinite alternate;
  filter: brightness(0.65) contrast(1.08) saturate(1.15);
}

@keyframes heroZoom {
  0% {
    transform: scale(1.05)
  }

  100% {
    transform: scale(1.13)
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(150deg,
      rgba(4, 10, 35, 0.70) 0%,
      rgba(10, 35, 90, 0.45) 45%,
      rgba(4, 18, 50, 0.72) 100%);
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 12px 24px 20px;
  max-width: 960px;
  margin: 0 auto;
}

/* Welcome line */
.hero-welcome {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  margin-bottom: 2px;
  margin-top: 0;
  animation: fadeSlideDown 0.9s 0.14s ease both;
}

/* Main title */
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(52px, 8.5vw, 100px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  color: #ffffff;
  margin-bottom: 6px;
  animation: fadeSlideDown 1s 0.2s ease both;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.55);
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--inox-green-light) 0%, #00d4aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px, 2vw, 20px);
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 2px;
  margin-top: 6px;
  margin-bottom: 12px;
  animation: fadeSlideDown 1s 0.28s ease both;
}

/* Meta pills */
.hero-meta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  animation: fadeSlideDown 1s 0.36s ease both;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 8px 16px;
}

.hero-meta-item .icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}

.hero-meta-item .icon svg {
  width: 20px;
  height: 20px;
}

.hero-meta-item div {
  display: flex;
  flex-direction: column;
}

.hero-meta-item .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero-meta-item .value {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

/* CTAs */
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  animation: fadeSlideDown 1s 0.44s ease both;
}

/* Invitation3 — behind tagline, pills, CTAs */
.hero-inv3-overlay-wrap {
  position: relative;
  width: 100%;
  max-width: 660px;
  margin: 12px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 20px 20px;
  animation: fadeSlideDown 1s 0.36s ease both;
}

.hero-inv3-bg-img {
  position: absolute;
  width: 130%;
  height: 140%;
  margin-top: -60px;
  margin-left: -25px;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.hero-inv3-overlay-wrap .hero-subtitle-tag,
.hero-inv3-overlay-wrap .hero-meta,
.hero-inv3-overlay-wrap .hero-ctas {
  position: relative;
  z-index: 1;
  animation: none;
  margin: 0;
}

/* Countdown */
.countdown-wrap {
  animation: fadeSlideDown 1s 0.52s ease both;
  margin-top: 30px;
}

.countdown-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.countdown-item {
  min-width: 64px;
  padding: 8px 12px 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
}

.countdown-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
  letter-spacing: -1px;
  transition: all 0.3s ease;
}

.countdown-unit {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
  display: block;
}

.countdown-sep {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeSlideDown 1s 0.9s ease both;
}

.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  animation: scrollMouse 1.8s ease infinite;
}

@keyframes scrollMouse {
  0% {
    opacity: 1;
    top: 6px
  }

  100% {
    opacity: 0;
    top: 18px
  }
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* ===== BLUR WALL (content gate) ===== */
.content-gate {
  position: relative;
  transition: filter 0.5s ease;
}

.content-gate.locked {
  filter: blur(6px) brightness(0.7);
  pointer-events: none;
  user-select: none;
}

/* ===== LOGIN POPUP (auto-trigger) ===== */
.login-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(4, 10, 35, 0.75);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.4s ease both;
}

.login-overlay.hidden {
  display: none;
}

.login-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  animation: modalSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  overflow: hidden;
}

.login-card-header {
  background: linear-gradient(135deg, var(--inox-blue-dark), var(--inox-blue));
  padding: 36px 36px 28px;
  text-align: center;
}

.login-card-header img {
  height: 64px;
  width: auto;
  margin: 0 auto 16px;
  display: block;
  object-fit: contain;
  filter: none;
}

.login-card-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.login-card-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.login-lock-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.login-card-body {
  padding: 32px 36px;
}

.login-alert {
  display: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  text-align: center;
}

.login-alert.success {
  background: rgba(45, 184, 75, 0.12);
  color: var(--inox-green-dark);
  border: 1px solid rgba(45, 184, 75, 0.25);
  display: block;
}

.login-alert.error {
  background: rgba(239, 68, 68, 0.10);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
  display: block;
}

[data-theme="dark"] .login-alert.success {
  color: var(--inox-green-light);
}

[data-theme="dark"] .login-alert.error {
  color: #f87171;
}

/* ===== INLINE ALERTS ===== */
#loginAlert {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5000;
  min-width: 340px;
  max-width: 520px;
  text-align: center;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: none;
}

#loginAlert.show {
  display: block;
  animation: alertPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

#loginAlert.success {
  background: #dcfce7;
  color: #15803d;
  border: 1.5px solid #86efac;
}

#loginAlert.error {
  background: #fee2e2;
  color: #dc2626;
  border: 1.5px solid #fca5a5;
}

@keyframes alertPop {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-16px)
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
  }
}

/* ===== FORM CONTROLS ===== */
.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: var(--trans);
  outline: none;
  cursor: text !important;
}

.form-control:focus {
  border-color: var(--inox-blue);
  box-shadow: 0 0 0 4px rgba(27, 79, 191, 0.10);
  background: var(--bg-secondary);
}

.form-control.error {
  border-color: #ef4444;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.field-error {
  font-size: 11px;
  color: #ef4444;
  margin-top: 4px;
  display: block;
}

/* Mobile input +91 prefix */
.mobile-prefix-wrap {
  display: flex;
  gap: 0;
}

.mobile-prefix {
  background: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  border-right: none;
  border-radius: 12px 0 0 12px;
  padding: 13px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.mobile-prefix-wrap .form-control {
  border-radius: 0 12px 12px 0;
}

/* ===== 12-HOUR TIME PICKER ===== */
.time-picker-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  padding: 4px 10px 4px 8px;
  transition: border-color 0.2s;
}

.time-picker-wrap:focus-within {
  border-color: var(--inox-blue);
  box-shadow: 0 0 0 3px rgba(27, 79, 191, 0.1);
}

.time-sel {
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 2px;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  text-align: center;
  min-width: 38px;
}

.time-sel:focus {
  color: var(--inox-blue);
}

.time-sel option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.time-colon {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 16px;
  user-select: none;
  padding: 0 1px;
}

.time-ampm {
  min-width: 54px;
  margin-left: 4px;
  color: var(--inox-blue);
  font-weight: 700;
  border-left: 1px solid var(--border-color);
  padding-left: 8px;
}

/* Conditional transport fields */
.transport-fields {
  display: none;
  margin-top: 14px;
}

.transport-fields.show {
  display: block;
  animation: slideDown 0.3s ease both;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

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

/* ===== STATS ===== */
.stats {
  padding: 60px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-group-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: auto;
  max-width: 1000px;
}

.stat-item {
  text-align: center;
  padding: 24px 40px;
  border-right: 1px solid var(--border-color);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--inox-blue);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

[data-theme="dark"] .stat-num {
  color: var(--inox-green-light);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== SPEAKERS ===== */
.speakers {
  padding: var(--section-pad);
  background: var(--bg-primary);
}

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

.speaker-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--trans);
  box-shadow: 0 4px 24px var(--shadow-color);
}

.speaker-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--shadow-color);
}

.speaker-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  position: relative;
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, var(--inox-blue), var(--inox-green)) border-box;
  box-shadow: 0 8px 32px rgba(27, 79, 191, 0.2);
}

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

.speaker-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--inox-blue-dark), var(--inox-blue-light));
  color: white;
  border-radius: 50%;
}

.speaker-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.speaker-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--inox-blue);
  margin-bottom: 4px;
}

[data-theme="dark"] .speaker-role {
  color: var(--inox-green-light);
}

.speaker-dept {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.speaker-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.speaker-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--trans);
}

.speaker-social a:hover {
  background: var(--inox-blue);
  color: white;
  border-color: var(--inox-blue);
  transform: translateY(-2px);
}

/* ===== AGENDA ===== */
.agenda {
  padding: var(--section-pad);
  background: var(--bg-secondary);
}

.agenda-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.agenda-tab {
  padding: 10px 26px;
  border-radius: 50px;
  border: 2px solid var(--border-color);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer !important;
  transition: var(--trans);
  background: transparent;
  color: var(--text-muted);
}

.agenda-tab.active {
  background: linear-gradient(135deg, var(--inox-blue), var(--inox-blue-light));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(27, 79, 191, 0.3);
}

.agenda-day {
  display: none;
}

.agenda-day.active {
  display: block;
}

.agenda-timeline {
  position: relative;
  padding-left: 80px;
}

.agenda-timeline::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--inox-blue), var(--inox-green));
  border-radius: 2px;
}

.agenda-item {
  position: relative;
  margin-bottom: 16px;
}

.agenda-dot {
  position: absolute;
  left: -52px;
  top: 20px;
  width: 16px;
  height: 16px;
  background: white;
  border: 3px solid var(--inox-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(27, 79, 191, 0.15);
}

.agenda-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 18px 22px;
  transition: var(--trans);
}

.agenda-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 28px var(--shadow-color);
  border-color: rgba(27, 79, 191, 0.25);
}

.agenda-time {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--inox-blue);
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

[data-theme="dark"] .agenda-time {
  color: var(--inox-green-light);
}

.agenda-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.agenda-speaker {
  font-size: 13px;
  color: var(--text-muted);
}

.agenda-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-left: 8px;
}

.badge-keynote {
  background: rgba(245, 158, 11, 0.15);
  color: #b45309;
}

.badge-session {
  background: rgba(27, 79, 191, 0.12);
  color: var(--inox-blue);
}

.badge-break {
  background: rgba(45, 184, 75, 0.12);
  color: var(--inox-green-dark);
}

[data-theme="dark"] .badge-keynote {
  color: var(--gold-light);
}

[data-theme="dark"] .badge-session {
  color: var(--inox-blue-light);
}

[data-theme="dark"] .badge-break {
  color: var(--inox-green-light);
}

/* ===== AWARDS ===== */
.awards {
  padding: var(--section-pad);
  background: var(--bg-primary);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.award-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  transition: var(--trans);
  box-shadow: 0 4px 20px var(--shadow-color);
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--shadow-color);
}

.award-icon {
  font-size: 42px;
  margin-bottom: 14px;
  display: block;
}

.award-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.award-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery {
  padding: var(--section-pad);
  background: var(--bg-secondary);
}

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

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-primary));
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  transition: var(--trans);
}

.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px var(--shadow-color);
}

/* ===== GALLERY UPLOAD ===== */
.gallery-login-prompt {
  text-align: center;
  padding: 56px 24px;
  color: var(--text-muted);
  font-size: 15px;
}

.gallery-upload-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.gallery-upload-box {
  border: 2.5px dashed var(--inox-blue);
  border-radius: 20px;
  background: rgba(27, 79, 191, 0.04);
  padding: 52px 32px;
  text-align: center;
  cursor: pointer;
  transition: var(--trans);
}

.gallery-upload-box:hover,
.gallery-upload-box.drag-over {
  background: rgba(27, 79, 191, 0.10);
  border-color: var(--inox-green);
  transform: scale(1.01);
}

.gallery-upload-icon {
  font-size: 54px;
  color: var(--inox-blue);
  margin-bottom: 16px;
  line-height: 1;
}

.gallery-upload-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.gallery-upload-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.gallery-upload-hint {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.7;
}

.gallery-browse-link {
  color: var(--inox-blue);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gallery-queue {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.gallery-queue-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 12px 16px;
}

.gallery-queue-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.gallery-queue-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-queue-info {
  overflow: hidden;
}

.gallery-queue-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-queue-size {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.gallery-queue-progress {
  height: 4px;
  border-radius: 4px;
  background: var(--border-color);
  margin-top: 8px;
  overflow: hidden;
}

.gallery-queue-bar {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--inox-blue), var(--inox-green));
  width: 0%;
  transition: width 0.5s ease;
}

.gallery-queue-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  transition: color 0.2s;
  line-height: 1;
}

.gallery-queue-remove:hover {
  color: #ef4444;
}

.gallery-status {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  margin-top: 16px;
  min-height: 22px;
  color: var(--inox-green);
}

/* ===== FEEDBACK ===== */
.feedback {
  padding: var(--section-pad);
  background: var(--bg-primary);
}

.feedback-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 8px 40px var(--shadow-color);
}

.rating-stars {
  display: flex;
  gap: 8px;
}

.star-btn {
  font-size: 28px;
  background: none;
  border: none;
  color: #d1d5db;
  cursor: pointer !important;
  transition: var(--trans);
}

.star-btn.active,
.star-btn:hover {
  color: var(--gold);
  transform: scale(1.15);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand img {
  height: 44px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 16px;
  transition: var(--trans);
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.social-icon.youtube:hover {
  background: #ff0000;
  color: white;
  border-color: #ff0000;
}

.social-icon.twitter:hover {
  background: #000;
  color: white;
  border-color: #000;
}

.social-icon.facebook:hover {
  background: #1877f2;
  color: white;
  border-color: #1877f2;
}

.social-icon.linkedin:hover {
  background: #0a66c2;
  color: white;
  border-color: #0a66c2;
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  border-color: transparent;
}

.visitor-counter {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.visitor-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--inox-green);
  animation: pulseGreen 1.6s ease infinite;
}

@keyframes pulseGreen {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(45, 184, 75, 0.4)
  }

  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 6px rgba(45, 184, 75, 0)
  }
}

.visitor-text {
  font-size: 13px;
  color: var(--text-muted);
}

.visitor-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--inox-green-dark);
}

[data-theme="dark"] .visitor-num {
  color: var(--inox-green-light);
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--inox-blue);
  transform: translateX(3px);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-copy span {
  color: var(--inox-blue);
  font-weight: 700;
}

.helpdesk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.helpdesk a {
  color: var(--inox-blue);
  text-decoration: none;
  font-weight: 600;
}

/* ===== REGISTRATION MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 10500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open {
  display: flex;
}

.modal-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  width: 100%;
  max-width: 600px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
  animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.modal-header {
  background: linear-gradient(135deg, var(--inox-blue-dark), var(--inox-blue-light));
  padding: 28px 32px 22px;
  border-radius: 28px 28px 0 0;
  position: relative;
  flex-shrink: 0;
}

.modal-header img {
  height: 48px;
  width: auto;
  margin-bottom: 14px;
  display: block;
  object-fit: contain;
  filter: none;
}

.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.modal-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 18px;
  cursor: pointer !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

/* scrollable body */
.modal-body {
  padding: 28px 32px;
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--modal-scrollbar) transparent;
}

.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--modal-scrollbar);
  border-radius: 3px;
}

.modal-success {
  text-align: center;
  padding: 40px 28px;
  display: none;
}

.modal-success.show {
  display: block;
}

.success-icon {
  font-size: 72px;
  margin-bottom: 16px;
  animation: successBounce 0.6s ease;
}

@keyframes successBounce {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.2)
  }
}

.success-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.success-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== AGENDA MODAL ===== */
.agenda-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.agenda-modal-overlay.open {
  display: flex;
}

.agenda-modal-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  width: 100%;
  max-width: 720px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
  animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
  overflow: hidden;
}

.agenda-modal-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  gap: 12px;
  flex-wrap: wrap;
}

.agenda-modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
}

.agenda-modal-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agenda-modal-body {
  padding: 24px 32px;
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--modal-scrollbar) transparent;
}

.agenda-modal-body::-webkit-scrollbar {
  width: 6px;
}

.agenda-modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.agenda-modal-body::-webkit-scrollbar-thumb {
  background: var(--modal-scrollbar);
  border-radius: 3px;
}

/* Day tabs in agenda modal */
.agenda-modal-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.agenda-modal-tab {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--border-color);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer !important;
  transition: var(--trans);
  background: transparent;
  color: var(--text-muted);
}

.agenda-modal-tab.active {
  background: linear-gradient(135deg, var(--inox-blue), var(--inox-blue-light));
  color: white;
  border-color: transparent;
}

.agenda-modal-day {
  display: none;
}

.agenda-modal-day.active {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.agenda-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-primary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.agenda-row-time {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--inox-blue);
}

[data-theme="dark"] .agenda-row-time {
  color: var(--inox-green-light);
}

.agenda-row-time.gold {
  color: #b45309;
}

[data-theme="dark"] .agenda-row-time.gold {
  color: var(--gold-light);
}

.agenda-row-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.agenda-row-desc {
  font-size: 12px;
  color: var(--text-muted);
}

.agenda-modal-footer {
  padding: 18px 32px;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

/* Download PDF btn */
.btn-pdf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer !important;
  transition: var(--trans);
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
}

.btn-pdf:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(5, 150, 105, 0.4);
}

/* Spinner */
.spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  .gallery-item:first-child {
    grid-row: span 1;
  }
}

@media(max-width:768px) {

  .nav-links,
  .nav-actions .theme-toggle-wrap {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .modal-card {
    border-radius: 20px;
  }

  .agenda-modal-card {
    border-radius: 20px;
  }

  .agenda-modal-header-sticky {
    border-radius: 20px 20px 0 0;
  }

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

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

  .agenda-timeline {
    padding-left: 52px;
  }

  .agenda-timeline::before {
    left: 20px;
  }

  .agenda-dot {
    left: -32px;
  }

  .feedback-form {
    padding: 28px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media(max-width:640px) {
  .stats-grid-two {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .stats-grid-two .stat-item:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .stat-item {
    padding: 20px 24px;
  }
}

@media(max-width:480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .countdown {
    gap: 6px;
  }

  .countdown-sep {
    font-size: 18px;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .agenda-modal-header-actions {
    width: 100%;
    justify-content: center;
  }
}

/* ===== HERO GREETING ===== */
.hero-greeting {
  font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  display: block;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5), 0 0 40px rgba(27, 79, 191, 0.4);
  animation: fadeSlideDown 0.7s ease forwards;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FEEDBACK DEAR LABEL ===== */
.feedback-dear-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  color: var(--inox-blue);
  text-align: center;
  padding: 16px 12px;
  border-radius: 12px;
  background: rgba(27, 79, 191, 0.06);
  border: 1px solid rgba(27, 79, 191, 0.15);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

/* ===== FANCY TIME PICKER ===== */
.fancy-time-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  overflow: visible;
  padding: 2px 8px 2px 6px;
  min-height: 44px;
}

.fancy-time-wrap:focus-within {
  border-color: var(--inox-blue);
  box-shadow: 0 0 0 3px rgba(27, 79, 191, 0.1);
}

.fancy-time-box {
  flex: 0 0 auto;
  width: 38px;
  background: transparent;
  border: none;
  outline: none;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  padding: 6px 2px;
  border-radius: 6px;
  transition: background 0.15s;
  caret-color: transparent;
}

.fancy-time-box:hover {
  background: rgba(27, 79, 191, 0.06);
}

.fancy-time-box.filled {
  color: var(--inox-blue);
}

.fancy-time-box.fancy-ampm {
  width: 48px;
}

.fancy-time-colon {
  font-weight: 800;
  color: var(--text-muted);
  font-size: 16px;
  padding: 0 2px;
  user-select: none;
}

.fancy-time-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 9999;
  background: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  max-height: 200px;
  overflow-y: auto;
  min-width: 100px;
  padding: 6px 0;
  scrollbar-width: thin;
}

.fancy-time-dropdown.open {
  display: block;
}

.fancy-time-item {
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}

.fancy-time-item:hover {
  background: rgba(27, 79, 191, 0.08);
  color: var(--inox-blue);
}

.fancy-time-item.selected {
  background: var(--inox-blue);
  color: #fff;
  border-radius: 6px;
  margin: 0 4px;
}

.seq-popup {
  display: none;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(239, 68, 68, 0.95);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 8px;
  white-space: nowrap;
  z-index: 10000;
  pointer-events: none;
}

.seq-popup.visible {
  display: block;
  animation: popupFade 0.2s ease;
}

@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(6px)
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
  }
}

.seq-popup::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(239, 68, 68, 0.95);
  border-bottom: none;
}

/* ===== CUSTOM DATE PICKER ===== */
.custom-date-wrap {
  position: relative;
}

.custom-date-input {
  cursor: pointer !important;
}

.custom-date-picker {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 9999;
  background: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  padding: 14px;
  width: 280px;
}

.custom-date-picker.open {
  display: block;
}

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

/* Fixed header — no nav arrows, month+year centred and non-interactive */
.cdp-header-fixed {
  justify-content: center;
}

.cdp-month-label {
  font-size: 14px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: var(--inox-blue);
}

/* Non-selectable month/year label */
.cdp-month-fixed {
  user-select: none;
  pointer-events: none;
  opacity: 0.85;
  letter-spacing: 0.5px;
}

.cdp-nav {
  background: none;
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: background 0.12s, color 0.12s;
}

.cdp-nav:hover:not(.disabled) {
  background: var(--inox-blue);
  color: #fff;
  border-color: var(--inox-blue);
}

.cdp-nav.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.cdp-day-names {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 4px;
}

.cdp-day-names span {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  padding: 4px 0;
}

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

.cdp-day {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  color: var(--text-primary);
  transition: background 0.12s, color 0.12s;
}

.cdp-day:hover:not(.disabled):not(.empty) {
  background: rgba(27, 79, 191, 0.12);
  color: var(--inox-blue);
}

.cdp-day.selected {
  background: var(--inox-blue) !important;
  color: #fff !important;
}

.cdp-day.disabled {
  color: var(--text-muted);
  opacity: 0.35;
  cursor: not-allowed;
}

.cdp-day.empty {
  cursor: default;
}

/* ===== AIRPORT DROPDOWN ===== */
.airport-wrap {
  position: relative;
}

.airport-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  max-height: 220px;
  overflow-y: auto;
  padding: 6px 0;
  scrollbar-width: thin;
}

.airport-dropdown.open {
  display: block;
}

.airport-item {
  padding: 9px 14px;
  font-size: 12.5px;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  line-height: 1.4;
}

.airport-item:hover:not(.no-result) {
  background: rgba(27, 79, 191, 0.08);
  color: var(--inox-blue);
}

.airport-item.no-result {
  color: var(--text-muted);
  cursor: default;
}

/* ===== TRANSPORT PILLS ===== */
.transport-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 50px;
  border: 2px solid var(--border-color);
  background: var(--bg-primary);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-secondary);
  transition: all 0.2s ease;
  user-select: none;
}

.transport-pill:hover {
  border-color: var(--inox-blue);
  color: var(--inox-blue);
  background: rgba(27, 79, 191, 0.06);
}

.transport-pill.active {
  border-color: var(--inox-blue);
  background: var(--inox-blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(27, 79, 191, 0.3);
}

/* ===== ARRIVAL FIELDS TRANSITION ===== */
.arrival-fields {
  display: none;
}

#arrivalSection {
  transition: opacity 0.35s ease;
  opacity: 0;
}

#arrivalSection.visible {
  opacity: 1;
}

/* ===== 24h TIME PICKER — hide AM/PM box ===== */
.fancy-time-wrap[data-mode="24h"] .fancy-ampm {
  display: none !important;
}

/* ============================================================
   INOXAP SALES MEET 2026 — UPDATED STYLES v3
   Tasks: Login, Navbar, Hero, Speakers, Gallery, Agenda, etc.
   ============================================================ */

/* ===== TASK 1: LOGIN MODAL IMPROVEMENTS ===== */

/* Replace lock emoji with properly displayed logo */
.login-header-logo {
  display: block;
  height: 100px;
  width: auto;
  margin: 0 auto 5px;
  filter: none;
  object-fit: contain;
  border-radius: 8px;
}

/* Hide the second logo image in login header (dedup) */
.login-brand-logo {
  display: none !important;
}

/* TASK 1D: Login card responsiveness — no scroll needed */
.login-overlay {
  padding: 12px;
  align-items: center;
}

.login-card {
  max-height: calc(100vh - 24px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.login-card-header {
  padding: 24px 28px 20px;
}

.login-card-header h2 {
  font-size: 18px;
}

.login-card-header p {
  font-size: 11px;
}

.login-card-body {
  padding: 20px 28px 24px;
}

/* Reduced spacing for login form groups */
.login-card-body .form-group {
  margin-bottom: 14px;
}

/* Mobile S (320px) specifics */
@media (max-width: 380px) {
  .login-card-header {
    padding: 16px 18px 14px;
  }

  .login-header-logo {
    height: 54px;
    margin-bottom: 8px;
  }

  .login-card-header h2 {
    font-size: 15px;
  }

  .login-card-header p {
    font-size: 10px;
  }

  .login-card-body {
    padding: 14px 16px 18px;
  }

  .login-card-body .form-group {
    margin-bottom: 10px;
  }
}

/* ===== TASK 2: NAVBAR IMPROVEMENTS ===== */

/* TASK 2A: logo on right side of navbar */
.nav-right-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: none;
  flex-shrink: 0;
  display: block;
  border-radius: 6px;
}

/* TASK 2C: Navbar responsiveness — no horizontal overflow */
.nav-inner {
  flex-wrap: nowrap;
  gap: 8px;
}

.nav-actions {
  gap: 8px;
  flex-wrap: nowrap;
  align-items: center;
}

/* Ensure Attend Now button never wraps its text */
.nav-actions .btn-primary {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 8px 14px;
  font-size: 12px;
}

/* Admin settings button compact */
#adminSettingsBtn {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 8px 12px !important;
  font-size: 12px !important;
}

/* Logout button compact */
#logoutBtn {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 8px 12px !important;
  font-size: 11px !important;
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 4px;
  }

  .nav-links a {
    padding: 6px 10px;
    font-size: 12px;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-actions .btn-primary {
    padding: 8px 12px;
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .nav-right-logo {
    height: 34px;
  }

  .nav-actions .btn-primary {
    display: none;
  }
}

@media (max-width: 480px) {
  .nav-right-logo {
    height: 30px;
  }
}

@media (max-width: 360px) {
  .nav-right-logo {
    display: none;
  }
}

/* ===== TASK 3: HERO SECTION IMPROVEMENTS ===== */

/* TASK 3A: Increase brightness — reduce darkness of overlay */
.hero-overlay {
  background: linear-gradient(150deg,
      rgba(4, 10, 35, 0.32) 0%,
      rgba(10, 35, 90, 0.15) 45%,
      rgba(4, 18, 50, 0.35) 100%) !important;
}

/* Also increase bg brightness slightly */
.hero-bg {
  filter: brightness(0.65) contrast(1.04) saturate(1.08) !important;
}

/* Reduce hero height so content + countdown fit without scrolling */
.hero {
  min-height: 100svh;
}

.hero-content {
  padding: 10px 20px 20px;
}

.hero-welcome {
  font-size: clamp(12px, 1.8vw, 18px);
  margin-bottom: 0;
  margin-top: 0;
  letter-spacing: 2px;
}

.hero-title {
  font-size: clamp(42px, 7vw, 88px);
  margin-bottom: 4px;
  letter-spacing: -2px;
}

.hero-subtitle-tag {
  font-size: clamp(13px, 1.8vw, 18px);
  margin-top: 4px;
  margin-bottom: 8px;
}

.hero-meta {
  margin-bottom: 8px;
  gap: 8px;
}

.hero-meta-item {
  padding: 6px 12px;
}

.hero-meta-item .icon {
  width: 28px;
  height: 28px;
}

.hero-meta-item .value {
  font-size: 13px;
}

.hero-ctas {
  margin-bottom: 12px;
  gap: 8px;
}

.countdown-wrap {
  padding-bottom: 0;
}

.countdown-item {
  min-width: 64px;
  padding: 10px 12px 8px;
}

.countdown-num {
  font-size: clamp(22px, 3.5vw, 36px);
}

.scroll-indicator {
  bottom: 18px;
}

/* Mobile hero responsiveness */
@media (max-width: 768px) {
  .hero-content {
    padding: 24px 16px 16px;
  }

  .hero-title {
    font-size: clamp(36px, 9vw, 64px);
  }

  .hero-meta {
    gap: 8px;
  }

  .hero-meta-item {
    padding: 8px 12px;
  }

  .countdown {
    gap: 6px;
  }

  .countdown-item {
    min-width: 54px;
    padding: 8px 10px 6px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 8px 14px 16px;
  }

  .hero-welcome {
    letter-spacing: 1px;
  }

  .hero-subtitle-tag {
    margin-bottom: 8px;
    margin-top: 4px;
    letter-spacing: 1px;
  }

  .hero-meta {
    flex-direction: row;
    gap: 6px;
  }

  .hero-meta-item {
    flex: 1;
    min-width: 0;
    padding: 6px 10px;
  }

  .hero-ctas {
    flex-direction: row;
    width: 100%;
    gap: 8px;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    flex: 1;
    justify-content: center;
    font-size: 12px;
    padding: 8px 10px;
  }

  .countdown {
    gap: 4px;
  }

  .countdown-sep {
    font-size: 20px;
  }

  .countdown-item {
    min-width: 48px;
    padding: 6px 8px 5px;
  }

  .hero-inv3-inline {
    max-width: 100%;
  }
}

@media (max-width: 340px) {
  .hero-title {
    font-size: 34px;
  }

  .countdown-item {
    min-width: 42px;
    padding: 5px 6px 4px;
  }

  .countdown-num {
    font-size: 20px;
  }
}

/* ===== TASK 4: REGISTRATION MODAL ===== */

/* Logo in modal header right side */
.modal-header-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: none;
  flex-shrink: 0;
  opacity: 1;
  margin-right: 4px;
  align-self: flex-start;
  margin-top: 2px;
  border-radius: 6px;
}

/* Modal header layout for logo placement */
.modal-header {
  gap: 12px;
  align-items: flex-start;
}

/* Registration modal responsiveness */
@media (max-width: 640px) {
  .modal-header-logo {
    height: 42px;
  }
}

/* ===== TASK 5: AGENDA MODAL — Day tabs in sticky header ===== */

/* Make the entire header sticky within the modal */
.agenda-modal-header-sticky {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  flex-direction: column;
  align-items: stretch;
  flex-shrink: 0;
  padding: 20px 28px 16px;
  /* Rounded top corners matching the modal card */
  border-radius: 28px 28px 0 0;
}

.agenda-modal-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Remove default body padding for tabs since they're now in header */
.agenda-modal-body {
  padding-top: 20px;
}

@media (max-width: 768px) {
  .agenda-modal-header-sticky {
    padding: 16px 16px 12px;
  }

  .agenda-modal-header-top {
    flex-wrap: wrap;
  }
}

/* ===== TASK 8: SPEAKERS SECTION ===== */

/* TASK 8B: Increase speaker avatar size */
.speaker-avatar {
  width: 130px !important;
  height: 130px !important;
}

/* TASK 8C: Hover zoom on speaker image — smooth CSS transition */
.speaker-avatar-zoom {
  overflow: hidden;
  cursor: pointer;
}

.speaker-avatar-zoom img {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  transform: scale(1);
  will-change: transform;
}

.speaker-avatar-zoom:hover img {
  transform: scale(1.12);
}

.speaker-avatar-zoom .speaker-avatar-placeholder {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.speaker-avatar-zoom:hover .speaker-avatar-placeholder {
  transform: scale(1.08);
}

/* TASK 8A: Remove speaker social links (handled in HTML) */
.speaker-social {
  display: none !important;
}

/* ===== TASK 9: GALLERY CAROUSEL ===== */

.gallery-carousel {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(27, 79, 191, 0.18);
  background: var(--bg-card);
  aspect-ratio: 16/7;
  touch-action: pan-y;
  user-select: none;
}

.gallery-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gallery-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

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

/* Placeholder gradient slide (used when no real images yet) */
.gallery-slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.gallery-slide-icon {
  font-size: 64px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
  animation: carouselIconBob 3s ease-in-out infinite;
}

@keyframes carouselIconBob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.gallery-slide-label {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 0 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Carousel nav buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 300;
  padding: 0;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.08);
}

.carousel-prev {
  left: 14px;
}

.carousel-next {
  right: 14px;
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.25s ease;
}

.carousel-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* Mobile carousel */
@media (max-width: 640px) {
  .gallery-carousel {
    aspect-ratio: 16/9;
    border-radius: 14px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .carousel-prev {
    left: 8px;
  }

  .carousel-next {
    right: 8px;
  }

  .gallery-slide-icon {
    font-size: 44px;
  }
}

@media (max-width: 380px) {
  .gallery-carousel {
    aspect-ratio: 4/3;
  }
}

/* ===== ACCESS LINK AUTO-LOGIN BANNER ===== */
#_accessBanner {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9990;
  background: linear-gradient(135deg, #059669, #2DB84B);
  color: #fff;
  padding: 12px 28px;
  border-radius: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(5, 150, 105, 0.4);
  text-align: center;
  animation: alertPop 0.4s ease both;
}

/* ============================================================
   FINAL RESPONSIVENESS PATCHES — All modals, hero, all screens
   ============================================================ */

/* ── Registration Modal — full responsive (Task 4) ── */
@media (max-width: 640px) {
  .modal-card {
    max-height: 94vh;
    border-radius: 18px;
  }

  .modal-header {
    padding: 16px 18px 14px;
  }

  .modal-body {
    padding: 16px 18px;
  }

  .modal-title {
    font-size: 17px;
  }

  .modal-subtitle {
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .modal-card {
    max-height: 96vh;
    border-radius: 14px;
  }

  .modal-header {
    padding: 12px 14px 10px;
  }

  .modal-body {
    padding: 12px 14px;
  }

  .modal-title {
    font-size: 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ── Agenda Modal — full responsive (Task 5) ── */
@media (max-width: 640px) {
  .agenda-modal-card {
    max-height: 94vh;
    border-radius: 18px;
  }

  .agenda-modal-header-sticky {
    border-radius: 18px 18px 0 0;
  }

  .agenda-modal-header-sticky {
    padding: 14px 14px 10px;
  }

  .agenda-modal-title {
    font-size: 16px;
  }

  .agenda-modal-body {
    padding: 14px;
  }

  .agenda-modal-footer {
    padding: 12px 14px;
  }

  .agenda-modal-tabs {
    gap: 6px;
  }

  .agenda-modal-tab {
    padding: 6px 12px;
    font-size: 11px;
  }

  .agenda-row {
    grid-template-columns: 90px 1fr;
    gap: 8px;
    padding: 10px 12px;
  }

  .agenda-row-time {
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .agenda-modal-card {
    max-height: 96vh;
  }

  .agenda-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .agenda-row-time {
    font-size: 10px;
  }

  .btn-pdf {
    padding: 10px 14px;
    font-size: 12px;
  }
}

/* ── Speakers grid responsive ── */
@media (max-width: 1024px) {
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .speaker-avatar {
    width: 110px !important;
    height: 110px !important;
  }
}

/* ── Awards grid responsive ── */
@media (max-width: 1024px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ── Stats grid responsive ── */
@media (max-width: 480px) {
  .stats-grid-two {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .stats-group-center .stat-item:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
}

/* ── Mobile hero fixes (≤600px) ── */
@media (max-width: 600px) {

  /* Hero logo — force horizontal centre */
  .hero-content {
    text-align: center;
  }

  .hero-logo-wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: 120px;
  }

  /* Invitation3 wrap — tighter padding so image reads smaller */
  .hero-inv3-overlay-wrap {
    max-width: 90%;
    padding: 12px 14px 14px;
    gap: 8px;
  }

  /* Pills — smaller font & icon on mobile */
  .hero-meta {
    gap: 8px;
  }

  .hero-meta-item {
    padding: 6px 10px;
    gap: 7px;
    border-radius: 10px;
  }

  .hero-meta-item .icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
  }

  .hero-meta-item .icon svg {
    width: 15px;
    height: 15px;
  }

  .hero-meta-item .label {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .hero-meta-item .value {
    font-size: 12px;
  }

  /* CTAs gap */
  .hero-ctas {
    gap: 8px;
  }
}

@media (max-width: 380px) {
  .hero-logo-wrap {
    max-width: 250px;
  }

  .hero-inv3-overlay-wrap {
    position: relative;
    width: 100%;
    max-width: 660px;
    margin: 12px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 20px 20px;
    animation: fadeSlideDown 1s 0.36s ease both;
  }

  .hero-inv3-bg-img {
    position: absolute;
    width: 130%;
    height: 130%;
    margin-top: -60px;
    margin-left: -25px;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
  }

  .hero-meta-item .value {
    font-size: 8px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}

/* ── Prevent all horizontal scrolling site-wide ── */
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

.container {
  overflow-x: hidden;
}

/* ── Login card — ensure Verify button always visible ── */
@media (max-height: 700px) {
  .login-card-header {
    padding: 14px 24px 10px;
  }

  .login-header-logo {
    height: 52px;
    margin-bottom: 8px;
    filter: none;
  }

  .login-card-header h2 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .login-card-header p {
    font-size: 10px;
    line-height: 1.4;
  }

  .login-card-body {
    padding: 14px 24px 16px;
  }

  .login-card-body .form-group {
    margin-bottom: 10px;
  }
}

@media (max-height: 580px) {
  .login-card {
    max-height: 98vh;
    border-radius: 16px;
  }

  .login-card-header {
    padding: 10px 18px 8px;
  }

  .login-header-logo {
    height: 42px;
    margin-bottom: 6px;
    filter: none;
  }

  .login-card-header h2 {
    font-size: 13px;
  }

  .login-card-header p {
    display: none;
  }

  .login-card-body {
    padding: 10px 18px 12px;
  }
}

/* ── Ensure agenda-modal-body scrolls within the flex container ── */
.agenda-modal-card {
  overflow: hidden;
  /* already set above — enforces rounded corners on sticky header */
}

.agenda-modal-header-sticky {
  flex-shrink: 0;
}

.agenda-modal-body {
  flex: 1;
  overflow-y: auto;
}

/* ── Visitor counter dark mode fix ── */
[data-theme="dark"] .visitor-counter {
  background: var(--bg-card);
}

/* ── Transport pills responsive wrap ── */
@media (max-width: 380px) {
  .transport-pill {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* ── Gallery section spacing ── */
.gallery .container {
  padding-bottom: 20px;
}

/* ── Feedback form ── */
@media (max-width: 480px) {
  .feedback-form {
    padding: 24px 16px;
    border-radius: 18px;
  }
}

/* ── Footer ── */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ── Mobile nav z-index above everything ── */
.mobile-nav {
  z-index: 1001;
}

/* ══════════════════════════════════════════
   MOBILE NAVBAR COMPRESSION  (≤768px)
   Layout: [inoxap logo] ... [bell] [champions] [icon-512] [hamburger]
══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Shrink inoxap logo so it fits comfortably */
  .nav-logo img {
    height: 26px;
  }

  /* Tighten navbar padding */
  .navbar {
    padding: 0;
  }

  .nav-inner {
    gap: 4px;
    padding: 0 10px;
    min-height: 54px;
  }

  .nav-actions {
    gap: 6px;
  }

  /* Hide desktop-only cluster (theme toggle, logout, attend now) */
  .nav-desktop-only {
    display: none !important;
  }

  /* Champions logo: show smaller on mobile */
  .nav-right-logo {
    display: block !important;
    height: 20px !important;
  }

  /* Show mobile app icon */
  .nav-mobile-icon {
    display: block !important;
  }

  /* Hamburger always visible */
  .hamburger {
    display: flex;
  }

  /* Mobile nav: nicer spacing & badge sync */
  .mobile-nav {
    gap: 24px;
    padding: 40px 32px;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
  }

  .mobile-nav a {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .nav-logo img {
    height: 22px;
  }

  .nav-right-logo {
    height: 26px !important;
  }

  .nav-mobile-icon {
    height: 28px !important;
    width: 28px !important;
  }

  .nav-inner {
    padding: 0 8px;
    gap: 2px;
  }
}
/* ══════════════════════════════════════════
   HERO MOBILE — match desktop layout (≤600px)
══════════════════════════════════════════ */
@media (max-width: 600px) {

  /* --- Hero content: keep centred, reduce side padding --- */
  .hero-content {
    padding: 10px 16px 16px;
    text-align: center;
  }

  /* --- Champions League logo: centred, proportionally smaller --- */
  .hero-logo-wrap {
    max-width: 200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* --- Invitation3 wrap: tighter so image doesn't dwarf the screen --- */
  .hero-inv3-overlay-wrap {
    max-width: 100%;
    gap: 8px;
  }

  /* --- Invitation3 bg image: scaled down for mobile --- */
  .hero-inv3-bg-img {
    height: 120%;
    margin-top: -30px;
    margin-left: -9%;
  }

  /* --- Pills: stay side-by-side, smaller text & icon --- */
  .hero-meta {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .hero-meta-item {
    padding: 6px 10px;
    gap: 6px;
    border-radius: 10px;
    flex: 1;
    justify-content: center;
  }
  .hero-meta-item .icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    flex-shrink: 0;
  }
  .hero-meta-item .icon svg {
    width: 14px;
    height: 14px;
  }
  .hero-meta-item .label {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .hero-meta-item .value {
    font-size: 12px;
  }

  /* --- CTAs: side-by-side, slightly smaller --- */
  .hero-ctas {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    flex: 1;
    padding: 11px 10px;
    font-size: 12px;
    gap: 5px;
    justify-content: center;
  }

  /* --- Countdown: tighter --- */
  .countdown { gap: 6px; }
  .countdown-item { min-width: 52px; padding: 6px 8px; }
  .countdown-sep { font-size: 20px; }
}

@media (max-width: 380px) {
  .hero-logo-wrap { max-width: 170px !important; }
  .hero-meta-item .value { font-size: 11px; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { font-size: 11px; padding: 10px 8px; }
}

/* ══════════════════════════════════════════
   HERO MOBILE — match desktop layout (≤380px)
══════════════════════════════════════════ */
@media (max-width: 380px) {

  /* --- Champions League logo: centred, proportionally smaller --- */
  .hero-logo-wrap {
    max-width: 200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* --- Invitation3 wrap: tighter so image doesn't dwarf the screen --- */
  .hero-inv3-overlay-wrap {
    max-width: 100%;
    gap: 8px;
  }

  /* --- Invitation3 bg image: scaled down for mobile --- */
  .hero-inv3-bg-img {
    height: 92%;
    margin-top: 12px;
    margin-left: -9%;
  }
}

/* ══════════════════════════════════════════
   HERO MOBILE — match desktop layout (≤360px)
══════════════════════════════════════════ */
@media (max-width: 360px) {

  /* --- Champions League logo: centred, proportionally smaller --- */
  .hero-logo-wrap {
    max-width: 200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* --- Invitation3 wrap: tighter so image doesn't dwarf the screen --- */
  .hero-inv3-overlay-wrap {
    max-width: 100%;
    gap: 8px;
  }

  /* --- Invitation3 bg image: scaled down for mobile --- */
  .hero-inv3-bg-img {
    height: 80%;
    margin-top: 30px;
    margin-left: -3%;
  }
}