/* detail.css — Event Detail Page Styles */

/* ============================================================
   CSS VARIABLES  (aligned with EducationDetail design tokens)
   ============================================================ */
:root {
  --acec-gold: #F7C95D;
  --acec-gold-dark: #e09a10;
  --acec-gold-hover: #FFD579;
  --acec-navy: #213138;
  --acec-dark: #213138;
  --acec-gray: #4a575d;
  --acec-light-gray: #e9ecef;
  --acec-muted: #adb5bd;
  --acec-bg: #fff;
  --acec-border: #dee2e6;
  --acec-border-light: #DED9CC;
  --acec-success: #28a745;
  --acec-danger: #dc3545;
  --acec-info: #17a2b8;
  --acec-warning: #e09a10;
  --white: #ffffff;
  --white-80: rgba(255, 255, 255, 0.8);

  --font-main: 'Inter', Arial, sans-serif;
  --font-title: 'Playfair Display', serif;
  --font-btn: 'Raleway', sans-serif;

  --fs-xs: 0.7rem;
  --fs-sm: 0.8rem;
  --fs-100: 0.875rem;
  --fs-200: 0.9rem;
  --fs-base: 1rem;

  --fw-normal: 400;
  --fw-semibold: 600;
  --fw-bold: 700;

  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --border-width: 1.5px;
  --border-width-thin: 1px;

  --acec-shadow-card: 0 2px 5px rgba(0, 0, 0, 0.05);
  --acec-shadow: 0 2px 8px rgba(33, 49, 56, 0.06);
  --acec-shadow-hover: 0 6px 24px rgba(33, 49, 56, 0.13);
  --transition-fast: all 0.15s ease;
}

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

body {
  font-family: var(--font-main);
  color: var(--acec-dark);
  background: #f8f9fa;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================================
   BACK BUTTON  (mirrors .btn-back in EducationDetail.css exactly)
   ============================================================ */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  text-decoration: none !important;
  border-radius: var(--radius-md) !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.btn-back:hover {
  background-color: #fff !important;
  color: var(--acec-navy) !important;
  text-decoration: none !important;
  border: var(--bs-btn-border-width) solid var(--acec-gold) !important;
}

.btn-back:focus,
.btn-back:active {
  border-color: var(--acec-gold) !important;
  background-color: #fff !important;
  color: var(--acec-navy) !important;
  box-shadow: 0 0 0 0.2rem rgba(247, 201, 93, 0.15) !important;
  outline: none;
}

.btn-back i {
  font-size: 1rem;
}

/* ============================================================
   HERO BANNER  (aligned with .hero-banner in EducationDetail.css)
   ============================================================ */
.hero {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 195px;
  margin-bottom: 1.5rem;
}

.hero img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  display: block;
}

