/* ============ TOKENS ============ */
:root {
  --cream: #FAF6F0;
  --cream-alt: #F3EAE1;
  --paper: #FDFCF9;
  --wine: #8f133d;
  --wine-deep: #8f133d;
  --rose: #8C2D38;
  --terracotta: #a5133e;
  --ink: #221A18;
  --border-soft: #E2D7CD;
  --amber: #C5A059;
  --leaf: #5B724C;
  --leaf-dark: #3F5234;
  --font-display: 'Poppins', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container-max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

.container-xl-custom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}




h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--wine);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--wine);
  margin-bottom: 14px;
}

.section-label::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--amber);
  display: inline-block;
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 18px;
}

.lede {
  font-size: 1.06rem;
  line-height: 1.75;
  color: #3a332f;
}

section {
  position: relative;
}

.wine-strip {
  background: linear-gradient(90deg, var(--wine) 0%, var(--rose) 100%);
  color: #fff;
}

.divider-strip {
  height: 6px;
  width: 100%;
  background: repeating-linear-gradient(90deg, var(--wine) 0 40px, var(--amber) 40px 44px, var(--wine) 44px 84px);
  opacity: .85;
}

/* ============ DECORATIVE SVG FLOATERS ============ */
.float-deco {
  position: absolute;
  pointer-events: none;
  opacity: .9;
  z-index: 1;
}

@keyframes gentle-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

.drift {
  animation: gentle-float 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .drift {
    animation: none;
  }
}

/* ============ NAVBAR ============ */
.site-navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(251, 247, 241, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow .3s ease;
}

.site-navbar.scrolled {
  box-shadow: 0 6px 24px rgba(29, 23, 20, 0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 5vw, 64px);
  max-width: var(--container-max);
  margin: 0 auto;
}

.mig-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.mig-logo-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--wine);
  letter-spacing: 0.02em;
  line-height: 1;
}

.mig-logo-mark span {
  color: var(--ink);
}

.mig-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.mig-logo-sub {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  color: #7a6f65;
  font-weight: 600;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 15px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  position: relative;
  padding: 4px 0;
  transition: color .25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--wine);
  transition: width .25s ease;
}

.nav-links a:hover {
  color: var(--wine);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-wine {
  background: var(--wine);
  color: #fff !important;
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all .25s ease;
  display: inline-block;
}

.btn-wine:hover {
  background: var(--wine-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(139, 30, 63, 0.28);
}

.btn-outline-wine {
  background: transparent;
  color: var(--wine) !important;
  border: 1.5px solid var(--wine);
  padding: 9.5px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all .25s ease;
  display: inline-block;
}

.btn-outline-wine:hover {
  background: var(--wine);
  color: #fff !important;
}

.navbar-toggler {
  border: none;
  background: none;
  font-size: 1.4rem;
  color: var(--wine);
}

/* ============ HERO ============ */
.hero {
  background: #fff;
  padding: 56px 0 0 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px) 60px;
  position: relative;
  z-index: 2;
}

.hero-image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-img-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(29, 23, 20, 0.14);
  position: relative;
}

.hero-img-block img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.hero-img-block.large img {
  height: 300px;
}

.hero-img-block.small {
  display: flex;
}

.hero-img-block.small img {
  height: 180px;
}

.hero-check-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  background: var(--wine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .2);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--wine);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--amber);
}

.hero-title {
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-weight: 800;
  color: #8f133d;
}

.hero-subline {
  font-family: var(--font-body);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: #54493f;
  text-transform: uppercase;
  margin: 14px 0 22px;
}

.date-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 24px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(242, 154, 46, 0.35);
}

.wine-title {
  color: var(--wine);
}

.venue-line {
  margin-top: 16px;
  font-weight: 600;
  color: #4a4038;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.hero-intro {
  margin-top: 24px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #42392f;
  max-width: 560px;
  font-style: italic;
  border-left: 3px solid var(--border-soft);
  padding-left: 18px;
}

.hero-ctas {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-deco-bottle {
  position: absolute;
  top: 15px;
  right: -45px;
  width: 75px;
  z-index: 1;
}

.hero-deco-leaf {
  position: absolute;
  top: -6px;
  left: 46%;
  width: 70px;
  z-index: 1;
}

.hero-deco-glasses {
  position: absolute;
  bottom: 40px;
  right: 4%;
  width: 130px;
  z-index: 1;
}

.hero-footer-band {
  background: linear-gradient(90deg, var(--wine) 0%, var(--rose) 100%);
  color: #fff;
  padding: 16px clamp(20px, 5vw, 64px);
}

.hero-footer-band .row-flex {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.hero-footer-band .mig-mini {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
}

/* ============ ABOUT / OVERVIEW ============ */
.about-section {
  background: var(--paper);
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 50px rgba(29, 23, 20, 0.16);
  display: block;
}

.about-leaf-corner {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 80px;
}

.participants-note {
  margin-top: 26px;
  background: var(--cream-alt);
  border-left: 4px solid var(--wine);
  border-radius: 10px;
  padding: 18px 22px;
}

.participants-note strong {
  color: var(--wine);
}

/* ============ BACKGROUND & OPPORTUNITY ============ */
.opportunity-section {
  background: var(--cream);
  padding: 100px 0;
  position: relative;
}

.opportunity-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 2;
}

.opportunity-inner .lede {
  font-size: 1.12rem;
}

.opportunity-inner mark {
  background: none;
  color: var(--wine);
  font-weight: 700;
  box-shadow: inset 0 -8px 0 rgba(242, 154, 46, 0.35);
  padding: 0 2px;
}

.opp-deco-glass {
  position: absolute;
  opacity: .18;
  width: 220px;
  right: 6%;
  bottom: 6%;
}

.opp-deco-leaf {
  position: absolute;
  opacity: .5;
  width: 80px;
  left: 4%;
  top: 14%;
}

/* ============ OBJECTIVES ============ */
.objectives-section {
  background: var(--paper);
  padding: 100px 0;
}

.objective-card {
  background: var(--cream-alt);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}

.objective-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(29, 23, 20, 0.1);
}

