﻿*, *::before, *::after {
    box-sizing: border-box;
}
:root {
    --blue: #264EFF;
    --blue-light: #4A6EFF;
    --blue-dark: #1A3DD9;
    --blue-bg: #EEF1FF;
    --orange: #F7A722;
    --orange-light: #FFB84A;
    --ink: #0E1320;
    --ink-light: #1F2937;
    --muted: #6B7280;
    --hint: #9CA3AF;
    --bg: #F3F4FB;
    --bg-light: #FAFBFF;
    --surface: #FFFFFF;
    --line: #E5E7F0;
    --line-light: #F0F2F5;
    --success: #10B981;
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --radius-pill: 999px;
    --shadow-xs: 0 1px 3px rgba(15,23,42,.05);
    --shadow-sm: 0 4px 12px rgba(15,23,42,.07);
    --shadow-md: 0 8px 24px rgba(15,23,42,.11);
    --shadow-lg: 0 20px 48px rgba(15,23,42,.14);
    --shadow-blue: 0 8px 24px rgba(38,78,255,.14);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --wrap: 1200px;
}
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}
body {
    font-family: "Inter", "Cairo", system-ui, sans-serif;
    background: linear-gradient(180deg, #F8F9FC 0%, var(--bg) 100%);
    color: var(--ink);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
.ev-wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 20px 80px;
}
/* SCROLL PROGRESS */
.ev-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(38,78,255,.1);
    z-index: 9999;
    pointer-events: none;
}
.ev-scroll-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--orange));
    width: 0%;
    transition: width .1s ease-out;
}
/* BREADCRUMB */
.ev-breadcrumb-wrap {
    max-width: var(--wrap);
    margin: 12px auto 0;
    padding: 0 20px;
    font-size: 12px;
    color: var(--muted);
}
.ev-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
    .ev-breadcrumb a {
        color: var(--muted);
        font-weight: 600;
    }
        .ev-breadcrumb a:hover {
            color: var(--blue);
        }
/* BUTTONS */
.ev-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: var(--radius-pill);
    border: 1.5px solid transparent;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    font-family: inherit;
}
.ev-btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}
.ev-btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: #fff;
    border-color: var(--blue);
    box-shadow: 0 4px 14px rgba(38,78,255,.28);
}
    .ev-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(38,78,255,.38);
        color: #fff;
    }
.ev-btn-orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #111827;
    border-color: var(--orange);
    box-shadow: 0 4px 14px rgba(247,167,34,.28);
}
    .ev-btn-orange:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(247,167,34,.38);
        color: #111827;
    }
.ev-btn-outline {
    background: var(--surface);
    color: var(--ink);
    border-color: var(--line);
    box-shadow: var(--shadow-xs);
}
    .ev-btn-outline:hover {
        border-color: var(--blue);
        color: var(--blue);
        transform: translateY(-1px);
    }
.ev-btn-ghost {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.85);
    border-color: rgba(255,255,255,.15);
}
    .ev-btn-ghost:hover {
        background: rgba(255,255,255,.15);
        border-color: rgba(255,255,255,.3);
        color: #fff;
    }
/* ════ HERO ════ */
.ev-hero {
    padding-top: 28px;
    margin-bottom: 20px;
}
.ev-hero-card {
    position: relative;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFF 100%);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--line-light);
    box-shadow: var(--shadow-lg);
    padding: 36px 36px 32px;
    overflow: hidden;
    animation: evFadeUp 0.7s ease-out;
}
@keyframes evFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.ev-hero-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue) 0 60%, var(--orange) 60% 100%);
}
.ev-hero-card::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 18px solid rgba(38,78,255,.06);
}
.ev-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.3fr);
    gap: 28px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.ev-eyebrow {
    font-size: 11px;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 900;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
    .ev-eyebrow::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--orange);
    }
.ev-hero-title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: var(--ink);
}
.ev-hero-desc {
    font-size: 14px;
    color: var(--ink-light);
    line-height: 1.75;
    max-width: 68ch;
}
.ev-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.ev-hero-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ev-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: var(--bg-light);
    color: var(--ink-light);
    border: 1px solid var(--line-light);
    transition: var(--transition);
    font-weight: 600;
}
    .ev-pill i {
        display: block;
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: var(--orange);
    }
    .ev-pill:hover {
        background: #fff;
        border-color: var(--blue);
        transform: translateY(-1px);
    }
.ev-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
/* BREADCRUMB inside hero */
.ev-hero-breadcrumb {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line-light);
    font-size: 12px;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
}
    .ev-hero-breadcrumb a {
        color: var(--blue);
        font-weight: 600;
    }
        .ev-hero-breadcrumb a:hover {
            text-decoration: underline;
        }