/* No-logo placeholder — navy-to-gray gradient fills the hero area */
.hero--placeholder {
  background: linear-gradient(135deg, var(--acec-navy) 0%, #3a5260 60%, #4a6272 100%);
  min-height: 225px;
}

.hero--placeholder .hero-overlay {
  background: linear-gradient(to top, rgba(33, 49, 56, 0.92) 0%, rgb(33 49 56 / 68%) 50%, rgba(33, 49, 56, 0.15) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(
    to top,
    rgba(33, 49, 56, 0.92) 0%,
    rgba(33, 49, 56, 0.5) 50%,
    rgba(33, 49, 56, 0.15) 100%
  );
}

/* Badge: event-type — lives inside .hero-banner-badge-row (no longer absolutely positioned) */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: var(--acec-gold-dark);
  color: #000;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.025em;
  padding: 0.25em 0.5em 0.1em 0.5em;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(33, 49, 56, 0.1);
  flex-shrink: 0;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2rem 1.5rem;
}

.hero-content h2 {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  color: var(--white);
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.hero-content p {
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--white-80);
  margin: 0;
  max-width: 700px;
  line-height: 1.5;
}

/* ============================================================
   TAB NAVIGATION  (mirrors .detail-tabs-nav / .detail-tab-btn in EducationDetail.css)
   ============================================================ */
.tabs-nav {
  background: #fff;
  margin-bottom: 1.5rem;
}

.tabs-nav .nav-tabs {
  border-bottom: none;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tabs-nav .nav-tabs::-webkit-scrollbar {
  display: none;
}

.tabs-list {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tabs-list::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  background: none !important;
  border: none !important;
  border-bottom: 3px solid transparent !important;
  border-radius: 0.15rem !important;
  padding: 10px 20px;
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: var(--fw-semibold);
  color: #6c757d;
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tab-btn i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.tab-btn:hover {
  color: var(--acec-navy);
  border-bottom-color: transparent !important;
  background: none !important;
}

.tab-btn.active {
  color: var(--acec-navy) !important;
  border-bottom: 3.5px solid var(--acec-gold) !important;
  font-weight: var(--fw-bold);
  background: none !important;
}

/* ============================================================
   OVERVIEW LAYOUT  (Bootstrap row/col handles the grid)
   ============================================================ */
.overview-description {
  font-family: var(--font-main);
  font-size: 0.95rem;
  line-height: inherit;
  color: var(--acec-navy);
  margin-bottom: 2rem;
}

.overview-description p {
  margin-bottom: 1rem;
}

.overview-description p:last-child {
  margin-bottom: 0;
}

.highlights-card {
  background: var(--white);
  border: 1px solid var(--acec-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.highlights-card h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  color: var(--acec-navy);
  margin: 0 0 1rem 0;
}

.highlight-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.highlight-item:last-child {
  margin-bottom: 0;
}

.highlight-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-item p {
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--acec-gray);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   DETAIL CARD  (mirrors .detail-card in EducationDetail.css)
   ============================================================ */
.detail-card {
  border: 1px solid var(--acec-border) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--acec-shadow-card);
}

.detail-card-heading {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  color: var(--acec-navy);
  margin-bottom: 1rem;
}

/* Sidebar info rows  (mirrors EducationDetail.css .sidebar-info-row) */
.sidebar-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.sidebar-info-row:last-of-type {
  margin-bottom: 0;
}

.sidebar-info-icon {
  color: var(--acec-gold-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: -1px;
}

.sidebar-info-text {
  font-family: var(--font-main);
  font-size: 0.9rem;
}

.sidebar-info-text .main-text {
  font-weight: var(--fw-semibold);
  color: var(--acec-navy);
  display: block;
}

.sidebar-info-text .sub-text {
  color: var(--acec-gray);
  font-size: 0.85rem;
  display: block;
  margin-top: 0.2rem;
}

/* Register / Purchase button  (mirrors .btn-purchase in EducationDetail.css) */
.btn-purchase {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.5rem 1.5rem;
  background: var(--acec-gold) !important;
  border: var(--border-width) solid var(--acec-gold) !important;
  color: var(--acec-navy) !important;
  font-family: var(--font-btn);
  font-size: 0.9rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  gap: 0.5rem;
  margin-top: 1rem;
  transition: opacity 0.2s;
  text-decoration: none;
}

.btn-purchase:hover {
  opacity: 0.85;
  color: var(--acec-navy);
  text-decoration: none;
}

/* ============================================================
   BUTTONS  (aligned with EducationDetail.css btn-purchase / btn-back)
   ============================================================ */

/* Primary gold action button */
.btn-gold {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: var(--acec-gold);
  border: var(--border-width) solid var(--acec-gold);
  color: var(--acec-navy);
  font-family: var(--font-btn);
  font-size: var(--fs-200);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  min-height: 42px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-gold:hover {
  opacity: 0.85;
  color: var(--acec-navy);
  text-decoration: none;
}

.btn-gold-lg {
  font-size: 0.95rem;
  min-height: 44px;
}

/* Outlined gold button */
.btn-outline {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: transparent;
  border: var(--border-width) solid var(--acec-gold);
  color: var(--acec-navy);
  font-family: var(--font-btn);
  font-size: var(--fs-200);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  min-height: 42px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-outline:hover {
  background-color: #fff;
  color: var(--acec-navy);
  border-color: var(--acec-gold);
  text-decoration: none;
}


/* Action link (text-style, no border) */
.action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  padding: 0.35rem 0;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: var(--fw-semibold);
  color: var(--acec-navy);
  text-decoration: none;
  text-align: left;
  transition: var(--transition-fast);
}

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

.action-link svg {
  color: var(--acec-gold-dark);
  flex-shrink: 0;
}

/* ============================================================
   EVENT LEARNING BULLET
   ============================================================ */
.highlight-bullet {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

/* When used as first child in .highlight-item row, no extra bottom margin needed */
.highlight-item > .highlight-bullet {
  margin-bottom: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-bullet i {
  color: var(--acec-gold-dark);
  flex-shrink: 0;
  font-size: 0.75rem;
  line-height: inherit;
  margin-top: 2px;
}

.highlight-bullet .text-gold {
  color: var(--acec-gold);
}

/* ============================================================
   REGISTRATION RATES TABLE
   ============================================================ */
.rates-card {
  background: var(--white);
  border: var(--border-width-thin) solid var(--acec-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 2rem;
}

.rates-card h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  color: var(--acec-navy);
  margin: 0 0 1rem 0;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-main);
  font-size: 0.88rem;
}

.rates-table th {
  background: var(--acec-navy);
  color: var(--white);
  font-weight: var(--fw-bold);
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 2px solid var(--acec-navy);
}

.rates-table th.right {
  text-align: right;
  white-space: nowrap;
}

.rates-table td {
  padding: 0.6rem 0.85rem;
  color: var(--acec-dark);
  border-bottom: var(--border-width-thin) solid var(--acec-border);
}

.rates-table td.right {
  text-align: right;
  font-weight: var(--fw-semibold);
  white-space: nowrap;
}

.rates-table tr:nth-child(even) {
  background: var(--acec-light-gray);
}

.rates-footnote {
  font-family: var(--font-main);
  font-size: 0.8rem;
  color: var(--acec-muted);
  line-height: 1.5;
  margin: 0.85rem 0 0 0;
  font-style: italic;
}

/* ============================================================
   SCHEDULE TAB
   ============================================================ */
.schedule-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.view-toggle {
  display: inline-flex;
  border-radius: var(--radius-md);
  border: var(--border-width-thin) solid var(--acec-border);
  overflow: hidden;
  background: #f8f9fa;
}

.view-toggle button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: var(--fw-semibold);
  font-size: 0.82rem;
  transition: all 0.2s;
}

.view-toggle button.active {
  background: var(--acec-navy);
  color: var(--white);
}

.view-toggle button:not(.active) {
  background: transparent;
  color: var(--acec-gray);
}

.view-toggle button + button {
  border-left: var(--border-width-thin) solid var(--acec-border);
}

.track-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: var(--border-width) solid var(--acec-border);
  border-radius: 9999px;
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: var(--fw-semibold);
  font-size: 0.82rem;
  color: var(--acec-navy);
  transition: all 0.2s;
  position: relative;
}

.track-filter-btn.has-active {
  border-color: var(--acec-gold);
  background: rgba(247, 201, 93, 0.08);
}

.track-dropdown {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  z-index: 100;
  background: var(--white);
  border: var(--border-width-thin) solid var(--acec-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  min-width: 220px;
  max-height: 320px;
  overflow-y: auto;
  padding: 0.35rem 0;
  display: none;
}

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

.track-dropdown label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.82rem;
  color: var(--acec-dark);
  transition: background 0.15s;
}

.track-dropdown label:hover {
  background: #f8f9fa;
}

.track-dropdown label.checked {
  background: rgba(247, 201, 93, 0.08);
}

.track-dropdown input {
  accent-color: var(--acec-gold);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.track-clear {
  width: 100%;
  padding: 0.5rem 0.85rem;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: var(--fw-semibold);
  color: var(--acec-danger);
  text-align: left;
  border-bottom: 1px solid #eee;
}

.search-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.search-wrap svg.search-icon {
  position: absolute;
  left: 0.75rem;
  color: var(--acec-gray);
  pointer-events: none;
}

.search-wrap input {
  padding: 0.5rem 2rem 0.5rem 2.1rem;
  border: var(--border-width) solid var(--acec-border);
  border-radius: 9999px;
  background: var(--white);
  font-family: var(--font-main);
  font-size: 0.82rem;
  color: var(--acec-navy);
  outline: none;
  width: 220px;
  transition: all 0.2s;
}

.search-wrap input.has-value {
  border-color: var(--acec-gold);
  background: rgba(247, 201, 93, 0.08);
}

.search-wrap .clear-search {
  position: absolute;
  right: 0.6rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
}

.day-tabs {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}

.day-tabs::-webkit-scrollbar {
  display: none;
}

.day-tab {
  background: transparent;
  color: var(--acec-navy);
  border: var(--border-width-thin) solid var(--acec-border);
  border-radius: var(--radius-md);
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: var(--fw-semibold);
  font-size: 0.88rem;
  white-space: nowrap;
  transition: all 0.2s;
}

.day-tab:hover {
  background: #f0f1f3;
}

.day-tab.active {
  background: var(--acec-navy);
  color: #fff;
  border-color: var(--acec-navy);
}

.schedule-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: var(--border-width-thin) solid #eee;
  align-items: flex-start;
  transition: background 0.15s;
}

.schedule-item:hover {
  background: #fafbfc;
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-time {
  min-width: 120px;
  max-width: 140px;
  flex-shrink: 0;
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: #6c757d;
  padding-top: 0.1rem;
  line-height: 1.5;
}

.schedule-content {
  flex: 1;
  min-width: 0;
}

.schedule-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.schedule-title {
  font-family: var(--font-main);
  font-weight: var(--fw-semibold);
  font-size: 0.95rem;
  color: var(--acec-navy);
  line-height: 1.4;
}

.session-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  background: var(--acec-gold);
  color: var(--acec-navy);
  font-size: 0.65rem;
  font-weight: var(--fw-bold);
  font-family: var(--font-main);
  text-transform: uppercase;
  border-radius: 9999px;
  padding: 0.15em 0.55em;
  line-height: 1.4;
  flex-shrink: 0;
}

.schedule-desc {
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: #4a575d;
  margin: 0.25rem 0 0 0;
  line-height: 1.55;
}

.schedule-meta {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.35rem;
  font-family: var(--font-main);
  font-size: 0.8rem;
  color: #9ca3af;
}

.schedule-meta + .schedule-meta {
  margin-top: 0.2rem;
}

/* Calendar add button — aligned with .btn-class-expand in EducationDetail.css */
.cal-btn {
  flex-shrink: 0;
  background: none;
  border: var(--border-width-thin) solid var(--acec-border);
  border-radius: var(--radius-sm);
  padding: 0.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  transition: border-color 0.2s, color 0.2s;
}

.cal-btn:hover {
  border-color: var(--acec-gold-dark);
  color: var(--acec-gold-dark);
}

.day-heading {
  font-family: var(--font-title);
  font-weight: var(--fw-bold);
  font-size: 1.1rem;
  color: var(--acec-navy);
  margin: 0 0 0.75rem 0;
}

.schedule-card {
  background: var(--white);
  border: var(--border-width-thin) solid var(--acec-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.no-results {
  padding: 1.5rem;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--acec-muted);
  text-align: center;
}

/* All Days View */
.all-days-layout {
  display: flex;
  gap: 1rem;
}

.all-days-nav {
  position: sticky;
  top: 12rem;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.day-anchor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius-md);
  border: var(--border-width) solid var(--acec-border);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  min-width: 54px;
}

.day-anchor.active {
  border-width: 2px;
}

.day-anchor .dn {
  font-family: var(--font-main);
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  line-height: 1.2;
}

.day-anchor .dd {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: var(--fw-bold);
  color: var(--acec-navy);
  line-height: 1.1;
}

.day-anchor .dm {
  font-family: var(--font-main);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--acec-muted);
  text-transform: uppercase;
  line-height: 1.2;
}

.all-day-section {
  scroll-margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.all-day-header {
  font-family: var(--font-title);
  font-weight: var(--fw-bold);
  font-size: 1.05rem;
  color: var(--acec-navy);
  margin: 0 0 0.5rem 0;
  padding: 0.5rem 0;
}

@media (max-width: 640px) {
  .all-days-nav { display: none !important; }
  .schedule-item { flex-wrap: wrap; }
  .schedule-time { min-width: 100% !important; max-width: 100% !important; padding-bottom: 0.15rem; }
}

/* ============================================================
   SPEAKERS TAB  (aligned with EducationDetail.css speaker styles)
   ============================================================ */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

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

.speaker-card {
  position: relative;
  background: var(--white);
  border: var(--border-width-thin) solid var(--acec-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--acec-shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.speaker-card:hover {
  box-shadow: var(--acec-shadow-hover);
  transform: translateY(-2px);
}

/* Type badge — aligned with .speaker-type-badge in EducationDetail.css */
.speaker-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--acec-gold);
  color: var(--acec-navy);
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  border-radius: 20px;
  padding: 0.2rem 0.55rem;
}

/* Initials avatar — aligned with .speaker-initials-wrap in EducationDetail.css */
.speaker-initials {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--acec-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: var(--acec-navy);
}

.speaker-card h4 {
  font-family: var(--font-title);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  color: var(--acec-navy);
  margin: 0 0 0.25rem 0;
}

.speaker-card .speaker-title {
  font-family: var(--font-main);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-100);
  color: var(--acec-gold-dark);
  margin: 0 0 0.15rem 0;
}

.speaker-card .speaker-org {
  font-family: var(--font-main);
  font-size: 0.83rem;
  color: var(--acec-gray);
  margin: 0 0 0.75rem 0;
}

/* Bio toggle — aligned with .speaker-bio-toggle in EducationDetail.css */
.bio-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.83rem;
  font-weight: var(--fw-semibold);
  color: var(--acec-gold-dark);
  padding: 0.25rem 0;
  margin-top: auto;
  padding-top: 1rem;
  text-decoration: none;
  transition: color 0.2s;
}

.bio-toggle:hover {
  text-decoration: underline;
  color: var(--acec-gold-dark);
}

/* Bio text — aligned with .speaker-bio-content in EducationDetail.css */
.bio-text {
  width: 100%;
  border-top: var(--border-width-thin) solid var(--acec-border);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  text-align: left;
  font-family: var(--font-main);
  font-size: 0.8rem;
  color: var(--acec-gray);
  line-height: 1.6;
}

/* ============================================================
   HOTEL & TRAVEL TAB
   ============================================================ */
.hotel-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
  align-items: start;
}

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

.hotel-subtabs {
  border-bottom: var(--border-width-thin) solid var(--acec-border);
  display: flex;
  gap: 0.15rem;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 1.5rem;
}

.hotel-subtabs::-webkit-scrollbar {
  display: none;
}

.hotel-subtab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 10px 20px;
  background: none;
  border: none;
  border-bottom: 3.5px solid transparent;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: var(--fs-200);
  font-weight: var(--fw-semibold);
  color: #6c757d;
  transition: var(--transition-fast);
  white-space: nowrap;
  margin-bottom: -1px;
  border-radius: 0.15rem;
}