.objective-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 18px;
}

.objective-card h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.objective-card p {
  color: #4a4038;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ============ PARTICIPANTS ============ */
.participants-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-alt) 100%);
  padding: 100px 0;
}

.participant-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  padding: 30px 24px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}

.participant-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(29, 23, 20, 0.1);
}

.participant-card .p-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--cream-alt);
  border: 1.5px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  font-size: 1.5rem;
}

.participant-card h6 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}

.participant-card p {
  font-size: 0.9rem;
  color: #4a4038;
  line-height: 1.55;
  margin: 0;
}

/* ============ PROGRAMME TIMELINE ============ */
.programme-section {
  background: var(--paper);
  padding: 100px 0;
}

.timeline {
  position: relative;
  max-width: 820px;
  margin: 50px auto 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-soft);
}

.timeline-item {
  position: relative;
  padding-left: 58px;
  margin-bottom: 34px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 2px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 0 0 6px var(--paper);
}

.timeline-item h6 {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.timeline-item p {
  color: #4a4038;
  margin: 0;
  font-size: 0.93rem;
}

/* Conference session sub-sections (15-min slots) */
.session-sub-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.session-sub-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream-alt);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--wine);
  border-radius: 8px;
  padding: 9px 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.session-sub-list li:hover {
  background: rgba(139, 30, 63, 0.06);
  transform: translateX(3px);
}

.sub-time {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--wine);
  border-radius: 6px;
  padding: 3px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.sub-topic {
  font-size: 0.91rem;
  color: #3a3028;
  font-weight: 500;
  line-height: 1.4;
}

.outcome-box {
  margin-top: 50px;
  background: var(--wine);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 30px 34px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.outcome-box strong {
  color: var(--amber);
}

/* ============ KEY HIGHLIGHTS ============ */
.highlights-section {
  background: var(--cream);
  padding: 100px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.highlights-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(29, 23, 20, 0.16);
}

.highlights-img img {
  width: 100%;
  display: block;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  font-weight: 600;
  font-size: 0.98rem;
}

.highlight-list li:last-child {
  border-bottom: none;
}

.highlight-list li i {
  color: var(--wine);
  font-size: 1.2rem;
  margin-top: 2px;
}

/* ============ PARTICIPATION COST ============ */
.cost-section {
  background: var(--paper);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cost-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--cream-alt);
  border: 2px solid var(--wine);
  border-radius: var(--radius-lg);
  padding: 46px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 26px 54px rgba(139, 30, 63, 0.14);
  z-index: 2;
}

.cost-badge {
  display: inline-block;
  background: var(--wine);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.cost-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--wine);
  line-height: 1;
}

.cost-amount span {
  font-size: 1.15rem;
  display: block;
  font-weight: 600;
  color: #4a4038;
  margin-top: 8px;
}

.cost-note {
  margin-top: 26px;
  font-size: 0.92rem;
  color: #4a4038;
  line-height: 1.6;
}

.cost-deco {
  position: absolute;
  opacity: .35;
}

/* ============ CONTACT / FINAL CTA ============ */
.contact-section {
  position: relative;
  background: url('https://mediaindia.eu/wp-content/uploads/2026/08/Wine-Footer-Image.jpg-1-scaled.jpeg') no-repeat center right / cover;
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(15, 10, 10, 0.92) 0%, rgba(15, 10, 10, 0.82) 42%, rgba(15, 10, 10, 0.25) 75%, rgba(15, 10, 10, 0.05) 100%);
  pointer-events: none;
  z-index: 1;
}

.contact-inner {
  max-width: 640px;
  margin: 0;
  text-align: left;
  position: relative;
  z-index: 2;
}

.contact-inner .eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--amber);
  margin-bottom: 8px;
}

.contact-inner h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 16px;
}

