/* ═══════════════════════════════════════════════════════════
   PASSTIK DESIGN SYSTEM �� Institutional Grade
   Inspired by European government portals & UN websites
   ═══════════════════════════════════════════════════════════ */

/* ── Google Fonts ──────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Custom Properties ─────────────────────────────── */
:root {
    /* Brand Colors — preserved */
    --pt-primary: #ec167f;
    --pt-primary-dark: #c9116a;
    --pt-primary-light: #f4479a;
    --pt-primary-subtle: #fef0f6;

    /* Neutrals */
    --pt-black: #0a0a0a;
    --pt-gray-900: #1a1a2e;
    --pt-gray-800: #2d2d3f;
    --pt-gray-700: #4a4a5a;
    --pt-gray-600: #6b6b7b;
    --pt-gray-500: #8e8e9e;
    --pt-gray-400: #b0b0be;
    --pt-gray-300: #d1d1db;
    --pt-gray-200: #e8e8ee;
    --pt-gray-100: #f4f4f7;
    --pt-gray-50: #fafafc;
    --pt-white: #ffffff;

    /* Semantic */
    --pt-success: #0d7a3e;
    --pt-warning: #b45309;
    --pt-danger: #b91c1c;
    --pt-info: #1e60a8;

    /* Typography */
    --pt-font-heading: 'DM Serif Display', 'Georgia', serif;
    --pt-font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

    /* Spacing (8px grid) */
    --pt-space-1: 0.25rem;  /* 4px */
    --pt-space-2: 0.5rem;   /* 8px */
    --pt-space-3: 0.75rem;  /* 12px */
    --pt-space-4: 1rem;     /* 16px */
    --pt-space-5: 1.5rem;   /* 24px */
    --pt-space-6: 2rem;     /* 32px */
    --pt-space-7: 2.5rem;   /* 40px */
    --pt-space-8: 3rem;     /* 48px */
    --pt-space-10: 4rem;    /* 64px */
    --pt-space-12: 5rem;    /* 80px */
    --pt-space-16: 8rem;    /* 128px */

    /* Borders */
    --pt-border: 1px solid var(--pt-gray-200);
    --pt-border-strong: 1px solid var(--pt-gray-300);
    --pt-radius-sm: 4px;
    --pt-radius: 6px;
    --pt-radius-lg: 8px;

    /* Shadows — very subtle */
    --pt-shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --pt-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --pt-shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --pt-shadow-lg: 0 8px 24px rgba(0,0,0,0.08);

    /* Layout */
    --pt-container: 1200px;
    --pt-header-height: 72px;
}

/* ── Reset & Base ──────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--pt-font-body) !important;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.7;
    color: var(--pt-gray-700);
    background-color: var(--pt-white);
    margin: 0;
    overflow-x: hidden;
}

/* Material Symbols base */
.mi {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'liga';
    vertical-align: middle;
}
.mi--sm { font-size: 18px; }
.mi--xs { font-size: 16px; }
.mi--fill { font-variation-settings: 'FILL' 1; }

/* Main content area */
main {
    min-height: 50vh;
}

/* Spacer between main content and newsletter/footer */
.pt-main-spacer {
    height: 64px;
}

@media (max-width: 768px) {
    .pt-main-spacer { height: 40px; }
}

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6,
.pt-heading {
    font-family: var(--pt-font-heading) !important;
    font-weight: 700;
    line-height: 1.3;
    color: var(--pt-gray-900);
    letter-spacing: -0.01em;
}

h1, .pt-h1 { font-size: 2.75rem; margin-bottom: var(--pt-space-6); }
h2, .pt-h2 { font-size: 2rem; margin-bottom: var(--pt-space-5); }
h3, .pt-h3 { font-size: 1.5rem; margin-bottom: var(--pt-space-4); }
h4, .pt-h4 { font-size: 1.25rem; margin-bottom: var(--pt-space-3); }
h5, .pt-h5 { font-size: 1.1rem; margin-bottom: var(--pt-space-3); }
h6, .pt-h6 { font-size: 0.95rem; margin-bottom: var(--pt-space-2); }

p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--pt-gray-700);
    margin-bottom: var(--pt-space-4);
}

a {
    color: var(--pt-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--pt-primary-dark);
    text-decoration: underline;
}

.pt-label {
    font-family: var(--pt-font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pt-gray-500);
}

.pt-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--pt-gray-600);
}

/* ── Container ─────────────────────────────────────────── */
.pt-container {
    max-width: var(--pt-container);
    margin: 0 auto;
    padding: 0 var(--pt-space-5);
}

/* ══════════════════════════════════════════════════════════
   INSTITUTIONAL HEADER
   ══════════════════════════════════════════════════════════ */
.pt-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--pt-white);
    border-bottom: var(--pt-border);
    transition: box-shadow 0.3s ease;
}

.pt-header.scrolled {
    box-shadow: var(--pt-shadow-md);
}

/* Top bar — thin institutional strip */
.pt-header__topbar {
    background: var(--pt-gray-900);
    color: var(--pt-gray-400);
    font-size: 0.8rem;
    padding: var(--pt-space-2) 0;
    border-bottom: 3px solid var(--pt-primary);
}

.pt-header__topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--pt-container);
    margin: 0 auto;
    padding: 0 var(--pt-space-5);
}

.pt-header__topbar a {
    color: var(--pt-gray-400);
    font-size: 0.8rem;
    font-weight: 500;
    transition: color 0.2s;
}

.pt-header__topbar a:hover {
    color: var(--pt-white);
    text-decoration: none;
}