/* ════ FILTER BAR ════ */
.ev-filter-section {
    margin: 28px 0 24px;
}
.ev-filter-bar {
    background: var(--surface);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-sm);
    overflow: visible;
}
.ev-filter-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1 1 160px;
    min-width: 140px;
    position: relative;
}
.ev-filter-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
}
    .ev-filter-label i {
        font-size: 11px;
        color: var(--blue);
    }
/* Autocomplete input */
.ev-ac-input {
    height: 44px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--bg-light);
    padding: 0 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    font-family: inherit;
    width: 100%;
    transition: var(--transition);
}
    .ev-ac-input:hover {
        border-color: var(--blue);
        background-color: #fff;
    }
    .ev-ac-input:focus {
        outline: none;
        border-color: var(--blue);
        background-color: #fff;
        box-shadow: 0 0 0 3px rgba(38,78,255,.1);
    }
/* Dropdown list */
.ev-ac-list {
    position: fixed;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-md);
    min-width: 200px;
    max-height: 240px;
    overflow-y: auto;
    z-index: 99999;
    display: none;
    box-shadow: var(--shadow-md);
}
.ev-ac-option {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border-bottom: 1px solid var(--line-light);
}
    .ev-ac-option:last-child {
        border-bottom: none;
    }
    .ev-ac-option::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--blue);
        opacity: .3;
        flex-shrink: 0;
        transition: var(--transition);
    }
    .ev-ac-option:hover {
        background: var(--blue-bg);
        color: var(--blue);
    }
        .ev-ac-option:hover::before {
            opacity: 1;
        }
.ev-filter-apply {
    height: 44px;
    padding: 0 20px;
    border: none;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(38,78,255,.25);
    transition: var(--transition);
    white-space: nowrap;
    font-family: inherit;
    flex-shrink: 0;
}
    .ev-filter-apply:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(38,78,255,.35);
    }
.ev-filter-reset {
    height: 44px;
    padding: 0 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-family: inherit;
    flex-shrink: 0;
}
    .ev-filter-reset:hover {
        border-color: #ef4444;
        color: #ef4444;
        background: #fff5f5;
    }
/* ════ TOOLBAR ════ */
.ev-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 12px;
    flex-wrap: wrap;
    padding: 14px 18px;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1.5px solid var(--line);
    box-shadow: var(--shadow-xs);
}
.ev-results-count {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 6px;
}
    .ev-results-count strong {
        font-size: 22px;
        color: var(--blue);
        font-weight: 900;
    }
    .ev-results-count i {
        color: var(--blue);
        font-size: 14px;
    }
/* ════ EVENTS GRID ════ */
.ev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 18px;
}
/* ════ EVENT CARD ════ */
.ev-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--line-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 0;
    transform: translateY(14px);
}
    .ev-card.visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity .45s ease-out, transform .45s ease-out, box-shadow .25s ease, border-color .25s ease;
    }
    .ev-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg), var(--shadow-blue);
        border-color: rgba(38,78,255,.2);
    }
    /* Top accent stripe */
    .ev-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--blue), var(--blue-light));
        opacity: 0;
        transition: opacity .25s ease;
        z-index: 2;
    }
    .ev-card:hover::before {
        opacity: 1;
    }
/* Cover */
.ev-card-cover {
    height: 180px;
    background: linear-gradient(135deg, #EEF2FF, #F3F4FB);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}
    .ev-card-cover::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,.07));
    }
    .ev-card-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }
.ev-card:hover .ev-card-cover img {
    transform: scale(1.05);
}
/* Placeholder when no image */
.ev-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--blue);
    background: linear-gradient(135deg, #EEF2FF, #F8FAFC);
    font-size: 13px;
    font-weight: 700;
}
    .ev-no-image i {
        font-size: 32px;
        opacity: .5;
    }
/* Date badge overlay */
.ev-date-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(38,78,255,.15);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 3;
}
[dir="rtl"] .ev-date-badge {
    left: auto;
    right: 10px;
}
/* Service type badge */
.ev-type-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(10,20,40,.82);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 4px;
}
    .ev-type-badge i {
        color: var(--orange);
        font-size: 10px;
    }
