/**
 * TicketBee — Light homepage theme (matches Figma mockup)
 */
.tu-theme-light {
    --tu-primary: #ffffff;
    --tu-secondary: #f8fafc;
    --tu-surface: #ffffff;
    --tu-accent: #2563eb;
    --tu-accent-light: #3b82f6;
    --tu-accent-dark: #1d4ed8;
    --tu-text: #334155;
    --tu-text-bright: #0f172a;
    --tu-muted: #64748b;
    --tu-border: #e2e8f0;
    --tu-shadow: 0 4px 24px -4px rgba(15, 23, 42, 0.08);
    --tu-shadow-lg: 0 12px 40px -8px rgba(15, 23, 42, 0.12);
}

.tu-theme-light body.ticket-ui,
body.ticket-ui.tu-theme-light {
    background: #ffffff;
    background-image: none;
    color: var(--tu-text);
}

.tu-theme-light .tu-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: var(--tu-border);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.tu-theme-light .tu-header.is-scrolled {
    background: #ffffff;
    box-shadow: var(--tu-shadow);
}

.tu-theme-light .tu-btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border-radius: 0.75rem;
}

.tu-theme-light .tu-btn-primary:hover {
    box-shadow: 0 8px 24px -6px rgba(37, 99, 235, 0.45);
}

.tu-theme-light .tu-input,
.tu-theme-light input[type="text"],
.tu-theme-light input[type="email"],
.tu-theme-light input[type="date"],
.tu-theme-light input[type="tel"] {
    background: #f8fafc;
    border-color: var(--tu-border);
    color: var(--tu-text-bright);
}

.tu-theme-light .tu-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.tu-theme-light .tu-input::placeholder {
    color: #94a3b8;
}

.tu-theme-light .tu-section-title {
    color: var(--tu-text-bright);
}

.tu-theme-light .tu-bottom-nav {
    background: rgba(255, 255, 255, 0.96);
    border-color: var(--tu-border);
    box-shadow: var(--tu-shadow-lg);
}

.tu-theme-light .tu-bottom-nav__item.is-active {
    color: #2563eb;
}

.tu-theme-light footer {
    background: #f8fafc !important;
    border-color: var(--tu-border) !important;
}

.tu-theme-light footer,
.tu-theme-light footer p,
.tu-theme-light footer li a {
    color: var(--tu-muted);
}

.tu-theme-light footer h3 {
    color: #475569;
}

.tu-theme-light footer .tu-cat-nav__item {
    color: #64748b;
    background: #ffffff;
    border: 1px solid var(--tu-border);
    min-width: 4.5rem;
}

.tu-theme-light footer .tu-cat-nav__item:hover,
.tu-theme-light footer .tu-cat-nav__item.is-active {
    color: #2563eb;
    background: #eff6ff;
    border-color: #bfdbfe;
}

.tu-theme-light footer .tu-cat-nav__item i {
    color: #2563eb;
}

/* ── Home sections ─────────────────────────────────────────────────────────── */
.tu-home-section {
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .tu-home-section {
        padding: 2.5rem 0;
    }
}

.tu-home-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.tu-home-section__title {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .tu-home-section__title {
        font-size: 1.5rem;
    }
}

.tu-home-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2563eb;
    transition: color 0.2s;
}

.tu-home-link:hover {
    color: #1d4ed8;
}

/* ── Hero carousel ─────────────────────────────────────────────────────────── */
.tu-hero-carousel {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    background: #0f172a;
    box-shadow: var(--tu-shadow-lg);
}

.tu-hero-carousel .swiper-slide {
    height: auto;
}

.tu-hero-slide {
    position: relative;
    min-height: 220px;
    aspect-ratio: 16 / 7;
}

@media (max-width: 767px) {
    .tu-hero-slide {
        aspect-ratio: 16 / 11;
        min-height: 200px;
    }
}

.tu-hero-slide__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tu-hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.55) 55%, rgba(15, 23, 42, 0.2) 100%);
}

.tu-hero-slide__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 1.5rem;
    max-width: 32rem;
}

@media (min-width: 768px) {
    .tu-hero-slide__content {
        padding: 2.5rem 3rem;
    }
}

.tu-hero-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
    background: rgba(37, 99, 235, 0.9);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.tu-hero-slide__title {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
}

@media (min-width: 768px) {
    .tu-hero-slide__title {
        font-size: 2rem;
    }
}