.pt-header__topbar-links {
    display: flex;
    align-items: center;
    gap: var(--pt-space-5);
    list-style: none;
    margin: 0;
    padding: 0;
}

.pt-header__topbar-links li {
    display: flex;
    align-items: center;
}

/* Main nav */
.pt-header__main {
    padding: 0;
    max-width: var(--pt-container);
    margin: 0 auto;
    padding: 0 var(--pt-space-5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--pt-header-height);
}

.pt-header__logo {
    display: flex;
    align-items: center;
    gap: var(--pt-space-3);
    text-decoration: none;
}

.pt-header__logo img {
    height: 40px;
    width: auto;
}

.pt-header__logo-text {
    font-family: var(--pt-font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pt-gray-900);
    letter-spacing: -0.02em;
}

.pt-header__nav {
    display: flex;
    align-items: center;
    gap: var(--pt-space-7);
    list-style: none;
    margin: 0;
    padding: 0;
}

.pt-header__nav li a {
    font-family: var(--pt-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pt-gray-700);
    text-decoration: none;
    padding: var(--pt-space-2) 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.pt-header__nav li a:hover,
.pt-header__nav li a.active {
    color: var(--pt-gray-900);
    border-bottom-color: var(--pt-primary);
    text-decoration: none;
}

.pt-header__actions {
    display: flex;
    align-items: center;
    gap: var(--pt-space-3);
}

/* Mobile toggle */
.pt-header__mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: var(--pt-space-2);
    cursor: pointer;
    color: var(--pt-gray-900);
}

.pt-header__mobile-toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile menu */
.pt-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pt-white);
    z-index: 9999;
    padding: var(--pt-space-5);
    overflow-y: auto;
    flex-direction: column;
}

.pt-mobile-menu.is-open {
    display: flex;
}

.pt-mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--pt-space-5);
    border-bottom: var(--pt-border);
    margin-bottom: var(--pt-space-5);
}

.pt-mobile-menu__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--pt-gray-700);
    padding: var(--pt-space-2);
}

.pt-mobile-menu__nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pt-mobile-menu__nav li {
    border-bottom: var(--pt-border);
}

.pt-mobile-menu__nav li a {
    display: block;
    padding: var(--pt-space-4) 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pt-gray-800);
    text-decoration: none;
}

@media (max-width: 991px) {
    .pt-header__nav { display: none; }
    .pt-header__mobile-toggle { display: block; }
    .pt-header__actions .pt-btn { display: none; }
    .pt-header__topbar span { display: none; }
    .pt-header__topbar-inner { justify-content: flex-end; }
}

@media (max-width: 768px) {
    /* ── Header ── */
    .pt-header__topbar { padding: 6px 0; }
    .pt-header__topbar-inner { padding: 0 16px; }
    .pt-header__main {
        padding: 0 16px;
        height: 60px;
    }
    .pt-header__logo img { height: 32px; }

    /* ── Sections ── */
    .pt-section { padding: 48px 0; }
    .pt-container { padding: 0 16px; }
    .pt-section__title { font-size: 1.5rem; }
    .pt-section__header--center { margin-bottom: 32px; }

    /* ── Feature rows ── */
    .pt-feature-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .pt-feature-row--reverse { direction: ltr; }
    .pt-feature-row__image { aspect-ratio: 16/10; }

    /* ── Cards ── */
    .pt-feature-card { padding: 24px; }
    .pt-event-card__title { font-size: 1rem; }

    /* ── Trust bar ── */
    .pt-trust-bar__inner {
        gap: 16px;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        flex-wrap: nowrap;
        padding: 0 16px;
    }
    .pt-trust-bar__inner::-webkit-scrollbar { display: none; }
    .pt-trust-bar__item {
        flex-shrink: 0;
        font-size: 0.78rem;
    }

    /* ── Advantages ── */
    .pt-advantages-grid {
        grid-template-columns: 1fr !important;
    }

    /* ── App promo ── */
    .pt-app-promo {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .pt-app-promo__stores { justify-content: center; }

    /* ── CTA ── */
    .pt-cta__inner { padding: 48px 20px; }
    .pt-cta__title { font-size: 1.5rem; }

    /* ── Newsletter ── */
    .pt-newsletter__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 0;
    }
    .pt-newsletter__form {
        max-width: 100%;
        width: 100%;
        flex-direction: column;
    }

    /* ── Footer ── */
    .pt-footer__main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 16px 40px;
    }
    .pt-footer__bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }
    .pt-footer__legal { justify-content: center; }

    /* ── Page header ── */
    .pt-page-header { padding: 32px 0 28px; }
    .pt-page-header__inner { padding: 0 16px; }
    .pt-page-header__title { font-size: 1.5rem; }

    /* ── Filters ── */
    .pt-filters { padding: 16px; }
    .pt-filters__row { flex-direction: column; }
    .pt-filters__group { min-width: 100%; }

    /* ── Event detail ── */
    .pt-event-detail__banner { height: 240px; border-radius: 8px; }
    .pt-event-detail__banner-title { font-size: 1.4rem; }
    .pt-event-detail__banner-meta { flex-direction: column; gap: 6px; font-size: 0.82rem; }
    .pt-event-detail__info-bar { grid-template-columns: 1fr; }
    .pt-tabs__nav { gap: 0; }
    .pt-tabs__btn { padding: 12px 14px; font-size: 0.8rem; }

    /* ── Purchase form ── */
    .pt-purchase-form { padding: 24px 16px; }
    .pt-purchase-form__title { font-size: 1.25rem; }

    /* ── Pagination ── */
    .pagination .page-item .page-link {
        min-width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
}