[dir="rtl"] .ev-type-badge {
    left: auto;
    right: 10px;
}
/* Card body */
.ev-card-body {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.ev-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 8px;
}
.ev-card-cat {
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .09em;
    background: var(--blue-bg);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
    .ev-card-cat i {
        font-size: 9px;
    }
.ev-card-location {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
}
    .ev-card-location i {
        color: var(--blue);
        font-size: 11px;
    }
.ev-card-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
    .ev-card-name a {
        color: inherit;
    }
        .ev-card-name a:hover {
            color: var(--blue);
        }
/* Meta rows */
.ev-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}
.ev-meta-row {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}
    .ev-meta-row i {
        color: var(--blue);
        font-size: 11px;
        width: 14px;
        text-align: center;
        flex-shrink: 0;
    }
/* Price pill */
.ev-price-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    border: 1px solid transparent;
}
    .ev-price-pill.free {
        background: #ECFDF5;
        border-color: #6EE7B7;
        color: #065F46;
    }
    .ev-price-pill.paid {
        background: #FFF3E0;
        border-color: var(--orange-light);
        color: #7C4D00;
    }
.ev-card-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--muted);
    flex: 1;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ev-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--line-light);
}
/* Arrow circle */
.ev-card-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--blue-bg);
    border: 1.5px solid rgba(38,78,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
    .ev-card-arrow i {
        font-size: 12px;
        color: var(--blue);
        transition: var(--transition);
    }
.ev-card:hover .ev-card-arrow {
    background: var(--blue);
    border-color: var(--blue);
}
    .ev-card:hover .ev-card-arrow i {
        color: #fff;
    }
/* ════ BROWSE BY (accordion) ════ */
.ev-browse {
    margin-top: 36px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--line-light);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.ev-browse-header {
    padding: 18px 24px 14px;
    border-bottom: 1px solid var(--line-light);
}
    .ev-browse-header h2 {
        font-size: 16px;
        font-weight: 900;
        color: var(--ink);
        margin: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }
        .ev-browse-header h2 i {
            color: var(--blue);
        }
.ev-acc-item {
    border-bottom: 1px solid var(--line-light);
}
    .ev-acc-item:last-child {
        border-bottom: none;
    }
.ev-acc-trigger {
    width: 100%;
    text-align: @(isRtl ? "right" : "left");
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ink);
    font-family: inherit;
    transition: var(--transition);
}
    .ev-acc-trigger:hover {
        background: var(--bg-light);
        color: var(--blue);
    }
.ev-acc-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--blue-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--blue);
    font-weight: 900;
    transition: var(--transition);
    flex-shrink: 0;
}
.ev-acc-trigger[aria-expanded="true"] .ev-acc-icon {
    background: var(--blue);
    color: #fff;
}
.ev-acc-panel {
    display: none;
    background: var(--bg-light);
}
.ev-acc-list {
    list-style: none;
    margin: 0;
    padding: 8px 24px 12px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2px;
}
    .ev-acc-list li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 10px;
        border-radius: var(--radius-sm);
        font-size: 13px;
        font-weight: 600;
        color: var(--ink-light);
        text-decoration: none;
        transition: var(--transition);
    }
        .ev-acc-list li a:hover {
            background: #fff;
            color: var(--blue);
            box-shadow: var(--shadow-xs);
        }
.ev-acc-count {
    font-size: 11px;
    font-weight: 700;
    color: var(--hint);
    background: var(--line-light);
    padding: 2px 7px;
    border-radius: var(--radius-pill);
}
/* ════ SECTIONS ════ */
.ev-section {
    margin-top: 36px;
}
.ev-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 16px;
    flex-wrap: wrap;
}
    .ev-section-head h2 {
        font-size: clamp(18px, 2.5vw, 24px);
        font-weight: 900;
        color: var(--ink);
        letter-spacing: -0.02em;
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0;
    }
        .ev-section-head h2 i {
            color: var(--blue);
        }
    .ev-section-head p {
        font-size: 14px;
        color: var(--muted);
        margin-top: 4px;
    }
/* FAQ */
.ev-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ev-faq-item {
    background: var(--surface);
    border: 1.5px solid var(--line-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
    .ev-faq-item:hover {
        border-color: rgba(38,78,255,.15);
    }
    .ev-faq-item.active {
        border-color: rgba(38,78,255,.28);
        box-shadow: var(--shadow-blue);
    }
.ev-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    transition: var(--transition);
    text-align: @(isRtl ? "right" : "left");
}
    .ev-faq-q:hover {
        color: var(--blue);
    }
.ev-faq-item.active .ev-faq-q {
    color: var(--blue);
}
.ev-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 1.5px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
    .ev-faq-icon i {
        font-size: 12px;
        transition: transform .2s ease;
    }
.ev-faq-item.active .ev-faq-icon {
    background: var(--blue);
    border-color: var(--blue);
}
    .ev-faq-item.active .ev-faq-icon i {
        color: #fff;
        transform: rotate(45deg);
    }
.ev-faq-a {
    display: none;
    padding: 14px 20px 18px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
    border-top: 1px solid var(--line-light);
}
.ev-faq-item.active .ev-faq-a {
    display: block;
}
/* Articles grid */
.ev-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}
.ev-blog-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--line-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
    .ev-blog-card:hover {
        border-color: rgba(38,78,255,.2);
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }
.ev-blog-thumb {
    height: 150px;
    background: var(--bg-light);
    overflow: hidden;
    position: relative;
}
    .ev-blog-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }
