/* YourBoxOffice - Homepage Redesign 2026 */
/* Modern, Minimalist Design System */
/* SCOPED: All styles only apply within .homepage-2026 wrapper */

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
.homepage-2026 {
    /* Brand Colors */
    --ybo-dark: #1c323a;
    --ybo-blue: #319eca;
    --ybo-blue-light: #4db3d9;
    --ybo-blue-dark: #2a8bb8;
    --ybo-yellow: #e3ba2d;
    --ybo-yellow-light: #edc94d;
    --ybo-yellow-dark: #c9a526;
    --ybo-grey: #e9f0f3;
    --ybo-grey-light: #f5f8fa;
    --ybo-grey-dark: #d0dce2;

    /* Neutral Colors */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-text: #2d3748;
    --color-text-light: #64748b;
    --color-text-muted: #94a3b8;

    /* Typography - Using site defaults, no overrides */

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(28, 50, 58, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(28, 50, 58, 0.1), 0 2px 4px -2px rgba(28, 50, 58, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(28, 50, 58, 0.1), 0 4px 6px -4px rgba(28, 50, 58, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(28, 50, 58, 0.1), 0 8px 10px -6px rgba(28, 50, 58, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(28, 50, 58, 0.25);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    --transition-slower: 500ms ease;

    /* Z-Index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

/* ============================================
   BASE STYLES
   ============================================ */
/* Using existing site header/footer/buttons - no overrides */

/* ============================================
   BUTTONS - 2026 (Scoped to homepage only)
   ============================================ */
.homepage-2026 .btn-2026 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.homepage-2026 .btn-2026-primary {
    background: var(--ybo-blue);
    color: var(--color-white);
    box-shadow: 0 4px 14px 0 rgba(49, 158, 202, 0.39);
}

.homepage-2026 .btn-2026-primary:hover {
    background: var(--ybo-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(49, 158, 202, 0.45);
}

.homepage-2026 .btn-2026-secondary {
    background: var(--ybo-yellow);
    color: var(--ybo-dark);
    box-shadow: 0 4px 14px 0 rgba(227, 186, 45, 0.39);
}

.homepage-2026 .btn-2026-secondary:hover {
    background: var(--ybo-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(227, 186, 45, 0.45);
}

.homepage-2026 .btn-2026-outline {
    background: transparent;
    color: var(--ybo-dark);
    border: 2px solid var(--ybo-grey-dark);
}

.homepage-2026 .btn-2026-outline:hover {
    border-color: var(--ybo-blue);
    color: var(--ybo-blue);
    background: rgba(49, 158, 202, 0.05);
}

.homepage-2026 .btn-2026-ghost {
    background: transparent;
    color: var(--color-text);
    padding: var(--space-2) var(--space-4);
}

.homepage-2026 .btn-2026-ghost:hover {
    background: var(--ybo-grey-light);
}

.homepage-2026 .btn-2026-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    border-radius: var(--radius-xl);
}

.homepage-2026 .btn-2026-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

/* ============================================
   HERO SECTION - 2026
   ============================================ */
.hero-2026 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--space-24) var(--space-6);
    background: linear-gradient(160deg, #1c323a 0%, #234550 30%, #2a5565 50%, #234550 70%, #1c323a 100%);
}

/* Decorative glowing orbs */
.hero-2026::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(49, 158, 202, 0.25) 0%, transparent 60%);
    pointer-events: none;
    animation: float 12s ease-in-out infinite;
}

.hero-2026::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 70%;
    height: 90%;
    background: radial-gradient(ellipse, rgba(227, 186, 45, 0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -15px) scale(1.05); }
}

.hero-2026 .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    filter: blur(2px);
}

.hero-2026 .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    padding: var(--space-8);
}

.hero-2026 .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--color-white);
    margin-bottom: var(--space-6);
    backdrop-filter: blur(10px);
}

.hero-2026 .hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--ybo-yellow);
}

.hero-2026 h1 {
    font-size: clamp(38px, 6vw, 56px);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-2026 h1 .highlight {
    background: linear-gradient(135deg, var(--ybo-yellow) 0%, var(--ybo-yellow-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-2026 .hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-2026 .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
    margin-bottom: var(--space-12);
}

.hero-2026 .hero-buttons .btn-2026 {
    min-width: 180px;
}

.hero-2026 .hero-buttons .btn-2026 svg {
    width: 20px;
    height: 20px;
}

/* Lost Ticket Form in Hero */
.hero-2026 .lost-ticket-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    max-width: 500px;
    margin: 0 auto;
}

.hero-2026 .lost-ticket-form h4 {
    color: var(--color-white);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-2026 .lost-ticket-form h4 svg {
    color: var(--ybo-yellow);
    flex-shrink: 0;
}

.hero-2026 .lost-ticket-form .form-row {
    display: flex;
    gap: var(--space-3);
}

.hero-2026 .lost-ticket-form input {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: var(--color-white);
    font-size: var(--text-sm);
    outline: none;
    transition: all var(--transition-fast);
}

.hero-2026 .lost-ticket-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hero-2026 .lost-ticket-form input:focus {
    border-color: var(--ybo-yellow);
    background: rgba(255, 255, 255, 0.2);
}

.hero-2026 .lost-ticket-form button {
    padding: var(--space-3) var(--space-6);
}

.hero-2026 .lost-ticket-form .form-hint {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-xs);
    margin-top: var(--space-3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-2026 .lost-ticket-form .form-hint svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.hero-2026 .lost-ticket-form button svg {
    flex-shrink: 0;
}

.hero-2026 .lost-ticket-form button .spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-2026 .lost-ticket-form .form-message {
    margin-top: var(--space-3);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-2026 .lost-ticket-form .form-message.success {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.hero-2026 .lost-ticket-form .form-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.hero-2026 .lost-ticket-form .form-message svg {
    flex-shrink: 0;
}

/* Scroll Indicator */
.hero-2026 .scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-xs);
    animation: bounce 2s infinite;
}

.hero-2026 .scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   TRUST STATISTICS SECTION - 2026
   ============================================ */
.trust-stats-2026 {
    padding: var(--space-20) var(--space-6);
    background: var(--color-white);
    position: relative;
}

.trust-stats-2026::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--ybo-blue), var(--ybo-yellow));
    border-radius: var(--radius-full);
}

.trust-stats-2026 .stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-stats-2026 .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.trust-stats-2026 .stat-item {
    text-align: center;
    padding: var(--space-6);
}

.trust-stats-2026 .stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-4);
    background: linear-gradient(135deg, var(--ybo-grey-light) 0%, var(--ybo-grey) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-stats-2026 .stat-icon svg {
    width: 32px;
    height: 32px;
    color: var(--ybo-blue);
}

.trust-stats-2026 .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--ybo-dark);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.trust-stats-2026 .stat-number .counter {
    display: inline-block;
}

.trust-stats-2026 .stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    font-weight: var(--font-medium);
}

/* ============================================
   FEATURED EVENTS SECTION - 2026
   ============================================ */
.featured-events-2026 {
    padding: var(--space-20) var(--space-6);
    background: var(--ybo-grey-light);
}

.featured-events-2026 .section-container {
    max-width: 1320px;
    margin: 0 auto;
}

.featured-events-2026 .section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.featured-events-2026 .section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(49, 158, 202, 0.1);
    color: var(--ybo-blue);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-4);
}

.featured-events-2026 .section-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.featured-events-2026 .section-description {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.featured-events-2026 .events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.featured-events-2026 .event-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
}

.featured-events-2026 .event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.featured-events-2026 .event-card .event-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.featured-events-2026 .event-card .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.featured-events-2026 .event-card:hover .event-image img {
    transform: scale(1.05);
}

.featured-events-2026 .event-card .event-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    padding: var(--space-1) var(--space-3);
    background: var(--ybo-yellow);
    color: var(--ybo-dark);
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-events-2026 .event-card .event-content {
    padding: var(--space-6);
}

.featured-events-2026 .event-card .event-date {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--ybo-blue);
    font-weight: var(--font-medium);
    margin-bottom: var(--space-3);
}

.featured-events-2026 .event-card .event-date svg {
    width: 16px;
    height: 16px;
}

.featured-events-2026 .event-card .event-title {
    font-size: 20px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.featured-events-2026 .event-card .event-title a {
    color: var(--ybo-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.featured-events-2026 .event-card .event-title a:hover {
    color: var(--ybo-blue);
}

.featured-events-2026 .event-card .event-venue {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-4);
}

.featured-events-2026 .event-card .event-venue svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.featured-events-2026 .event-card .event-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-4);
    border-top: 1px solid var(--ybo-grey);
}

.featured-events-2026 .event-card .event-price {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--ybo-dark);
}

.featured-events-2026 .event-card .event-price span {
    font-size: var(--text-sm);
    font-weight: var(--font-normal);
    color: var(--color-text-light);
}

/* ============================================
   SHOWS LIST SECTION - 2026 (Redesigned)
   ============================================ */
.shows-list-2026 {
    padding: 80px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.shows-list-2026 .section-container {
    max-width: 1320px;
    margin: 0 auto;
}

.shows-list-2026 .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.shows-list-2026 .section-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 28px;
    font-weight: 700;
    color: var(--ybo-dark);
}

.shows-list-2026 .section-title svg {
    width: 36px;
    height: 36px;
    color: var(--ybo-blue);
    padding: 8px;
    background: rgba(49, 158, 202, 0.1);
    border-radius: 10px;
}

.shows-list-2026 .view-all-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--ybo-blue);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(49, 158, 202, 0.08);
    transition: all 0.3s ease;
}

.shows-list-2026 .view-all-link:hover {
    background: var(--ybo-blue);
    color: white;
    gap: 12px;
}

.shows-list-2026 .view-all-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.shows-list-2026 .view-all-link:hover svg {
    transform: translateX(4px);
}

.shows-list-2026 .shows-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.shows-list-2026 .show-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    border: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(28, 50, 58, 0.08);
    position: relative;
}

.shows-list-2026 .show-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ybo-blue) 0%, var(--ybo-yellow) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shows-list-2026 .show-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(28, 50, 58, 0.15);
}

.shows-list-2026 .show-card:hover::before {
    opacity: 1;
}

.shows-list-2026 .show-card .show-image {
    display: block;
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, #e9f0f3 0%, #d1dce2 100%);
}

