/* ================================================================
   IDSPS 2026 — Inner Pages Style Override
   Rules:
   1. Page/section backgrounds → UNTOUCHED (keep all dark gradients)
   2. Cards & boxes → WHITE background, DARK readable text
   3. Orbitron font → replaced by Inter on ALL inner pages
   ================================================================ */

/* ════════════════════════════════════════════════════════════════
   FONT OVERRIDE — Remove Orbitron everywhere except home
   Override the CSS variables so var(--font-display) = Inter
   ════════════════════════════════════════════════════════════════ */
body:not(.home-page) {
  --font-display: 'Inter', sans-serif;
  --font-primary: 'Inter', 'Exo 2', sans-serif;
  font-family: 'Inter', 'Exo 2', sans-serif !important;
}
body:not(.home-page) h1,
body:not(.home-page) h2,
body:not(.home-page) h3,
body:not(.home-page) h4,
body:not(.home-page) h5,
body:not(.home-page) h6 {
  font-family: 'Inter', sans-serif !important;
}
body:not(.home-page) p,
body:not(.home-page) span,
body:not(.home-page) li,
body:not(.home-page) td,
body:not(.home-page) label,
body:not(.home-page) button,
body:not(.home-page) input,
body:not(.home-page) select,
body:not(.home-page) textarea {
  font-family: 'Inter', 'Exo 2', sans-serif !important;
}

/* ════════════════════════════════════════════════════════════════
   SCROLL-REVEAL UTILITY
   ════════════════════════════════════════════════════════════════ */