.hotel-subtab:hover {
  color: var(--acec-navy);
}

.hotel-subtab.active {
  color: var(--acec-navy);
  font-weight: var(--fw-bold);
  border-bottom-color: var(--acec-gold);
}

.rate-card {
  background: var(--white);
  border: var(--border-width-thin) solid var(--acec-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Accordion button — aligned with hotel section pattern */
.hotel-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  background: none;
  border: none;
  border-bottom: var(--border-width-thin) solid var(--acec-border);
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: var(--fw-semibold);
  color: var(--acec-navy);
}

.hotel-accordion-btn svg {
  color: var(--acec-gold-dark);
  transition: transform 0.2s ease;
}

.hotel-accordion-btn.open svg {
  transform: rotate(180deg);
}

.hotel-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.hotel-accordion-content.open {
  max-height: 500px;
}

.hotel-accordion-content p {
  font-family: var(--font-main);
  font-size: 0.88rem;
  color: var(--acec-dark);
  line-height: 1.6;
  padding: 0.5rem 0 0.75rem 0;
  margin: 0;
}

/* Book button — aligned with .btn-purchase in EducationDetail.css */
.book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  background: var(--acec-gold);
  border: var(--border-width) solid var(--acec-gold);
  color: var(--acec-navy);
  font-family: var(--font-btn);
  font-size: 0.95rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.book-btn:hover {
  opacity: 0.85;
  color: var(--acec-navy);
  text-decoration: none;
}

.hotel-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 140px 90px;
  gap: 0.35rem;
}