.contact-inner p.lede {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-ctas {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn-cream {
  font-family: var(--font-body);
  background: #ffffff;
  color: var(--ink) !important;
  padding: 11px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-block;
  transition: all .25s ease;
}

.btn-cream:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-ghost-cream {
  font-family: var(--font-body);
  background: var(--wine);
  border: none;
  color: #fff !important;
  padding: 11px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-block;
  transition: all .25s ease;
}

.btn-ghost-cream:hover {
  background: var(--wine-deep);
  transform: translateY(-2px);
}

.contact-details-grid {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.contact-detail-card {
  background: rgba(18, 12, 14, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  flex: 1 1 270px;
  max-width: 310px;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.contact-detail-card:hover {
  transform: translateY(-4px);
  background: rgba(18, 12, 14, 0.65);
  border-color: rgba(255, 255, 255, 0.25);
}

.contact-detail-card .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.contact-detail-card .role {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 8px;
}

.contact-detail-card a {
  font-family: var(--font-body);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
}

.contact-detail-card a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Old style for screens below 1080px (mobile & small tablet) */
@media (max-width: 1079.98px) {
  .contact-section {
    background: linear-gradient(135deg, var(--wine) 0%, var(--wine-deep) 100%);
    padding: 90px 0;
  }

  .contact-section::before {
    display: none;
  }

  .contact-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .contact-inner .eyebrow {
    color: var(--amber);
  }

  .contact-inner h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  }

  .contact-inner p.lede {
    color: #f2e3e8;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 28px;
  }

  .contact-ctas {
    justify-content: center;
    gap: 18px;
    margin-top: 32px;
  }

  .btn-cream {
    background: var(--cream);
    color: var(--wine) !important;
    padding: 13px 30px;
    font-weight: 700;
  }

  .btn-cream:hover {
    background: #fff;
  }

  .btn-ghost-cream {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: #fff !important;
    padding: 12.5px 30px;
    font-weight: 700;
  }

  .btn-ghost-cream:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .contact-details-grid {
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
  }

  .contact-detail-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 30px;
    flex: 1 1 340px;
    max-width: 380px;
    text-align: left;
  }

  .contact-detail-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .contact-detail-card .name {
    font-size: 1.05rem;
  }

  .contact-detail-card .role {
    color: #e9c9d3;
    font-size: 0.9rem;
  }

  .contact-detail-card a {
    color: #fff;
    font-size: 0.94rem;
  }
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: #d9cdc2;
  padding: 50px 0 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
}

.footer-logo-mark span {
  color: var(--amber);
}

.footer-logo-mark img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: #d9cdc2;
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: #8a7f76;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {

  .hero-grid,
  .about-grid,
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-grid {
    padding-bottom: 40px;
  }

  .about-img-wrap {
    order: 2;
  }

  .highlights-img {
    order: 1;
  }

  .nav-links {
    display: none;
  }

  .hero-deco-bottle,
  .hero-deco-glasses,
  .hero-deco-leaf {
    display: none;
  }

  .contact-details-grid {
    margin-top: 36px;
    gap: 20px;
  }

  /* Responsive padding */
  .about-section,
  .opportunity-section,
  .objectives-section,
  .participants-section,
  .programme-section,
  .highlights-section,
  .cost-section {
    padding: 70px 0;
  }

  .contact-section {
    padding: 80px 0;
  }

  /* Deco adjustments */
  .opp-deco-glass {
    width: 140px;
    opacity: 0.1;
  }

  .opp-deco-leaf {
    width: 50px;
    opacity: 0.25;
  }

  /* Hero image stacks */
  .hero-img-block.large img {
    height: 240px;
  }

  .hero-img-block.small img {
    height: 140px;
  }

  /* Programme Highlights Grid mobile/tablet */
  .programme-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 30px;
  }

  .programme-right {
    display: none;
  }
}

@media (max-width: 767px) {

  /* Footer formatting */
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer-links {
    justify-content: center;
    gap: 12px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 575px) {
  .navbar-inner {
    padding: 10px 20px;
  }

  .mig-logo img {
    height: 32px;
  }

  .footer-logo-mark img {
    height: 32px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .cost-card {
    padding: 34px 24px;
  }

  .hero-footer-band .row-flex {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  /* Section spacings */
  .about-section,
  .opportunity-section,
  .objectives-section,
  .participants-section,
  .programme-section,
  .highlights-section,
  .cost-section {
    padding: 50px 0;
  }

  .contact-section {
    padding: 60px 0;
  }

  /* Timeline mobile adjustments */
  .timeline-item {
    padding-left: 48px;
    margin-bottom: 26px;
  }

  .timeline-dot {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    box-shadow: 0 0 0 4px var(--paper);
  }

  .timeline::before {
    left: 15px;
  }

  /* Cost amount mobile adjustment */
  .cost-amount {
    font-size: 2.1rem;
  }

  /* Contact card overflow fix */
  .contact-detail-card {
    padding: 20px;
    width: 100%;
    max-width: 100%;
    display: flex;
  }

  .contact-detail-card a {
    word-break: break-all;
  }

  /* SVGs hide on mobile to declutter */
  .opp-deco-glass,
  .opp-deco-leaf {
    display: none;
  }

  /* Hero images mobile */
  .hero-img-block.large img {
    height: 180px;
  }

  .hero-img-block.small img {
    height: 100px;
  }

  /* Popup mobile overrides */
  .event-popup-card {
    padding: 24px 20px;
    max-width: 320px;
  }

  .event-popup-title {
    font-size: 1.35rem;
  }

  .event-popup-desc {
    font-size: 0.85rem;
    margin-bottom: 18px;
  }

  .event-popup-icon-wrap {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .event-popup-svg {
    width: 30px;
    height: 30px;
  }

  /* Outcome box padding adjustment */
  .outcome-box {
    padding: 20px 22px;
    margin-top: 30px;
  }
}

/* ============ PROGRAMME GRID ============ */
.programme-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: stretch;
  margin-top: 50px;
}

.programme-visual {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(139, 30, 63, 0.12);
  border: 1px solid var(--border-soft);
}

.programme-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.programme-grid .timeline {
  margin-top: 0;
  max-width: 100%;
}

/* ============ EVENT REGISTRATION POPUP ============ */
.event-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 23, 20, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.event-popup-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.event-popup-card {
  background: var(--paper);
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 60px rgba(139, 30, 63, 0.22);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.event-popup-overlay.show .event-popup-card {
  transform: scale(1);
}

.event-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--wine);
  opacity: 0.65;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.event-popup-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.event-popup-icon-wrap {
  width: 70px;
  height: 70px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.event-popup-svg {
  width: 42px;
  height: 42px;
}

.event-popup-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--wine);
  margin-bottom: 8px;
}

.event-popup-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}

.event-popup-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: 0 4px 10px rgba(242, 154, 46, 0.25);
}

.event-popup-desc {
  font-size: 0.94rem;
  line-height: 1.6;
  color: #4a4038;
  margin-bottom: 24px;
}

.event-popup-cta {
  display: inline-block;
  background: var(--wine);
  color: #fff !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 12px 36px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(139, 30, 63, 0.3);
  transition: all 0.25s ease;
}

.event-popup-cta:hover {
  background: var(--wine-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 30, 63, 0.4);
}


/* ============ REGISTRATION PAGE STYLES ============ */
/* PAGE HERO STRIP */
.form-hero {
  background: var(--cream);
  padding: 75px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.form-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--wine);
}