/* ── Very small screens ── */
@media (max-width: 380px) {
    .pt-section__title { font-size: 1.3rem; }
    .pt-btn--lg { padding: 0.7rem 1.2rem; font-size: 0.85rem; }
    .pt-footer__social a { width: 32px; height: 32px; }
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.pt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--pt-space-2);
    font-family: var(--pt-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    padding: 0.75rem 1.5rem;
    border-radius: var(--pt-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none !important;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.pt-btn:hover {
    transform: translateY(-1px);
    text-decoration: none !important;
}

.pt-btn--primary {
    background: var(--pt-primary);
    color: var(--pt-white) !important;
    border-color: var(--pt-primary);
}

.pt-btn--primary:hover {
    background: var(--pt-primary-dark);
    border-color: var(--pt-primary-dark);
    color: var(--pt-white) !important;
}

.pt-btn--dark {
    background: var(--pt-gray-900);
    color: var(--pt-white) !important;
    border-color: var(--pt-gray-900);
}

.pt-btn--dark:hover {
    background: var(--pt-black);
    border-color: var(--pt-black);
    color: var(--pt-white) !important;
}

.pt-btn--outline {
    background: transparent;
    color: var(--pt-gray-900) !important;
    border-color: var(--pt-gray-300);
}

.pt-btn--outline:hover {
    border-color: var(--pt-gray-900);
    color: var(--pt-gray-900) !important;
}

.pt-btn--outline-white {
    background: transparent;
    color: var(--pt-white) !important;
    border-color: rgba(255,255,255,0.4);
}

.pt-btn--outline-white:hover {
    background: var(--pt-white);
    color: var(--pt-gray-900) !important;
    border-color: var(--pt-white);
}

.pt-btn--ghost {
    background: transparent;
    color: var(--pt-primary) !important;
    border-color: transparent;
    padding-left: 0;
    padding-right: 0;
}

.pt-btn--ghost:hover {
    color: var(--pt-primary-dark) !important;
    transform: none;
}

.pt-btn--sm {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

.pt-btn--lg {
    font-size: 1rem;
    padding: 1rem 2rem;
}

.pt-btn--icon-right svg,
.pt-btn--icon-right i {
    margin-left: var(--pt-space-1);
    transition: transform 0.2s;
}

.pt-btn--icon-right:hover svg,
.pt-btn--icon-right:hover i {
    transform: translateX(3px);
}

/* ══════════════════════════════════════════════════════════
   HERO / BANNER
   ══════════════════════════════════════════════════════════ */
.pt-hero {
    position: relative;
    display: block;
    background: #0a0a14;
    overflow: hidden;
    padding: 0;
    margin: 0;
    width: 100%;
}

/* Background image with zoom animation */
.pt-hero__bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    transform: scale(1.08);
    animation: ptHeroBgZoom 25s ease-in-out infinite alternate;
}

@keyframes ptHeroBgZoom {
    0%   { transform: scale(1.08); }
    100% { transform: scale(1.15); opacity: 0.22; }
}

/* Gradient overlay */
.pt-hero__overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        170deg,
        rgba(10,10,20,0.96) 0%,
        rgba(10,10,20,0.85) 40%,
        rgba(10,10,20,0.75) 100%
    );
}

/* Accent glow — bottom right */
.pt-hero__glow {
    position: absolute;
    bottom: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236,22,127,0.12) 0%, transparent 65%);
    pointer-events: none;
    animation: ptGlowPulse 8s ease-in-out infinite alternate;
}

@keyframes ptGlowPulse {
    0%   { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

/* Content wrapper — centered single column */
.pt-hero__content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    padding: 100px 24px 90px;
    text-align: center;
    width: 100%;
}

/* Stagger entrance */
.pt-hero__content .pt-hero-anim {
    opacity: 0;
    transform: translateY(28px);
    animation: ptFadeUp 0.65s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.pt-hero-anim--1 { animation-delay: 0.15s; }
.pt-hero-anim--2 { animation-delay: 0.35s; }
.pt-hero-anim--3 { animation-delay: 0.55s; }
.pt-hero-anim--4 { animation-delay: 0.75s; }
.pt-hero-anim--5 { animation-delay: 0.95s; }

@keyframes ptFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Eyebrow */
.pt-hero__eyebrow {
    display: inline-block;
    font-family: var(--pt-font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pt-primary-light);
    margin-bottom: 28px;
}

/* Title */
.pt-hero__title {
    font-family: var(--pt-font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 auto 28px;
    max-width: 780px;
    letter-spacing: -0.02em;
}

.pt-hero__title em {
    font-style: normal;
    position: relative;
    white-space: nowrap;
}

.pt-hero__title em::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 3px;
    background: var(--pt-primary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: ptUnderline 0.6s cubic-bezier(0.23, 1, 0.32, 1) 1s forwards;
}

@keyframes ptUnderline {
    to { transform: scaleX(1); }
}

/* Subtitle */
.pt-hero__subtitle {
    font-family: var(--pt-font-body);
    font-size: 1.12rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.5);
    max-width: 560px;
    margin: 0 auto 40px;
}

/* Actions */
.pt-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Stats bar — horizontal row at bottom of hero */
.pt-hero__stats-bar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin: 64px auto 0;
    max-width: 720px;
    width: 100%;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
}

.pt-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    text-align: center;
    padding: 28px 16px;
    position: relative;
    transition: background 0.3s ease;
}

.pt-hero__stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.08);
}

.pt-hero__stat:hover {
    background: rgba(255,255,255,0.04);
}