.hotel-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.hotel-photo-grid img:first-child {
  grid-column: 1 / -1;
}

/* ============================================================
   MEDIA TAB  (aligned with EducationDetail.css media styles)
   ============================================================ */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

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

.photo-card {
  padding: 1rem 1.25rem;
  background: var(--white);
  border: var(--border-width-thin) solid var(--acec-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--acec-shadow);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.photo-card:hover {
  box-shadow: var(--acec-shadow-hover);
  transform: translateY(-2px);
}

.photo-card .label {
  margin-bottom: 0.5rem;
  font-family: var(--font-main);
  font-weight: var(--fw-semibold);
  font-size: 0.85rem;
  color: var(--acec-navy);
}

.photo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* ── Podcast list ── */
.podcast-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.podcast-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.125rem;
  background: var(--white);
  border: var(--border-width-thin) solid var(--acec-border);
  border-radius: var(--radius-md);
  box-shadow: var(--acec-shadow);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.podcast-card:hover {
  box-shadow: var(--acec-shadow-hover);
  transform: translateY(-1px);
  border: var(--border-width-thin) solid var(--acec-border) !important;
  text-decoration: none;
  color: inherit;
}

.podcast-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.podcast-card__title {
  font-family: var(--font-main);
  font-weight: var(--fw-semibold);
  font-size: 0.9rem;
  color: var(--acec-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.podcast-card__host {
  font-size: 0.775rem;
  color: var(--acec-text-muted, #6b7280);
}

.podcast-card__arrow {
  flex-shrink: 0;
  color: var(--acec-text-muted, #9ca3af);
  transition: color 0.2s ease;
}

.podcast-card:hover .podcast-card__arrow {
  color: var(--acec-gold);
}

/* ── Video grid ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

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

.video-card {
  background: var(--white);
  border: var(--border-width-thin) solid var(--acec-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.video-card .label {
  margin-bottom: 0.5rem;
  font-family: var(--font-main);
  font-weight: var(--fw-semibold);
  font-size: 0.9rem;
  color: var(--acec-navy);
}

.video-card .embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.section-heading svg,
.section-heading i {
  color: var(--acec-navy);
  font-size: 1.15rem;
  line-height: 1;
}

.section-heading h3 {
  font-family: var(--font-title);
  font-weight: var(--fw-bold);
  font-size: 1.15rem;
  color: var(--acec-navy);
  margin: 0;
}

.tab-intro {
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--acec-gray);
  margin-bottom: 1.5rem;
}

/* ============================================================
   SPONSORSHIP TAB  (aligned with EducationDetail.css sponsorship styles)
   ============================================================ */
.sponsor-tier {
  margin-bottom: 2.5rem;
  text-align: center;
}

.sponsor-tier h3 {
  font-family: var(--font-title);
  font-weight: var(--fw-bold);
  font-size: 1.5rem;
  color: var(--acec-gold-dark);
  margin: 0 0 0.35rem 0;
}

.sponsor-tier .tier-desc {
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--acec-gray);
  margin: 0 0 1.25rem 0;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

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

.sponsor-logo-card {
  background: var(--white);
  border: var(--border-width-thin) solid var(--acec-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  box-shadow: var(--acec-shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.sponsor-logo-card:hover {
  box-shadow: var(--acec-shadow-hover);
  transform: translateY(-2px);
}

.sponsor-logo-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.sponsor-logo-card span {
  font-family: var(--font-main);
  font-weight: var(--fw-semibold);
  font-size: 0.95rem;
  color: var(--acec-navy);
  text-align: center;
}

/* ============================================================
   TESTIMONIALS TAB  (aligned with EducationDetail.css testimonial styles)
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.testimonial-card {
  background: var(--white);
  border: var(--border-width-thin) solid var(--acec-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--acec-shadow);
  transition: box-shadow 0.2s;
}

.testimonial-card:hover {
  box-shadow: var(--acec-shadow-hover);
}

.testimonial-header {
  margin-bottom: 0.75rem;
}

/* ============================================================
   FAQs TAB  (aligned with EducationDetail.css FAQ styles)
   ============================================================ */
.faq-item {
  border-bottom: var(--border-width-thin) solid var(--acec-border);
}

/* FAQ question button — aligned with .faq-question-btn in EducationDetail.css */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--acec-navy);
  border: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-family: var(--font-main);
  font-weight: var(--fw-semibold);
  font-size: 0.95rem;
  color: #fff;
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #1a262c;
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-question.open svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  background: #f8f9fa;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.65;
  transition-timing-function: cubic-bezier(0.4, 0, 0.53, 0.99);
  transition-duration: 200ms;
}

.faq-answer.open {
  max-height: 600px;
  padding: 1rem 1.25rem;
}

.faq-answer p {
  margin: 0;
}

/* ============================================================
   SIDEBAR SPEAKERS CARD
   ============================================================ */
.sidebar-speakers-card {
  background: var(--white);
  border: var(--border-width) solid var(--acec-border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--acec-shadow-card);
}

.sidebar-speakers-card h4 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  color: var(--acec-navy);
  margin: 0 0 1rem 0;
}

.sidebar-speaker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.sidebar-speaker:last-child {
  margin-bottom: 0;
}

/* Initials avatar — aligned with .sidebar-speaker-initials in EducationDetail.css */
.sidebar-speaker .initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--acec-gold);
  color: var(--acec-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

.sidebar-speaker .name {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: var(--fw-semibold);
  color: var(--acec-navy);
  display: block;
  line-height: 1.3;
}

.sidebar-speaker .org {
  font-family: var(--font-main);
  font-size: 0.78rem;
  color: var(--acec-gray);
  display: block;
  line-height: 1.3;
}

/* ============================================================
   PHOTO LIGHTBOX  (aligned with .edu-lightbox in EducationDetail.css)
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

/* Lightbox close — aligned with .edu-lightbox-close in EducationDetail.css */
.lightbox-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.1);
}

.lightbox-caption {
  font-family: var(--font-main);
  font-size: var(--fs-100);
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
  text-align: center;
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

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

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #6c757d;
  padding: 0.25rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .tab-intro,
  .event-description { font-size: 0.85rem; }

  .testimonial-card { padding: 1rem; }
  .testimonial-name { font-size: 0.85rem; }
  .testimonial-meta { font-size: 0.7rem; }
  .testimonial-text { font-size: 0.8rem; }

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

@media (max-width: 768px) {
  .container { padding: 1.5rem 1rem; }

  .hero-content h2 { font-size: 1.3rem; }
  .hero-content p  { font-size: 0.85rem; }

  /* Hide text on inactive tabs — icon only, mirrors EducationDetail mobile behavior */
  .tabs-nav .tab-btn:not(.active) .tab-text { display: none !important; }
  .tabs-nav .tab-btn.active .tab-text { display: inline !important; margin-left: 0.35rem; font-size: 1.05rem; }
  .tabs-nav .tab-btn i { font-size: 1.35rem; margin-right: 0; display: inline-block; }
  .tabs-nav .tab-btn.active i { margin-right: 0.35rem; font-size: 1.35rem; }
  .tabs-nav .tab-btn:not(.active) { padding: 10px; min-width: 44px; justify-content: center; }
  .tabs-nav .tab-btn.active { padding: 10px 14px; }
  .tabs-nav .tab-btn { gap: 0; }
  .tabs-nav .nav-item { flex-shrink: 0; margin-right: 0.5rem; }
  .tabs-nav .nav-item:last-child { margin-right: 0; }

  .rates-table th, .rates-table td { padding: 0.5rem 0.65rem; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 1.25rem; }
  .testimonial-name { font-size: 0.9rem; }
  .testimonial-meta { font-size: 0.75rem; }
  .testimonial-text { font-size: 0.85rem; }

  .event-description { font-size: 0.8rem; }
  .tab-intro { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .hero-content h2 { font-size: 1.15rem; }

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

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

  .testimonial-card { padding: 0.9rem; }
  .testimonial-name { font-size: 0.8rem; }
  .testimonial-meta { font-size: 0.65rem; }
  .testimonial-text { font-size: 0.75rem; }

  .event-description { font-size: 0.75rem; }
  .tab-intro { font-size: 0.75rem; }
}

/* ============================================================
   MODAL INNER CONTENT  (replaces inline styles in detail.html)
   ============================================================ */
.modal-title {
  font-family: var(--font-title);
  font-weight: var(--fw-bold);
  font-size: 1.15rem;
  color: var(--acec-navy);
  margin: 0 0 0.5rem 0;
}

.modal-subtitle {
  font-family: var(--font-main);
  font-size: 0.88rem;
  color: var(--acec-muted);
  margin: 0 0 1.25rem 0;
}

.modal-btn-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-cal-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.modal-cal-title {
  font-family: var(--font-title);
  font-weight: var(--fw-bold);
  font-size: 1.15rem;
  color: var(--acec-navy);
  margin: 0;
}

.modal-cal-subtitle {
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: #6c757d;
  margin: 0 0 1.25rem 0;
}

.modal-cal-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.modal-cal-info {
  background: #f8f9fa;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
}

/* ============================================================
   RATES TABLE WRAPPER  (replaces overflow-x:auto inline)
   ============================================================ */
.rates-table-wrap {
  overflow-x: auto;
}

/* ============================================================
   HOTEL TAB — outer wrapper, panel, address block, photo wrap
   ============================================================ */
.hotel-tab-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hotel-panel {
  background: var(--white);
  border: var(--border-width-thin) solid var(--acec-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.hotel-desc {
  font-family: var(--font-main);
  font-size: 0.92rem;
  color: var(--acec-dark);
  line-height: 1.7;
  margin: 0 0 1.25rem 0;
}

.hotel-rate-price {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--acec-navy);
}

.hotel-rate-deadline {
  font-family: var(--font-main);
  font-size: 0.88rem;
  color: var(--acec-dark);
  line-height: 1.5;
  margin-top: 0.5rem;
}

.hotel-rate-checkinout {
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: var(--acec-muted);
  margin-top: 0.5rem;
}

.hotel-dest-fee {
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: var(--acec-muted);
  margin-top: 0.5rem;
}

.hotel-address-block {
  border: var(--border-width-thin) solid var(--acec-border);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.hotel-address-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.hotel-address-icon {
  color: var(--acec-gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.hotel-address-text {
  font-family: var(--font-main);
  font-size: 0.88rem;
  line-height: 1.5;
}

.hotel-phone-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.hotel-phone-icon {
  color: var(--acec-gold-dark);
  flex-shrink: 0;
}

.hotel-phone-text {
  font-family: var(--font-main);
  font-size: 0.85rem;
}

.hotel-photos-wrap {
  margin-top: 1rem;
}

.hotel-single-photo {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.hotel-travel-panel {
  background: var(--white);
  border: var(--border-width-thin) solid var(--acec-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.hotel-travel-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--acec-navy);
  margin: 0 0 1rem 0;
}

.hotel-travel-text {
  font-family: var(--font-main);
  font-size: 0.92rem;
  color: var(--acec-dark);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   ALL-DAYS LAYOUT — content column flex wrapper
   ============================================================ */
.all-days-content {
  flex: 1;
  min-width: 0;
}

/* ============================================================
   TRACK FILTER WRAP
   ============================================================ */
.track-filter-wrap {
  position: relative;
  display: inline-flex;
}

/* ============================================================
   FAQ ASK FORM — INPUT OVERRIDES
   ============================================================ */
.faq-ask-heading {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  color: #fff;
}

.faq-ask-sub {
  font-family: var(--font-main);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.faq-form-label {
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: var(--fw-semibold);
  color: var(--acec-navy);
}

.faq-input {
  border-radius: var(--radius-md) !important;
}

.faq-input::placeholder {
  color: #6b7280 !important;
  opacity: 1;
}

.faq-submit-btn {
  background: var(--acec-navy) !important;
  color: #fff;
  font-family: var(--font-main);
  font-weight: var(--fw-bold);
  font-size: 0.88rem;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: var(--radius-md) !important;
  transition: background 0.2s, transform 0.15s;
}

.faq-submit-btn:hover,
.faq-submit-btn:focus {
  background: #1a262c !important;
  color: #fff;
}

.faq-submit-btn:active {
  background: #111d22 !important;
  color: #fff !important;
}

.faq-submit-btn:disabled,
.faq-submit-btn.disabled {
  color: #fff !important;
}
/* ============================================================
   FAQ CONTAINER
   ============================================================ */
.faq-container {
  background: var(--white);
  border: var(--border-width-thin) solid var(--acec-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* ============================================================
   FORM QUESTION GROUP  (replaces margin-bottom inline on question wrap)
   ============================================================ */
.form-question-wrap {
  margin-bottom: 1rem;
}

/* ============================================================
   VIDEO GRID — bottom margin
   ============================================================ */
.video-grid-section {
  margin-bottom: 2rem;
}

.media-section {
  margin-bottom: 2rem;
}

.media-section:last-child {
  margin-bottom: 0;
}

/* ============================================================
   TESTIMONIAL CARD INNER TEXT
   ============================================================ */
.testimonial-name {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  color: var(--acec-navy);
  margin-bottom: 0.15rem;
}

.testimonial-meta {
  font-family: var(--font-main);
  font-size: 0.8rem;
  color: var(--acec-gray);
  margin: 0;
}

.testimonial-text {
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--acec-gray);
  font-style: italic;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   CALENDAR OPTION BUTTON  (replaces full inline style in openCalModal)
   ============================================================ */
.cal-option-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--white);
  border: var(--border-width) solid var(--acec-gold-dark);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: var(--fw-semibold);
  font-size: 0.9rem;
  color: var(--acec-navy);
  transition: background 0.15s;
}

.cal-option-btn:hover {
  background: #fef9ee;
}

.cal-option-icon {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

/* ============================================================
   CALENDAR INFO PANEL  (replaces inline styles in openCalModal)
   ============================================================ */
.cal-info-title {
  font-family: var(--font-main);
  font-weight: var(--fw-semibold);
  font-size: 0.85rem;
  color: var(--acec-navy);
  margin: 0 0 0.25rem 0;
}

.cal-info-meta {
  font-family: var(--font-main);
  font-size: 0.8rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   SPONSOR LOGO FALLBACK  (hidden until img onerror fires)
   ============================================================ */
.sponsor-logo-fallback {
  display: none;
}

/* ============================================================
   HERO BANNER BADGE ROW  (registered indicator + event-type badge)
   ============================================================ */
.hero-banner-badge-row {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}

/* Type badge always sits at the far right regardless of registered badge visibility */
.hero-banner-badge-row .hero-badge {
  margin-left: auto;
}

.hero-banner-badge-row .ce-registered-badge,
.hero-banner-badge-row .hero-badge {
  pointer-events: auto;
}

/* Registered indicator — black disc with gold check */
.ce-registered-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  background: #000;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(33, 49, 56, 0.2);
  cursor: default;
  line-height: 1;
}

.ce-registered-badge__icon {
  color: var(--acec-gold-dark);
  font-size: 1.25rem;
  line-height: 1;
}

/* ============================================================
   REGISTRATION BUTTON VARIANTS
   ============================================================ */

/* Outline variant (used for Manage when single option) */
.btn-purchase--outline {
  background: transparent !important;
  border-color: var(--acec-gold) !important;
  color: var(--acec-navy) !important;
}

.btn-purchase--outline:hover {
  background: rgba(247, 201, 93, 0.12) !important;
  opacity: 1;
}

/* Disabled variant */
.btn-purchase--disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================================
   CE-STYLE REGISTRATION OPTIONS MODAL
   ============================================================ */
.ce-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  justify-content: center;
  align-items: center;
}

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

.ce-modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  position: relative;
}

.ce-modal-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--acec-navy);
  margin-bottom: 1rem;
}

.ce-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--acec-muted);
  line-height: 1;
}

.ce-modal-close:hover {
  color: var(--acec-navy);
}

/* Options container */
#detailRegModalOptions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Option card */
.ce-option-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--acec-border-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
}

.ce-option-card:hover {
  border-color: var(--acec-gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Manage option — pushed to bottom */
.ce-option-card--manage {
  order: 99;
}

.ce-option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(247, 201, 93, 0.15);
  color: var(--acec-gold-dark);
  flex-shrink: 0;
}

.ce-option-icon svg {
  width: 22px;
  height: 22px;
}

.ce-option-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--acec-navy);
  line-height: 1.3;
}

.ce-option-desc {
  font-size: 0.8rem;
  color: var(--acec-muted);
  margin-top: 0.15rem;
}

/* ============================================================
   BOOTH PERSONNEL VALIDATION MODAL
   ============================================================ */
.ce-booth-modal-desc {
  font-size: 0.9rem;
  color: var(--acec-gray);
  margin-bottom: 1.25rem;
  font-family: var(--font-main);
}

.ce-booth-error {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: var(--radius-sm);
  color: #856404;
  font-size: 0.875rem;
  font-family: var(--font-main);
  padding: 0.6rem 0.9rem;
  margin-bottom: 1rem;
}

.ce-booth-input-row {
  margin-bottom: 1.25rem;
}

.ce-booth-input {
  width: 100%;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--acec-border);
  padding: 0 1rem;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--acec-navy);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ce-booth-input:focus {
  border-color: var(--acec-gold);
  box-shadow: 0 0 0 3px rgba(247, 201, 93, 0.25);
}

.ce-booth-input::placeholder {
  color: var(--acec-muted);
  letter-spacing: normal;
}

.ce-booth-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.ce-booth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.15s ease;
}

.ce-booth-btn--outline {
  background-color: transparent;
  border-color: var(--acec-gold);
  color: var(--acec-navy);
  font-weight: 400;
}

.ce-booth-btn--outline:hover {
  background-color: var(--acec-gold);
  border-color: var(--acec-gold);
  color: var(--acec-navy);
}

.ce-booth-btn--filled {
  background-color: var(--acec-gold);
  border-color: var(--acec-gold);
  color: var(--acec-navy);
}

.ce-booth-btn--filled:hover {
  background-color: var(--acec-btn-hover-bg);
  border-color: var(--acec-btn-hover-bg);
  color: var(--acec-navy);
}

.ce-booth-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