.form-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 12px 0 16px;
  font-weight: 800;
}

.form-hero p.lede {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #4a4038;
}

.event-meta {
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--wine);
  background: var(--cream-alt);
  border: 1.5px solid var(--border-soft);
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(139, 30, 63, 0.04);
}

.progress-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--wine);
  background: var(--cream-alt);
  border: 1.5px solid var(--border-soft);
  padding: 6px 16px;
  border-radius: 999px;
  margin-top: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* FORM CARD */
.form-section {
  background: var(--paper);
  padding: 40px 0 110px;
  position: relative;
}

.reg-card {
  max-width: 980px;
  margin: 0 auto;
  background: var(--cream);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 70px rgba(29, 23, 20, 0.12);
  padding: clamp(30px, 6vw, 64px);
  position: relative;
}

.form-group-block {
  padding: 45px 0;
  border-bottom: 1.5px solid var(--border-soft);
}

.form-group-block:first-child {
  padding-top: 4px;
}

.form-group-block:last-of-type {
  border-bottom: none;
}

.group-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.group-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(139, 30, 63, 0.2);
}

.group-heading h3 {
  font-size: 1.35rem;
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: #4a4038;
  margin-bottom: 8px;
  display: block;
}

.form-label .req {
  color: var(--wine);
  margin-left: 3px;
}

.form-control,
.form-select {
  background: var(--paper);
  border: 1.5px solid var(--border-soft);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all .25s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(139, 30, 63, 0.12);
  background: #fff;
  outline: none;
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 20px;
}

.form-check {
  background: var(--cream-alt);
  border: 1.5px solid var(--border-soft);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  transition: all .25s ease;
  cursor: pointer;
}

.form-check:hover {
  border-color: var(--wine);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 30, 63, 0.06);
}

.form-check:has(.form-check-input:checked) {
  background: #fff;
  border-color: var(--wine);
  box-shadow: 0 6px 16px rgba(139, 30, 63, 0.08);
}

.form-check-input {
  width: 1.15em;
  height: 1.15em;
  margin-top: 0;
  border: 1.5px solid var(--border-soft);
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-check-input:checked {
  background-color: var(--wine);
  border-color: var(--wine);
}

.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(139, 30, 63, 0.15);
  border-color: var(--wine);
}

.form-check-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  flex: 1;
}

.other-field {
  margin-top: 16px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.category-card {
  position: relative;
}

.category-card input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.category-card label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cream-alt);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px 12px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #4a4038;
  cursor: pointer;
  transition: all .25s ease;
  height: 100%;
}

.category-card label i {
  font-size: 1.5rem;
  color: var(--wine);
  transition: color 0.25s ease;
}

.category-card label:hover {
  transform: translateY(-3px);
  border-color: var(--wine);
  background: #fff;
  box-shadow: 0 8px 20px rgba(139, 30, 63, 0.08);
}

.category-card input:checked+label {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
  box-shadow: 0 8px 24px rgba(139, 30, 63, 0.2);
}

.category-card input:checked+label i {
  color: #fff;
}

.category-card input:focus-visible+label {
  box-shadow: 0 0 0 3px rgba(139, 30, 63, 0.2);
}

.declaration-box {
  background: var(--cream-alt);
  border-left: 5px solid var(--wine);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.declaration-box .form-check-input {
  margin-top: 3px;
}

.declaration-box p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: #4a4038;
  font-weight: 500;
}

.submit-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.btn-submit {
  background: var(--wine);
  color: #fff;
  border: none;
  padding: 16px 48px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.02rem;
  transition: all .25s ease;
  box-shadow: 0 14px 28px rgba(139, 30, 63, 0.24);
  cursor: pointer;
}