/* Placeholder icon when no image */
.shows-list-2026 .show-card .show-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23319eca' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M16.5 6v.75m0 3v.75m0 3v.75m0 3V18m-9-5.25h5.25M7.5 15h3M3.375 5.25c-.621 0-1.125.504-1.125 1.125v3.026a2.999 2.999 0 010 5.198v3.026c0 .621.504 1.125 1.125 1.125h17.25c.621 0 1.125-.504 1.125-1.125v-3.026a2.999 2.999 0 010-5.198V6.375c0-.621-.504-1.125-1.125-1.125H3.375z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 0;
}

.shows-list-2026 .show-card .show-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1;
}

.shows-list-2026 .show-card .show-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.shows-list-2026 .show-card:hover .show-image img,
.shows-list-2026 .show-card:hover .show-image-bg {
    transform: scale(1.1);
}

.shows-list-2026 .show-card .show-content {
    padding: 16px;
}

.shows-list-2026 .show-card .show-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.shows-list-2026 .show-card .show-title a {
    color: var(--ybo-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.shows-list-2026 .show-card .show-title a:hover {
    color: var(--ybo-blue);
}

.shows-list-2026 .show-card .show-venue {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.shows-list-2026 .show-card .show-venue svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--ybo-blue);
}

.shows-list-2026 .show-card .show-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ybo-dark);
    font-weight: 600;
    margin-bottom: 16px;
    padding: 8px 12px;
    background: rgba(49, 158, 202, 0.08);
    border-radius: 8px;
    width: fit-content;
}

.shows-list-2026 .show-card .show-date svg {
    width: 14px;
    height: 14px;
    color: var(--ybo-blue);
}

.shows-list-2026 .show-card .show-button {
    width: 100%;
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 600;
}

.shows-list-2026 .all-events-link {
    text-align: center;
    margin-top: var(--space-10);
}

/* ============================================
   TESTIMONIALS SECTION - 2026
   ============================================ */
.testimonials-2026 {
    padding: var(--space-20) var(--space-6);
    background: linear-gradient(180deg, #f8fafc 0%, #e9f0f3 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-2026::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(49, 158, 202, 0.08), transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(227, 186, 45, 0.05), transparent 50%);
    pointer-events: none;
}

.testimonials-2026 .section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-2026 .section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.testimonials-2026 .section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(49, 158, 202, 0.1);
    color: var(--ybo-blue);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-4);
}

.testimonials-2026 .section-title {
    font-size: 36px;
    color: var(--ybo-dark);
    margin-bottom: 16px;
}

.testimonials-2026 .section-description {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-2026 .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.testimonials-2026 .testimonial-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    transition: all var(--transition-slow);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.testimonials-2026 .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.testimonials-2026 .testimonial-stars {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
}

.testimonials-2026 .testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: var(--ybo-yellow);
    fill: var(--ybo-yellow);
}

.testimonials-2026 .testimonial-quote {
    font-size: var(--text-base);
    color: var(--color-text);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

.testimonials-2026 .testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonials-2026 .testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--ybo-blue), var(--ybo-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    color: var(--color-white);
    font-size: var(--text-lg);
}

.testimonials-2026 .testimonial-info .name {
    font-weight: var(--font-semibold);
    color: var(--ybo-dark);
    margin-bottom: var(--space-1);
}

.testimonials-2026 .testimonial-info .role {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

/* ============================================
   NEWSLETTER SECTION - 2026
   ============================================ */
.newsletter-2026 {
    padding: var(--space-20) var(--space-6);
    background: linear-gradient(135deg, #1c323a 0%, #2a4a55 50%, #1c323a 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-2026::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(49, 158, 202, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-2026::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(227, 186, 45, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-2026 .section-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-2026 .section-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-6);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-2026 .section-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

.newsletter-2026 .section-title {
    font-size: 30px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.newsletter-2026 .section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.newsletter-2026 .newsletter-form {
    display: flex;
    gap: var(--space-3);
    max-width: 500px;
    margin: 0 auto var(--space-4);
}

.newsletter-2026 .newsletter-form input {
    flex: 1;
    padding: var(--space-4) var(--space-5);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    font-size: var(--text-base);
    color: var(--ybo-dark);
    outline: none;
    transition: all var(--transition-fast);
}

.newsletter-2026 .newsletter-form input:focus {
    border-color: var(--ybo-yellow);
    box-shadow: 0 0 0 4px rgba(227, 186, 45, 0.2);
}

.newsletter-2026 .newsletter-form input::placeholder {
    color: var(--color-text-light);
}

.newsletter-2026 .newsletter-form button {
    padding: var(--space-4) var(--space-8);
    flex-shrink: 0;
}

.newsletter-2026 .privacy-note {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-2026 .privacy-note a {
    color: var(--color-white);
    text-decoration: underline;
}

/* Newsletter Success/Error States */
.newsletter-2026 .form-message {
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    margin-top: var(--space-4);
    font-size: var(--text-sm);
    display: none;
}

.newsletter-2026 .form-message.success {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
    display: block;
}

.newsletter-2026 .form-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    display: block;
}

/* ============================================
   FOOTER FEATURES SECTION - 2026
   ============================================ */
.footer-features-2026 {
    padding: var(--space-20) var(--space-6);
    background: var(--color-white);
}

.footer-features-2026 .section-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.footer-features-2026 .content-side h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.footer-features-2026 .content-side p {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 32px;
}

.footer-features-2026 .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-8);
}

.footer-features-2026 .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-size: var(--text-base);
    color: var(--color-text);
}

.footer-features-2026 .feature-list li svg {
    width: 24px;
    height: 24px;
    color: var(--ybo-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-features-2026 .buttons-row {
    display: flex;
    gap: var(--space-4);
}

.footer-features-2026 .image-side {
    position: relative;
}

.footer-features-2026 .image-side img {
    width: 100%;
    border-radius: var(--radius-2xl);
}

/* Using existing site footer - no overrides */

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .trust-stats-2026 .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

}

@media (max-width: 992px) {
    .header-2026 .nav-links {
        display: none;
    }

    .header-2026 .mobile-toggle {
        display: flex;
    }

    .footer-features-2026 .section-container {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .footer-features-2026 .image-side {
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --space-20: 4rem;
    }

    .hero-2026 {
        padding: var(--space-16) var(--space-4);
        min-height: auto;
        padding-top: 120px;
        padding-bottom: var(--space-16);
    }

    .hero-2026 h1 {
        font-size: 32px;
    }

    .hero-2026 .hero-description {
        font-size: 16px;
    }

    .hero-2026 .hero-buttons {
        flex-direction: column;
    }

    .hero-2026 .hero-buttons .btn-2026 {
        width: 100%;
    }

    .hero-2026 .lost-ticket-form .form-row {
        flex-direction: column;
    }

    .hero-2026 .scroll-indicator {
        display: none;
    }

    .trust-stats-2026 .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4);
    }

    .trust-stats-2026 .stat-number {
        font-size: 30px;
    }

    .featured-events-2026 .events-grid,
    .shows-list-2026 .shows-grid,
    .testimonials-2026 .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .featured-events-2026 .section-title,
    .testimonials-2026 .section-title,
    .newsletter-2026 .section-title,
    .footer-features-2026 .content-side h2 {
        font-size: 24px;
    }

    .newsletter-2026 .newsletter-form {
        flex-direction: column;
    }

    .newsletter-2026 .newsletter-form button {
        width: 100%;
    }

    .footer-features-2026 .buttons-row {
        flex-direction: column;
    }

    .shows-list-2026 .section-header {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for grids */
.animate-on-scroll.visible:nth-child(1) { transition-delay: 0ms; }
.animate-on-scroll.visible:nth-child(2) { transition-delay: 100ms; }
.animate-on-scroll.visible:nth-child(3) { transition-delay: 200ms; }
.animate-on-scroll.visible:nth-child(4) { transition-delay: 300ms; }
.animate-on-scroll.visible:nth-child(5) { transition-delay: 400ms; }
.animate-on-scroll.visible:nth-child(6) { transition-delay: 500ms; }

/* Counter Animation */
.counter-animate {
    transition: all 0.4s ease;
}

/* ============================================
   SHARED PAGE STYLES - 2026
   (Used across About, Sell Tickets, Events, Contact)
   ============================================ */

/* Design tokens for all 2026 pages */
.about-2026,
.selltickets-2026,
.events-page-2026,
.contact-2026 {
    --ybo-dark: #1c323a;
    --ybo-blue: #319eca;
    --ybo-blue-light: #4db3d9;
    --ybo-blue-dark: #2a8bb8;
    --ybo-yellow: #e3ba2d;
    --ybo-yellow-light: #edc94d;
    --ybo-yellow-dark: #c9a526;
    --ybo-grey: #e9f0f3;
    --ybo-grey-light: #f5f8fa;
    --ybo-grey-dark: #d0dce2;
    --color-white: #ffffff;
    --color-text: #2d3748;
    --color-text-light: #64748b;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    --shadow-md: 0 4px 6px -1px rgba(28, 50, 58, 0.1), 0 2px 4px -2px rgba(28, 50, 58, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(28, 50, 58, 0.1), 0 4px 6px -4px rgba(28, 50, 58, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(28, 50, 58, 0.1), 0 8px 10px -6px rgba(28, 50, 58, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(28, 50, 58, 0.25);
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
}

/* Shared Button Styles */
.about-2026 .btn-2026,
.selltickets-2026 .btn-2026,
.events-page-2026 .btn-2026,
.contact-2026 .btn-2026 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.about-2026 .btn-2026-primary,
.selltickets-2026 .btn-2026-primary,
.events-page-2026 .btn-2026-primary,
.contact-2026 .btn-2026-primary {
    background: var(--ybo-blue);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(49, 158, 202, 0.39);
}

.about-2026 .btn-2026-primary:hover,
.selltickets-2026 .btn-2026-primary:hover,
.events-page-2026 .btn-2026-primary:hover,
.contact-2026 .btn-2026-primary:hover {
    background: var(--ybo-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 158, 202, 0.45);
}

.about-2026 .btn-2026-secondary,
.selltickets-2026 .btn-2026-secondary,
.events-page-2026 .btn-2026-secondary,
.contact-2026 .btn-2026-secondary {
    background: var(--ybo-yellow);
    color: var(--ybo-dark);
    box-shadow: 0 4px 14px rgba(227, 186, 45, 0.39);
}

.about-2026 .btn-2026-secondary:hover,
.selltickets-2026 .btn-2026-secondary:hover,
.events-page-2026 .btn-2026-secondary:hover,
.contact-2026 .btn-2026-secondary:hover {
    background: var(--ybo-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 186, 45, 0.45);
}

.about-2026 .btn-2026-outline,
.selltickets-2026 .btn-2026-outline,
.events-page-2026 .btn-2026-outline,
.contact-2026 .btn-2026-outline {
    background: transparent;
    color: var(--ybo-blue);
    border: 2px solid var(--ybo-blue);
}

.about-2026 .btn-2026-outline:hover,
.selltickets-2026 .btn-2026-outline:hover,
.events-page-2026 .btn-2026-outline:hover,
.contact-2026 .btn-2026-outline:hover {
    background: var(--ybo-blue);
    color: var(--color-white);
}

.btn-2026-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: var(--radius-xl);
}

.btn-2026-full {
    width: 100%;
}

/* Shared Hero Variants */
.page-hero-2026 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
    background: linear-gradient(160deg, #1c323a 0%, #234550 30%, #2a5565 50%, #234550 70%, #1c323a 100%);
}

.page-hero-2026.hero-short {
    min-height: 50vh;
}

.page-hero-2026.hero-thin {
    min-height: 40vh;
    padding: 100px 24px 60px;
}

.page-hero-2026 .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    filter: blur(2px);
}

.page-hero-2026 .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(49, 158, 202, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(227, 186, 45, 0.1) 0%, transparent 50%);
}