.tu-hero-slide__meta {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.tu-hero-slide__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.tu-hero-price {
    font-size: 0.875rem;
    color: #e2e8f0;
}

.tu-hero-price strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
}

.tu-hero-carousel .swiper-button-prev,
.tu-hero-carousel .swiper-button-next {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.tu-hero-carousel .swiper-button-prev::after,
.tu-hero-carousel .swiper-button-next::after {
    font-size: 14px;
    font-weight: bold;
}

.tu-hero-carousel .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.tu-hero-carousel .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 20px;
    border-radius: 4px;
}

/* ── Featured event card ───────────────────────────────────────────────────── */
.tu-feat-card {
    background: #ffffff;
    border: 1px solid var(--tu-border);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--tu-shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tu-feat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--tu-shadow-lg);
}

.tu-feat-card__img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f1f5f9;
}

.tu-feat-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.tu-feat-card:hover .tu-feat-card__img {
    transform: scale(1.04);
}

.tu-feat-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffffff;
}

.tu-feat-card__wish {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #64748b;
    border: none;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}

.tu-feat-card__wish:hover {
    color: #ef4444;
}

.tu-feat-card__body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tu-feat-card__title {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tu-feat-card__meta {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #64748b;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tu-feat-card__meta i {
    color: #2563eb;
    width: 0.875rem;
    margin-right: 0.375rem;
}

.tu-feat-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.875rem;
}

.tu-feat-card__price {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
}

.tu-feat-card__price span {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #94a3b8;
}

.tu-feat-card__btn {
    display: inline-flex;
    align-items: center;
    padding: 0.4375rem 0.875rem;
    border-radius: 0.5rem;
    background: #2563eb;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    transition: background 0.2s;
    white-space: nowrap;
}

.tu-feat-card__btn:hover {
    background: #1d4ed8;
}

/* ── Category tile ─────────────────────────────────────────────────────────── */
.tu-cat-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 0.75rem;
    border-radius: 1rem;
    border: 1px solid var(--tu-border);
    background: #ffffff;
    box-shadow: var(--tu-shadow);
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.tu-cat-tile:hover {
    transform: translateY(-2px);
    border-color: #bfdbfe;
    box-shadow: var(--tu-shadow-lg);
}

.tu-cat-tile__icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.25rem;
}

.tu-cat-tile__name {
    margin-top: 0.75rem;
    font-family: "Sora", system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.3;
}

.tu-cat-tile__count {
    margin-top: 0.25rem;
    font-size: 0.6875rem;
    color: #94a3b8;
}

/* ── Trending list card (mobile) ───────────────────────────────────────────── */
.tu-trend-list {
    display: flex;
    gap: 0.875rem;
    padding: 0.75rem;
    border-radius: 1rem;
    border: 1px solid var(--tu-border);
    background: #ffffff;
    box-shadow: var(--tu-shadow);
    transition: box-shadow 0.25s;
}

.tu-trend-list:hover {
    box-shadow: var(--tu-shadow-lg);
}

.tu-trend-list__img {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 0.75rem;
    object-fit: cover;
    flex-shrink: 0;
    background: #f1f5f9;
}

.tu-trend-list__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tu-trend-list__title {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tu-trend-list__meta {
    margin-top: 0.25rem;
    font-size: 0.6875rem;
    color: #64748b;
}

.tu-trend-list__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
}

/* ── Trust bar ─────────────────────────────────────────────────────────────── */
.tu-trust-bar {
    background: #f8fafc;
    border-top: 1px solid var(--tu-border);
    border-bottom: 1px solid var(--tu-border);
    padding: 1.5rem 0;
}

.tu-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.tu-trust-item__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1rem;
}

.tu-trust-item__text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .tu-trust-item {
        flex-direction: row;
        text-align: left;
        justify-content: center;
    }
}

/* ── CTA blocks ────────────────────────────────────────────────────────────── */
.tu-cta-block {
    border-radius: 1.25rem;
    padding: 1.5rem;
    overflow: hidden;
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 640px) {
    .tu-cta-block {
        padding: 2rem;
        min-height: 200px;
    }
}