.btn-submit:hover {
  background: var(--wine-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(139, 30, 63, 0.32);
}

.btn-reset {
  background: transparent;
  color: var(--wine);
  border: 1.5px solid var(--wine);
  padding: 15px 38px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: all .25s ease;
  cursor: pointer;
}

.btn-reset:hover {
  background: var(--wine);
  color: #fff;
  transform: translateY(-2px);
}

.success-banner {
  display: none;
  background: var(--wine);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 22px 28px;
  margin-bottom: 36px;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(139, 30, 63, 0.15);
}

.success-banner.show {
  display: flex;
}

.site-footer {
  background: var(--ink);
  color: #d9cdc2;
  padding: 40px 0;
  text-align: center;
  font-size: 0.88rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer a {
  color: #d9cdc2;
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* SVG Background Floaters */
.register-deco-svg {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
  z-index: 1;
  transition: all 0.3s ease;
}

.deco-left-1 {
  left: 4%;
  top: 12%;
  width: 110px;
}

.deco-right-1 {
  right: 4%;
  top: 22%;
  width: 90px;
}

.deco-left-2 {
  left: 3%;
  top: 62%;
  width: 95px;
}

.deco-right-2 {
  right: 3%;
  top: 78%;
  width: 115px;
}

/* Margins floaters on wide screen */
.card-margin-deco {
  position: absolute;
  width: 80px;
  opacity: 0.15;
  pointer-events: none;
}

.card-deco-left {
  left: -120px;
  top: 15%;
}

.card-deco-right {
  right: -120px;
  top: 55%;
}

@media (max-width: 1200px) {
  .card-margin-deco {
    display: none;
  }
}

@media (max-width: 991px) {
  .register-deco-svg {
    opacity: 0.08;
    width: 70px;
  }

  .deco-left-1 {
    left: 2%;
    top: 5%;
  }

  .deco-right-1 {
    right: 2%;
    top: 15%;
  }

  .deco-left-2 {
    display: none;
  }

  .deco-right-2 {
    display: none;
  }

  .form-section {
    padding: 30px 0 80px;
  }
}

@media (max-width: 767px) {
  .check-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 14px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .event-meta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .event-meta span {
    width: 100%;
    justify-content: center;
  }

  .reg-card {
    padding: 24px 20px;
  }

  .form-group-block {
    padding: 30px 0;
  }

  .group-heading {
    margin-bottom: 20px;
  }

  .submit-row {
    flex-direction: column;
    gap: 14px;
  }

  .btn-submit,
  .btn-reset {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .register-deco-svg {
    display: none;
  }

  .navbar-inner {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .check-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ PRE-SCHEDULE MEETING STYLES ============ */
/* Hero section */
.meeting-hero {
  background: var(--cream);
  padding: 70px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.meeting-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 12px 0 16px;
  font-weight: 800;
  color: var(--ink);
}

.meeting-hero p.lede {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #4a4038;
}

/* Progress Stepper */
.stepper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 620px;
  margin: 40px auto 20px;
  position: relative;
  padding: 0 10px;
}

.stepper::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--border-soft);
  z-index: 1;
}

.step-node {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #8a7f76;
  position: relative;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-node.active {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(139, 30, 63, 0.12);
}

.step-node.completed {
  background: var(--leaf-dark);
  border-color: var(--leaf-dark);
  color: #fff;
}

.step-label {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a7f76;
}

.step-node.active .step-label {
  color: var(--wine);
}

.step-node.completed .step-label {
  color: var(--leaf-dark);
}

/* Booking form and cards */
.booking-section {
  background: var(--paper);
  padding: 60px 0 100px;
  position: relative;
}

.booking-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--cream);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(29, 23, 20, 0.08);
  padding: clamp(24px, 5vw, 45px);
  position: relative;
}

/* Custom input inputs */
.booking-input-wrap {
  position: relative;
  margin-bottom: 22px;
}

.booking-input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a7f76;
  font-size: 1.05rem;
  pointer-events: none;
  z-index: 2;
}

.booking-control {
  width: 100%;
  height: 52px;
  padding: 0 18px 0 48px;
  border: 1.5px solid var(--border-soft);
  border-radius: 12px;
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.25s ease;
  outline: none;
}

.booking-control:focus {
  border-color: var(--wine);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(139, 30, 63, 0.1);
}

.booking-control.is-invalid {
  border-color: var(--wine);
  background: #fff6f8;
}

.booking-err {
  font-size: 0.8rem;
  color: var(--wine);
  margin-top: 5px;
  display: none;
  padding-left: 4px;
  font-weight: 600;
}

/* Date display */
.meeting-date-display {
  background: linear-gradient(135deg, var(--wine) 0%, var(--rose) 100%);
  color: #fff;
  border-radius: 16px;
  padding: 16px 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(139, 30, 63, 0.15);
}

.meeting-date-display i {
  font-size: 1.4rem;
}

.meeting-date-display .day {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-display);
}

/* Time slot cards */
.slots-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 15px;
}

.time-slot-card {
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.time-slot-card:hover {
  border-color: var(--wine);
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 30, 63, 0.08);
}

.time-slot-card.selected {
  background: linear-gradient(135deg, var(--wine) 0%, var(--rose) 100%);
  border-color: var(--wine);
  color: #fff;
  box-shadow: 0 8px 20px rgba(139, 30, 63, 0.2);
}

.time-slot-card.selected .slot-dur {
  color: #f5e4e8;
}

.time-slot-card .slot-time {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.time-slot-card .slot-dur {
  font-size: 0.75rem;
  color: #8a7f76;
  margin-top: 3px;
}

.time-slot-card .slot-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--leaf-dark);
  background: rgba(110, 139, 92, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 10px;
}

.time-slot-card.selected .slot-status {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.time-slot-card.booked {
  opacity: 0.55;
  background: var(--cream-alt);
  border-color: var(--border-soft);
  cursor: not-allowed;
  pointer-events: none;
}

.time-slot-card.booked .slot-status {
  background: rgba(139, 30, 63, 0.06);
  color: var(--wine);
}

/* Booking steps how it works */
.meeting-step-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 12px rgba(29, 23, 20, 0.02);
}

.meeting-step-card::before {
  content: attr(data-step);
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--wine);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.meeting-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(29, 23, 20, 0.08);
}