.pt-hero__stat-value {
    font-family: var(--pt-font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.pt-hero__stat-label {
    font-family: var(--pt-font-body);
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .pt-hero__stats-bar {
        flex-wrap: wrap;
    }
    .pt-hero__stat {
        flex: 1 1 45%;
        padding: 20px 12px;
    }
    .pt-hero__stat:nth-child(2)::after { display: none; }
    .pt-hero__stat:nth-child(3),
    .pt-hero__stat:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,0.08);
    }
}

/* Scroll indicator */
.pt-hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: ptFadeUp 0.5s ease 1.4s forwards;
}

.pt-hero__scroll-line {
    width: 1px;
    height: 32px;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
}

.pt-hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pt-primary);
    animation: ptScrollLine 2s ease-in-out infinite;
}

@keyframes ptScrollLine {
    0%   { top: -100%; }
    50%  { top: 100%; }
    100% { top: 100%; }
}

.pt-hero__scroll-text {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .pt-hero__content { padding: 64px 20px 56px !important; }
    .pt-hero__title { font-size: 2rem !important; }
    .pt-hero__subtitle { font-size: 1rem !important; }
    .pt-hero__stats-bar { flex-direction: column; gap: 0; }
    .pt-hero__stat { max-width: none; }
    .pt-hero__scroll { display: none; }
    .pt-hero__glow { width: 300px; height: 300px; bottom: -80px; right: -60px; }
}

/* ══════════════════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════════════════ */
.pt-section {
    padding: var(--pt-space-12) 0;
}

.pt-section--gray {
    background: var(--pt-gray-50);
}

.pt-section--dark {
    background: var(--pt-gray-900);
}

.pt-section--dark h2,
.pt-section--dark h3,
.pt-section--dark p {
    color: var(--pt-white);
}

.pt-section--dark p {
    color: var(--pt-gray-400);
}

.pt-section__header {
    margin-bottom: var(--pt-space-8);
}

.pt-section__header--center {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--pt-space-8);
}

.pt-section__eyebrow {
    font-family: var(--pt-font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pt-primary);
    margin-bottom: var(--pt-space-3);
    display: block;
}

.pt-section__title {
    font-family: var(--pt-font-heading) !important;
    font-size: 2.25rem;
    color: var(--pt-gray-900);
    margin-bottom: var(--pt-space-4);
}

.pt-section__desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--pt-gray-600);
    max-width: 580px;
}

.pt-section__header--center .pt-section__desc {
    margin-left: auto;
    margin-right: auto;
}

.pt-divider {
    width: 48px;
    height: 3px;
    background: var(--pt-primary);
    border: none;
    margin: var(--pt-space-4) 0;
}

.pt-divider--center {
    margin-left: auto;
    margin-right: auto;
}

/* ══════════════════════════════════════════════════════════
   CARDS
   ══════════════════════════════════════════════════════════ */

/* Event Card */
.pt-event-card {
    background: var(--pt-white);
    border: var(--pt-border);
    border-radius: var(--pt-radius-lg);
    overflow: hidden;
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pt-event-card:hover {
    box-shadow: var(--pt-shadow-lg);
    border-color: var(--pt-gray-300);
    transform: translateY(-2px);
}

.pt-event-card__image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.pt-event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pt-event-card:hover .pt-event-card__image img {
    transform: scale(1.03);
}

.pt-event-card__tag {
    position: absolute;
    top: var(--pt-space-3);
    left: var(--pt-space-3);
    background: var(--pt-white);
    color: var(--pt-gray-800);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: var(--pt-space-1) var(--pt-space-3);
    border-radius: var(--pt-radius-sm);
}

.pt-event-card__body {
    padding: var(--pt-space-5);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pt-event-card__date {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--pt-primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: var(--pt-space-2);
}

.pt-event-card__title {
    font-family: var(--pt-font-heading) !important;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pt-gray-900);
    margin-bottom: var(--pt-space-3);
    line-height: 1.4;
}

.pt-event-card__title a {
    color: inherit;
    text-decoration: none;
}

.pt-event-card__title a:hover {
    color: var(--pt-primary);
    text-decoration: none;
}

.pt-event-card__meta {
    display: flex;
    flex-direction: column;
    gap: var(--pt-space-2);
    margin-top: auto;
    padding-top: var(--pt-space-3);
    border-top: var(--pt-border);
}

.pt-event-card__meta-item {
    display: flex;
    align-items: center;
    gap: var(--pt-space-2);
    font-size: 0.85rem;
    color: var(--pt-gray-600);
}

.pt-event-card__meta-item i,
.pt-event-card__meta-item .far,
.pt-event-card__meta-item .fas {
    width: 16px;
    color: var(--pt-gray-400);
    font-size: 0.8rem;
}

.pt-event-card__footer {
    padding: var(--pt-space-4) var(--pt-space-5);
    border-top: var(--pt-border);
    background: var(--pt-gray-50);
}

/* Feature Card */
.pt-feature-card {
    padding: var(--pt-space-7);
    background: var(--pt-white);
    border: var(--pt-border);
    border-radius: var(--pt-radius-lg);
    transition: all 0.25s ease;
    height: 100%;
}

.pt-feature-card:hover {
    border-color: var(--pt-primary);
    box-shadow: var(--pt-shadow-md);
}

.pt-feature-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pt-primary-subtle);
    border-radius: var(--pt-radius);
    margin-bottom: var(--pt-space-5);
    color: var(--pt-primary);
    font-size: 1.3rem;
}

.pt-feature-card__title {
    font-family: var(--pt-font-heading) !important;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pt-gray-900);
    margin-bottom: var(--pt-space-3);
}

.pt-feature-card__text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--pt-gray-600);
    margin-bottom: var(--pt-space-4);
}

/* Stat Card */
.pt-stat-card {
    text-align: center;
    padding: var(--pt-space-7);
}