.tu-cta-block--app {
    background: linear-gradient(135deg, #f8fafc 0%, #eef4fb 100%);
    border: 1px solid var(--tu-border);
    padding: 0;
    overflow: visible;
    min-height: 0;
}

.tu-cta-block--organizer {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
}

.tu-cta-block__title {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
}

.tu-cta-block__desc {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: #64748b;
    max-width: 18rem;
    line-height: 1.5;
}

.tu-cta-app {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.25rem 1.5rem;
}

@media (min-width: 480px) {
    .tu-cta-app {
        grid-template-columns: minmax(120px, 42%) 1fr;
        gap: 1rem;
        padding: 1rem 1.5rem 1rem 0.5rem;
        min-height: 220px;
    }
}

.tu-cta-app__phone {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
}

@media (min-width: 480px) {
    .tu-cta-app__phone {
        justify-content: flex-start;
        margin-left: -0.25rem;
        margin-top: -1.5rem;
        margin-bottom: -1.5rem;
    }
}

.tu-cta-app__phone-img {
    width: min(180px, 55vw);
    height: auto;
    object-fit: contain;
    /* Black studio backdrop → transparent on light card */
    mix-blend-mode: lighten;
    filter: drop-shadow(0 18px 30px rgba(15, 23, 42, 0.18));
    transform: rotate(-8deg);
}

@media (min-width: 480px) {
    .tu-cta-app__phone-img {
        width: min(210px, 100%);
    }
}

.tu-cta-app__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.tu-cta-app__stores {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tu-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border-radius: 0.75rem;
    background: #2563eb;
    color: #fff;
    padding: 0.55rem 0.85rem;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
    min-width: 8.5rem;
}

.tu-store-btn:hover {
    background: #1d4ed8;
    color: #fff;
    transform: translateY(-1px);
}

.tu-store-btn i {
    font-size: 1.35rem;
    line-height: 1;
}

.tu-store-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.tu-store-btn small {
    font-size: 0.625rem;
    font-weight: 500;
    opacity: 0.9;
}

.tu-store-btn strong {
    font-size: 0.8125rem;
    font-weight: 700;
}

/* ── Newsletter ────────────────────────────────────────────────────────────── */
.tu-newsletter {
    text-align: center;
    padding: 2rem 0 3rem;
}

.tu-newsletter__icon {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
}

/* ── Category nav strip ────────────────────────────────────────────────────── */
.tu-cat-nav {
    border-top: 1px solid #e8edf3;
    border-bottom: 1px solid #e8edf3;
    background: #ffffff;
}

.tu-cat-nav__scroll {
    display: flex;
    align-items: stretch;
    gap: 0.15rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0;
}

.tu-cat-nav__scroll::-webkit-scrollbar {
    display: none;
}

.tu-cat-nav__item {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.45rem;
    padding: 0.85rem 0.9rem;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #475569;
    white-space: nowrap;
    transition: color 0.15s ease, border-color 0.15s ease;
    flex-shrink: 0;
    background: transparent;
    line-height: 1.2;
}

.tu-cat-nav__item:hover {
    color: #2563eb;
    background: transparent;
}

.tu-cat-nav__item.is-active {
    color: #2563eb;
    background: transparent;
    border-bottom-color: #2563eb;
    font-weight: 600;
}

.tu-cat-nav__item i {
    font-size: 0.9rem;
    width: auto;
    text-align: center;
    line-height: 1;
    opacity: 0.95;
}

.tu-cat-nav__more {
    position: relative;
    flex-shrink: 0;
}

.tu-cat-nav__more-btn {
    cursor: pointer;
    border: 0;
    background: transparent;
    font: inherit;
}

.tu-cat-nav__chevron {
    font-size: 0.65rem !important;
    transition: transform 0.15s ease;
}

.tu-cat-nav__chevron.is-open {
    transform: rotate(180deg);
}

.tu-cat-nav__dropdown {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    min-width: 12rem;
    max-height: 18rem;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 0.75rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    padding: 0.35rem;
    z-index: 60;
}

.tu-cat-nav__dropdown-item {
    display: block;
    padding: 0.65rem 0.85rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #334155;
    white-space: nowrap;
}

.tu-cat-nav__dropdown-item:hover,
.tu-cat-nav__dropdown-item.is-active {
    background: #eff6ff;
    color: #2563eb;
}

/* ── Mobile home filters ───────────────────────────────────────────────────── */
.tu-mobile-filters {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 0;
}

.tu-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    border-radius: 9999px;
    border: 1px solid var(--tu-border);
    background: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    color: #475569;
}