.meeting-step-card i {
  font-size: 1.8rem;
  color: var(--wine);
  margin-bottom: 16px;
  display: inline-block;
}

/* Confirmation details */
.confirm-box {
  background: var(--paper);
  border: 1.5px solid var(--border-soft);
  border-radius: 14px;
  padding: 24px;
}

.confirm-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.92rem;
}

.confirm-item:last-child {
  border-bottom: none;
}

.confirm-label {
  color: #8a7f76;
  font-weight: 500;
}

.confirm-value {
  font-weight: 700;
  color: var(--ink);
}

.confirm-value.highlight {
  color: var(--wine);
  font-size: 1.08rem;
}

/* Success display */
.booking-success-wrap {
  text-align: center;
  padding: 40px 10px;
}

.booking-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(139, 30, 63, 0.2);
}

.booking-success-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--ink);
  margin-bottom: 12px;
}

.ref-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream-alt);
  border: 1.5px solid var(--border-soft);
  border-radius: 50px;
  padding: 6px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--wine);
  margin-bottom: 24px;
}

/* ============ ADMIN & USER DASHBOARD STYLES ============ */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

.admin-sidebar {
  width: 256px;
  background: var(--ink);
  color: #c4b9b0;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.admin-sidebar.collapsed {
  width: 68px;
}

.admin-sidebar-logo {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 64px;
  flex-shrink: 0;
}

.admin-sidebar-logo img {
  height: 32px;
  width: auto;
}

.admin-sidebar-logo .title-wrap {
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.admin-sidebar.collapsed .admin-sidebar-logo .title-wrap {
  opacity: 0;
  width: 0;
}

.admin-sidebar-logo h5 {
  font-size: 0.95rem;
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
}

.admin-sidebar-logo p {
  font-size: 0.7rem;
  margin: 0;
  color: #8a7f76;
}

.admin-nav {
  flex: 1;
  padding: 15px 10px;
  overflow-y: auto;
}

.admin-nav-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.25);
  padding: 12px 12px 6px;
  white-space: nowrap;
}

.admin-sidebar.collapsed .admin-nav-label {
  opacity: 0;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  color: #c4b9b0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  margin-bottom: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.admin-nav-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.admin-nav-item.active {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 4px 12px rgba(139, 30, 63, 0.2);
}

.admin-nav-item i {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.admin-sidebar.collapsed .admin-nav-item span {
  opacity: 0;
  width: 0;
}

.admin-nav-badge {
  background: var(--amber);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: auto;
}

.admin-sidebar.collapsed .admin-nav-badge {
  display: none;
}

.admin-sidebar-footer {
  padding: 12px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.admin-collapse-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 9px 10px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  transition: all 0.2s ease;
}

.admin-collapse-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.admin-collapse-btn i {
  font-size: 16px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.admin-sidebar.collapsed .admin-collapse-btn i.bi-chevron-left {
  transform: rotate(180deg);
}

.admin-sidebar.collapsed .admin-collapse-btn span {
  opacity: 0;
  width: 0;
}

.admin-main {
  margin-left: 256px;
  flex: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-main.collapsed {
  margin-left: 68px;
}

.admin-header {
  height: 64px;
  background: #fff;
  border-bottom: 1.5px solid var(--border-soft);
  display: flex;
  align-items: center;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-header-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}

.admin-header-title span {
  font-size: 0.76rem;
  font-weight: 500;
  color: #8a7f76;
  display: block;
  margin-top: 2px;
}

/* Admin stat cards */
.admin-stat-card {
  border-radius: 16px;
  padding: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(29, 23, 20, 0.03);
  height: 100%;
}

.admin-stat-card::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.admin-stat-1 {
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-deep) 100%);
}

.admin-stat-2 {
  background: linear-gradient(135deg, var(--terracotta) 0%, #d66c4c 100%);
}

.admin-stat-3 {
  background: linear-gradient(135deg, var(--leaf-dark) 0%, #587349 100%);
}

.admin-stat-4 {
  background: linear-gradient(135deg, var(--ink) 0%, #362c28 100%);
}

.admin-stat-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.admin-stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.1;
}

.admin-stat-label {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 4px;
  font-weight: 500;
}

/* Badges status workflow */
.admin-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 20px;
}

.admin-status-pending {
  background: rgba(242, 154, 46, 0.08);
  color: #c97514;
  border: 1px solid rgba(242, 154, 46, 0.2);
}

.admin-status-confirmed {
  background: rgba(110, 139, 92, 0.08);
  color: var(--leaf-dark);
  border: 1px solid rgba(110, 139, 92, 0.25);
}

.admin-status-rejected {
  background: rgba(139, 30, 63, 0.08);
  color: var(--wine);
  border: 1px solid rgba(139, 30, 63, 0.2);
}

/* Table styling */
.admin-table-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid var(--border-soft);
  box-shadow: 0 6px 18px rgba(29, 23, 20, 0.02);
  overflow: hidden;
}

.admin-table-toolbar {
  padding: 20px 24px;
  border-bottom: 1.5px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-table-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
  flex: 1;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th {
  padding: 14px 20px;
  font-weight: 700;
  color: #8a7f76;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--paper);
  border-bottom: 1.5px solid var(--border-soft);
}

.admin-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--ink);
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: rgba(245, 238, 230, 0.2);
}

.admin-action-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1.5px solid var(--border-soft);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8a7f76;
  transition: all 0.2s ease;
  cursor: pointer;
}