.pt-stat-card__value {
    font-family: var(--pt-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pt-primary);
    line-height: 1;
    margin-bottom: var(--pt-space-2);
}

.pt-stat-card__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pt-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════════════════
   FEATURE ROW (image + text side-by-side)
   ══════════════════════════════════════════════════════════ */
.pt-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--pt-space-10);
    align-items: center;
}

.pt-feature-row--reverse {
    direction: rtl;
}

.pt-feature-row--reverse > * {
    direction: ltr;
}

.pt-feature-row__image {
    border-radius: var(--pt-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.pt-feature-row__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pt-feature-row__content {
    padding: var(--pt-space-6) 0;
}

.pt-feature-row__list {
    list-style: none;
    padding: 0;
    margin: var(--pt-space-5) 0;
}

.pt-feature-row__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--pt-space-3);
    padding: var(--pt-space-3) 0;
    font-size: 0.95rem;
    color: var(--pt-gray-700);
    border-bottom: var(--pt-border);
}

.pt-feature-row__list li:last-child {
    border-bottom: none;
}

.pt-feature-row__list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--pt-primary-subtle);
    border-radius: 50%;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ec167f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 768px) {
    .pt-feature-row {
        grid-template-columns: 1fr;
        gap: var(--pt-space-6);
    }
    .pt-feature-row--reverse { direction: ltr; }
}

/* ══════════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════════ */
.pt-trust-bar {
    background: var(--pt-gray-50);
    border-top: var(--pt-border);
    border-bottom: var(--pt-border);
    padding: var(--pt-space-6) 0;
}

.pt-trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--pt-space-8);
    flex-wrap: wrap;
}

.pt-trust-bar__item {
    display: flex;
    align-items: center;
    gap: var(--pt-space-3);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pt-gray-600);
}

.pt-trust-bar__item i {
    color: var(--pt-primary);
    font-size: 1.1rem;
}

/* ══════════════════════════════════════════════════════════
   EVENT CAROUSEL
   ══════════════════════════════════════════════════════════ */
.pt-carousel-section {
    background: var(--pt-gray-50);
    border-bottom: var(--pt-border);
    padding: var(--pt-space-8) 0;
}

.pt-carousel-section .owl-carousel .owl-item {
    padding: var(--pt-space-2);
}

.pt-carousel-section .owl-carousel .owl-stage {
    display: flex !important;
}

.pt-carousel-section .owl-carousel .owl-item {
    display: flex !important;
    flex: 1 0 auto;
}

.pt-carousel-section .owl-carousel .owl-item > * {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.pt-carousel-card {
    background: var(--pt-white);
    border: var(--pt-border);
    border-radius: var(--pt-radius-lg);
    overflow: hidden;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.pt-carousel-card:hover {
    box-shadow: var(--pt-shadow-md);
}

.pt-carousel-card__image {
    aspect-ratio: 3/2;
    overflow: hidden;
    flex-shrink: 0;
}

.pt-carousel-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pt-carousel-card__body {
    padding: var(--pt-space-4);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pt-carousel-card__title {
    font-family: var(--pt-font-heading) !important;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--pt-gray-900);
    margin-bottom: var(--pt-space-2);
    line-height: 1.3;
    /* Clamp title to 2 lines for uniform height */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pt-carousel-card__meta {
    font-size: 0.8rem;
    color: var(--pt-gray-500);
    margin-bottom: var(--pt-space-2);
}

.pt-carousel-card__link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pt-primary);
    margin-top: auto;
}

/* ══════════════════════════════════════════════════════════
   ADVANTAGES / GRID
   ══════════════════════════════════════════════════════════ */
.pt-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--pt-space-5);
}

.pt-advantage-item {
    padding: var(--pt-space-6);
    background: var(--pt-white);
    border: var(--pt-border);
    border-radius: var(--pt-radius-lg);
    transition: border-color 0.2s;
}

.pt-advantage-item:hover {
    border-color: var(--pt-primary);
}

.pt-advantage-item__title {
    font-family: var(--pt-font-heading) !important;
    font-size: 1rem;
    font-weight: 700;
    color: var(--pt-gray-900);
    margin-bottom: var(--pt-space-2);
}

.pt-advantage-item__text {
    font-size: 0.88rem;
    color: var(--pt-gray-600);
    line-height: 1.6;
    margin: 0;
}

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

/* ══════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════ */
.pt-cta {
    background: var(--pt-gray-900);
    position: relative;
    overflow: hidden;
}

.pt-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236,22,127,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.pt-cta__inner {
    text-align: center;
    padding: var(--pt-space-12) var(--pt-space-5);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pt-cta__title {
    font-family: var(--pt-font-heading) !important;
    font-size: 2rem;
    color: var(--pt-white) !important;
    margin-bottom: var(--pt-space-4);
}

.pt-cta__text {
    font-size: 1.05rem;
    color: var(--pt-gray-400);
    margin-bottom: var(--pt-space-7);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
.pt-testimonial {
    background: var(--pt-white);
    border: var(--pt-border);
    border-radius: var(--pt-radius-lg);
    padding: var(--pt-space-7);
    position: relative;
}

.pt-testimonial__quote {
    font-family: var(--pt-font-heading);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--pt-gray-700);
    margin-bottom: var(--pt-space-5);
}

.pt-testimonial__quote::before {
    content: open-quote;
    font-size: 3rem;
    color: var(--pt-primary);
    line-height: 0;
    vertical-align: -0.5em;
    margin-right: var(--pt-space-1);
    font-family: var(--pt-font-heading);
}

.pt-testimonial__author {
    font-weight: 700;
    color: var(--pt-gray-900);
    font-size: 0.9rem;
}

.pt-testimonial__stars {
    color: var(--pt-primary);
    font-size: 0.85rem;
    margin-bottom: var(--pt-space-3);
}

/* ══════════════════════════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════════════════════════ */
.pt-newsletter {
    background: var(--pt-primary-subtle);
    border-top: 3px solid var(--pt-primary);
}

.pt-newsletter__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--pt-space-7);
    padding: var(--pt-space-8) 0;
    flex-wrap: wrap;
}