/* ── Swiper featured row ───────────────────────────────────────────────────── */
.tu-feat-swiper {
    padding-bottom: 2rem !important;
}

.tu-feat-swiper .swiper-pagination-bullet {
    background: #cbd5e1;
    opacity: 1;
}

.tu-feat-swiper .swiper-pagination-bullet-active {
    background: #2563eb;
}

.tu-trend-grid-swiper .swiper-slide {
    height: auto;
}

/* Hide desktop trending grid on mobile, show list */
.tu-trend-desktop {
    display: none;
}

.tu-trend-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .tu-trend-desktop {
        display: block;
    }

    .tu-trend-mobile {
        display: none;
    }
}

/* Light header search overrides */
.tu-theme-light .tu-header input,
.tu-theme-light .tu-header .tu-header-filter-input {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #0f172a;
}

.tu-theme-light .tu-header .tu-header-filter-btn {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #475569;
}

.tu-theme-light .tu-header .tu-header-filter-btn:hover {
    border-color: #bfdbfe;
    color: #2563eb;
}

.tu-theme-light .tu-header .text-gray-300,
.tu-theme-light .tu-header .text-gray-400,
.tu-theme-light .tu-header .text-gray-500 {
    color: #64748b;
}

.tu-theme-light .tu-header a.text-gray-400:hover {
    color: #2563eb;
}

.tu-theme-light .tu-header nav a {
    color: #64748b;
}

.tu-theme-light .tu-header nav a.text-accent,
.tu-theme-light .tu-header nav a:hover {
    color: #2563eb;
}

.tu-theme-light #tu-mobile-menu {
    background: #ffffff;
    border-color: var(--tu-border);
}

.tu-theme-light .tu-glass,
.tu-theme-light .tu-glass-strong,
.tu-theme-light .tu-event-card {
    background: #ffffff;
    border-color: var(--tu-border);
    box-shadow: var(--tu-shadow);
}

.tu-theme-light .tu-event-card h3,
.tu-theme-light .tu-event-card .text-white {
    color: #0f172a !important;
}

.tu-theme-light .tu-event-card .text-accent {
    color: #2563eb !important;
}

.tu-theme-light .tu-badge {
    background: rgba(15, 23, 42, 0.8);
    border-color: transparent;
    color: #ffffff;
}

.tu-theme-light .tu-cat-nav {
    border-top-color: #e2e8f0;
    background: #ffffff;
}

.tu-theme-light .tu-cat-nav.md\:hidden,
.tu-theme-light .tu-cat-nav:not(.hidden) {
    display: block;
}

@media (min-width: 768px) {
    .tu-theme-light .tu-cat-nav.md\:hidden {
        display: none;
    }
}

/* ── Global light theme page overrides ─────────────────────────────────────── */
.tu-theme-light main {
    color: #334155;
}

.tu-theme-light main h1,
.tu-theme-light main h2,
.tu-theme-light main h3,
.tu-theme-light main .tu-section-title {
    color: #0f172a;
}

.tu-theme-light main .text-white:not(.tu-hero-slide *):not(.tu-hero-slide):not(.tu-hero-tag):not(.tu-btn-primary):not(.tu-feat-card__badge) {
    color: #0f172a;
}

.tu-theme-light main .text-gray-300 {
    color: #64748b;
}

.tu-theme-light main .text-gray-400,
.tu-theme-light main .text-gray-500 {
    color: #64748b;
}