.admin-action-btn:hover {
  border-color: var(--wine);
  color: var(--wine);
  background: rgba(139, 30, 63, 0.05);
}

.admin-action-btn.success:hover {
  border-color: var(--leaf-dark);
  color: var(--leaf-dark);
  background: rgba(110, 139, 92, 0.05);
}

.admin-action-btn.danger:hover {
  border-color: var(--wine);
  color: var(--wine);
  background: rgba(139, 30, 63, 0.05);
}

/* Admin dark mode override styles if user triggers data-theme=dark */
[data-theme="dark"] .admin-header {
  background: #231b18;
  border-bottom-color: #3b302c;
}

[data-theme="dark"] .admin-table-card {
  background: #231b18;
  border-color: #3b302c;
}

[data-theme="dark"] .admin-table th {
  background: #2d2320;
  border-bottom-color: #3b302c;
}

[data-theme="dark"] .admin-table td {
  border-bottom-color: #3b302c;
}

[data-theme="dark"] .admin-table tr:hover td {
  background: rgba(255, 255, 255, 0.01);
}

[data-theme="dark"] .admin-action-btn {
  border-color: #3b302c;
}

/* ============ AUTH / LOGIN PAGE STYLES ============ */
.auth-body {
  background-image: url('watercolor_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-card {
  max-width: 450px;
  width: 100%;
  background: var(--paper);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(139, 30, 63, 0.12);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wine) 0%, var(--rose) 100%);
}

.auth-logo {
  text-align: center;
  margin-bottom: 24px;
}

.auth-logo img {
  height: 42px;
  width: auto;
}

.auth-icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(139, 30, 63, 0.15);
}

.auth-header {
  text-align: center;
  margin-bottom: 28px;
}

.auth-header h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.auth-header p {
  font-size: 0.88rem;
  color: #8a7f76;
}

.auth-input-wrap {
  position: relative;
  margin-bottom: 18px;
}

.auth-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a7f76;
  font-size: 1rem;
  pointer-events: none;
}

.auth-control {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1.5px solid var(--border-soft);
  border-radius: 10px;
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  transition: all 0.2s ease;
  outline: none;
}

.auth-control:focus {
  border-color: var(--wine);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(139, 30, 63, 0.1);
}

.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  margin-bottom: 24px;
  color: #4a4038;
}

.auth-options a {
  color: var(--wine);
  text-decoration: none;
  font-weight: 600;
}

.auth-options a:hover {
  text-decoration: underline;
}

.auth-btn {
  width: 100%;
  background: var(--wine);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  box-shadow: 0 6px 16px rgba(139, 30, 63, 0.2);
  cursor: pointer;
}

.auth-btn:hover {
  background: var(--wine-deep);
  transform: translateY(-1px);
}

.auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #8a7f76;
}

.auth-switch a {
  color: var(--wine);
  text-decoration: none;
  font-weight: 700;
}

.auth-switch a:hover {
  text-decoration: underline;
}

.auth-error {
  background: rgba(139, 30, 63, 0.08);
  border: 1px solid rgba(139, 30, 63, 0.2);
  color: var(--wine);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 18px;
  display: none;
}

/* ============ SPECIAL B2B DASHBOARD SUB-COMPONENTS ============ */
.meeting-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: 12px;
  padding: 12px 20px;
  box-shadow: 0 4px 12px rgba(29, 23, 20, 0.03);
}

.meeting-badge-item i {
  font-size: 1.4rem;
  color: var(--wine);
}

.meeting-badge-item div {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.meeting-badge-item strong {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 700;
}

.meeting-badge-item span {
  font-size: 0.78rem;
  color: #8a7f76;
}

/* Date box block for confirmed sessions */
.date-block-box {
  background: var(--wine);
  color: #fff;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  min-width: 95px;
  box-shadow: 0 6px 16px rgba(139, 30, 63, 0.15);
  flex-shrink: 0;
}

.date-block-box .day {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-display);
}

.date-block-box .month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: 4px;
  display: block;
}

.date-block-box .year {
  font-size: 0.75rem;
  opacity: 0.85;
  display: block;
}

/* Filters Tab Bar in Admin Dashboard */
.admin-tab-bar {
  display: flex;
  gap: 10px;
  border-bottom: 1.5px solid var(--border-soft);
  padding: 0 24px;
  background: var(--paper);
}

.admin-tab-btn {
  border: none;
  background: transparent;
  padding: 14px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #8a7f76;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.admin-tab-btn:hover {
  color: var(--wine);
}

.admin-tab-btn.active {
  color: var(--wine);
}

.admin-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1.5px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--wine);
  border-radius: 3px;
}

/* B2B Schedule Timeline Grid in Admin Dashboard */
.timeline-schedule-card {
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(29, 23, 20, 0.02);
  overflow-x: auto;
  margin-top: 28px;
}

.timeline-schedule-grid {
  display: flex;
  min-width: 800px;
  border-bottom: 1.5px solid var(--border-soft);
  padding-bottom: 12px;
}

.timeline-schedule-hour {
  flex: 1;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #8a7f76;
  border-right: 1px dashed var(--border-soft);
  padding: 6px 0;
}

.timeline-schedule-hour:last-child {
  border-right: none;
}

.timeline-schedule-events {
  position: relative;
  min-height: 90px;
  min-width: 800px;
  margin-top: 15px;
  background: var(--paper);
  border-radius: 12px;
  border: 1px solid var(--border-soft);
}