.pt-newsletter__title {
    font-family: var(--pt-font-heading) !important;
    font-size: 1.4rem;
    color: var(--pt-gray-900);
    margin: 0;
}

.pt-newsletter__subtitle {
    font-size: 0.92rem;
    color: var(--pt-gray-600);
    margin: var(--pt-space-2) 0 0;
}

.pt-newsletter__form {
    display: flex;
    gap: var(--pt-space-3);
    flex: 1;
    max-width: 460px;
}

.pt-newsletter__form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: var(--pt-border-strong);
    border-radius: var(--pt-radius);
    font-family: var(--pt-font-body);
    font-size: 0.9rem;
    background: var(--pt-white);
    outline: none;
    transition: border-color 0.2s;
}

.pt-newsletter__form input:focus {
    border-color: var(--pt-primary);
}

@media (max-width: 768px) {
    .pt-newsletter__inner { flex-direction: column; align-items: flex-start; }
    .pt-newsletter__form { max-width: 100%; width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.pt-footer {
    background: var(--pt-gray-900);
    color: var(--pt-gray-400);
}

.pt-footer__main {
    max-width: var(--pt-container);
    margin: 0 auto;
    padding: var(--pt-space-10) var(--pt-space-5) var(--pt-space-8);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--pt-space-8);
}

.pt-footer__brand-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--pt-gray-500);
    margin: var(--pt-space-4) 0;
    max-width: 320px;
}

.pt-footer__social {
    display: flex;
    gap: var(--pt-space-3);
    list-style: none;
    padding: 0;
    margin: var(--pt-space-4) 0 0;
}

.pt-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--pt-gray-700);
    border-radius: var(--pt-radius-sm);
    color: var(--pt-gray-500);
    font-size: 0.85rem;
    transition: all 0.2s;
}

.pt-footer__social a:hover {
    border-color: var(--pt-primary);
    color: var(--pt-primary);
    text-decoration: none;
}

.pt-footer__heading {
    font-family: var(--pt-font-body) !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pt-gray-300);
    margin-bottom: var(--pt-space-5);
}

.pt-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pt-footer__links li {
    margin-bottom: var(--pt-space-3);
}

.pt-footer__links a {
    font-size: 0.88rem;
    color: var(--pt-gray-500);
    transition: color 0.2s;
}

.pt-footer__links a:hover {
    color: var(--pt-white);
    text-decoration: none;
}

.pt-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--pt-space-3);
    font-size: 0.88rem;
    color: var(--pt-gray-500);
    margin-bottom: var(--pt-space-4);
}

.pt-footer__contact-item i {
    color: var(--pt-primary);
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}

.pt-footer__contact-item a {
    color: var(--pt-gray-400);
}

.pt-footer__contact-item a:hover {
    color: var(--pt-white);
    text-decoration: none;
}

.pt-footer__bottom {
    border-top: 1px solid var(--pt-gray-800);
    max-width: var(--pt-container);
    margin: 0 auto;
    padding: var(--pt-space-5) var(--pt-space-5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--pt-space-4);
}

.pt-footer__copyright {
    font-size: 0.82rem;
    color: var(--pt-gray-600);
}

.pt-footer__legal {
    display: flex;
    gap: var(--pt-space-5);
    list-style: none;
    padding: 0;
    margin: 0;
}

.pt-footer__legal a {
    font-size: 0.82rem;
    color: var(--pt-gray-500);
}

.pt-footer__legal a:hover {
    color: var(--pt-white);
    text-decoration: none;
}

@media (max-width: 768px) {
    .pt-footer__main {
        grid-template-columns: 1fr;
        gap: var(--pt-space-7);
    }
    .pt-footer__bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════════════════
   FILTERS / SEARCH BAR
   ══════════════════════════════════════════════════════════ */
.pt-filters {
    background: var(--pt-white);
    border: var(--pt-border);
    border-radius: var(--pt-radius-lg);
    padding: var(--pt-space-5);
    margin-bottom: var(--pt-space-7);
    box-shadow: var(--pt-shadow-sm);
}

.pt-filters__row {
    display: flex;
    gap: var(--pt-space-4);
    align-items: flex-end;
    flex-wrap: wrap;
}

.pt-filters__group {
    flex: 1;
    min-width: 160px;
}

.pt-filters__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--pt-gray-500);
    margin-bottom: var(--pt-space-2);
}

.pt-filters__input,
.pt-filters__select {
    width: 100%;
    padding: 0.65rem 0.875rem;
    border: var(--pt-border-strong);
    border-radius: var(--pt-radius);
    font-family: var(--pt-font-body);
    font-size: 0.88rem;
    color: var(--pt-gray-800);
    background: var(--pt-white);
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}

.pt-filters__input:focus,
.pt-filters__select:focus {
    border-color: var(--pt-primary);
    box-shadow: 0 0 0 3px rgba(236,22,127,0.08);
}

.pt-filters__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b7b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* ══════════════════════════════════════════════════════════
   PAGE HEADER (listing pages)
   ══════════════════════════════════════════════════════════ */