.tu-theme-light .tu-hero {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.tu-theme-light .tu-hero::before,
.tu-theme-light .tu-hero-grid {
    opacity: 0.35;
}

.tu-theme-light .tu-section-label {
    color: #2563eb;
}

.tu-theme-light .tu-gradient-text {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tu-theme-light .border-white\/5,
.tu-theme-light .border-white\/10 {
    border-color: #e2e8f0;
}

.tu-theme-light .bg-white\/5 {
    background: #f1f5f9;
}

.tu-theme-light .bg-secondary\/30,
.tu-theme-light .bg-secondary\/40,
.tu-theme-light .bg-secondary\/60,
.tu-theme-light .bg-secondary\/80 {
    background: #f8fafc;
}

.tu-theme-light .tu-glass,
.tu-theme-light .tu-glass-strong {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 24px -4px rgba(15, 23, 42, 0.08);
}

.tu-theme-light .tu-glass:hover,
.tu-theme-light .tu-glass-strong:hover {
    border-color: #bfdbfe;
    box-shadow: 0 12px 40px -8px rgba(37, 99, 235, 0.12);
}

.tu-theme-light .tu-event-card {
    background: #ffffff;
    border-color: #e2e8f0;
}

.tu-theme-light .tu-event-card .text-white,
.tu-theme-light .tu-event-card h3 {
    color: #0f172a !important;
}

.tu-theme-light .tu-event-card .text-accent {
    color: #2563eb !important;
}

.tu-theme-light .tu-badge {
    background: rgba(15, 23, 42, 0.8);
    color: #ffffff;
    border-color: transparent;
}

.tu-theme-light .tu-input,
.tu-theme-light select.tu-input {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #0f172a;
}

.tu-theme-light #tu-mobile-menu {
    background: #ffffff;
    border-color: #e2e8f0;
}

.tu-theme-light #tu-mobile-menu a {
    color: #475569;
}

.tu-theme-light #tu-mobile-menu a:hover {
    color: #0f172a;
}

.tu-theme-light .tu-page-hero {
    background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
    border-bottom: 1px solid #e2e8f0;
}

.tu-theme-light .tu-page-hero .text-white {
    color: #0f172a !important;
}

.tu-theme-light .skip-to-main:focus {
    background: #2563eb;
    color: #ffffff;
}

.tu-theme-light ::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.tu-theme-light ::-webkit-scrollbar-thumb {
    background: rgba(37, 99, 235, 0.25);
}

/* ── Event detail hero (Figma wide banner ~3:1) ─────────────────────────────── */
.tu-event-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 1.25rem;
    background: #0f172a;
    aspect-ratio: 16 / 9;
    min-height: 220px;
}

@media (min-width: 768px) {
    .tu-event-hero {
        aspect-ratio: 3 / 1;
        min-height: 280px;
        max-height: 420px;
        border-radius: 1.5rem;
    }
}

.tu-event-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tu-event-hero__img--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(148, 163, 184, 0.35);
    font-size: 3.5rem;
}

.tu-event-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(15, 23, 42, 0.88) 0%,
        rgba(15, 23, 42, 0.55) 42%,
        rgba(15, 23, 42, 0.15) 72%,
        rgba(15, 23, 42, 0.05) 100%
    );
    pointer-events: none;
}

@media (max-width: 767px) {
    .tu-event-hero__overlay {
        background: linear-gradient(
            180deg,
            rgba(15, 23, 42, 0.25) 0%,
            rgba(15, 23, 42, 0.55) 45%,
            rgba(15, 23, 42, 0.92) 100%
        );
    }
}

.tu-event-hero__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.25rem 1.25rem 1.5rem;
    color: #fff;
}

@media (min-width: 768px) {
    .tu-event-hero__content {
        padding: 2rem 2.25rem 2.25rem;
        max-width: 58%;
    }
}

.tu-event-hero__badge {
    display: inline-block;
    border-radius: 9999px;
    background: rgba(124, 58, 237, 0.9);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
}

.tu-event-hero__title {
    margin-top: 0.65rem;
    font-family: "Sora", system-ui, sans-serif;
    font-size: clamp(1.35rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.tu-event-hero__meta {
    margin-top: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
    font-size: 0.75rem;
    color: rgba(226, 232, 240, 0.95);
}

.tu-event-hero__meta i {
    margin-right: 0.35rem;
    color: #93c5fd;
}

.tu-event-hero__chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.45rem 0.75rem;
    transition: background 0.15s ease;
}

.tu-event-hero__chip:hover {
    background: rgba(15, 23, 42, 0.75);
    color: #fff;
}

.tu-event-hero__chip--back {
    top: 0.85rem;
    left: 0.85rem;
}

.tu-event-hero__chip--share {
    top: 0.85rem;
    right: 0.85rem;
}

.tu-event-hero__chip--wish {
    top: 0.85rem;
    right: 5.75rem;
    cursor: pointer;
}

.tu-event-hero__chip--wish.is-saved,
.tu-event-hero__chip--wish.is-saved i {
    color: #f87171;
}

@media (max-width: 639px) {
    .tu-event-hero__chip--wish {
        right: 0.85rem;
        top: 3.35rem;
    }
}

.tu-theme-light .tu-event-hero__title,
.tu-theme-light .tu-event-hero__meta,
.tu-theme-light .tu-event-hero__badge,
.tu-theme-light .tu-event-hero__chip {
    color: #fff;
}

/* ── Phone input with +91 prefix ──────────────────────────────────────────── */
.tu-phone-field {
    display: flex;
    align-items: stretch;
    width: 100%;
    border-radius: 0.875rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    overflow: hidden;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.tu-phone-field:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    background: #fff;
}

.tu-phone-field__prefix {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 0.875rem;
    border-right: 1px solid #e2e8f0;
    background: #f1f5f9;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    user-select: none;
}

.tu-phone-field__input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #0f172a;
    outline: none;
}