.page-hero-2026 .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.page-hero-2026 .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--color-white);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.page-hero-2026 .hero-badge svg {
    width: 18px;
    height: 18px;
    color: var(--ybo-yellow);
}

.page-hero-2026 h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-hero-2026 h1 .highlight {
    background: linear-gradient(135deg, var(--ybo-yellow) 0%, var(--ybo-yellow-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-2026 .hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* CMS Content in Hero */
.page-hero-2026 .cms-content {
    color: rgba(255, 255, 255, 0.85);
}

.page-hero-2026 .cms-content h1,
.page-hero-2026 .cms-content h2,
.page-hero-2026 .cms-content h3 {
    font-size: clamp(32px, 5vw, 48px) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.page-hero-2026 .cms-content h1 em,
.page-hero-2026 .cms-content h2 em,
.page-hero-2026 .cms-content h3 em,
.page-hero-2026 .cms-content h1 span,
.page-hero-2026 .cms-content h2 span,
.page-hero-2026 .cms-content h3 span {
    font-size: inherit !important;
    color: #e3ba2d !important;
    font-style: italic;
}

.page-hero-2026 .cms-content p,
.page-hero-2026 .cms-content span:not(h1 span):not(h2 span):not(h3 span) {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 18px;
    line-height: 1.6;
}

.page-hero-2026 .cms-content p em {
    color: #e3ba2d !important;
    font-style: italic;
}

/* ============================================
   ABOUT PAGE - 2026
   ============================================ */

/* About Icons Section */
.about-icons-2026 {
    padding: var(--space-16) 24px;
    background: var(--color-white);
}

.about-icons-2026 .section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-icons-2026 .section-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-8);
}

.about-icons-2026 .icons-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.about-icons-2026 .icon-item {
    padding: var(--space-6);
    background: var(--ybo-grey-light);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.about-icons-2026 .icon-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.about-icons-2026 .icon-item img {
    max-height: 48px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.about-icons-2026 .icon-item:hover img {
    opacity: 1;
}

/* About Content Section */
.about-content-2026 {
    padding: 80px 24px;
    background: #ffffff;
}

.about-content-2026 .section-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Introduction Card */
.about-content-2026 .intro-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7fa 100%);
    border-radius: 24px;
    padding: 48px;
    padding-left: 54px;
    margin-bottom: 64px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    box-shadow: 0 8px 32px rgba(49, 158, 202, 0.12);
    border: 1px solid rgba(49, 158, 202, 0.1);
}

.about-content-2026 .intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #319eca 0%, #e3ba2d 100%);
    border-radius: 24px 0 0 24px;
}

.about-content-2026 .intro-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(49, 158, 202, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-content-2026 .intro-content {
    position: relative;
    z-index: 1;
}

.about-content-2026 .intro-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1c323a;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.about-content-2026 .intro-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6f78;
    margin: 0 0 16px 0;
}

.about-content-2026 .intro-content p:last-of-type {
    margin-bottom: 0;
}

.about-content-2026 .intro-content em {
    color: #319eca;
    font-style: normal;
    font-weight: 600;
}

.about-content-2026 .intro-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.about-content-2026 .intro-actions .btn-2026 {
    white-space: nowrap;
    justify-content: center;
}

.about-content-2026 .intro-actions .btn-2026 svg {
    width: 20px;
    height: 20px;
}

.about-content-2026 .intro-actions .btn-2026-primary {
    background: linear-gradient(135deg, #319eca 0%, #2889b5 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(49, 158, 202, 0.3);
}

.about-content-2026 .intro-actions .btn-2026-primary:hover {
    background: linear-gradient(135deg, #3ab0dc 0%, #319eca 100%);
    box-shadow: 0 6px 16px rgba(49, 158, 202, 0.4);
}

.about-content-2026 .intro-actions .btn-2026-outline {
    border: 2px solid #e3ba2d;
    color: #1c323a;
    background: transparent;
}

.about-content-2026 .intro-actions .btn-2026-outline:hover {
    background: #e3ba2d;
    color: #1c323a;
}

@media (max-width: 900px) {
    .about-content-2026 .intro-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-content-2026 .intro-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Features Header */
.about-content-2026 .features-header {
    text-align: center;
    margin-bottom: 48px;
}

.about-content-2026 .features-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(49, 158, 202, 0.1);
    border-radius: 100px;
    color: #319eca;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-content-2026 .features-header .section-badge svg {
    width: 18px;
    height: 18px;
}

.about-content-2026 .features-header .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1c323a;
    margin: 0;
}

/* Features CMS Grid - Style the UL from CMS */
.about-content-2026 .features-cms-grid {
    display: block;
}

.about-content-2026 .features-cms-grid ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-content-2026 .features-cms-grid li {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 24px 24px 72px;
    border: 1px solid rgba(28, 50, 58, 0.08);
    border-left: 4px solid #319eca;
    box-shadow: 0 4px 16px rgba(28, 50, 58, 0.06);
    transition: all 300ms ease;
    position: relative;
}

.about-content-2026 .features-cms-grid li:nth-child(even) {
    border-left-color: #e3ba2d;
}

.about-content-2026 .features-cms-grid li::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 24px;
    width: 32px;
    height: 32px;
    background-color: #319eca;
    border-radius: 8px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 24px;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 24px;
}

/* Icon 1: Easy Set Up - Cog */
.about-content-2026 .features-cms-grid li:nth-child(1)::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9.594 3.94c.09-.542.56-.94 1.11-.94h2.593c.55 0 1.02.398 1.11.94l.213 1.281c.063.374.313.686.645.87.074.04.147.083.22.127.324.196.72.257 1.075.124l1.217-.456a1.125 1.125 0 011.37.49l1.296 2.247a1.125 1.125 0 01-.26 1.431l-1.003.827c-.293.24-.438.613-.431.992a6.759 6.759 0 010 .255c-.007.378.138.75.43.99l1.005.828c.424.35.534.954.26 1.43l-1.298 2.247a1.125 1.125 0 01-1.369.491l-1.217-.456c-.355-.133-.75-.072-1.076.124a6.57 6.57 0 01-.22.128c-.331.183-.581.495-.644.869l-.213 1.28c-.09.543-.56.941-1.11.941h-2.594c-.55 0-1.02-.398-1.11-.94l-.213-1.281c-.062-.374-.312-.686-.644-.87a6.52 6.52 0 01-.22-.127c-.325-.196-.72-.257-1.076-.124l-1.217.456a1.125 1.125 0 01-1.369-.49l-1.297-2.247a1.125 1.125 0 01.26-1.431l1.004-.827c.292-.24.437-.613.43-.992a6.932 6.932 0 010-.255c.007-.378-.138-.75-.43-.99l-1.004-.828a1.125 1.125 0 01-.26-1.43l1.297-2.247a1.125 1.125 0 011.37-.491l1.216.456c.356.133.751.072 1.076-.124.072-.044.146-.087.22-.128.332-.183.582-.495.644-.869l.214-1.281z' /%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15 12a3 3 0 11-6 0 3 3 0 016 0z' /%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9.594 3.94c.09-.542.56-.94 1.11-.94h2.593c.55 0 1.02.398 1.11.94l.213 1.281c.063.374.313.686.645.87.074.04.147.083.22.127.324.196.72.257 1.075.124l1.217-.456a1.125 1.125 0 011.37.49l1.296 2.247a1.125 1.125 0 01-.26 1.431l-1.003.827c-.293.24-.438.613-.431.992a6.759 6.759 0 010 .255c-.007.378.138.75.43.99l1.005.828c.424.35.534.954.26 1.43l-1.298 2.247a1.125 1.125 0 01-1.369.491l-1.217-.456c-.355-.133-.75-.072-1.076.124a6.57 6.57 0 01-.22.128c-.331.183-.581.495-.644.869l-.213 1.28c-.09.543-.56.941-1.11.941h-2.594c-.55 0-1.02-.398-1.11-.94l-.213-1.281c-.062-.374-.312-.686-.644-.87a6.52 6.52 0 01-.22-.127c-.325-.196-.72-.257-1.076-.124l-1.217.456a1.125 1.125 0 01-1.369-.49l-1.297-2.247a1.125 1.125 0 01.26-1.431l1.004-.827c.292-.24.437-.613.43-.992a6.932 6.932 0 010-.255c.007-.378-.138-.75-.43-.99l-1.004-.828a1.125 1.125 0 01-.26-1.43l1.297-2.247a1.125 1.125 0 011.37-.491l1.216.456c.356.133.751.072 1.076-.124.072-.044.146-.087.22-.128.332-.183.582-.495.644-.869l.214-1.281z' /%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15 12a3 3 0 11-6 0 3 3 0 016 0z' /%3E%3C/svg%3E");
}

