/* ═══════════════════════════════════════════════════════════════
   EXPO DIGITAL — Premium Design System
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero Slider ──────────────────────────────────────────────── */
.expo-hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.expo-slides { position: absolute; inset: 0; }

.expo-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
}
.expo-slide.active { opacity: 1; }

.expo-slide-default {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #3b0764 70%, #0f172a 100%);
    opacity: 1;
}

.expo-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15,23,42,0.3) 0%,
        rgba(15,23,42,0.55) 50%,
        rgba(15,23,42,0.85) 100%
    );
    z-index: 1;
}

.expo-hero-content {
    position: absolute; inset: 0; z-index: 2;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 20px;
}

/* Badge */
.expo-badge-hero {
    display: inline-block;
    background: linear-gradient(135deg, #c41230, #7f0d1e);
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    padding: 7px 20px;
    border-radius: 99px;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(196,18,48,0.5);
}

/* Title */
.expo-hero-title-xl {
    font-size: clamp(32px, 5.5vw, 64px);
    font-weight: 900;
    color: white;
    margin: 0 0 12px;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    text-align: center;
}

.expo-hero-tagline {
    font-size: clamp(15px, 2vw, 20px);
    color: rgba(255,255,255,0.75);
    margin: 0 0 32px;
    font-family: Georgia, serif;
    letter-spacing: 1px;
    text-align: center;
}

/* Stats */
.expo-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 16px 32px;
    backdrop-filter: blur(10px);
}

.expo-stat-hero { text-align: center; padding: 0 28px; }
.expo-stat-num-hero {
    font-size: 36px; font-weight: 900; color: #c41230;
    font-family: Arial, sans-serif; line-height: 1;
}
.expo-stat-lbl-hero {
    font-size: 10px; color: rgba(255,255,255,0.5);
    text-transform: uppercase; letter-spacing: 2px;
    font-family: Arial, sans-serif; margin-top: 4px;
}
.expo-stat-divider-hero {
    width: 1px; height: 40px; background: rgba(255,255,255,0.15);
}

/* CTAs */
.expo-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.expo-cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #c41230, #a50f28);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(196,18,48,0.45);
    transition: all .2s;
    border: none; cursor: pointer;
}
.expo-cta-primary:hover {
    background: linear-gradient(135deg, #a50f28, #8b0d22);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(196,18,48,0.6);
    color: white; text-decoration: none;
}
.expo-cta-primary.expo-cta-lg { font-size: 16px; padding: 16px 40px; }

.expo-cta-ghost {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.35);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    font-size: 15px;
    text-decoration: none;
    transition: all .2s;
    backdrop-filter: blur(4px);
}
.expo-cta-ghost:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.1);
    color: white; text-decoration: none;
}

/* Slider dots */
.expo-slider-dots {
    position: absolute; bottom: 24px; left: 50%;
    transform: translateX(-50%); z-index: 3;
    display: flex; gap: 8px;
}
.expo-dot {
    width: 8px; height: 8px; border-radius: 99px;
    background: rgba(255,255,255,0.3); border: none; cursor: pointer;
    transition: all .3s; padding: 0;
}
.expo-dot.active { background: white; width: 24px; }

/* ── Filters ──────────────────────────────────────────────────── */
.expo-filters-sticky {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 14px 0;
    position: sticky; top: 0; z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.expo-filters-row {
    display: flex; gap: 8px; flex-wrap: wrap;
    align-items: center;
}
.expo-filter-lbl {
    font-size: 11px; font-weight: 700; color: #9ca3af;
    text-transform: uppercase; letter-spacing: 1.5px;
    font-family: Arial, sans-serif; margin-right: 4px;
}
.expo-chip {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 6px 14px;
    border-radius: 99px;
    border: 1.5px solid #e5e7eb;
    background: white; color: #374151;
    font-size: 13px; font-weight: 600;
    cursor: pointer; font-family: Arial, sans-serif;
    transition: all .15s;
}
.expo-chip:hover, .expo-chip.active {
    border-color: #c41230;
    background: #c41230; color: white;
}
.expo-chip-count {
    background: rgba(0,0,0,0.1);
    border-radius: 99px;
    font-size: 10px; padding: 1px 6px;
    font-weight: 700;
}
.expo-chip.active .expo-chip-count { background: rgba(255,255,255,0.25); }

/* ── Events section ──────────────────────────────────────────── */
.expo-events-section { padding: 48px 16px; }

.expo-section-label {
    font-size: 11px; letter-spacing: 3px;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    margin-bottom: 20px; font-weight: 700;
}

/* ── Cards grid ──────────────────────────────────────────────── */
.expo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
}
.expo-grid-featured {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    margin-bottom: 0;
}