.timeline-schedule-event-block {
  position: absolute;
  background: linear-gradient(135deg, var(--wine) 0%, var(--rose) 100%);
  color: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(139, 30, 63, 0.15);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: all 0.2s ease;
  top: 50%;
  transform: translateY(-50%);
}

.timeline-schedule-event-block:hover {
  transform: translateY(-52%) scale(1.03);
  box-shadow: 0 8px 20px rgba(139, 30, 63, 0.25);
  z-index: 10;
}

/* ============ EU-INDIA WINE SUMMIT CUSTOM STYLES ============ */
.market-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .market-info-grid {
    grid-template-columns: 1fr;
  }
}

.market-card {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 34px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(29, 23, 20, 0.04);
}

.market-card h4 {
  font-family: var(--font-serif);
  color: var(--wine);
  font-size: 1.45rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 10px;
  display: inline-block;
}

.market-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.market-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.market-list li::before {
  content: "•";
  color: var(--amber);
  font-weight: bold;
  font-size: 1.25rem;
  position: absolute;
  left: 4px;
  top: -2px;
}

.collab-box {
  background: linear-gradient(135deg, var(--wine-deep) 0%, var(--wine) 100%);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 34px;
  margin-top: 32px;
  box-shadow: 0 15px 35px rgba(74, 14, 23, 0.15);
}

.collab-box h4 {
  font-family: var(--font-serif);
  color: var(--amber);
  margin-bottom: 12px;
}

.collab-box p {
  margin-bottom: 0;
  line-height: 1.7;
}

/* Why Exhibit Section styles */
.why-exhibit-section {
  background: var(--cream);
  padding: 100px 0;
}

.why-exhibit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.exhibit-card {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exhibit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(29, 23, 20, 0.08);
}

.exhibit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(114, 47, 55, 0.08);
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.exhibit-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.exhibit-card p {
  font-size: 0.9rem;
  color: #4a4038;
  line-height: 1.5;
  margin: 0;
}

/* Simplified Registration elements styles */
.fee-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.fee-card {
  background: var(--cream-alt);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: border-color 0.25s ease;
}

.fee-card:hover {
  border-color: var(--amber);
}

.fee-role {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #72665c;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.fee-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--wine);
}

.deadline-box-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(114, 47, 55, 0.05);
  border: 1.5px dashed var(--wine);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  height: 100%;
}

.deadline-box-inline i {
  font-size: 1.8rem;
  color: var(--wine);
}

.deadline-box-inline div {
  font-size: 0.92rem;
  line-height: 1.4;
  color: #4a4038;
}


.sponsor-note {
  font-size: 14px;
  line-height: 1.5;
  color: #5f5f5f;
  text-align: center;
}

.sponsor-note a {
  color: var(--wine);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
}

.sponsor-note a:hover {
  color: var(--amber);
  border-color: var(--amber);
}

.sponsor-note a:first-of-type {
  display: inline-block;
  /* margin: 0 4px; */
}

.sponsor-note a:last-of-type {
  white-space: nowrap;
}

.exhibitor {
  padding: 12px;
}

.exhibitor ul {
  list-style: none;
}

.exhibitor ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.exhibitor ul li::before {
  content: "•";
  color: var(--wine);
  font-weight: bold;
  font-size: 1.25rem;
  position: absolute;
  left: 4px;
  top: -2px;
}

/* ============ REGISTRATION POPUP MODAL ============ */
/* Overlay Backdrop */
.event-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 26, 24, 0.6);
  /* Soft dark warm overlay */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 20px;
}

/* Active state for overlay */
.event-popup-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Popup Main Card */
.event-popup-card {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 25px 60px rgba(34, 26, 24, 0.25);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

/* Scale up and bounce slightly on show */
.event-popup-overlay.show .event-popup-card {
  transform: scale(1) translateY(0);
}

/* Close Button Style */
.event-popup-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(114, 47, 55, 0.05);
  border: none;
  color: var(--wine);
  font-size: 28px;
  line-height: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 10;
}

.event-popup-close:hover {
  background: var(--wine);
  color: #ffffff;
  transform: rotate(90deg);
}

/* Popup Body Contents */
.event-popup-body {
  padding: 40px 32px 36px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* SVG Icon Container with subtle animation */
.event-popup-icon-wrap {
  width: 84px;
  height: 84px;
  background: rgba(114, 47, 55, 0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(114, 47, 55, 0.1);
  animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(114, 47, 55, 0.1);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(114, 47, 55, 0);
  }
}

.event-popup-svg {
  width: 50px;
  height: 50px;
}

/* Eyebrow Label */
.event-popup-eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 8px;
}

/* Main Title */
.event-popup-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--wine);
  line-height: 1.3;
  margin-bottom: 12px;
}

/* Date and Time Line */
.event-popup-date {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream-alt);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(114, 47, 55, 0.08);
}

.event-popup-date i {
  color: var(--wine);
}

/* Description text */
.event-popup-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: #554a42;
  margin-bottom: 24px;
}

/* Call To Action (Register button) */
.event-popup-cta {
  font-family: var(--font-display);
  background: var(--wine);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  width: 100%;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 5px 15px rgba(114, 47, 55, 0.2);
}

.event-popup-cta:hover {
  background: var(--wine-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(114, 47, 55, 0.3);
}

/* Responsiveness adjustments */
@media (max-width: 480px) {
  .event-popup-body {
    padding: 35px 20px 25px 20px;
  }

  .event-popup-title {
    font-size: 1.4rem;
  }
}