/* Icon 2: Comprehensive Reporting - Chart */
.about-content-2026 .features-cms-grid li:nth-child(2)::before {
    background-color: #e3ba2d;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3 13.125C3 12.504 3.504 12 4.125 12h2.25c.621 0 1.125.504 1.125 1.125v6.75C7.5 20.496 6.996 21 6.375 21h-2.25A1.125 1.125 0 013 19.875v-6.75zM9.75 8.625c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125v11.25c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 01-1.125-1.125V8.625zM16.5 4.125c0-.621.504-1.125 1.125-1.125h2.25C20.496 3 21 3.504 21 4.125v15.75c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 01-1.125-1.125V4.125z' /%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3 13.125C3 12.504 3.504 12 4.125 12h2.25c.621 0 1.125.504 1.125 1.125v6.75C7.5 20.496 6.996 21 6.375 21h-2.25A1.125 1.125 0 013 19.875v-6.75zM9.75 8.625c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125v11.25c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 01-1.125-1.125V8.625zM16.5 4.125c0-.621.504-1.125 1.125-1.125h2.25C20.496 3 21 3.504 21 4.125v15.75c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 01-1.125-1.125V4.125z' /%3E%3C/svg%3E");
}

/* Icon 3: Low Cost - Currency */
.about-content-2026 .features-cms-grid li:nth-child(3)::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M14.25 7.756a4.5 4.5 0 100 8.488M7.5 10.5h5.25m-5.25 3h5.25M21 12a9 9 0 11-18 0 9 9 0 0118 0z' /%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M14.25 7.756a4.5 4.5 0 100 8.488M7.5 10.5h5.25m-5.25 3h5.25M21 12a9 9 0 11-18 0 9 9 0 0118 0z' /%3E%3C/svg%3E");
}

/* Icon 4: Take Direct Payments - Credit Card */
.about-content-2026 .features-cms-grid li:nth-child(4)::before {
    background-color: #e3ba2d;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M2.25 8.25h19.5M2.25 9h19.5m-16.5 5.25h6m-6 2.25h3m-3.75 3h15a2.25 2.25 0 002.25-2.25V6.75A2.25 2.25 0 0019.5 4.5h-15a2.25 2.25 0 00-2.25 2.25v10.5A2.25 2.25 0 004.5 19.5z' /%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M2.25 8.25h19.5M2.25 9h19.5m-16.5 5.25h6m-6 2.25h3m-3.75 3h15a2.25 2.25 0 002.25-2.25V6.75A2.25 2.25 0 0019.5 4.5h-15a2.25 2.25 0 00-2.25 2.25v10.5A2.25 2.25 0 004.5 19.5z' /%3E%3C/svg%3E");
}

/* Icon 5: Choice of Ticket Types - Ticket */
.about-content-2026 .features-cms-grid li:nth-child(5)::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M16.5 6v.75m0 3v.75m0 3v.75m0 3V18m-9-5.25h5.25M7.5 15h3M3.375 5.25c-.621 0-1.125.504-1.125 1.125v3.026a2.999 2.999 0 010 5.198v3.026c0 .621.504 1.125 1.125 1.125h17.25c.621 0 1.125-.504 1.125-1.125v-3.026a2.999 2.999 0 010-5.198V6.375c0-.621-.504-1.125-1.125-1.125H3.375z' /%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M16.5 6v.75m0 3v.75m0 3v.75m0 3V18m-9-5.25h5.25M7.5 15h3M3.375 5.25c-.621 0-1.125.504-1.125 1.125v3.026a2.999 2.999 0 010 5.198v3.026c0 .621.504 1.125 1.125 1.125h17.25c.621 0 1.125-.504 1.125-1.125v-3.026a2.999 2.999 0 010-5.198V6.375c0-.621-.504-1.125-1.125-1.125H3.375z' /%3E%3C/svg%3E");
}

/* Icon 6: Increase Event Awareness - Megaphone */
.about-content-2026 .features-cms-grid li:nth-child(6)::before {
    background-color: #e3ba2d;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M10.34 15.84c-.688-.06-1.386-.09-2.09-.09H7.5a4.5 4.5 0 110-9h.75c.704 0 1.402-.03 2.09-.09m0 9.18c.253.962.584 1.892.985 2.783.247.55.06 1.21-.463 1.511l-.657.38c-.551.318-1.26.117-1.527-.461a20.845 20.845 0 01-1.44-4.282m3.102.069a18.03 18.03 0 01-.59-4.59c0-1.586.205-3.124.59-4.59m0 9.18a23.848 23.848 0 018.835 2.535M10.34 6.66a23.847 23.847 0 008.835-2.535m0 0A23.74 23.74 0 0018.795 3m.38 1.125a23.91 23.91 0 011.014 5.395m-1.014 8.855c-.118.38-.245.754-.38 1.125m.38-1.125a23.91 23.91 0 001.014-5.395m0-3.46c.495.413.811 1.035.811 1.73 0 .695-.316 1.317-.811 1.73m0-3.46a24.347 24.347 0 010 3.46' /%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M10.34 15.84c-.688-.06-1.386-.09-2.09-.09H7.5a4.5 4.5 0 110-9h.75c.704 0 1.402-.03 2.09-.09m0 9.18c.253.962.584 1.892.985 2.783.247.55.06 1.21-.463 1.511l-.657.38c-.551.318-1.26.117-1.527-.461a20.845 20.845 0 01-1.44-4.282m3.102.069a18.03 18.03 0 01-.59-4.59c0-1.586.205-3.124.59-4.59m0 9.18a23.848 23.848 0 018.835 2.535M10.34 6.66a23.847 23.847 0 008.835-2.535m0 0A23.74 23.74 0 0018.795 3m.38 1.125a23.91 23.91 0 011.014 5.395m-1.014 8.855c-.118.38-.245.754-.38 1.125m.38-1.125a23.91 23.91 0 001.014-5.395m0-3.46c.495.413.811 1.035.811 1.73 0 .695-.316 1.317-.811 1.73m0-3.46a24.347 24.347 0 010 3.46' /%3E%3C/svg%3E");
}

.about-content-2026 .features-cms-grid li:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(28, 50, 58, 0.2);
}

.about-content-2026 .features-cms-grid li strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1c323a;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.about-content-2026 .features-cms-grid li p,
.about-content-2026 .features-cms-grid li br + *,
.about-content-2026 .features-cms-grid li strong ~ * {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

@media (max-width: 768px) {
    .about-content-2026 {
        padding: 60px 16px;
    }

    .about-content-2026 .intro-card {
        padding: 32px 24px;
    }

    .about-content-2026 .intro-content h2 {
        font-size: 24px;
    }

    .about-content-2026 .intro-actions {
        flex-direction: column;
    }

    .about-content-2026 .features-cms-grid ul {
        grid-template-columns: 1fr;
    }

    .about-content-2026 .features-header .section-title {
        font-size: 26px;
    }
}

/* About Team Section */
.about-team-2026 {
    padding: var(--space-20) 24px;
    background: linear-gradient(160deg, #1c323a 0%, #234550 50%, #1c323a 100%);
    position: relative;
}

.about-team-2026::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(49, 158, 202, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.about-team-2026 .section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-team-2026 .section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.about-team-2026 .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.about-team-2026 .section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.about-team-2026 .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.about-team-2026 .team-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-slow);
}

.about-team-2026 .team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.about-team-2026 .team-avatar {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    border: 4px solid var(--ybo-blue);
    margin: 0 auto var(--space-4);
    overflow: hidden;
    background: var(--ybo-grey);
}

.about-team-2026 .team-avatar img,
.about-team-2026 .team-avatar div {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}

.about-team-2026 .team-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--ybo-dark);
    margin-bottom: 4px;
}

.about-team-2026 .team-role {
    font-size: 14px;
    color: var(--color-text-light);
}

/* ============================================
   SELL TICKETS PAGE - 2026
   ============================================ */

/* Sell Tickets Features Section */
.selltickets-features-2026 {
    padding: 100px 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #e9f0f3 100%);
    position: relative;
    overflow: hidden;
}

.selltickets-features-2026::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(49, 158, 202, 0.2) 50%, transparent 100%);
}

.selltickets-features-2026 .section-container {
    max-width: 1320px;
    margin: 0 auto;
}

.selltickets-features-2026 .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.selltickets-features-2026 .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(0, 119, 182, 0.1) 100%);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 100px;
    color: #0077b6;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.selltickets-features-2026 .section-badge svg {
    width: 18px;
    height: 18px;
}

.selltickets-features-2026 .section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1c323a;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.selltickets-features-2026 .section-subtitle {
    font-size: 18px;
    color: #64748b;
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.selltickets-features-2026 .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.selltickets-features-2026 .feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(28, 50, 58, 0.08);
    box-shadow: 0 4px 24px rgba(28, 50, 58, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.selltickets-features-2026 .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00b4d8 0%, #0077b6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.selltickets-features-2026 .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 119, 182, 0.15);
    border-color: rgba(0, 180, 216, 0.2);
}

.selltickets-features-2026 .feature-card:hover::before {
    opacity: 1;
}

.selltickets-features-2026 .feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 180, 216, 0.08);
    line-height: 1;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.selltickets-features-2026 .feature-card:hover .feature-number {
    color: rgba(0, 180, 216, 0.15);
    transform: scale(1.1);
}

.selltickets-features-2026 .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.selltickets-features-2026 .feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 180, 216, 0.3);
}

.selltickets-features-2026 .feature-icon img {
    width: 36px;
    height: 36px;
    filter: brightness(0) saturate(100%) invert(41%) sepia(98%) saturate(401%) hue-rotate(152deg) brightness(91%) contrast(101%);
    transition: filter 0.3s ease;
}

.selltickets-features-2026 .feature-card:hover .feature-icon img {
    filter: brightness(0) invert(1);
}

.selltickets-features-2026 .feature-icon svg {
    width: 32px;
    height: 32px;
    color: #0077b6;
    transition: color 0.3s ease;
}

.selltickets-features-2026 .feature-card:hover .feature-icon svg {
    color: #ffffff;
}

.selltickets-features-2026 .feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1c323a;
    margin-bottom: 12px;
}

.selltickets-features-2026 .feature-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.selltickets-features-2026 .feature-text p {
    margin: 0;
}

.selltickets-features-2026 .feature-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: auto;
}

.selltickets-features-2026 .feature-arrow svg {
    width: 20px;
    height: 20px;
    color: #00b4d8;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.selltickets-features-2026 .feature-card:hover .feature-arrow svg {
    opacity: 1;
    transform: translateX(0);
}

/* Features Grid Responsive */
@media (max-width: 1200px) {
    .selltickets-features-2026 .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .selltickets-features-2026 {
        padding: 60px 16px;
    }

    .selltickets-features-2026 .section-title {
        font-size: 32px;
    }

    .selltickets-features-2026 .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .selltickets-features-2026 .feature-card {
        padding: 24px 20px;
    }

    .selltickets-features-2026 .feature-number {
        font-size: 36px;
    }
}