.expo-card {
    cursor: pointer;
    border-radius: 14px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    border: 1px solid #f1f5f9;
    transition: transform .2s, box-shadow .2s;
}
.expo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.13);
}
.expo-card-featured { border-radius: 16px; }

/* Card image */
.expo-card-img {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #1e293b, #0f172a);
}
.expo-card-img-regular { height: 190px; }
.expo-card-img-featured { height: 220px; }

.expo-card-photo {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .4s;
}
.expo-card:hover .expo-card-photo { transform: scale(1.04); }

.expo-card-img-placeholder {
    height: 100%; display: flex;
    align-items: center; justify-content: center;
}

.expo-card-cat-badge {
    position: absolute; top: 12px; left: 12px;
    background: rgba(196,18,48,0.9);
    color: white; font-size: 10px; font-weight: 700;
    padding: 3px 10px; border-radius: 99px;
    letter-spacing: 1px; text-transform: uppercase;
    font-family: Arial, sans-serif;
    backdrop-filter: blur(4px);
}
.expo-card-featured-badge {
    position: absolute; bottom: 12px; right: 12px;
    background: #f59e0b; color: white;
    font-size: 10px; font-weight: 700;
    padding: 3px 10px; border-radius: 99px;
    font-family: Arial, sans-serif;
}
.expo-card-full-badge {
    position: absolute; top: 12px; right: 12px;
    background: rgba(0,0,0,0.7); color: #fbbf24;
    font-size: 10px; font-weight: 700;
    padding: 3px 10px; border-radius: 99px;
    font-family: Arial, sans-serif;
}

/* Card body */
.expo-card-body { padding: 18px; }
.expo-card-featured-inner { display: flex; flex-direction: column; height: 100%; }