.pt-page-header {
    background: var(--pt-gray-900);
    padding: var(--pt-space-8) 0 var(--pt-space-7);
    border-bottom: 3px solid var(--pt-primary);
}

.pt-page-header__inner {
    max-width: var(--pt-container);
    margin: 0 auto;
    padding: 0 var(--pt-space-5);
}

.pt-page-header__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pt-primary-light);
    margin-bottom: var(--pt-space-3);
}

.pt-page-header__title {
    font-family: var(--pt-font-heading) !important;
    font-size: 2.25rem;
    color: var(--pt-white) !important;
    margin: 0;
}

.pt-page-header__breadcrumb {
    display: flex;
    gap: var(--pt-space-2);
    list-style: none;
    padding: 0;
    margin: var(--pt-space-4) 0 0;
    font-size: 0.82rem;
}

.pt-page-header__breadcrumb a {
    color: var(--pt-gray-400);
}

.pt-page-header__breadcrumb span {
    color: var(--pt-gray-600);
}

.pt-page-header__breadcrumb li:last-child {
    color: var(--pt-gray-300);
}

/* ══════════════════════════════════════════════════════════
   EVENT DETAIL
   ══════════════════════════════════════════════════════════ */
.pt-event-detail__banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: var(--pt-radius-lg);
    margin-bottom: var(--pt-space-7);
}

.pt-event-detail__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pt-event-detail__banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--pt-space-7);
}

.pt-event-detail__banner-content {
    color: var(--pt-white);
}

.pt-event-detail__banner-title {
    font-family: var(--pt-font-heading) !important;
    font-size: 2.25rem;
    color: var(--pt-white) !important;
    margin-bottom: var(--pt-space-3);
}

.pt-event-detail__banner-meta {
    display: flex;
    gap: var(--pt-space-5);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

.pt-event-detail__banner-meta i {
    margin-right: var(--pt-space-2);
    color: var(--pt-primary-light);
}

.pt-event-detail__info-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--pt-space-4);
    background: var(--pt-gray-50);
    border: var(--pt-border);
    border-radius: var(--pt-radius-lg);
    padding: var(--pt-space-5);
    margin-bottom: var(--pt-space-7);
}

.pt-event-detail__info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--pt-space-3);
}

.pt-event-detail__info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pt-white);
    border: var(--pt-border);
    border-radius: var(--pt-radius);
    color: var(--pt-primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pt-event-detail__info-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--pt-gray-500);
    margin-bottom: 2px;
}

.pt-event-detail__info-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--pt-gray-900);
}

/* Tabs */
.pt-tabs {
    margin-bottom: var(--pt-space-7);
}

.pt-tabs__nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--pt-gray-200);
    margin-bottom: var(--pt-space-6);
    overflow-x: auto;
}

.pt-tabs__btn {
    padding: var(--pt-space-4) var(--pt-space-5);
    font-family: var(--pt-font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--pt-gray-500);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.pt-tabs__btn:hover {
    color: var(--pt-gray-800);
}

.pt-tabs__btn.active,
.pt-tabs__btn.active-btn {
    color: var(--pt-primary);
    border-bottom-color: var(--pt-primary);
}

/* Ticket Card */
.pt-ticket-card {
    background: var(--pt-white);
    border: 2px solid var(--pt-gray-200);
    border-radius: var(--pt-radius-lg);
    padding: var(--pt-space-6);
    text-align: center;
    transition: all 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pt-ticket-card:hover {
    border-color: var(--pt-primary);
    box-shadow: var(--pt-shadow-md);
}

.pt-ticket-card__type {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pt-primary);
    margin-bottom: var(--pt-space-3);
}

.pt-ticket-card__price {
    font-family: var(--pt-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--pt-gray-900);
    margin-bottom: var(--pt-space-2);
}

.pt-ticket-card__currency {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pt-gray-500);
}

.pt-ticket-card__desc {
    font-size: 0.88rem;
    color: var(--pt-gray-600);
    margin: var(--pt-space-4) 0;
    flex: 1;
}

/* Purchase Form */
.pt-purchase-form {
    background: var(--pt-gray-50);
    border: var(--pt-border);
    border-radius: var(--pt-radius-lg);
    padding: var(--pt-space-7);
}

.pt-purchase-form__title {
    font-family: var(--pt-font-heading) !important;
    font-size: 1.5rem;
    color: var(--pt-gray-900);
    margin-bottom: var(--pt-space-2);
}

.pt-purchase-form__subtitle {
    font-size: 0.92rem;
    color: var(--pt-gray-600);
    margin-bottom: var(--pt-space-6);
}

.pt-form-group {
    margin-bottom: var(--pt-space-4);
}

.pt-form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--pt-gray-700);
    margin-bottom: var(--pt-space-2);
}

.pt-form-input,
.pt-form-select {
    width: 100%;
    padding: 0.7rem 1rem;
    border: var(--pt-border-strong);
    border-radius: var(--pt-radius);
    font-family: var(--pt-font-body);
    font-size: 0.9rem;
    color: var(--pt-gray-800);
    background: var(--pt-white);
    outline: none;
    transition: border-color 0.2s;
}

.pt-form-input:focus,
.pt-form-select:focus {
    border-color: var(--pt-primary);
    box-shadow: 0 0 0 3px rgba(236,22,127,0.08);
}

.pt-form-input:disabled {
    background: var(--pt-gray-100);
    color: var(--pt-gray-600);
}