/* Sell Tickets How It Works Section */
.selltickets-howitworks-2026 {
    padding: 80px 24px;
    background: #ffffff;
}

.selltickets-howitworks-2026 .section-container {
    max-width: 900px;
    margin: 0 auto;
}

.selltickets-howitworks-2026 .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.selltickets-howitworks-2026 .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(49, 158, 202, 0.1);
    border-radius: 100px;
    color: #319eca;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.selltickets-howitworks-2026 .section-badge svg {
    width: 18px;
    height: 18px;
}

.selltickets-howitworks-2026 .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1c323a;
    margin: 0 0 12px 0;
}

.selltickets-howitworks-2026 .section-subtitle {
    font-size: 18px;
    color: #64748b;
    margin: 0;
}

/* How It Works - Custom Layout */

/* Intro Card - Light Vibrant Theme */
.selltickets-howitworks-2026 .howitworks-intro {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4f1f9 50%, #e0f7fa 100%);
    border-radius: 20px;
    padding: 32px 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(49, 158, 202, 0.15);
    box-shadow: 0 8px 32px rgba(49, 158, 202, 0.12);
}

.selltickets-howitworks-2026 .howitworks-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #00b4d8 0%, #0096c7 50%, #0077b6 100%);
    border-radius: 20px 0 0 20px;
}

.selltickets-howitworks-2026 .howitworks-intro::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.selltickets-howitworks-2026 .howitworks-intro .intro-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 180, 216, 0.3);
}

.selltickets-howitworks-2026 .howitworks-intro .intro-icon svg {
    width: 30px;
    height: 30px;
    color: #ffffff;
}

.selltickets-howitworks-2026 .howitworks-intro .intro-text {
    flex: 1;
}

.selltickets-howitworks-2026 .howitworks-intro .intro-text p {
    color: #1a5568;
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}

.selltickets-howitworks-2026 .howitworks-intro .intro-text strong {
    color: #0077b6;
    font-weight: 700;
}

/* Feature Cards Grid */
.selltickets-howitworks-2026 .howitworks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.selltickets-howitworks-2026 .howitworks-feature {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7fa 100%);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    box-shadow: 0 4px 20px rgba(49, 158, 202, 0.08);
    border: 1px solid rgba(49, 158, 202, 0.1);
    transition: all 0.3s ease;
}

.selltickets-howitworks-2026 .howitworks-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(49, 158, 202, 0.15);
}

.selltickets-howitworks-2026 .howitworks-feature .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.selltickets-howitworks-2026 .howitworks-feature .feature-icon.blue {
    background: linear-gradient(135deg, #319eca 0%, #2889b5 100%);
}

.selltickets-howitworks-2026 .howitworks-feature .feature-icon.yellow {
    background: linear-gradient(135deg, #e3ba2d 0%, #d4a828 100%);
}

.selltickets-howitworks-2026 .howitworks-feature .feature-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.selltickets-howitworks-2026 .howitworks-feature h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1c323a;
    margin: 0 0 12px 0;
}

.selltickets-howitworks-2026 .howitworks-feature p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6f78;
    margin: 0;
}

.selltickets-howitworks-2026 .howitworks-feature p strong {
    color: #319eca;
    font-weight: 600;
}

/* Phone Bookings Highlight Card */
.selltickets-howitworks-2026 .howitworks-highlight {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7fa 100%);
    border-radius: 20px;
    padding: 32px 40px;
    border-left: 5px solid #e3ba2d;
    box-shadow: 0 4px 20px rgba(49, 158, 202, 0.08);
}

.selltickets-howitworks-2026 .howitworks-highlight .highlight-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e3ba2d 0%, #d4a828 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selltickets-howitworks-2026 .howitworks-highlight .highlight-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.selltickets-howitworks-2026 .howitworks-highlight .highlight-content {
    flex: 1;
}

.selltickets-howitworks-2026 .howitworks-highlight h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1c323a;
    margin: 0 0 8px 0;
}

.selltickets-howitworks-2026 .howitworks-highlight .highlight-content > p {
    font-size: 15px;
    color: #5a6f78;
    margin: 0 0 16px 0;
}

.selltickets-howitworks-2026 .howitworks-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.selltickets-howitworks-2026 .howitworks-highlight ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #2d3748;
    padding-left: 0;
}

.selltickets-howitworks-2026 .howitworks-highlight ul li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #319eca;
    border-radius: 50%;
    flex-shrink: 0;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5' /%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5' /%3E%3C/svg%3E");
    -webkit-mask-size: 14px;
    mask-size: 14px;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

/* Responsive */
@media (max-width: 900px) {
    .selltickets-howitworks-2026 .howitworks-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .selltickets-howitworks-2026 {
        padding: 60px 16px;
    }

    .selltickets-howitworks-2026 .section-title {
        font-size: 28px;
    }

    .selltickets-howitworks-2026 .howitworks-intro {
        flex-direction: column;
        padding: 24px;
    }

    .selltickets-howitworks-2026 .howitworks-feature {
        padding: 24px;
    }

    .selltickets-howitworks-2026 .howitworks-highlight {
        flex-direction: column;
        padding: 24px;
    }
}

/* Sell Tickets Pricing Section - Modern Design */
.selltickets-pricing-2026 {
    padding: 100px 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
    position: relative;
}

.selltickets-pricing-2026::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(49, 158, 202, 0.2) 50%, transparent 100%);
}

.selltickets-pricing-2026 .section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.selltickets-pricing-2026 .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.selltickets-pricing-2026 .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(0, 119, 182, 0.1) 100%);
    border-radius: 100px;
    color: #0077b6;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.selltickets-pricing-2026 .section-badge svg {
    width: 18px;
    height: 18px;
}

.selltickets-pricing-2026 .section-title {
    font-size: 40px;
    font-weight: 800;
    color: #1c323a;
    margin: 0 0 12px 0;
}

.selltickets-pricing-2026 .section-subtitle {
    font-size: 18px;
    color: #64748b;
    margin: 0;
}

.selltickets-pricing-2026 .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* Base Card */
.selltickets-pricing-2026 .pricing-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.selltickets-pricing-2026 .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 119, 182, 0.15);
    border-color: rgba(0, 180, 216, 0.3);
}

/* Icon */
.selltickets-pricing-2026 .pricing-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4f1f9 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selltickets-pricing-2026 .pricing-icon svg {
    width: 32px;
    height: 32px;
    color: #0077b6;
}

/* Plan Name */
.selltickets-pricing-2026 .pricing-name {
    font-size: 14px;
    font-weight: 600;
    color: #0096c7;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* Price */
.selltickets-pricing-2026 .pricing-price {
    font-size: 52px;
    font-weight: 800;
    color: #1c323a;
    line-height: 1;
    margin-bottom: 4px;
}

.selltickets-pricing-2026 .pricing-period {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 24px;
}

/* Features List */
.selltickets-pricing-2026 .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
    flex: 1;
}

.selltickets-pricing-2026 .pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}

.selltickets-pricing-2026 .pricing-features li:last-child {
    border-bottom: none;
}

.selltickets-pricing-2026 .pricing-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #00b4d8;
    border-radius: 50%;
    flex-shrink: 0;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5' /%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5' /%3E%3C/svg%3E");
    -webkit-mask-size: 12px;
    mask-size: 12px;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.selltickets-pricing-2026 .pricing-features li strong {
    color: #0077b6;
    font-weight: 600;
}

/* CTA Button */
.selltickets-pricing-2026 .pricing-btn {
    display: block;
    padding: 14px 24px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4f1f9 100%);
    color: #0077b6;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.selltickets-pricing-2026 .pricing-btn:hover {
    background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.3);
}

/* Featured Card */
.selltickets-pricing-2026 .pricing-card.featured {
    background: linear-gradient(135deg, #0077b6 0%, #0096c7 50%, #00b4d8 100%);
    border: none;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 119, 182, 0.3);
}

.selltickets-pricing-2026 .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 119, 182, 0.4);
}

.selltickets-pricing-2026 .pricing-card.featured .pricing-icon {
    background: rgba(255, 255, 255, 0.2);
}

.selltickets-pricing-2026 .pricing-card.featured .pricing-icon svg {
    color: #ffffff;
}

.selltickets-pricing-2026 .pricing-card.featured .pricing-name {
    color: rgba(255, 255, 255, 0.8);
}

.selltickets-pricing-2026 .pricing-card.featured .pricing-price {
    color: #ffffff;
}

.selltickets-pricing-2026 .pricing-card.featured .pricing-period {
    color: rgba(255, 255, 255, 0.7);
}

.selltickets-pricing-2026 .pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.selltickets-pricing-2026 .pricing-card.featured .pricing-features li::before {
    background: #e3ba2d;
}

.selltickets-pricing-2026 .pricing-card.featured .pricing-features li strong {
    color: #e3ba2d;
}

.selltickets-pricing-2026 .pricing-card.featured .pricing-btn {
    background: #ffffff;
    color: #0077b6;
}

.selltickets-pricing-2026 .pricing-card.featured .pricing-btn:hover {
    background: #e3ba2d;
    color: #1c323a;
}

/* Badge */
.selltickets-pricing-2026 .pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: linear-gradient(135deg, #e3ba2d 0%, #f0c94d 100%);
    color: #1c323a;
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(227, 186, 45, 0.4);
    white-space: nowrap;
}