.ip-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.ip-reveal.ip-visible { opacity: 1; transform: translateY(0); }
.ip-reveal-left {
  opacity: 0; transform: translateX(-20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.ip-reveal-left.ip-visible { opacity: 1; transform: translateX(0); }
.ip-reveal-scale {
  opacity: 0; transform: scale(0.94);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.ip-reveal-scale.ip-visible { opacity: 1; transform: scale(1); }
.ip-d1 { transition-delay: 0.06s !important; }
.ip-d2 { transition-delay: 0.12s !important; }
.ip-d3 { transition-delay: 0.18s !important; }
.ip-d4 { transition-delay: 0.24s !important; }
.ip-d5 { transition-delay: 0.30s !important; }
.ip-d6 { transition-delay: 0.36s !important; }

/* ════════════════════════════════════════════════════════════════
   EXHIBITOR PAGE
   ════════════════════════════════════════════════════════════════ */

/* Pricing cards — white body, keep colored header band on top */
body:not(.home-page) .pricing-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.16) !important;
}
body:not(.home-page) .pricing-card:hover {
  border-color: rgba(0,212,255,0.5) !important;
  box-shadow: 0 20px 50px rgba(0,212,255,0.18) !important;
}
body:not(.home-page) .pricing-card .card-body {
  background: #ffffff !important;
}
body:not(.home-page) .pricing-card .benefits-label {
  color: #64748b !important;
}
body:not(.home-page) .pricing-card .benefits-list li {
  color: #1e293b !important;
  border-bottom-color: #f1f5f9 !important;
}
body:not(.home-page) .pricing-card .benefits-list .icon-yes i { color: #10b981 !important; }
body:not(.home-page) .pricing-card .benefits-list .icon-no  i { color: #94a3b8 !important; }

/* Stat bar label on dark strip */
body:not(.home-page) .stat-bar-label { color: rgb(0 0 0 / 85%) !important;
    font-weight: 800; }

/* Exhibitor modal → white */
body:not(.home-page) .ex-modal-box {
  background: #ffffff !important;
  border-color: rgba(0,212,255,0.25) !important;
}
body:not(.home-page) .ex-modal-body { background: #ffffff !important; }
body:not(.home-page) .ex-modal-title {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
  background: none !important;
}
body:not(.home-page) .ex-modal-price {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
  background: none !important;
}
body:not(.home-page) .ex-pkg-item { color: #1e293b !important; border-bottom-color: #f1f5f9 !important; }
body:not(.home-page) .ex-pkg-summary { color: #1e293b !important; }
body:not(.home-page) .ex-form-section { background: #ffffff !important; }
body:not(.home-page) .ex-form-divider { border-color: #e2e8f0 !important; color: #64748b !important; }
body:not(.home-page) .ex-footnote { color: #64748b !important; }
body:not(.home-page) .ex-field label { color: #374151 !important; }
body:not(.home-page) .ex-field input,
body:not(.home-page) .ex-field select,
body:not(.home-page) .ex-field textarea {
  background: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  color: #1e293b !important;
}
body:not(.home-page) .ex-field input:focus,
body:not(.home-page) .ex-field select:focus,
body:not(.home-page) .ex-field textarea:focus {
  border-color: #00d4ff !important;
  background: #f0f9ff !important;
  box-shadow: 0 0 0 3px rgba(0,212,255,0.12) !important;
  outline: none !important;
}
body:not(.home-page) .ex-field input::placeholder,
body:not(.home-page) .ex-field textarea::placeholder { color: #94a3b8 !important; }
body:not(.home-page) .ex-field select option { background: #ffffff !important; color: #1e293b !important; }
body:not(.home-page) .ex-modal-close {
  color: #64748b !important; background: #f1f5f9 !important;
}
body:not(.home-page) .ex-modal-close:hover { background: #e2e8f0 !important; color: #0f172a !important; }
body:not(.home-page) .ex-success-box { background: #ffffff !important; }

/* ════════════════════════════════════════════════════════════════
   REGISTER PAGE
   ════════════════════════════════════════════════════════════════ */

/* Computed price card */
body:not(.home-page) .price-result-card {
  background: #ffffff !important;
  border: 2px solid rgba(0,212,255,0.35) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
}
body:not(.home-page) .price-result-card:hover {
  box-shadow: 0 16px 40px rgba(0,212,255,0.2) !important;
  border-color: rgba(0,212,255,0.55) !important;
}
body:not(.home-page) .price-result-card .prc-header { border-bottom-color: #e2e8f0 !important; }
body:not(.home-page) .price-result-card .prc-title  { color: #0f172a !important; }
body:not(.home-page) .price-result-card .prc-sub    { color: #64748b !important; }
body:not(.home-page) .prc-tag {
  background: #f1f5f9 !important;
  border-color: #e2e8f0 !important;
  color: #475569 !important;
}

/* Registration form card (multi-step) */
body:not(.home-page) .form-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1) !important;
}
/* body:not(.home-page) .form-field label { color: #374151 !important; }
body:not(.home-page) .form-field input,
body:not(.home-page) .form-field select,
body:not(.home-page) .form-field textarea {
  background: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  color: #1e293b !important;
} */
 body:not(.home-page) .form-field label { color: #374151 ; }
body:not(.home-page) .form-field input,
body:not(.home-page) .form-field select,
body:not(.home-page) .form-field textarea {
  background: #f8fafc ;
  border: 1.5px solid #e2e8f0 ;
  color: #1e293b ;
}
body:not(.home-page) .form-field input:focus,
body:not(.home-page) .form-field select:focus,
body:not(.home-page) .form-field textarea:focus {
  border-color: #00d4ff ;
  background: #f0f9ff ;
  box-shadow: 0 0 0 3px rgba(0,212,255,0.12) ;
  outline: none ;
}
body:not(.home-page) .form-field input::placeholder,
body:not(.home-page) .form-field textarea::placeholder { color: #414346 ; }
body:not(.home-page) .form-field select option { background: #ffffff !important; color: #1e293b !important; }
body:not(.home-page) .form-block-title { color: #0891b2 !important; }
body:not(.home-page) .form-block-divider {
  background: linear-gradient(90deg, rgba(0,212,255,0.25), transparent) !important;
}

/* Fee table */
body:not(.home-page) .aff-table-wrap {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
}
body:not(.home-page) .aff-table { background: #ffffff !important; }
body:not(.home-page) .aff-table tbody tr { border-bottom-color: #f1f5f9 !important; }
body:not(.home-page) .aff-table tbody tr:hover { background: #f8fafc !important; }
body:not(.home-page) .aff-table tbody tr.group-row { background: rgba(245,158,11,0.04) !important; }
body:not(.home-page) .aff-table td { color: #1e293b !important; }
body:not(.home-page) .aff-table td strong { color: #0f172a !important; }

/* Section/block headings on dark bg — stay white */
body:not(.home-page) .aff-section-head h2 { color: #ffffff !important; }
body:not(.home-page) .aff-section-head p   { color: rgba(160,174,192,0.85) !important; }
body:not(.home-page) .aff-block-head h3    { color: #ffffff !important; }
body:not(.home-page) .aff-block-head .aff-block-date { color: rgba(160,174,192,0.8) !important; }

/* Tab nav */
body:not(.home-page) .tab-nav-btn {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.12) !important;
  color: rgba(226,232,240,0.85) !important;
}
body:not(.home-page) .tab-nav-btn:hover {
  border-color: rgba(0,212,255,0.3) !important;
  color: #00d4ff !important;
}
body:not(.home-page) .tab-nav-btn.active {
  background: var(--gradient-tech) !important;
  color: #fff !important;
}

/* Step indicators */
body:not(.home-page) .step-item        { color: rgba(160,174,192,0.8) !important; }
body:not(.home-page) .step-item.active { color: #00d4ff !important; }
body:not(.home-page) .step-item.done   { color: #34d399 !important; }

/* ════════════════════════════════════════════════════════════════
   PAPER SUBMISSION PAGE
   ════════════════════════════════════════════════════════════════ */

/* Date cards */
body:not(.home-page) .date-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 3px 16px rgba(0,0,0,0.1) !important;
}
body:not(.home-page) .date-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.14) !important;
  border-color: rgba(0,212,255,0.3) !important;
}
body:not(.home-page) .date-card-event { color: #0f172a !important; font-weight: 700 !important; }
body:not(.home-page) .date-card-note  { color: #64748b !important; }

/* Track cards */
body:not(.home-page) .track-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
}
body:not(.home-page) .track-card:hover {
  border-color: rgba(0,212,255,0.35) !important;
  box-shadow: 0 8px 24px rgba(0,212,255,0.12) !important;
  background: #f0f9ff !important;
}
body:not(.home-page) .track-name { color: #0f172a !important; }
body:not(.home-page) .topic-chip {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(0,212,255,0.15) !important;
}

/* Guideline blocks */
body:not(.home-page) .guideline-block {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
}
body:not(.home-page) .guideline-list li { color: #1e293b !important; border-bottom-color: #f1f5f9 !important; }

/* Submission form card */
body:not(.home-page) .sub-form-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1) !important;
}

/* Form inputs in .fg class */
body:not(.home-page) .fg label { color: #374151 !important; }
body:not(.home-page) .fg input,
body:not(.home-page) .fg select,
body:not(.home-page) .fg textarea {
  background: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  color: #1e293b !important;
}
body:not(.home-page) .fg input:focus,
body:not(.home-page) .fg select:focus,
body:not(.home-page) .fg textarea:focus {
  border-color: rgba(0,212,255,0.5) !important;
  background: #f0f9ff !important;
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1) !important;
  outline: none !important;
}
body:not(.home-page) .fg input::placeholder { color: #94a3b8 !important; }
body:not(.home-page) .fg select option { background: #ffffff !important; color: #1e293b !important; }

/* Track radio cards */
body:not(.home-page) .track-radio-card {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
}
body:not(.home-page) .track-radio-card:hover { background: #f0f9ff !important; border-color: rgba(0,212,255,0.3) !important; }
body:not(.home-page) .track-radio-card.selected {
  background: rgba(0,212,255,0.06) !important;
  border-color: #00d4ff !important;
}
body:not(.home-page) .track-radio-label        { color: #475569 !important; }
body:not(.home-page) .track-radio-label strong { color: #0f172a !important; }

/* FAQ accordion */
body:not(.home-page) .faq-item {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07) !important;
}
body:not(.home-page) .faq-item.open { border-color: rgba(0,212,255,0.3) !important; }
body:not(.home-page) .faq-q { color: #0f172a !important; background: none !important;     padding: 17px;}
body:not(.home-page) .faq-q:hover { color: #0891b2 !important; }
body:not(.home-page) .faq-a p { color: #374151 !important; }

/* Upload zone */
body:not(.home-page) .upload-zone {
  background: #f8fafc !important;
  border-color: rgba(0,212,255,0.25) !important;
}
body:not(.home-page) .upload-zone h4 { color: #0f172a !important; }
body:not(.home-page) .upload-zone p  { color: #64748b !important; }

/* Review table */
body:not(.home-page) .review-table { background: #f8fafc !important; }
body:not(.home-page) .review-table tr { border-bottom-color: #e2e8f0 !important; }
body:not(.home-page) .review-table td { color: #1e293b !important; }
body:not(.home-page) .review-table td:first-child { color: #64748b !important; }

/* ════════════════════════════════════════════════════════════════
   AGENDA PAGE
   ════════════════════════════════════════════════════════════════ */

/* Day filter tabs */
body:not(.home-page) .agenda-filter {
  background: rgba(255,255,255,0.07) !important;
  border: 2px solid   #ff9234 !important ;
  color: #e2e8f0 !important;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease !important;
}
body:not(.home-page) .agenda-filter:hover {
  background: rgba(255,255,255,0.14) !important;
  border-color: #00d4ff !important;
  color: #fff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(0,212,255,0.2) !important;
}
body:not(.home-page) .agenda-filter.active {
  background: linear-gradient(135deg, #00d4ff, #6366f1) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(0,212,255,0.35) !important;
}

/* All-days separator */
body:not(.home-page) .all-days-separator {
  background: rgba(255,255,255,0.05) !important;
  border-left: 4px solid #00d4ff !important;
}
body:not(.home-page) .all-days-separator .sep-day  { color: #fff !important; }
body:not(.home-page) .all-days-separator .sep-date { color: rgba(160,174,192,0.8) !important; }

/* Agenda card → white */
body:not(.home-page) .agenda-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 18px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14) !important;
  transition: all 0.3s ease !important;
}
body:not(.home-page) .agenda-card:hover {
  border-color: rgba(0,212,255,0.45) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(0,212,255,0.16) !important;
}
body:not(.home-page) .agenda-time {
  color: #ffffff !important;
  font-weight: 700 !important;
  /* background: linear-gradient(135deg, rgba(0,212,255,0.09), rgba(99,102,241,0.09)) !important; */
  border: 1px solid rgba(0,212,255,0.18) !important;
  border-radius: 10px !important;
}
body:not(.home-page) .agenda-card .hall {
  background: rgba(99,102,241,0.1) !important;
  color: #4f46e5 !important;
  border: 1px solid rgba(99,102,241,0.2) !important;
}
body:not(.home-page) .agenda-card .session-title {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
  background: none !important;
  font-weight: 700 !important;
}
body:not(.home-page) .agenda-card .subtitle { color: #64748b !important; }

/* Speaker boxes */
body:not(.home-page) .speaker-box {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
}
body:not(.home-page) .speaker-box:hover {
  border-color: rgba(0,212,255,0.35) !important;
  background: #f0f9ff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 18px rgba(0,212,255,0.1) !important;
}
body:not(.home-page) .speaker-box .speaker-info h4 { color: #0f172a !important; font-weight: 600 !important; }
body:not(.home-page) .speaker-box .speaker-info p   { color: #0891b2 !important; display: none;}
body:not(.home-page) .speaker-box .speaker-info span { color: #64748b !important; }

/* Filter drawer */
body:not(.home-page) .filter-drawer {
  background: #ffffff !important;
  box-shadow: -4px 0 40px rgba(0,0,0,0.25) !important;
}
body:not(.home-page) .filter-header { border-bottom: 1px solid #e2e8f0 !important; }
body:not(.home-page) .filter-header h3      { color: #0f172a !important; }
body:not(.home-page) .filter-header i.fa-times { color: #475569 !important; }
body:not(.home-page) .filter-group h4       { color: #374151 !important; }
body:not(.home-page) .filter-group label    { color: #374151 !important; }
body:not(.home-page) .filter-group label:hover { background: rgba(0,212,255,0.06) !important; border-radius: 8px; }
body:not(.home-page) .filter-search input {
  background: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  color: #1e293b !important;
}
body:not(.home-page) .filter-search input:focus {
  border-color: #00d4ff !important; outline: none !important;
}

/* ════════════════════════════════════════════════════════════════
   SHARED .inner-card  (Terms, Privacy, FAQs, Venue, etc.)
   ════════════════════════════════════════════════════════════════ */
body:not(.home-page) .inner-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 3px 16px rgba(0,0,0,0.1) !important;
  transition: all 0.3s ease !important;
}
body:not(.home-page) .inner-card:hover {
  border-color: rgba(0,212,255,0.35) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 34px rgba(0,212,255,0.12) !important;
}
body:not(.home-page) .inner-card h3 {
  color: #0e7490 !important;
  -webkit-text-fill-color: #0e7490 !important;
  background: none !important;
}
body:not(.home-page) .inner-card p,
body:not(.home-page) .inner-card li { color: #1e293b !important; }

/* CTA bar — frosted on dark background */
body:not(.home-page) .inner-cta-bar {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(0,212,255,0.22) !important;
  backdrop-filter: blur(10px);
}
body:not(.home-page) .inner-cta-bar h3 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}
body:not(.home-page) .inner-cta-bar p { color: rgba(160,174,192,0.9) !important; }

/* ════════════════════════════════════════════════════════════════
   SCROLLBAR
   ════════════════════════════════════════════════════════════════ */
body:not(.home-page)::-webkit-scrollbar        { width: 7px; }
body:not(.home-page)::-webkit-scrollbar-track  { background: #0a0e27; }
body:not(.home-page)::-webkit-scrollbar-thumb  {
  background: linear-gradient(135deg, #00d4ff, #6366f1);
  border-radius: 4px;
}

/* ════════════════════════════════════════════════════════════════
   PRINT
   ════════════════════════════════════════════════════════════════ */
@media print {
  body:not(.home-page) .agenda-card { background: #fff !important; box-shadow: none !important; }
  body:not(.home-page) .agenda-card .session-title {
    color: #0a0e27 !important; -webkit-text-fill-color: #0a0e27 !important; background: none !important;
  }
}