.pt-form-total {
    background: var(--pt-gray-900);
    color: var(--pt-white);
    border-radius: var(--pt-radius);
    padding: var(--pt-space-4) var(--pt-space-5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: var(--pt-space-5) 0;
}

.pt-form-total__label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pt-form-total__value {
    font-family: var(--pt-font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

/* ══════════════════════════════════════════════════════════
   APP PROMOTION
   ══════════════════════════════════════════════════════════ */
.pt-app-promo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--pt-space-10);
    align-items: center;
}

.pt-app-promo__stores {
    display: flex;
    gap: var(--pt-space-3);
    margin-top: var(--pt-space-5);
}

.pt-app-promo__stores img {
    height: 44px;
    transition: opacity 0.2s;
}

.pt-app-promo__stores a:hover img {
    opacity: 0.8;
}

.pt-app-promo__image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .pt-app-promo {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .pt-app-promo__stores { justify-content: center; }
}

/* ══════════════════════════════════════════════════════════
   PAGINATION
   ══════════════════════════════════════════════════════════ */
.pt-pagination,
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--pt-space-2);
    margin: var(--pt-space-7) 0;
}

.pagination .page-item .page-link,
.pt-pagination a,
.pt-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--pt-space-3);
    border: var(--pt-border-strong);
    border-radius: var(--pt-radius);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pt-gray-700);
    background: var(--pt-white);
    text-decoration: none;
    transition: all 0.2s;
}

.pagination .page-item.active .page-link,
.pt-pagination .active {
    background: var(--pt-primary);
    border-color: var(--pt-primary);
    color: var(--pt-white);
}

.pagination .page-link:hover {
    background: var(--pt-gray-50);
    border-color: var(--pt-gray-400);
    text-decoration: none;
}

/* ══════════════════════════════════════════════════════════
   SCROLL TO TOP
   ══════════════════════════════════════════════════════════ */
.pt-scroll-top {
    position: fixed;
    bottom: var(--pt-space-6);
    right: var(--pt-space-6);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pt-gray-900);
    color: var(--pt-white);
    border: none;
    border-radius: var(--pt-radius);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    font-size: 0.9rem;
}

.pt-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.pt-scroll-top:hover {
    background: var(--pt-primary);
}

/* ══════════════════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════════════════ */
.pt-text-center { text-align: center; }
.pt-text-left { text-align: left; }
.pt-mt-0 { margin-top: 0 !important; }
.pt-mb-0 { margin-bottom: 0 !important; }
.pt-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ══════════════════════════════════════════════════════════
   EQUAL-HEIGHT CARD ROWS
   ══════════════════════════════════════════════════════════ */

/* Ensure Bootstrap .row with cards stretches children equally */
.pt-equal-row {
    display: flex;
    flex-wrap: wrap;
}

.pt-equal-row > [class*="col-"] {
    display: flex;
}

.pt-equal-row .pt-event-card,
.pt-equal-row .pt-vote-card {
    height: 100%;
    width: 100%;
}

/* Clamp event card titles to 2 lines */
.pt-event-card__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em; /* Reserve space for 2 lines */
}

/* ══════════════════════════════════════════════════════════
   VOTE CARD
   ══════════════════════════════════════════════════════════ */
.pt-vote-card {
    background: var(--pt-white);
    border: var(--pt-border);
    border-radius: var(--pt-radius-lg);
    overflow: hidden;
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pt-vote-card:hover {
    box-shadow: var(--pt-shadow-lg);
    border-color: var(--pt-gray-300);
    transform: translateY(-2px);
}

.pt-vote-card__image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    flex-shrink: 0;
}

.pt-vote-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pt-vote-card:hover .pt-vote-card__image img {
    transform: scale(1.03);
}

.pt-vote-card__badge {
    position: absolute;
    top: var(--pt-space-3);
    left: var(--pt-space-3);
    background: var(--pt-primary);
    color: var(--pt-white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: var(--pt-space-1) var(--pt-space-3);
    border-radius: var(--pt-radius-sm);
}

.pt-vote-card__body {
    padding: var(--pt-space-5);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pt-vote-card__title {
    font-family: var(--pt-font-heading) !important;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pt-gray-900);
    margin-bottom: var(--pt-space-3);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.pt-vote-card__title a {
    color: inherit;
    text-decoration: none;
}

.pt-vote-card__title a:hover {
    color: var(--pt-primary);
    text-decoration: none;
}

.pt-vote-card__meta {
    display: flex;
    align-items: center;
    gap: var(--pt-space-2);
    font-size: 0.85rem;
    color: var(--pt-gray-600);
    margin-bottom: var(--pt-space-3);
}

.pt-vote-card__meta i {
    color: var(--pt-gray-400);
    font-size: 0.8rem;
    width: 16px;
}

.pt-vote-card__countdown {
    margin-top: auto;
    padding: var(--pt-space-3) var(--pt-space-4);
    background: var(--pt-gray-50);
    border: var(--pt-border);
    border-radius: var(--pt-radius);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pt-gray-700);
    display: flex;
    align-items: center;
    gap: var(--pt-space-2);
}

.pt-vote-card__countdown i {
    color: var(--pt-primary);
    font-size: 0.9rem;
}

.pt-vote-card__footer {
    padding: var(--pt-space-4) var(--pt-space-5);
    border-top: var(--pt-border);
    background: var(--pt-gray-50);
}

/* ══════════════════════════════════════════════════════════
   OWL CAROUSEL GLOBAL OVERRIDES
   ══════════════════════════════════════════════════════════ */
.owl-nav { display: none !important; }

/* ══════════════════════════════════════════════════════════
   HIDE OLD THEME ELEMENTS
   ══════════════════════════════════════════════════════════ */
.page-wrapper > .preloader,
.header-span,
#search-popup,
.scroll-to-top.scroll-to-target,
.color-palate {
    display: none !important;
}