/* Footer */
.selltickets-pricing-2026 .pricing-footer {
    text-align: center;
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.selltickets-pricing-2026 .pricing-footer strong,
.selltickets-pricing-2026 .pricing-footer em {
    color: #0077b6;
    font-style: normal;
}

/* Responsive */
@media (max-width: 1100px) {
    .selltickets-pricing-2026 .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .selltickets-pricing-2026 .pricing-card.featured {
        transform: scale(1);
    }

    .selltickets-pricing-2026 .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 600px) {
    .selltickets-pricing-2026 {
        padding: 60px 16px;
    }

    .selltickets-pricing-2026 .section-title {
        font-size: 28px;
    }

    .selltickets-pricing-2026 .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .selltickets-pricing-2026 .pricing-card {
        padding: 28px 24px;
    }

    .selltickets-pricing-2026 .pricing-price {
        font-size: 42px;
    }
}

/* Sell Tickets Form Section */
.selltickets-form-2026 {
    padding: var(--space-20) 24px;
    background: linear-gradient(135deg, #1c323a 0%, #2a4a55 50%, #1c323a 100%);
    position: relative;
}

.selltickets-form-2026::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 40%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(49, 158, 202, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.selltickets-form-2026::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 30%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(227, 186, 45, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.selltickets-form-2026 .section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.selltickets-form-2026 .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.selltickets-form-2026 .form-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.selltickets-form-2026 .form-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.selltickets-form-2026 .form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(28, 50, 58, 0.25);
}

.selltickets-form-2026 .form-card * {
    box-sizing: border-box;
}

.selltickets-form-2026 .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.selltickets-form-2026 .form-group {
    margin-bottom: 16px;
}

.selltickets-form-2026 .form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.selltickets-form-2026 .form-control {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: #f5f8fa;
    border: 2px solid #e9f0f3;
    border-radius: 12px;
    font-size: 16px;
    color: #2d3748;
    transition: all 150ms ease;
    box-sizing: border-box;
}

.selltickets-form-2026 .form-control::placeholder {
    color: #94a3b8;
}

.selltickets-form-2026 .form-control:focus {
    background: #ffffff;
    border-color: #319eca;
    outline: none;
    box-shadow: 0 0 0 4px rgba(49, 158, 202, 0.15);
}

/* Override browser autofill styling */
.selltickets-form-2026 .form-control:-webkit-autofill,
.selltickets-form-2026 .form-control:-webkit-autofill:hover,
.selltickets-form-2026 .form-control:-webkit-autofill:focus,
.selltickets-form-2026 .form-control:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #f5f8fa inset !important;
    -webkit-text-fill-color: #2d3748 !important;
    box-shadow: 0 0 0 30px #f5f8fa inset !important;
    background-color: #f5f8fa !important;
}

.selltickets-form-2026 .form-group.has-error .form-control {
    border-color: #dc3545;
    background: #fff5f5;
}

.selltickets-form-2026 .text-danger {
    display: block;
    font-size: 13px;
    color: #dc3545;
    margin-top: 6px;
}

.selltickets-form-2026 .btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    margin-top: 16px;
    border-radius: 12px;
}

/* ============================================
   EVENTS PAGE - 2026
   ============================================ */

/* Events Hero Section */
.events-hero-2026 {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    background: linear-gradient(160deg, #1c323a 0%, #234550 30%, #2a5565 50%, #234550 70%, #1c323a 100%);
    overflow: hidden;
}

.events-hero-2026 .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    filter: blur(2px);
}

.events-hero-2026 .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(49, 158, 202, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(227, 186, 45, 0.1) 0%, transparent 50%);
}

.events-hero-2026 .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.events-hero-2026 .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--color-white);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.events-hero-2026 .hero-badge svg {
    width: 18px;
    height: 18px;
    color: var(--ybo-yellow);
}

.events-hero-2026 h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.events-hero-2026 h1 .highlight {
    background: linear-gradient(135deg, var(--ybo-yellow) 0%, var(--ybo-yellow-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.events-hero-2026 .hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

/* Events Search Form */
.events-search-form form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.events-search-form .search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.events-search-form .search-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    color: var(--color-text-light);
    pointer-events: none;
}

.events-search-form .search-input {
    width: 100%;
    padding: 16px 48px 16px 48px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    font-size: 16px;
    color: var(--ybo-dark);
    outline: none;
    transition: all var(--transition-fast);
}

.events-search-form .search-input:focus {
    border-color: var(--ybo-yellow);
    box-shadow: 0 0 0 4px rgba(227, 186, 45, 0.2);
}

.events-search-form .search-input::placeholder {
    color: var(--color-text-light);
}

.events-search-form .clear-search {
    position: absolute;
    right: 12px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ybo-grey);
    border-radius: var(--radius-full);
    color: var(--color-text-light);
    transition: all var(--transition-fast);
}

.events-search-form .clear-search:hover {
    background: var(--ybo-blue);
    color: var(--color-white);
}

.events-search-form .clear-search svg {
    width: 14px;
    height: 14px;
}

.events-search-form .search-btn {
    padding: 16px 32px;
    white-space: nowrap;
}

/* Search Results Info Bar */
.search-results-info {
    background: var(--ybo-grey-light);
    padding: 20px 24px;
    border-bottom: 1px solid var(--ybo-grey-dark);
}

.search-results-info .section-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.search-results-info .results-summary {
    font-size: 16px;
    color: var(--color-text);
}

.search-results-info .results-count {
    font-weight: 700;
    color: var(--ybo-dark);
}

.search-results-info .results-query {
    color: var(--color-text-light);
}

.search-results-info .clear-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    color: var(--ybo-blue);
    border: 1px solid var(--ybo-blue);
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.search-results-info .clear-filters:hover {
    background: var(--ybo-blue);
    color: var(--color-white);
}

.search-results-info .clear-filters svg {
    width: 16px;
    height: 16px;
}

/* Events Listing Section Overrides */
.events-page-2026 .events-listing-section {
    padding-top: 60px;
}

.events-page-2026 .events-listing-section .section-header {
    margin-bottom: 40px;
}

.events-page-2026 .events-count-badge {
    padding: 8px 16px;
    background: var(--ybo-grey);
    color: var(--ybo-dark);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* Empty State */
.empty-state-2026 {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 24px;
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
}

.empty-state-2026 .empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--ybo-grey-light), var(--ybo-grey));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state-2026 .empty-icon svg {
    width: 40px;
    height: 40px;
    color: var(--ybo-blue);
    opacity: 0.6;
}

.empty-state-2026 h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--ybo-dark);
    margin-bottom: 12px;
}

.empty-state-2026 p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 8px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.empty-state-2026 .suggestion {
    font-size: 14px;
    margin-bottom: 24px;
}

/* Pagination */
.pagination-2026 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
    padding: 24px 0;
}

.pagination-2026 .pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--color-white);
    border: 2px solid var(--ybo-grey-dark);
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    color: var(--ybo-dark);
    text-decoration: none;
    transition: all var(--transition-base);
}

.pagination-2026 .pagination-btn:hover:not(.disabled) {
    border-color: var(--ybo-blue);
    color: var(--ybo-blue);
    background: rgba(49, 158, 202, 0.05);
}

.pagination-2026 .pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-2026 .pagination-btn svg {
    width: 16px;
    height: 16px;
}

.pagination-2026 .pagination-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 16px;
}

.pagination-2026 .pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    background: var(--color-white);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    transition: all var(--transition-base);
}

.pagination-2026 .pagination-number:hover:not(.active) {
    background: var(--ybo-grey-light);
    border-color: var(--ybo-grey-dark);
}

.pagination-2026 .pagination-number.active {
    background: linear-gradient(135deg, var(--ybo-blue), var(--ybo-blue-dark));
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(49, 158, 202, 0.3);
}

/* ============================================
   CONTACT PAGE - 2026
   ============================================ */

/* Contact Hero */
.contact-hero-2026 {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    background: linear-gradient(135deg, #1c323a 0%, #0d1b20 50%, #1c323a 100%);
    overflow: hidden;
}

.contact-hero-2026 .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.contact-hero-2026 .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28, 50, 58, 0.3) 0%, rgba(28, 50, 58, 0.8) 100%);
}

.contact-hero-2026 .hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.contact-hero-2026 .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.contact-hero-2026 .shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    top: -100px;
    right: -100px;
    animation: contactFloat 8s ease-in-out infinite;
}

.contact-hero-2026 .shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #e3ba2d 0%, #f0c84d 100%);
    bottom: -50px;
    left: -50px;
    animation: contactFloat 10s ease-in-out infinite reverse;
}

.contact-hero-2026 .shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: contactPulse 6s ease-in-out infinite;
}

@keyframes contactFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes contactPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.15; }
}

.contact-hero-2026 .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}

.contact-hero-2026 .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 100px;
    color: #00b4d8;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-hero-2026 .hero-badge svg {
    width: 18px;
    height: 18px;
}

.contact-hero-2026 h1 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.contact-hero-2026 .text-gradient {
    background: linear-gradient(135deg, #00b4d8 0%, #e3ba2d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-2026 .hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Contact Main Section */
.contact-main-2026 {
    padding: 100px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-main-2026 .section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-main-2026 .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info Side */
.contact-main-2026 .contact-info {
    padding-right: 20px;
}

.contact-main-2026 .info-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1c323a;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.contact-main-2026 .info-header p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 32px 0;
}

/* Contact Methods */
.contact-main-2026 .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-main-2026 .method-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid rgba(28, 50, 58, 0.08);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-main-2026 .method-card:hover {
    border-color: rgba(0, 180, 216, 0.3);
    box-shadow: 0 8px 30px rgba(0, 119, 182, 0.1);
    transform: translateX(8px);
}

.contact-main-2026 .method-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-main-2026 .method-icon.chat {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
}

.contact-main-2026 .method-icon.chat svg {
    color: #0077b6;
}

.contact-main-2026 .method-icon.email {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
}

.contact-main-2026 .method-icon.email svg {
    color: #d4a418;
}

.contact-main-2026 .method-icon svg {
    width: 28px;
    height: 28px;
}

.contact-main-2026 .method-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1c323a;
    margin: 0 0 6px 0;
}

.contact-main-2026 .method-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.contact-main-2026 .method-action {
    font-size: 14px;
    font-weight: 600;
    color: #0077b6;
}

/* CMS Content */
.contact-main-2026 .info-cms-content {
    margin-bottom: 32px;
    padding: 20px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4f1f9 100%);
    border-radius: 16px;
    border-left: 4px solid #00b4d8;
}

.contact-main-2026 .info-cms-content p {
    font-size: 15px;
    color: #1a5568;
    line-height: 1.7;
    margin: 0;
}

/* Trust Indicators */
.contact-main-2026 .trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.contact-main-2026 .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

.contact-main-2026 .trust-item svg {
    width: 20px;
    height: 20px;
    color: #00b4d8;
}

/* Contact Form Card */
.contact-main-2026 .contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(28, 50, 58, 0.1);
    border: 1px solid rgba(28, 50, 58, 0.06);
    position: relative;
    overflow: hidden;
}

.contact-main-2026 .contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00b4d8 0%, #0077b6 50%, #e3ba2d 100%);
}

.contact-main-2026 .form-header {
    margin-bottom: 32px;
}

.contact-main-2026 .form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1c323a;
    margin: 0 0 8px 0;
}

.contact-main-2026 .form-header p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

/* Form Styles */
.contact-main-2026 .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-main-2026 .form-group {
    margin-bottom: 20px;
}