.tu-phone-field__input::placeholder {
    color: #94a3b8;
}

/* ── About page ───────────────────────────────────────────────────────────── */
.tu-about-section {
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .tu-about-section {
        padding: 3.5rem 0;
    }
}

.tu-about-heading {
    margin-top: 0.5rem;
    font-family: "Sora", system-ui, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
}

.tu-about-prose {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #64748b;
}

/* Hero */
.tu-about-hero {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    min-height: 20rem;
    aspect-ratio: 16 / 7;
}

@media (min-width: 768px) {
    .tu-about-hero {
        min-height: 22rem;
    }
}

.tu-about-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.tu-about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(15, 23, 42, 0.82) 0%,
        rgba(15, 23, 42, 0.55) 45%,
        rgba(15, 23, 42, 0.15) 100%
    );
}

.tu-about-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 2rem 1.5rem;
    max-width: 36rem;
}

@media (min-width: 768px) {
    .tu-about-hero__content {
        padding: 3rem 2.5rem;
    }
}

.tu-about-hero__badge {
    display: inline-flex;
    width: fit-content;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    padding: 0.35rem 0.85rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.tu-about-hero__title {
    margin-top: 1rem;
    font-family: "Sora", system-ui, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
}

.tu-about-hero__accent {
    color: #60a5fa;
}

.tu-about-hero__desc {
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(226, 232, 240, 0.92);
    max-width: 32rem;
}

.tu-about-hero__social {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.tu-about-hero__stat {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.tu-about-hero__stat-label {
    font-size: 0.75rem;
    color: rgba(226, 232, 240, 0.85);
}

.tu-about-avatars {
    display: flex;
    align-items: center;
}

.tu-about-avatars__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-left: -0.5rem;
    border-radius: 50%;
    border: 2px solid rgba(15, 23, 42, 0.6);
    background: var(--tu-av, #2563eb);
    font-size: 0.6875rem;
    font-weight: 700;
    color: #fff;
}

.tu-about-avatars__item:first-child {
    margin-left: 0;
}

/* Our Story */
.tu-about-story {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .tu-about-story {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }
}

.tu-about-highlight {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    margin-top: 1.5rem;
    padding: 1rem 1.15rem;
    border-radius: 0.875rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #475569;
}

.tu-about-highlight__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.875rem;
}

.tu-about-story__visual {
    position: relative;
}

.tu-about-story__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 1rem;
    display: block;
}

.tu-about-stats {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-radius: 0.875rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 12px 32px -8px rgba(15, 23, 42, 0.15);
    overflow: hidden;
}

@media (min-width: 640px) {
    .tu-about-stats {
        left: 1.5rem;
        right: 1.5rem;
        bottom: 1.5rem;
    }
}

.tu-about-stats__item {
    padding: 1rem 0.85rem;
    text-align: center;
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.tu-about-stats__item:nth-child(2n) {
    border-right: 0;
}

.tu-about-stats__item:nth-child(n + 3) {
    border-bottom: 0;
}

.tu-about-stats__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.8125rem;
}

.tu-about-stats__value {
    margin-top: 0.35rem;
    font-family: "Sora", system-ui, sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.tu-about-stats__label {
    margin-top: 0.15rem;
    font-size: 0.6875rem;
    color: #64748b;
}

/* Mission & Vision cards */
.tu-about-mv {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .tu-about-mv {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

.tu-about-card {
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 4px 24px -4px rgba(15, 23, 42, 0.06);
}

@media (min-width: 768px) {
    .tu-about-card {
        padding: 2rem;
    }
}

.tu-about-card__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tu-about-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: #eff6ff;
    color: #2563eb;
    font-size: 1.125rem;
}

.tu-about-card__title {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.tu-about-card__intro {
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #64748b;
}

.tu-about-checklist {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tu-about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #475569;
}

.tu-about-checklist li i {
    flex-shrink: 0;
    margin-top: 0.2rem;
    width: 1.125rem;
    height: 1.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.5625rem;
}

/* Values */
.tu-about-values {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .tu-about-values {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .tu-about-values {
        grid-template-columns: repeat(5, 1fr);
    }
}

.tu-about-value {
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 1.25rem 1rem;
    text-align: center;
    box-shadow: 0 2px 12px -2px rgba(15, 23, 42, 0.05);
}

.tu-about-value__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.65rem;
    background: #eff6ff;
    color: #2563eb;
    font-size: 1rem;
}

.tu-about-value h3 {
    margin-top: 0.85rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
}

.tu-about-value p {
    margin-top: 0.45rem;
    font-size: 0.75rem;
    line-height: 1.55;
    color: #64748b;
}

/* Founder */
.tu-about-founder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 24px -4px rgba(15, 23, 42, 0.06);
}

@media (min-width: 768px) {
    .tu-about-founder {
        flex-direction: row;
        align-items: center;
        padding: 2.5rem;
        gap: 2rem;
    }
}

.tu-about-founder__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
    color: #2563eb;
    font-size: 2.75rem;
}

.tu-about-founder__body {
    text-align: center;
}

@media (min-width: 768px) {
    .tu-about-founder__body {
        text-align: left;
    }
}

.tu-about-founder__badge {
    display: inline-flex;
    border-radius: 9999px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 0.3rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #2563eb;
}

.tu-about-founder__name {
    margin-top: 0.75rem;
    font-family: "Sora", system-ui, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
}

.tu-about-founder__bio {
    margin-top: 0.85rem;
    max-width: 40rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #64748b;
}

.tu-about-founder__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.25rem;
}

@media (min-width: 768px) {
    .tu-about-founder__tags {
        justify-content: flex-start;
    }
}

.tu-about-founder__tags span {
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    padding: 0.45rem 0.85rem;
    font-size: 0.8125rem;
    color: #475569;
}

/* Team CTA */
.tu-about-team {
    display: grid;
    gap: 2rem;
    align-items: center;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 55%, #eff6ff 100%);
    border: 1px solid #bfdbfe;
    padding: 1.5rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .tu-about-team {
        grid-template-columns: minmax(0, 280px) 1fr;
        padding: 2rem 2.5rem;
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .tu-about-team {
        grid-template-columns: minmax(0, 340px) 1fr;
    }
}

.tu-about-team__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
}

.tu-about-team__gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0.75rem;
    display: block;
    box-shadow: 0 4px 16px -4px rgba(15, 23, 42, 0.12);
}