.expo-card-expositor {
    display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.expo-card-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    background: linear-gradient(135deg, #c41230, #7f0d1e);
    color: white; display: flex; align-items: center;
    justify-content: center; font-size: 12px; font-weight: 700;
    font-family: Arial, sans-serif; flex-shrink: 0;
}
.expo-card-avatar-sm { width: 24px; height: 24px; font-size: 10px; }
.expo-card-expositor-name {
    font-size: 12px; color: #6b7280; font-family: Arial, sans-serif;
}

.expo-card-title {
    margin: 0 0 8px;
    font-size: 17px; font-weight: 800; color: #111827;
    font-family: Georgia, serif; line-height: 1.3;
}
.expo-card-title-lg { font-size: 20px; }

.expo-card-desc {
    margin: 0 0 12px; font-size: 13px; color: #6b7280;
    line-height: 1.55; font-family: Arial, sans-serif;
}
.expo-card-desc-sm {
    font-size: 12px;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}

.expo-card-footer {
    display: flex; align-items: center;
    justify-content: space-between; margin-top: 12px;
}
.expo-card-cta {
    font-size: 13px; font-weight: 700; color: #c41230;
    font-family: Arial, sans-serif; flex-shrink: 0;
}

/* ── Schedules ───────────────────────────────────────────────── */
.expo-schedules-compact {
    margin-bottom: 12px;
}
.expo-schedule-main {
    display: flex; align-items: center; gap: 4px;
    font-size: 12px; color: #374151; font-family: Arial, sans-serif;
    flex-wrap: wrap;
}
.expo-schedule-icon { font-size: 12px; }
.expo-schedule-sep { color: #d1d5db; }
.expo-schedule-dur { color: #9ca3af; }
.expo-schedules-more { margin-top: 6px; }
.expo-schedules-badge {
    display: inline-block;
    background: #fef3c7; color: #d97706;
    font-size: 10px; font-weight: 700;
    padding: 2px 8px; border-radius: 99px;
    font-family: Arial, sans-serif;
    border: 1px solid #fde68a;
}

.expo-schedules-full { margin-bottom: 16px; }
.expo-schedules-label {
    font-size: 11px; font-weight: 700; color: #9ca3af;
    text-transform: uppercase; letter-spacing: 1px;
    font-family: Arial, sans-serif; margin: 12px 0 8px;
}
.expo-schedule-item {
    display: flex; gap: 10px; margin-bottom: 8px; align-items: flex-start;
}
.expo-schedule-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #e5e7eb; margin-top: 5px; flex-shrink: 0;
}
.expo-schedule-dot-main { background: #c41230; width: 10px; height: 10px; }
.expo-schedule-date-full {
    font-size: 13px; font-weight: 700; color: #111827;
    font-family: Arial, sans-serif;
}
.expo-schedule-time-full {
    font-size: 12px; color: #6b7280; font-family: Arial, sans-serif;
}
.expo-schedule-dur-full { color: #9ca3af; }
.expo-schedule-label-text {
    font-size: 11px; color: #c41230; font-weight: 700;
    font-family: Arial, sans-serif; text-transform: uppercase;
    letter-spacing: .5px;
}

/* ── Capacity bar ────────────────────────────────────────────── */
.expo-capacity { margin-top: 12px; }
.expo-capacity-bar-wrap {
    height: 4px; background: #f1f5f9; border-radius: 99px; overflow: hidden;
    margin-bottom: 6px;
}
.expo-capacity-bar {
    height: 100%; border-radius: 99px;
    transition: width .3s;
}
.expo-capacity-labels {
    display: flex; justify-content: space-between;
    align-items: center;
}
.expo-capacity-count {
    font-size: 11px; color: #9ca3af; font-family: Arial, sans-serif;
}
.expo-capacity-left {
    font-size: 11px; font-weight: 700; font-family: Arial, sans-serif;
}

/* ── Pagination ──────────────────────────────────────────────── */
.expo-pager {
    display: flex; justify-content: center;
    gap: 6px; margin-top: 48px; flex-wrap: wrap;
}
.expo-page-btn {
    min-width: 40px; height: 40px;
    border-radius: 8px; border: 1.5px solid #e5e7eb;
    background: white; color: #374151;
    font-size: 14px; font-weight: 600;
    cursor: pointer; font-family: Arial, sans-serif;
    transition: all .15s; padding: 0 12px;
}
.expo-page-btn:hover:not(:disabled) {
    border-color: #c41230; color: #c41230;
}
.expo-page-btn.active {
    background: #c41230; border-color: #c41230; color: white;
}
.expo-page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Empty state ─────────────────────────────────────────────── */
.expo-empty-state {
    text-align: center; padding: 80px 20px; color: #9ca3af;
}
.expo-empty-state p {
    font-size: 16px; margin: 12px 0 24px;
    font-family: Arial, sans-serif;
}

/* ── Bottom CTA ──────────────────────────────────────────────── */
.expo-bottom-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    padding: 72px 0;
}
.expo-cta-h2 {
    color: white; font-size: clamp(24px, 4vw, 36px);
    font-weight: 900; font-family: Georgia, serif; margin: 0 0 12px;
}
.expo-cta-p {
    color: rgba(255,255,255,0.6); font-size: 16px;
    max-width: 480px; margin: 0 auto 28px;
    font-family: Arial, sans-serif;
}

/* ── Expo Digital Nav Button ─────────────────────────────────── */
.ri-expo-nav-btn {
    display: inline-flex; align-items: center;
    text-decoration: none; padding: 0;
}
.ri-expo-nav-inner {
    display: inline-flex; align-items: center;
    background: linear-gradient(135deg, #c41230 0%, #7f0d1e 100%);
    color: white !important;
    font-size: 10px; font-weight: 800;
    letter-spacing: 1.5px; padding: 5px 12px;
    border-radius: 4px; font-family: Arial, sans-serif;
    transition: all .2s;
    box-shadow: 0 2px 8px rgba(196,18,48,0.4);
    white-space: nowrap;
}
.ri-expo-nav-btn:hover .ri-expo-nav-inner {
    background: linear-gradient(135deg, #a50f28 0%, #6b0f1a 100%);
    box-shadow: 0 4px 14px rgba(196,18,48,0.55);
    transform: translateY(-1px);
}
.ri-expo-nav-btn.expo-nav-active .ri-expo-nav-inner {
    background: white; color: #c41230 !important;
    border: 2px solid #c41230; box-shadow: none;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .expo-hero-slider { height: 480px; }
    .expo-hero-stats { padding: 12px 20px; gap: 0; }
    .expo-stat-hero { padding: 0 16px; }
    .expo-stat-num-hero { font-size: 28px; }
    .expo-grid-featured { grid-template-columns: 1fr; }
    .expo-card-img-featured { height: 180px; }
}

@media (max-width: 480px) {
    .expo-hero-slider { height: 420px; }
    .expo-hero-stats { flex-wrap: wrap; justify-content: center; }
    .expo-stat-divider-hero { display: none; }
    .expo-grid { grid-template-columns: 1fr; }
}

/* ── Schedules compact (card) ────────────────────────────────── */
.expo-schedules-compact { margin-bottom: 12px; }

.expo-schedule-row {
    display: flex; align-items: center; gap: 5px;
    font-size: 12px; font-family: Arial, sans-serif;
    color: #374151; flex-wrap: wrap; margin-bottom: 4px;
}
.expo-schedule-row-main { font-weight: 600; }

.expo-sched-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #d1d5db; flex-shrink: 0;
}
.expo-sched-dot-red { background: #c41230; }

.expo-sched-date { color: #111827; font-weight: 600; }
.expo-sched-sep  { color: #d1d5db; }
.expo-sched-time { color: #374151; }
.expo-sched-dur  { color: #9ca3af; font-size: 11px; }
.expo-sched-label{ color: #c41230; font-weight: 700; font-size: 10px; text-transform: uppercase; letter-spacing: .5px; }

.expo-sched-extras {
    border-left: 2px solid #f1f5f9;
    padding-left: 10px;
    margin-left: 3px;
    margin-top: 4px;
    display: flex; flex-direction: column; gap: 3px;
}

/* ── Schedules full (event detail) ──────────────────────────── */
.expo-schedules-full { margin-bottom: 20px; }

.expo-sched-full-title {
    font-size: 12px; font-weight: 700; color: #374151;
    text-transform: uppercase; letter-spacing: 1px;
    font-family: Arial, sans-serif; margin-bottom: 12px;
}
.expo-sched-full-item {
    display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start;
}
.expo-sched-full-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #e5e7eb; margin-top: 4px; flex-shrink: 0;
    border: 2px solid #d1d5db;
}
.expo-sched-full-dot-main {
    background: #c41230; border-color: #c41230;
    width: 12px; height: 12px;
}
.expo-sched-full-label {
    font-size: 10px; color: #c41230; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px;
    font-family: Arial, sans-serif; margin-bottom: 2px;
}
.expo-sched-full-date {
    font-size: 14px; font-weight: 700; color: #111827;
    font-family: Arial, sans-serif;
}
.expo-sched-full-time {
    font-size: 13px; color: #6b7280; font-family: Arial, sans-serif;
}
.expo-sched-full-dur { color: #9ca3af; }