.contact-main-2026 .form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1c323a;
    margin-bottom: 10px;
}

.contact-main-2026 .form-label svg {
    width: 18px;
    height: 18px;
    color: #0077b6;
}

.contact-main-2026 .form-label .optional {
    font-weight: 400;
    color: #94a3b8;
}

.contact-main-2026 .form-control {
    width: 100%;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    color: #1c323a;
    transition: all 0.3s ease;
}

.contact-main-2026 .form-control:focus {
    background: #ffffff;
    border-color: #00b4d8;
    outline: none;
}

.contact-main-2026 .form-control::placeholder {
    color: #94a3b8;
}

.contact-main-2026 .form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 48px;
    cursor: pointer;
}

.contact-main-2026 textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.contact-main-2026 .recaptcha-wrapper {
    margin-bottom: 24px;
}

/* Submit Button */
.contact-main-2026 .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-main-2026 .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.3);
}

.contact-main-2026 .btn-submit svg {
    width: 20px;
    height: 20px;
}

/* Success State */
.contact-main-2026 .form-success {
    display: none;
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.contact-main-2026 .form-success.show {
    display: flex;
}

.contact-main-2026 .success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-main-2026 .success-icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.contact-main-2026 .form-success h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1c323a;
    margin: 0 0 12px 0;
}

.contact-main-2026 .form-success p {
    font-size: 16px;
    color: #64748b;
    margin: 0 0 24px 0;
}

.contact-main-2026 .btn-reset {
    padding: 12px 24px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1c323a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-main-2026 .btn-reset:hover {
    border-color: #00b4d8;
    color: #0077b6;
}

/* Info Notice Box */
.contact-main-2026 .info-notice {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(227, 186, 45, 0.08) 0%, rgba(227, 186, 45, 0.04) 100%);
    border: 1px solid rgba(227, 186, 45, 0.3);
    border-radius: 16px;
    margin-top: 28px;
}

.contact-main-2026 .notice-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #e3ba2d 0%, #d4a829 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-main-2026 .notice-icon svg {
    width: 24px;
    height: 24px;
    color: #1c323a;
}

.contact-main-2026 .notice-content {
    flex: 1;
}

.contact-main-2026 .notice-content strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1c323a;
    margin-bottom: 6px;
}

.contact-main-2026 .notice-content p {
    font-size: 14px;
    color: #5a6b73;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.contact-faq-2026 {
    padding: 80px 24px;
    background: #f8fafc;
}

.contact-faq-2026 .section-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-faq-2026 .faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-faq-2026 .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    color: #0077b6;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-faq-2026 .section-badge svg {
    width: 18px;
    height: 18px;
}

.contact-faq-2026 h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1c323a;
    margin: 0;
    letter-spacing: -0.02em;
}

.contact-faq-2026 .faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.contact-faq-2026 .faq-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.contact-faq-2026 .faq-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.contact-faq-2026 .faq-icon {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.contact-faq-2026 .faq-icon svg {
    width: 24px;
    height: 24px;
    color: #0077b6;
}

.contact-faq-2026 .faq-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1c323a;
    margin: 0 0 8px 0;
}

.contact-faq-2026 .faq-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.contact-faq-2026 .faq-cta {
    text-align: center;
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-main-2026 .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-main-2026 .contact-info {
        padding-right: 0;
    }

    .contact-faq-2026 .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero-2026 {
        padding: 120px 16px 60px;
        min-height: auto;
    }

    .contact-hero-2026 h1 {
        font-size: 32px;
    }

    .contact-main-2026 {
        padding: 60px 16px;
    }

    .contact-main-2026 .form-row {
        grid-template-columns: 1fr;
    }

    .contact-main-2026 .contact-form-card {
        padding: 28px 20px;
    }

    .contact-main-2026 .info-notice {
        flex-direction: column;
        gap: 12px;
        padding: 16px 18px;
    }

    .contact-main-2026 .notice-icon {
        width: 40px;
        height: 40px;
    }

    .contact-main-2026 .notice-content strong {
        font-size: 15px;
    }

    .contact-main-2026 .notice-content p {
        font-size: 13px;
    }

    .contact-faq-2026 {
        padding: 60px 16px;
    }

    .contact-faq-2026 h2 {
        font-size: 28px;
    }
}

/* ============================================
   RESPONSIVE - ALL PAGES
   ============================================ */
@media (max-width: 1200px) {
    .selltickets-features-2026 .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .selltickets-pricing-2026 .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 992px) {
    .about-content-2026 .content-grid {
        grid-template-columns: 1fr;
    }

    .selltickets-form-2026 .form-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
}

@media (max-width: 768px) {
    .page-hero-2026 {
        padding: 100px 16px 60px;
    }

    .page-hero-2026 h1 {
        font-size: 28px;
    }

    .events-hero-2026 {
        padding: 100px 16px 60px;
        min-height: auto;
    }

    .events-hero-2026 h1 {
        font-size: 28px;
    }

    .events-search-form form {
        flex-direction: column;
    }

    .events-search-form .search-btn {
        width: 100%;
    }

    .search-results-info .section-container {
        flex-direction: column;
        text-align: center;
    }

    .selltickets-features-2026 .features-grid {
        grid-template-columns: 1fr;
    }

    .selltickets-pricing-2026 .pricing-grid {
        grid-template-columns: 1fr;
    }

    .selltickets-form-2026 .form-row {
        grid-template-columns: 1fr;
    }

    .pagination-2026 {
        flex-wrap: wrap;
    }

    .pagination-2026 .pagination-numbers {
        order: -1;
        width: 100%;
        justify-content: center;
        margin: 0 0 16px;
    }

    .pagination-2026 .pagination-btn {
        flex: 1;
        justify-content: center;
    }

    .empty-state-2026 {
        padding: 60px 20px;
    }

    .empty-state-2026 h3 {
        font-size: 20px;
    }

    .about-content-2026 .buttons-row {
        flex-direction: column;
    }
}

/* ============================================
   AUTH PAGES - LOGIN & REGISTER 2026
   ============================================ */
.auth-page-2026 {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-section {
    width: 100%;
    padding: 80px 24px 100px;
    background: linear-gradient(135deg, #1c323a 0%, #234550 30%, #2a5565 50%, #234550 70%, #1c323a 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.auth-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(49, 158, 202, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.auth-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(227, 186, 45, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.auth-page-2026 .auth-container {
    max-width: 440px;
    margin: 0 auto;
}

.auth-page-2026 .auth-container.auth-container-wide {
    max-width: 520px;
}

.auth-page-2026 .auth-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(28, 50, 58, 0.1);
    border: 1px solid rgba(28, 50, 58, 0.05);
}

.auth-page-2026 .auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-page-2026 .auth-title {
    font-size: 28px;
    font-weight: 700;
    color: #1c323a;
    margin: 0 0 8px 0;
}

.auth-page-2026 .auth-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

/* Form Elements */
.auth-page-2026 .auth-form {
    margin-bottom: 0;
}

.auth-page-2026 .form-group-2026 {
    margin-bottom: 20px;
}

.auth-page-2026 .form-row-2026 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.auth-page-2026 .form-label-2026 {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1c323a;
    margin-bottom: 8px;
}

.auth-page-2026 .form-control-2026 {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    color: #1c323a;
    background: #f8fafc;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.auth-page-2026 .form-control-2026::placeholder {
    color: #94a3b8;
}

.auth-page-2026 .form-control-2026:focus {
    background: #ffffff;
    border-color: #319eca;
    box-shadow: 0 0 0 3px rgba(49, 158, 202, 0.15);
}

/* Error State */
.auth-page-2026 .has-error-2026 .form-control-2026 {
    border-color: #dc3545;
    background: #fff5f5;
}

.auth-page-2026 .has-error-2026 .form-control-2026:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.auth-page-2026 .has-error-2026 .form-label-2026 {
    color: #dc3545;
}

.auth-page-2026 .error-message-2026 {
    display: block;
    font-size: 13px;
    color: #dc3545;
    margin-top: 6px;
}

/* Alerts */
.auth-page-2026 .alert-2026 {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.5;
}

.auth-page-2026 .alert-info-2026 {
    background: #e0f2fe;
    border: 1px solid #7dd3fc;
    color: #0369a1;
}

.auth-page-2026 .alert-danger-2026 {
    background: #fff5f5;
    border: 1px solid #fca5a5;
    color: #dc2626;
}

/* Forgot Password Link */
.auth-page-2026 .auth-forgot-link {
    text-align: right;
    margin-bottom: 24px;
}

.auth-page-2026 .auth-forgot-link a {
    font-size: 14px;
    color: #319eca;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-page-2026 .auth-forgot-link a:hover {
    color: #2a8bb8;
    text-decoration: underline;
}

/* Auth Actions */
.auth-page-2026 .auth-actions {
    margin-top: 8px;
}

/* Buttons */
.auth-page-2026 .btn-2026 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    box-sizing: border-box;
}

.auth-page-2026 .btn-2026-full {
    width: 100%;
}

.auth-page-2026 .btn-2026-primary {
    background: linear-gradient(135deg, #e3ba2d, #c9a526);
    color: #1c323a;
    box-shadow: 0 4px 14px rgba(227, 186, 45, 0.35);
}

.auth-page-2026 .btn-2026-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 186, 45, 0.45);
}

.auth-page-2026 .btn-2026-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.auth-page-2026 .btn-2026-outline {
    background: transparent;
    color: #319eca;
    border: 2px solid #319eca;
}

.auth-page-2026 .btn-2026-outline:hover {
    background: #319eca;
    color: #ffffff;
}

/* Checkbox */
.auth-page-2026 .checkbox-group-2026 {
    margin: 24px 0;
}

.auth-page-2026 .checkbox-label-2026 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #1c323a;
}