.tu-about-team__content .tu-about-heading {
    margin-top: 0.35rem;
}

.tu-about-team__desc {
    margin-top: 0.85rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #475569;
    max-width: 32rem;
}

.tu-about-team__content .tu-btn-primary {
    margin-top: 1.25rem;
}

/* Newsletter bar */
.tu-about-newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    margin-top: 1rem;
    padding: 1.25rem 1rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 2px 12px -2px rgba(15, 23, 42, 0.05);
}

@media (min-width: 768px) {
    .tu-about-newsletter {
        flex-direction: row;
        text-align: left;
        gap: 1.25rem;
        padding: 1.25rem 1.5rem;
    }
}

.tu-about-newsletter__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: #eff6ff;
    color: #2563eb;
    font-size: 1.125rem;
}

.tu-about-newsletter__copy {
    flex: 1;
    min-width: 0;
}

.tu-about-newsletter__copy h2 {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.tu-about-newsletter__copy p {
    margin-top: 0.2rem;
    font-size: 0.8125rem;
    color: #64748b;
}

.tu-about-newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

@media (min-width: 640px) {
    .tu-about-newsletter__form {
        flex-direction: row;
        width: auto;
        min-width: 18rem;
    }
}

@media (min-width: 768px) {
    .tu-about-newsletter__form {
        min-width: 22rem;
    }
}

.tu-about-newsletter__input {
    flex: 1;
    min-width: 0;
    border-radius: 0.75rem !important;
}

.tu-about-newsletter__btn {
    border-radius: 0.75rem !important;
    white-space: nowrap;
}

/* ── Static legal / FAQ pages ──────────────────────────────────────────────── */
.tu-static-page__title {
    margin-top: 0.35rem;
    font-family: "Sora", system-ui, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.tu-static-page__meta {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.tu-static-page__body {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #475569;
}

.tu-static-page__body section h2 {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f172a;
}

.tu-static-page__body section p {
    margin-top: 0.5rem;
}

.tu-static-page__body section p + p {
    margin-top: 0.65rem;
}

.tu-static-page__body ul {
    margin-top: 0.5rem;
    padding-left: 1.25rem;
    list-style: disc;
}

.tu-static-page__body ul li + li {
    margin-top: 0.35rem;
}

.tu-static-page__body a {
    color: #2563eb;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.tu-static-page__body a:hover {
    color: #1d4ed8;
}

.tu-static-page__cta {
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    padding: 1.5rem;
    text-align: center;
}

/* FAQ accordion */
.tu-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.tu-faq-item {
    border-radius: 0.875rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}

.tu-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.tu-faq-item summary::-webkit-details-marker {
    display: none;
}

.tu-faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: #eff6ff;
    color: #2563eb;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease;
}

.tu-faq-item[open] summary::after {
    content: "−";
    background: #2563eb;
    color: #fff;
}

.tu-faq-item__answer {
    padding: 0 1.15rem 1.15rem;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #64748b;
    border-top: 1px solid #f1f5f9;
}

.tu-faq-item__answer p {
    padding-top: 0.85rem;
}

.tu-faq-item__answer a {
    color: #2563eb;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Prevent horizontal page overflow ─────────────────────────────────────── */
html {
    overflow-x: hidden;
}

body.ticket-ui {
    overflow-x: hidden;
    max-width: 100%;
}

body.ticket-ui img,
body.ticket-ui video,
body.ticket-ui iframe {
    max-width: 100%;
    height: auto;
}

/* Search / date fields: icon must not cover placeholder */
.tu-search-leading-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.8125rem;
    pointer-events: none;
    z-index: 1;
}

.tu-input.tu-input-with-icon {
    padding-left: 2.75rem;
}

.tu-date-input {
    color-scheme: light;
    min-height: 2.85rem;
}

.tu-date-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.7;
    padding: 0.25rem;
}

/* Header: mobile account icon, desktop Sign in */
.tu-header-account-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    border: 1px solid var(--tu-border, #e2e8f0);
    color: #334155;
    background: #fff;
    font-size: 0.95rem;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.tu-header-account-icon:hover {
    color: #2563eb;
    border-color: #bfdbfe;
    background: #eff6ff;
}

.tu-header-signin {
    display: none !important;
}

@media (min-width: 768px) {
    .tu-header-account-icon {
        display: none !important;
    }

    .tu-header-signin {
        display: inline-flex !important;
    }
}

.tu-theme-light .tu-header-user-btn {
    color: #0f172a;
    background: #f8fafc;
    border-color: #e2e8f0;
}

/* Dual price range */
.tu-dual-range {
    position: relative;
    height: 1.75rem;
}

.tu-dual-range__track {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 4px;
    transform: translateY(-50%);
    border-radius: 9999px;
    background: #e2e8f0;
}

.tu-dual-range__fill {
    position: absolute;
    top: 0;
    bottom: 0;
    border-radius: inherit;
    background: #2563eb;
}

.tu-dual-range__input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1.75rem;
    margin: 0;
    background: transparent;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
}

.tu-dual-range__input::-webkit-slider-thumb {
    pointer-events: auto;
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 9999px;
    background: #fff;
    border: 2px solid #2563eb;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.18);
    cursor: pointer;
}

.tu-dual-range__input::-moz-range-thumb {
    pointer-events: auto;
    width: 18px;
    height: 18px;
    border-radius: 9999px;
    background: #fff;
    border: 2px solid #2563eb;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.18);
    cursor: pointer;
}

.tu-dual-range__input::-moz-range-track {
    background: transparent;
    border: none;
}

.tu-dual-range__input:nth-of-type(1) {
    z-index: 3;
}

.tu-dual-range__input:nth-of-type(2) {
    z-index: 4;
}

/* Page-level mobile spacing */
@media (max-width: 639px) {
    .tu-page-hero {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .tu-glass.rounded-2xl.p-16 {
        padding: 2.5rem 1.25rem;
    }
}