.ev-blog-card:hover .ev-blog-thumb img {
    transform: scale(1.05);
}
.ev-blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
    .ev-blog-placeholder i {
        font-size: 32px;
        color: var(--hint);
    }
.ev-blog-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.ev-blog-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 10px;
    flex: 1;
}
.ev-blog-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    transition: var(--transition);
}
    .ev-blog-link:hover {
        gap: 8px;
    }
/* CTA / List event card */
.ev-list-card {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: var(--shadow-lg), var(--shadow-blue);
    position: relative;
    overflow: hidden;
}
    .ev-list-card::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        border: 40px solid rgba(255,255,255,.06);
        pointer-events: none;
    }
    .ev-list-card h3 {
        font-size: 20px;
        font-weight: 900;
        color: #fff;
        margin-bottom: 8px;
        position: relative;
        z-index: 1;
    }
    .ev-list-card p {
        font-size: 14px;
        color: rgba(255,255,255,.85);
        line-height: 1.65;
        max-width: 55ch;
        position: relative;
        z-index: 1;
    }
.ev-list-card-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
/* Full CTA */
.ev-fullcta {
    background: linear-gradient(135deg, var(--ink), var(--ink-light));
    border-radius: var(--radius-lg);
    padding: 44px 24px;
    text-align: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
    .ev-fullcta::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        border: 48px solid rgba(255,255,255,.04);
        pointer-events: none;
    }
    .ev-fullcta h2 {
        font-size: clamp(20px, 3vw, 28px);
        font-weight: 900;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }
    .ev-fullcta p {
        font-size: 15px;
        opacity: .85;
        margin-bottom: 22px;
        position: relative;
        z-index: 1;
    }
.ev-fullcta-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
/* EMPTY */
.ev-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--line-light);
}
    .ev-empty i {
        font-size: 44px;
        color: var(--hint);
        display: block;
        margin-bottom: 14px;
    }
    .ev-empty h3 {
        font-size: 18px;
        font-weight: 800;
        color: var(--ink);
        margin-bottom: 8px;
    }
    .ev-empty p {
        color: var(--muted);
        font-size: 14px;
    }
/* PAGINATION */
.ev-paging {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 32px 0;
    flex-wrap: wrap;
}
.ev-page-btn {
    padding: 9px 16px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--line);
    background: var(--surface);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
    .ev-page-btn:hover {
        border-color: var(--blue);
        color: var(--blue);
        transform: translateY(-1px);
    }
    .ev-page-btn.active {
        background: linear-gradient(135deg, var(--blue), var(--blue-light));
        color: #fff;
        border-color: var(--blue);
        box-shadow: 0 4px 12px rgba(38,78,255,.28);
    }
/* STICKY CTA */
.ev-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: #0B1120;
    color: #fff;
    padding: 12px 50px 12px 16px;
    box-shadow: 0 -8px 28px rgba(0,0,0,.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    transition: transform .2s ease-out, opacity .2s ease-out;
}
    .ev-sticky-cta.is-hidden {
        transform: translateY(110%);
        opacity: 0;
        pointer-events: none;
    }
.ev-sticky-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.3);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
}
    .ev-sticky-close:hover {
        background: rgba(255,255,255,.25);
    }
.ev-sticky-text {
    font-size: 13px;
    max-width: 60ch;
}
    .ev-sticky-text b {
        color: #FBBF24;
    }
.ev-sticky-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
/* RESPONSIVE */
@media (max-width: 1024px) {
    .ev-hero-inner {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .ev-hero-card {
        padding: 22px 18px;
    }
    .ev-grid {
        grid-template-columns: 1fr;
    }
    .ev-filter-bar {
        flex-direction: column;
    }
    .ev-filter-field {
        flex: 1 1 100%;
    }
    .ev-filter-apply, .ev-filter-reset {
        width: 100%;
        justify-content: center;
    }
    .ev-list-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }
    .ev-list-card-actions {
        justify-content: center;
    }
    .ev-acc-list {
        grid-template-columns: 1fr;
    }
}