.auth-page-2026 .checkbox-2026 {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.auth-page-2026 .checkbox-custom-2026 {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    background: #ffffff;
    transition: all 0.2s ease;
    position: relative;
    margin-top: 1px;
}

.auth-page-2026 .checkbox-2026:checked + .checkbox-custom-2026 {
    background: #319eca;
    border-color: #319eca;
}

.auth-page-2026 .checkbox-2026:checked + .checkbox-custom-2026::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.auth-page-2026 .checkbox-2026:focus + .checkbox-custom-2026 {
    box-shadow: 0 0 0 3px rgba(49, 158, 202, 0.2);
}

.auth-page-2026 .checkbox-text-2026 {
    line-height: 1.5;
}

.auth-page-2026 .checkbox-text-2026 a {
    color: #319eca;
    text-decoration: underline;
}

.auth-page-2026 .checkbox-text-2026 a:hover {
    color: #2a8bb8;
}

/* Divider */
.auth-page-2026 .auth-divider {
    display: flex;
    align-items: center;
    margin: 28px 0;
}

.auth-page-2026 .auth-divider::before,
.auth-page-2026 .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.auth-page-2026 .auth-divider span {
    padding: 0 16px;
    color: #64748b;
    font-size: 14px;
}

/* Auth Pages Responsive */
@media (max-width: 767px) {
    .auth-section {
        padding: 40px 16px 60px;
    }

    .auth-page-2026 .auth-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .auth-page-2026 .auth-title {
        font-size: 24px;
    }

    .auth-page-2026 .form-row-2026 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .auth-page-2026 .form-control-2026 {
        padding: 16px;
        font-size: 16px; /* Prevents iOS zoom */
    }

    .auth-page-2026 .btn-2026 {
        padding: 16px 24px;
        font-size: 16px;
    }

    .auth-page-2026 .checkbox-custom-2026 {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }
}

/* ============================================
   EVENT DETAIL PAGE 2026
   ============================================ */
.event-page-2026 {
    background: #f8fafc;
}

/* Unpublished Bar */
.event-page-2026 .unpublished-bar {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 16px 24px;
    border-bottom: 2px solid #f59e0b;
    text-align: center;
}

.event-page-2026 .unpublished-bar p {
    margin: 0;
    color: #92400e;
    font-size: 15px;
}

/* Breadcrumbs */
.event-page-2026 section.breadcrumbs {
    background: #1c323a;
    padding: 16px 0;
}

.event-page-2026 section.breadcrumbs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.event-page-2026 section.breadcrumbs ul li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.event-page-2026 section.breadcrumbs ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.event-page-2026 section.breadcrumbs ul li a:hover {
    color: #e3ba2d;
}

/* Event Summary Section */
.event-page-2026 section.event-summary {
    background: linear-gradient(135deg, #1c323a 0%, #234550 50%, #1c323a 100%);
    padding: 50px 0 60px;
    position: relative;
}

.event-page-2026 section.event-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(49, 158, 202, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.event-page-2026 section.event-summary .container {
    position: relative;
    z-index: 1;
}

.event-page-2026 section.event-summary .row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

.event-page-2026 section.event-summary .image {
    flex: 0 0 auto;
    width: calc(50% - 20px);
    padding: 0;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.event-page-2026 section.event-summary .image img {
    width: 100%;
    height: auto;
    display: block;
}

.event-page-2026 section.event-summary .image .bg {
    display: none !important;
}

.event-page-2026 section.event-summary .details {
    flex: 1;
    padding: 0;
    color: #ffffff;
}

.event-page-2026 section.event-summary .details h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #ffffff;
    line-height: 1.2;
}

.event-page-2026 section.event-summary .details p.venue {
    font-size: 18px;
    color: #319eca;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-page-2026 section.event-summary .details p.venue::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23319eca'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 11a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.event-page-2026 section.event-summary .details ul.prices {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
}

.event-page-2026 section.event-summary .details ul.prices li {
    background: linear-gradient(135deg, #e3ba2d 0%, #c9a526 100%);
    color: #1c323a;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.event-page-2026 section.event-summary .details ul.prices li strong {
    font-weight: 600;
}

.event-page-2026 section.event-summary .details h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.9);
}

.event-page-2026 section.event-summary .details .date-times {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 8px 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-page-2026 section.event-summary .details .date-times .date-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.event-page-2026 section.event-summary .details .date-times .date-time:first-child {
    border-top: none;
}

.event-page-2026 section.event-summary .details .date-times .date-time .date {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
}

.event-page-2026 section.event-summary .details .date-times .date-time .time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    float: none;
}

.event-page-2026 section.event-summary .details .view-all a {
    color: #319eca;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.event-page-2026 section.event-summary .details .view-all a:hover {
    color: #e3ba2d;
    text-decoration: underline;
}

/* Event Details Section */
.event-page-2026 section.event-details {
    padding: 50px 0 80px;
    background: #f8fafc;
}

.event-page-2026 section.event-details .row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.event-page-2026 section.event-details .detail-column {
    float: none;
    width: auto;
    padding: 0;
}

.event-page-2026 section.event-details .detail-column .inner {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(28, 50, 58, 0.08);
    height: 100%;
    border: 1px solid #e9f0f3;
}

.event-page-2026 section.event-details .detail-column h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1c323a;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e9f0f3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-page-2026 section.event-details .detail-column h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #319eca 0%, #e3ba2d 100%);
    border-radius: 2px;
}

/* Information Column */
.event-page-2026 section.event-details .detail-column.information .inner {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.event-page-2026 section.event-details .detail-column.information h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1c323a;
    margin: 24px 0 8px;
}

.event-page-2026 section.event-details .detail-column.information p {
    margin-bottom: 16px;
}

/* Producer Column */
.event-page-2026 section.event-details .detail-column.producer .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(28, 50, 58, 0.15);
    border: 3px solid #e9f0f3;
}

.event-page-2026 section.event-details .detail-column.producer .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-page-2026 section.event-details .detail-column.producer ul.details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-page-2026 section.event-details .detail-column.producer ul.details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e9f0f3;
    font-size: 15px;
    color: #4a5568;
}

.event-page-2026 section.event-details .detail-column.producer ul.details li:last-child {
    border-bottom: none;
}

.event-page-2026 section.event-details .detail-column.producer ul.details li i {
    color: #319eca;
    width: 20px;
    text-align: center;
    margin-top: 3px;
}

.event-page-2026 section.event-details .detail-column.producer ul.details li address {
    font-style: normal;
    line-height: 1.5;
}

.event-page-2026 section.event-details .detail-column.producer ul.details li a {
    color: #319eca;
    text-decoration: none;
    transition: color 0.2s ease;
}

.event-page-2026 section.event-details .detail-column.producer ul.details li a:hover {
    color: #1c323a;
    text-decoration: underline;
}

/* Book Column */
.event-page-2026 section.event-details .detail-column.book .inner {
    background: linear-gradient(135deg, #1c323a 0%, #234550 100%);
    color: #ffffff;
    position: sticky;
    top: 100px;
}

.event-page-2026 section.event-details .detail-column.book h3 {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.event-page-2026 section.event-details .detail-column.book h3::before {
    background: linear-gradient(180deg, #e3ba2d 0%, #319eca 100%);
}

.event-page-2026 section.event-details .detail-column.book h4 {
    color: #e3ba2d;
    font-size: 16px;
    margin-bottom: 12px;
}

.event-page-2026 section.event-details .detail-column.book p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.event-page-2026 section.event-details .detail-column.book .btn-orange {
    background: linear-gradient(135deg, #e3ba2d 0%, #c9a526 100%);
    color: #1c323a;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.event-page-2026 section.event-details .detail-column.book .btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 186, 45, 0.4);
}

/* Book Form Styling */
.event-page-2026 section.event-details .detail-column.book .form-group {
    margin-bottom: 20px;
}

.event-page-2026 section.event-details .detail-column.book label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-page-2026 section.event-details .detail-column.book .form-control {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    color: #1c323a;
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.event-page-2026 section.event-details .detail-column.book .form-control:focus {
    outline: none;
    border-color: #e3ba2d;
    box-shadow: 0 0 0 3px rgba(227, 186, 45, 0.2);
}

.event-page-2026 section.event-details .detail-column.book select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231c323a'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 44px;
}

.event-page-2026 section.event-details .detail-column.book input[type="number"].form-control {
    text-align: center;
}

.event-page-2026 section.event-details .detail-column.book .submit-button {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #e3ba2d 0%, #c9a526 100%);
    color: #1c323a;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.event-page-2026 section.event-details .detail-column.book .submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 186, 45, 0.4);
}

.event-page-2026 section.event-details .detail-column.book .submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.event-page-2026 section.event-details .detail-column.book .submit-button.btn-disabled {
    background: #4a5568;
    color: rgba(255, 255, 255, 0.5);
}

/* Dates Times Modal */
.event-page-2026 .modal .modal-content {
    border-radius: 16px;
    border: none;
    overflow: hidden;
}

.event-page-2026 .modal .modal-header {
    background: linear-gradient(135deg, #1c323a 0%, #234550 100%);
    color: #ffffff;
    padding: 20px 24px;
    border-bottom: none;
}

.event-page-2026 .modal .modal-header .modal-title {
    font-weight: 700;
    font-size: 20px;
}

.event-page-2026 .modal .modal-header .close {
    color: #ffffff;
    opacity: 0.8;
    font-size: 28px;
    font-weight: 300;
}

.event-page-2026 .modal .modal-header .close:hover {
    opacity: 1;
}

.event-page-2026 .modal .modal-body {
    padding: 24px;
    max-height: 60vh;
    overflow-y: auto;
}

.event-page-2026 .modal .modal-body .date-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 10px;
}

.event-page-2026 .modal .modal-body .date-time .date {
    font-weight: 600;
    color: #1c323a;
}

.event-page-2026 .modal .modal-body .date-time .time {
    color: #64748b;
    float: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .event-page-2026 section.event-summary .row {
        flex-direction: column;
        gap: 30px;
    }

    .event-page-2026 section.event-summary .image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .event-page-2026 section.event-summary .details {
        text-align: center;
    }

    .event-page-2026 section.event-summary .details p.venue {
        justify-content: center;
    }

    .event-page-2026 section.event-summary .details ul.prices {
        justify-content: center;
    }

    .event-page-2026 section.event-summary .details h2 {
        text-align: center;
    }

    .event-page-2026 section.event-details .row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .event-page-2026 section.event-details .detail-column.book .inner {
        position: static;
    }
}

@media (max-width: 768px) {
    .event-page-2026 section.breadcrumbs {
        padding: 12px 0;
    }

    .event-page-2026 section.event-summary {
        padding: 30px 0 40px;
    }

    .event-page-2026 section.event-summary .details h1 {
        font-size: 26px;
    }

    .event-page-2026 section.event-summary .details p.venue {
        font-size: 16px;
    }

    .event-page-2026 section.event-details {
        padding: 30px 0 50px;
    }

    .event-page-2026 section.event-details .detail-column .inner {
        padding: 20px;
    }

    .event-page-2026 section.event-details .detail-column h3 {
        font-size: 18px;
    }
}
