/* ==================================================================== */
/*  Global CSS */
/* ==================================================================== */

/* ===================================================
             HEADER SECTION STYLES
=================================================== */

:root {
    /* Theme Colors */
    --primary-color: #000000;
    /* Bright Blue */
    --accent-color: #e52b50;
    /* Teal */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-body: #f7f7fb;
    /* Light Grey */
    --transition-speed: 0.3s;
    --header-height: 80px;
    --cat-bar-height: 60px;
    /* New Variable for Category Bar */
    --button-bg: var(--primary-color);
    --button-text: var(--text-light);
    --button-bg-alt: var(--accent-color);
    --button-text-alt: var(--primary-color);
    --label-bg: var(--accent-color);
    --label-text: var(--primary-color);
    --badge-bg: rgba(255, 255, 255, 0.95);
    --badge-text: var(--primary-color);
    --tag-bg: transparent;
    --tag-text: var(--accent-color);
    --tag-border: transparent;
    --pill-bg: #ffffff;
    --pill-text: #555555;
    --pill-border: #eeeeee;
    --pill-active-bg: var(--primary-color);
    --pill-active-text: #ffffff;
    --pill-active-border: var(--primary-color);
    --card-bg: #ffffff;
    --card-border: rgba(0, 0, 0, 0.04);
    --input-bg: #f9f9f9;
    --input-border: #dddddd;
    --input-text: #333333;
    --muted-text: #666666;
    --gradient-accent: linear-gradient(135deg, var(--accent-color), #ff8c00);
    --gradient-section: linear-gradient(to bottom, #ffffff 0%, #f0f2f5 100%);
    --gradient-newsletter: linear-gradient(135deg, var(--primary-color) 0%, #0a1e3f 100%);
    --gradient-hero-overlay: linear-gradient(to right, rgba(20, 33, 61, 0.9) 0%, rgba(20, 33, 61, 0.6) 40%, rgba(20, 33, 61, 0.2) 100%);
}

/* ===================================================
    THEME CUSTOMIZER
=================================================== */

.theme-customizer {
    position: fixed;
    right: 24px;
    bottom: 90px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.theme-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    border: none;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.theme-panel {
    width: 260px;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: none;
}

.theme-panel.is-open {
    display: block;
}

.theme-panel h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.theme-panel .theme-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.theme-panel input[type="color"] {
    border: none;
    background: transparent;
    width: 46px;
    height: 32px;
    padding: 0;
    cursor: pointer;
}

.theme-reset-btn {
    width: 100%;
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.12);
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.theme-reset-btn:hover {
    background: rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
    .theme-customizer {
        right: 16px;
        bottom: 80px;
    }

    .theme-toggle-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-dark);
}

/* Header Container */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Sticky State */
.header.sticky {
    height: 70px;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    width: 90%;
    max-width: 1280px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--accent-color);
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color var(--transition-speed) ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* Right Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

.icon-btn:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.btn-login {
    padding: 10px 24px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn-login:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 163, 17, 0.3);
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
}

i.fa-solid.fa-xmark {
    font-size: 1.5rem;
    color: white;
}

/* Responsive Breakpoint (768px) */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--text-light);
        font-size: 1.2rem;
    }

    .nav-link:hover {
        color: var(--accent-color);
    }

    .header-actions {
        gap: 15px;
    }

    /* Hide user icon on very small screens if needed, keeping simple for now */
    .user-icon {
        display: none;
    }
}

/* Overlay for mobile menu */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===================================================
             CATEGORY BAR STYLES
        =================================================== */
.category-navbar {
    position: fixed;
    top: 80px;
    /* Sticks right below the fixed header */
    left: 0;
    width: 100%;
    height: var(--cat-bar-height);
    background: #fff;
    /* Light background */
    background: linear-gradient(to right, #ffffff, #f8f9fa);
    z-index: 990;
    /* Just below header (1000) */
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: top 0.3s ease;
}

.header.sticky~.category-navbar {
    top: 70px;
    /* Adjust if header shrinks */
}

.category-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
    /* Hide standard scrollbar */
}

.category-list-scroll {
    display: flex;
    gap: 12px;
    list-style: none;
    overflow-x: auto;
    padding: 10px 5px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    align-items: center;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.category-list-scroll::-webkit-scrollbar {
    display: none;
}

.cat-pill {
    flex: 0 0 auto;
    padding: 8px 20px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    user-select: none;
}

.cat-pill:hover {
    background-color: #f0f2f5;
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.cat-pill.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(20, 33, 61, 0.2);
}

/* Fade Animation for load */
.category-navbar {
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* ===================================================
             HERO SLIDER SECTION STYLES
        =================================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    /* Account for fixed header (80px) + category bar (60px) */
    margin-top: calc(var(--header-height) + var(--cat-bar-height));
    overflow: hidden;
    background-color: #000;
}

/* Slider Wrapper */
.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* Overlay for text readability */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(20, 33, 61, 0.9) 0%, rgba(20, 33, 61, 0.6) 40%, rgba(20, 33, 61, 0.2) 100%);
    z-index: 1;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-light);
    padding-left: 20px;
}

.slide-date {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.slide-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 800px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    font-weight: 300;
    opacity: 0.9;
}


.btn-ticket {
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-ticket:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Animations for content */
.slide.active .slide-date,
.slide.active .slide-title,
.slide.active .slide-desc,
.slide.active .btn-ticket {
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-date {
    animation-delay: 0.3s;
}

.slide.active .slide-title {
    animation-delay: 0.5s;
}

.slide.active .slide-desc {
    animation-delay: 0.7s;
}

.slide.active .btn-ticket {
    animation-delay: 0.9s;
}

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

/* Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    right: 5%;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.control-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 10px;
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .slide-title {
        font-size: 3rem;
    }

    .hero-slider {
        height: 70vh;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
        min-height: 550px;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .slide-desc {
        font-size: 1rem;
    }

    .slide-content {
        align-items: flex-start;
        text-align: left;
    }

    .slider-controls {
        bottom: 30px;
        right: 30px;
    }

    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===================================================
    FEATURED + SIDEBAR STYLES (Modern 2025 UI)
=================================================== */

:root {
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.6);
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    --card-radius: 16px;
}

.featured-wrapper {
    padding: 50px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f0f2f5 100%);
}

.layout-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

/* --- Left Column: Main Content (70%) --- */
.main-content {
    flex: 0 0 70%;
    width: 70%;
}

.section-header-modern {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.sidebar-toggle-btn {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-toggle-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.section-title-modern {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
}

.section-title-modern::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin-top: 10px;
    border-radius: 10px;
}

input[type=range] {
    width: 100%;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #666;
    display: none;
}

.grid-loader {
    grid-column: 1 / -1;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    color: var(--primary-color);
    font-size: 1.6rem;
}

.grid-loader.is-visible {
    display: flex;
}

.modern-grid.is-loading .modern-card {
    opacity: 0.35;
    pointer-events: none;
}

.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    min-height: 260px;
}

.fallback-shows {
    margin-top: 40px;
    display: none;
}

.fallback-shows.is-visible {
    display: block;
}

.fallback-head h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.fallback-head p {
    color: #666;
    margin-bottom: 18px;
}

.grid-loader {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.75);
    border-radius: var(--card-radius);
    z-index: 3;
}

.grid-loader.is-visible {
    display: flex;
}

.grid-loader i {
    font-size: 2rem;
    color: var(--primary-color);
}

.view-all-wrap {
    margin-top: 40px;
    text-align: center;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.btn-view-all:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 163, 17, 0.3);
}

.is-loading {
    opacity: 0.75;
}

.loading-dots {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 6px;
    font-weight: 700;
}

.loading-dots span {
    display: inline-block;
    animation: loadingDot 1s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.15s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes loadingDot {

    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    40% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

/* Modern Card Design */
.modern-card {
    background: #fff;
    border-radius: var(--card-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.modern-card.is-hidden {
    display: none;
}

.view-hidden {
    display: none !important;
}

.route-message {
    max-width: 1200px;
    margin: calc(var(--header-height) + var(--cat-bar-height) + 12px) auto 0;
    padding: 12px 18px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    display: none;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
    position: relative;
    z-index: 5;
}

.route-message.is-visible {
    display: block;
}

.modern-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.card-img-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modern-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

/* Gradient Overlay on Image */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    z-index: 1;
}

.card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background: #fff;
}

.card-tags {
    font-size: 0.75rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-info-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

.card-info-row span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-btn-anim {
    margin-top: auto;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid #eee;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 1;
}

.card-btn-anim::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.modern-card:hover .card-btn-anim {
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(20, 33, 61, 0.2);
}

.modern-card:hover .card-btn-anim::before {
    left: 0;
}

/* --- Right Column: Sidebar (30%) --- */
.sidebar-col {
    flex: 0 0 30%;
    width: 30%;
}

.sticky-sidebar {
    position: sticky;
    top: calc(var(--header-height) + var(--cat-bar-height));
    max-height: calc(100vh - var(--header-height) - var(--cat-bar-height) - 24px);
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) rgba(20, 33, 61, 0.12);
}

.sticky-sidebar::-webkit-scrollbar {
    width: 6px;
}

.sticky-sidebar::-webkit-scrollbar-track {
    background: rgba(20, 33, 61, 0.08);
    border-radius: 999px;
}

.sticky-sidebar::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 999px;
}

/* Scrollable sidebars across pages */
.shows-page-sidebar-inner,
.venues-page-sidebar-inner,
.show-detail-sidebar-content {
    max-height: calc(100vh - var(--header-height) - 40px);
    overflow-y: auto;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) rgba(20, 33, 61, 0.12);
}

.shows-page-sidebar-inner::-webkit-scrollbar,
.venues-page-sidebar-inner::-webkit-scrollbar,
.show-detail-sidebar-content::-webkit-scrollbar {
    width: 6px;
}

.shows-page-sidebar-inner::-webkit-scrollbar-track,
.venues-page-sidebar-inner::-webkit-scrollbar-track,
.show-detail-sidebar-content::-webkit-scrollbar-track {
    background: rgba(20, 33, 61, 0.08);
    border-radius: 999px;
}

.shows-page-sidebar-inner::-webkit-scrollbar-thumb,
.venues-page-sidebar-inner::-webkit-scrollbar-thumb,
.show-detail-sidebar-content::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 999px;
}

.sidebar-widget {
    background: #fff;
    padding: 20px;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    color: var(--primary-color);
}

/* Widget 1: Categories */
.category-list {
    list-style: none;
}

.category-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #555;
    font-weight: 500;
}

.category-item:hover,
.category-item.active {
    background: rgba(252, 163, 17, 0.1);
    /* Light Orange */
    color: var(--primary-color);
    transform: translateX(5px);
}

.category-item.active {
    font-weight: 700;
    border-left: 3px solid var(--accent-color);
}

.cat-count {
    background: #eee;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    color: #777;
}

/* Widget 2: Date Filter */
.date-filter-list {
    display: grid;
    gap: 12px;
}

.date-filter-btn {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    background: #f9fafb;
    color: #444;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
}

.date-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #fff;
}

.date-filter-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 8px 18px rgba(20, 33, 61, 0.2);
}

/* Month Filter */
.month-filter-list {
    display: grid;
    gap: 12px;
}

.month-filter-btn {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    background: #f9fafb;
    color: #444;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
}

.month-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #fff;
}

.month-filter-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 8px 18px rgba(20, 33, 61, 0.2);
}

body.sidebar-open {
    overflow: hidden;
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 17, 32, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
}

.sidebar-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .layout-container {
        gap: 28px;
    }

    .main-content,
    .sidebar-col {
        width: auto;
    }

    .main-content {
        flex: 1 1 auto;
    }

    .sidebar-col {
        flex: 0 0 320px;
        width: 320px;
    }

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

@media (max-width: 768px) {
    .layout-container {
        flex-direction: column;
    }

    .main-content {
        width: 100%;
    }

    .sidebar-toggle-btn {
        display: inline-flex;
    }

    .sidebar-col {
        position: fixed;
        top: calc(var(--header-height) + var(--cat-bar-height));
        right: 0;
        height: calc(100vh - var(--header-height) - var(--cat-bar-height));
        width: min(340px, 90vw);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1002;
        padding: 20px 16px;
        background: #f6f7f9;
        box-shadow: -10px 0 30px rgba(20, 33, 61, 0.2);
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-width: thin;
        scrollbar-color: var(--accent-color) rgba(20, 33, 61, 0.12);
    }

    .sidebar-col::-webkit-scrollbar {
        width: 6px;
    }

    .sidebar-col::-webkit-scrollbar-track {
        background: rgba(20, 33, 61, 0.08);
        border-radius: 999px;
    }

    .sidebar-col::-webkit-scrollbar-thumb {
        background: var(--accent-color);
        border-radius: 999px;
    }

    .sidebar-col.is-open {
        transform: translateX(0);
    }

    .sticky-sidebar {
        position: static;
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }
}

@media (max-width: 600px) {
    .modern-grid {
        grid-template-columns: 1fr;
    }

    .section-title-modern {
        font-size: 1.8rem;
    }
}

.newsletter-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a1120 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.newsletter-container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Decorative Blobs */
.decorative-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.6;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: -100px;
    left: -100px;
    animation: float 8s infinite ease-in-out;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: #4a90e2;
    bottom: -50px;
    right: -50px;
    animation: float 6s infinite ease-in-out reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.newsletter-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(252, 163, 17, 0.4);
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 20px;
}

.input-group-news {
    flex: 1;
    position: relative;
}

.input-icon-news {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
    z-index: 10;
}

.news-input {
    width: 100%;
    padding: 18px 20px 18px 50px;
    border-radius: 50px;
    border: 2px solid transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.9);
}

.news-input:focus {
    background: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(252, 163, 17, 0.2);
}

.btn-subscribe {
    padding: 18px 35px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, var(--accent-color), #ff8c00);
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.btn-subscribe:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(252, 163, 17, 0.4);
}

.privacy-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.privacy-note i {
    margin-right: 5px;
}

/* Success/Error States */
.form-message {
    height: 0;
    overflow: hidden;
    transition: all 0.3s;
    opacity: 0;
    margin-top: 10px;
    font-weight: 500;
}

.form-message.success {
    color: #4caf50;
    height: auto;
    opacity: 1;
    margin-bottom: 15px;
}

.form-message.error {
    color: #ff5252;
    height: auto;
    opacity: 1;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }

    .btn-subscribe {
        justify-content: center;
        width: 100%;
    }

    .newsletter-card {
        padding: 40px 20px;
    }

    .newsletter-title {
        font-size: 2rem;
    }
}

/* ===================================================
           FOOTER SECTION STYLES
        =================================================== */
.footer-section {
    background-color: #050a14;
    color: #e2e8f0;
    padding: 80px 0 30px;
    position: relative;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 30px;
}

/* Brand Column */
.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-desc {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(252, 163, 17, 0.3);
}

/* Headings & Links */
.footer-heading {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Contact Column */
.contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #94a3b8;
}

.contact-list li i {
    color: var(--accent-color);
    margin-top: 4px;
}

.mini-newsletter {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-newsletter input {
    background: transparent;
    border: none;
    padding: 10px;
    color: #fff;
    width: 100%;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.mini-newsletter button {
    background: var(--accent-color);
    border: none;
    color: var(--primary-color);
    width: 40px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.mini-newsletter button:hover {
    background: #fff;
}

/* Bottom Bar */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: #64748b;
}

.bottom-links {
    display: flex;
    gap: 25px;
}

.bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: 0.3s;
}

.bottom-links a:hover {
    color: var(--accent-color);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #fff;
    transform: translateY(-5px);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}


/* =========================================================================== */
/* Show Details Page CSS */
/* =========================================================================== */

/* ===================================================
         SHOW DETAILS - HERO STYLES
    =================================================== */
.show-detail-not-found {
    max-width: 900px;
    margin: 40px auto;
    padding: 32px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    text-align: center;
}

.show-detail-not-found h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.show-detail-not-found p {
    color: #555;
    margin-bottom: 18px;
}

.show-detail-not-found-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.show-detail-not-found-link:hover {
    opacity: 0.9;
}

.show-detail-details-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    margin-top: calc(var(--header-height));
    background-color: #0a1120;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    color: #fff;
    background-attachment: fixed;
}

.show-detail-details-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #050a14 0%, rgba(5, 10, 20, 0.6) 50%, rgba(5, 10, 20, 0.3) 100%);
    z-index: 1;
}

.show-detail-hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.show-detail-breadcrumbs {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.show-detail-breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.2s;
}

.show-detail-breadcrumbs a:hover {
    color: var(--accent-color);
}

.show-detail-breadcrumbs i {
    margin: 0 8px;
    font-size: 0.7rem;
}

.show-detail-show-title-wrapper {
    animation: show-detail-fadeSlideUp 0.8s ease-out forwards 0.2s;
    opacity: 0;
    transform: translateY(20px);
}

.show-detail-hero-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.show-detail-hero-badge {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.show-detail-show-title-large {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.show-detail-show-meta-hero {
    display: flex;
    gap: 30px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.show-detail-show-meta-hero span {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.show-detail-show-meta-hero i {
    color: var(--accent-color);
}

.show-detail-hero-description {
    margin-top: 18px;
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* ===================================================
         SHOW DETAILS - TICKET LIST STYLES
    =================================================== */
.show-detail-ticket-list-section {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.show-detail-ticket-list-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: #fcfcfc;
}

.show-detail-ticket-list {
    display: flex;
    flex-direction: column;
}

.show-detail-ticket-actions {
    padding: 15px 25px 25px;
    display: flex;
    justify-content: center;
}

.show-detail-ticket-load-btn {
    padding: 12px 28px;
    border-radius: 999px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.show-detail-ticket-load-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.show-detail-ticket-load-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.show-detail-ticket-loading,
.show-detail-ticket-empty {
    padding: 30px 25px;
    text-align: center;
    color: #667085;
    font-weight: 600;
}

.show-detail-ticket-loading i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.show-detail-ticket-item-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2fr 1fr 1fr 1.2fr;
    padding: 20px 25px;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.show-detail-ticket-item-row:last-child {
    border-bottom: none;
}

.show-detail-ticket-item-row:hover {
    background-color: #f9fcff;
}

.show-detail-t-date-group {
    display: flex;
    flex-direction: column;
}

.show-detail-t-day {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.show-detail-t-full-date {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.show-detail-t-time {
    font-size: 1rem;
    color: #444;
    font-weight: 600;
}

.show-detail-t-location-group {
    display: flex;
    flex-direction: column;
}

.show-detail-t-performer {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 1.3;
    word-break: break-word;
}

.show-detail-t-venue {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.show-detail-t-city {
    font-size: 0.85rem;
    color: #888;
}

.show-detail-t-seats-badge {
    background: #ffe8e8;
    color: #d63031;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    width: fit-content;
}

.show-detail-t-seats-badge.show-detail-plenty {
    background: #e6ffea;
    color: #27ae60;
}

.show-detail-t-price-from {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.show-detail-t-price-label {
    font-size: 0.75rem;
    color: #888;
    display: block;
}

.show-detail-btn-ticket-action {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.show-detail-btn-ticket-action:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ===================================================
         SHOW DETAILS - LAYOUT & INFO
    =================================================== */
.show-detail-details-layout {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px 0;
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 50px;
}

.show-detail-section-heading {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.show-detail-section-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.show-detail-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-soft);
}

.show-detail-info-item h4 {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.show-detail-info-item p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.show-detail-show-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 30px;
    background: #fff;
    padding: 22px 24px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-soft);
}

/* ===================================================
         SHOW DETAILS - FAQ STYLES
=================================================== */
.show-detail-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.show-detail-faq-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.show-detail-faq-question {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background 0.2s ease;
}

.show-detail-faq-question:hover {
    background: #f8fafc;
}

.show-detail-faq-icon {
    font-size: 0.9rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.show-detail-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #555;
    line-height: 1.7;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.show-detail-faq-item.is-open .show-detail-faq-answer {
    padding: 0 20px 16px;
    max-height: 420px;
}

.show-detail-faq-item.is-open .show-detail-faq-icon {
    transform: rotate(180deg);
}

/* Schedule (Bottom) */
.show-detail-schedule-list {
    list-style: none;
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
}

.show-detail-schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.show-detail-schedule-item:last-child {
    border-bottom: none;
}

.show-detail-schedule-item:hover {
    background-color: #f9f9f9;
}

.show-detail-schedule-item.show-detail-selected {
    background-color: #f0f7ff;
    border-left: 4px solid var(--primary-color);
}

.show-detail-date-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.show-detail-date-day {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    text-align: center;
    width: 50px;
}

.show-detail-date-month {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
    font-weight: 600;
    display: block;
}

.show-detail-show-time-details h5 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.show-detail-show-time-details span {
    font-size: 0.9rem;
    color: #666;
}

.show-detail-select-btn {
    padding: 8px 20px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
    transition: 0.2s;
}

.show-detail-schedule-item.show-detail-selected .show-detail-select-btn {
    background: var(--primary-color);
    color: #fff;
}

/* Map */
.show-detail-venue-map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-bottom: 60px;
    position: relative;
}

.show-detail-venue-map-iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

.show-detail-get-directions {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.show-detail-get-directions:hover {
    transform: translateY(-3px);
    color: var(--accent-color);
}

/* Sidebar Widgets */
.show-detail-details-sidebar {
    position: relative;
}

.show-detail-sidebar-content {
    position: sticky;
    top: 90px;
}

.show-detail-sidebar-box {
    background: #fff;
    padding: 15px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.show-detail-sidebar-box h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--primary-color);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.show-detail-why-list {
    list-style: none;
    line-height: 2.2;
    color: #555;
}

/* Related Shows */
.show-detail-related-card {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
    padding: 10px;
    border-radius: 10px;
}

.show-detail-related-card:hover {
    background: #f9f9f9;
    transform: translateX(5px);
}

.show-detail-related-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.show-detail-related-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-weight: 700;
}

.show-detail-related-info span {
    font-size: 0.85rem;
    color: #888;
    background: #eee;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Animations */
@keyframes show-detail-fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.show-detail-fade-in-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.show-detail-fade-in-scroll.show-detail-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .show-detail-details-layout {
        grid-template-columns: 1fr;
    }

    .show-detail-show-title-large {
        font-size: 3rem;
    }

    .show-detail-details-hero {
        height: auto;
        padding-top: 120px;
    }

    /* Mobile Ticket List */
    .show-detail-ticket-item-row {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .show-detail-t-location-group {
        display: flex;
        grid-column: 1 / -1;
    }

    .show-detail-t-seats-badge {
        display: none;
    }

    .show-detail-btn-ticket-action {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .logo {
        font-size: 1rem;
        white-space: nowrap;
    }

    .btn-login {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .show-detail-details-hero {
        min-height: 420px;
        background-attachment: scroll;
    }

    .show-detail-hero-content {
        padding-bottom: 40px;
    }

    .show-detail-breadcrumbs {
        font-size: 0.75rem;
    }

    .show-detail-show-title-large {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .show-detail-hero-badges {
        flex-wrap: wrap;
        gap: 8px;
    }

    .show-detail-show-meta-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .show-detail-show-meta-hero span {
        width: 100%;
        justify-content: flex-start;
        font-size: 0.95rem;
    }
}

/* Footer (inline styles replaced with classes for uniqueness) */
.show-detail-footer {
    background: #050a14;
    color: #94a3b8;
    padding: 60px 0;
    margin-top: 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.show-detail-footer-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.show-detail-footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.show-detail-footer-links {
    display: flex;
    gap: 20px;
}

.show-detail-footer-link {
    color: #94a3b8;
    text-decoration: none;
}




/* =========================================================== */
/*                      Show Page CSS                          */
/* =========================================================== */

.shows-page-wrapper {
    margin-top: var(--header-height);
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* 1. Page Header */
.shows-page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a1e3f 100%);
    color: #fff;
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shows-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}

.shows-page-header-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.shows-page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.shows-page-breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shows-page-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.shows-page-breadcrumb a:hover {
    color: var(--accent-color);
}

.shows-page-desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* 2. Filter & Sort Bar */
.shows-page-toolbar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    position: sticky;
    top: 70px;
    z-index: 90;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.shows-page-toolbar-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.shows-page-search-wrapper {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.shows-page-search-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.shows-page-search-input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s;
}

.shows-page-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 33, 61, 0.1);
}

.shows-page-sort-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shows-page-sort-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.shows-page-select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    outline: none;
}

/* 3. Main Layout */
.shows-page-content {
    width: 90%;
    max-width: 1280px;
    margin: auto;
    padding: 40px 0;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.shows-page-sidebar {
    order: 2;
    position: sticky;
    top: 160px;
}

/* ===================================================
           SHOWS PAGE - SIDEBAR STYLES
        =================================================== */

/* Sticky Container for Sidebar */
.shows-page-sidebar-inner {
    position: sticky;
    top: 100px;
    /* Header height + 20px padding */
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shows-page-filter-box {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    /* Removed sticky from individual boxes */
}

.shows-page-filter-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.shows-page-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shows-page-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
    transition: 0.2s;
}

.shows-page-checkbox-label:hover {
    color: var(--primary-color);
}

.shows-page-checkbox-label input {
    accent-color: var(--primary-color);
    width: 16px;
    height: 16px;
}

/* ===================================================
             SHOW GRID (RENAMED TO tkt-show-*)
             NOTE: ONLY GRID/CARD RELATED CLASSES WERE RENAMED
        =================================================== */

/* 4. Show Cards Grid */
.tkt-show-grid-container {
    order: 1;
}

.tkt-show-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.tkt-show-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

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

.tkt-show-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tkt-show-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.tkt-show-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tkt-show-card:hover .tkt-show-img img {
    transform: scale(1.1);
}

.tkt-show-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tkt-show-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tkt-show-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.tkt-show-meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tkt-show-meta i {
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

.tkt-show-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: auto;
    margin-bottom: 15px;
}

.tkt-show-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.tkt-show-actions.single {
    grid-template-columns: 1fr;
}

.tkt-show-hidden {
    display: none !important;
}

.shows-page-count {
    color: #888;
    font-size: 0.8rem;
    margin-left: 6px;
}

.tkt-show-btn {
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.tkt-show-btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.tkt-show-btn-outline:hover {
    background: #f0f2f5;
}

.tkt-show-btn-fill {
    background: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}

.tkt-show-btn-fill:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.shows-page-load-container {
    text-align: center;
    margin-top: 40px;
}

.shows-page-load-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.shows-page-load-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .shows-page-content {
        grid-template-columns: 1fr;
    }

    .shows-page-sidebar {
        display: none;
        /* Hide sidebar on mobile for simplicity */
    }

    .shows-page-toolbar {
        position: static;
    }

    .shows-page-sidebar-inner {
        position: static;
    }
}

/* ===================================================
                   Venue Page CSS
=================================================== */

.venues-page-wrapper {
    margin-top: var(--header-height);
    min-height: 100vh;
}

/* 1. Hero & Map Section */
.venues-page-hero {
    position: relative;
    background: #0a1e3f;
    color: #fff;
    padding: 40px 0 0;
}

.venues-page-header-content {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto 30px;
    text-align: center;
}

.venues-page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.venues-page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Google Map Container */
.venues-page-map-container {
    width: 100%;
    height: 450px;
    background-color: #e5e3df;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--accent-color);
}

.venues-page-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(10%) contrast(1.1);
}

/* 2. Sorting Bar */
.venues-page-sort-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 70px;
    z-index: 90;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.venues-page-sort-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-x: auto;
    padding: 0 5px;
}

.venues-page-tabs {
    display: flex;
    gap: 20px;
}

.venues-page-tab {
    padding: 20px 5px;
    background: none;
    border: none;
    color: #666;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: 0.3s;
}

.venues-page-tab:hover {
    color: var(--primary-color);
}

.venues-page-tab.active {
    color: var(--primary-color);
}

.venues-page-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px 3px 0 0;
}

.venues-page-result-count {
    font-size: 0.9rem;
    color: #888;
    white-space: nowrap;
    padding-left: 20px;
}

/* 3. Main Layout */
.venues-page-layout {
    width: 90%;
    max-width: 1280px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ===================================================
             VENUE CARDS (STATIC) - RENAMED TO tkt-venue-*
        =================================================== */

.tkt-venue-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tkt-venue-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
}

.tkt-venue-card.highlight {
    border: 2px solid var(--accent-color);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tkt-venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.tkt-venue-img {
    width: 40%;
    min-width: 320px;
    position: relative;
    overflow: hidden;
    padding: 10px;
}

.tkt-venue-img img {
    width: 100%;
    height: 100%;
    max-height: 240px;
    max-width: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.tkt-venue-card:hover .tkt-venue-img img {
    transform: scale(1.05);
}

.tkt-venue-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tkt-venue-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.tkt-venue-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.tkt-venue-year {
    font-size: 0.8rem;
    background: #f0f2f5;
    padding: 3px 8px;
    border-radius: 4px;
    color: #666;
    white-space: nowrap;
}

.tkt-venue-address {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tkt-venue-address i {
    color: var(--accent-color);
}

.tkt-venue-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.tkt-venue-stat {
    display: flex;
    flex-direction: column;
}

.tkt-venue-stat-val {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.tkt-venue-stat-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
}

.tkt-venue-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.tkt-venue-btn {
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
    cursor: pointer;
}

.tkt-venue-btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: none;
}

.tkt-venue-btn-primary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.tkt-venue-btn-secondary {
    background: transparent;
    border: 1px solid #ddd;
    color: #555;
}

.tkt-venue-btn-secondary:hover {
    background: #f8f9fa;
    border-color: #bbb;
    color: var(--text-dark);
}

/* Static map container (NO dynamic embed) */
.tkt-venue-map {
    width: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
    display: none;
}

.tkt-venue-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

/* 5. Sidebar Info (Right) */
.venues-page-sidebar {
    position: sticky;
    top: 150px;
}

.venues-page-sidebar-inner {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.venues-page-sidebar-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.venues-page-sidebar-box h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.venues-page-sidebar-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.venues-page-ad {
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
}

/* Load More */
.venues-page-load-more-container {
    text-align: center;
    margin-top: 40px;
}

.venues-page-load-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.venues-page-load-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Helper: JS shows/hides cards without changing design */
.tkt-venue-hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 900px) {
    .venues-page-layout {
        grid-template-columns: 1fr;
    }

    .venues-page-sidebar {
        display: none;
    }

    .tkt-venue-card {
        flex-direction: column;
    }

    .tkt-venue-img {
        width: 100%;
        height: 200px;
        min-width: unset;
    }

    .venues-page-sort-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .venues-page-tabs {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
    }
}

@media (max-width: 768px) {
    .venues-page-sidebar-inner {
        position: static;
    }
}


/* ================================================================ */
/*                        Dates Page CSS                            */
/* ================================================================ */

.es-dates-wrapper {
    margin-top: var(--header-height);
    min-height: 100vh;
    background-color: #f8f9fa;
    padding-bottom: 80px;
}

/* 1. Nav Bar Upgrade */
.es-dates-nav-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 70px;
    z-index: 90;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 15px 0;
}

.es-dates-nav-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    padding-bottom: 5px;
}

.es-dates-nav-container::-webkit-scrollbar {
    display: none;
}

.es-dates-tabs {
    display: flex;
    gap: 12px;
}

.es-dates-tab {
    padding: 10px 24px;
    background: #f4f7f6;
    border: 1px solid transparent;
    border-radius: 50px;
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.es-dates-tab:hover {
    background: #eef2f5;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.es-dates-tab.active {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(20, 33, 61, 0.25);
}

/* 2. Header & Controls */
.es-dates-content {
    width: 90%;
    max-width: 1280px;
    margin: 50px auto;
}

.es-dates-header {
    text-align: center;
    margin: 50px 0;
}

.es-dates-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.es-dates-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

.es-dates-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: var(--shadow-soft);
}

.es-dates-filters {
    display: flex;
    gap: 10px 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.es-dates-filter-btn {
    background: transparent;
    border: none;
    color: #888;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    position: relative;
    width: auto;
    transition: color 0.3s ease;
}

/* Hover Text Color */
.es-dates-filter-btn:hover {
    color: var(--primary-color);
}

/* Active Text Color */
.es-dates-filter-btn.active {
    color: var(--primary-color);
}

/* Underline Base */
.es-dates-filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);

    transform: scaleX(0);
    transform-origin: right;
    /* exit direction */
    transition: transform 0.3s ease;
}

/* Hover → enter from left */
.es-dates-filter-btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Active → always visible */
.es-dates-filter-btn.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.es-dates-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.es-dates-select {
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    color: #555;
    outline: none;
    cursor: pointer;
    background-color: #f9f9f9;
}

.es-dates-view-toggle {
    display: flex;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2px;
}

.es-dates-view-btn {
    padding: 8px 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #888;
    border-radius: 6px;
    transition: 0.2s;
}

.es-dates-view-btn.active {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* ===================================================
             STATIC SHOW CARDS - RENAMED TO date-page-*
        =================================================== */

.date-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: all 0.3s ease;
}

.date-page-card {
    background: #fff;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s var(--transition-bounce);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    opacity: 0;
    animation: fadeInCard 0.6s ease forwards;
}

@keyframes fadeInCard {
    to {
        opacity: 1;
    }
}

.date-page-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.date-page-img {
    position: relative;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
}

.date-page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.date-page-card:hover .date-page-img img {
    transform: scale(1.08);
}

.date-page-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    pointer-events: none;
}

.date-page-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.date-page-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}


.date-page-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.date-page-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.date-page-meta i {
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

.date-page-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.date-page-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.date-page-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: #888;
}

.date-page-btn-group {
    display: flex;
    gap: 10px;
}

.date-page-btn {
    padding: 10px 20px;
    text-align: center;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.date-page-btn-outline {
    border: 2px solid #eee;
    color: var(--primary-color);
    background: transparent;
    width: 42px;
    height: 42px;
    padding: 0;
}

.date-page-btn-outline:hover {
    border-color: var(--primary-color);
    background: #fff;
    transform: scale(1.05);
}

.date-page-btn-fill {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a1e3f 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(20, 33, 61, 0.2);
}

.date-page-btn-fill:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8c00 100%);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(20, 33, 61, 0.3);
}

/* List view */
.date-page-grid.list-view {
    grid-template-columns: 1fr;
    gap: 20px;
}

.date-page-grid.list-view .date-page-card {
    flex-direction: row;
    height: auto;
    min-height: 180px;
    align-items: center;
}

.date-page-grid.list-view .date-page-img {
    width: 280px;
    height: 100%;
    min-height: 200px;
}

.date-page-grid.list-view .date-page-img::after {
    display: none;
}

.date-page-grid.list-view .date-page-body {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 30px;
}

.date-page-grid.list-view .date-page-content-wrap {
    flex: 1;
    padding-right: 20px;
}

.date-page-grid.list-view .date-page-footer {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    min-width: 160px;
}

.date-page-grid.list-view .date-page-price {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.date-page-grid.list-view .date-page-meta {
    margin-bottom: 5px;
    flex-direction: row;
    gap: 20px;
}

.dates-fallback {
    margin-top: 40px;
    display: none;
}

.dates-fallback.is-visible {
    display: block;
}

/* Hidden cards for "Load More" (static) */
.date-page-hidden {
    display: none !important;
}

/* 6. Load More */
.es-dates-load-container {
    text-align: center;
    margin-top: 60px;
}

.es-dates-load-btn {
    padding: 15px 50px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.es-dates-load-btn:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(20, 33, 61, 0.15);
    transform: translateY(-2px);
}

/* Keep spinner hidden by default */
.es-dates-loader-spinner {
    display: none;
}

/* ===================================================
             DATES PAGE - DATE PICKER (FLATPICKR)
        =================================================== */
.flatpickr-calendar {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
    border: none !important;
    border-radius: 16px !important;
    padding: 15px !important;
    background: #fff !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.flatpickr-day.inRange {
    box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6 !important;
    background: #e6e6e6 !important;
    border-color: #e6e6e6 !important;
}

.flatpickr-months .flatpickr-month {
    color: var(--primary-color) !important;
    fill: var(--primary-color) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
}

.es-hidden-input {
    display: none !important;
    visibility: hidden;
    height: 0;
    width: 0;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .date-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo {
        font-size: 1rem;
        white-space: nowrap;
    }
}

@media (max-width: 900px) {
    .date-page-grid.list-view .date-page-card {
        flex-direction: column;
    }

    .date-page-grid.list-view .date-page-img {
        width: 100%;
        height: 200px;
    }

    .date-page-grid.list-view .date-page-body {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .date-page-grid.list-view .date-page-footer {
        flex-direction: row;
        width: 100%;
        margin-top: 20px;
        border-top: 1px solid #f0f0f0;
        padding-top: 15px;
    }

    .date-page-grid.list-view .date-page-meta {
        flex-direction: column;
        gap: 5px;
    }
}

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

    .es-dates-title {
        font-size: 2rem;
    }

    .es-dates-controls {
        flex-direction: column;
        align-items: flex-start;
    }

    .es-dates-filters {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .es-dates-actions {
        width: 100%;
        justify-content: space-between;
    }
}

/* ============================================================= */
/*                  Contact Page CSS                             */
/* ============================================================= */

.contact-page-wrapper {
    margin-top: var(--header-height);
    min-height: 100vh;
    background-color: #fcfcfc;
}

.contact-page-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* 1. Hero Section */
.contact-page-hero {
    background: linear-gradient(135deg, #0a1e3f 0%, var(--primary-color) 100%);
    color: #fff;
    padding: 50px 0;
    text-align: center;
    position: relative;
    margin-bottom: 60px;
}

.contact-page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* 2. Info Cards */
.contact-page-info {
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

.contact-page-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-page-card {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-page-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.contact-page-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(252, 163, 17, 0.1);
    /* Accent opacity */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-color);
    font-size: 1.8rem;
}

.contact-page-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-page-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 3. Form & Map Section */
.contact-page-main {
    padding-bottom: 50px;
}

.contact-page-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Form Styling */
.contact-page-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid #eee;
}

.contact-page-form-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

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

.contact-page-label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-page-input,
.contact-page-select,
.contact-page-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
    background-color: #f9f9f9;
}

.contact-page-input:focus,
.contact-page-select:focus,
.contact-page-textarea:focus {
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(20, 33, 61, 0.1);
}

.contact-page-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-page-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-page-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-page-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.contact-page-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.contact-page-success-msg {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    border: 1px solid #c3e6cb;
}

/* Map Styling */
.contact-page-map-wrapper {
    height: 100%;
    min-height: 500px;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.contact-page-map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%);
    /* Stylish look */
    transition: filter 0.3s;
}

.contact-page-map-wrapper:hover .contact-page-map-iframe {
    filter: grayscale(0%);
}

/* 4. FAQ Section */
.contact-page-faq {
    padding: 50px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.contact-page-faq-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.contact-page-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-page-faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-page-faq-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-page-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-page-layout {
        grid-template-columns: 1fr;
    }

    .contact-page-map-wrapper {
        min-height: 300px;
        order: -1;
        /* Map on top on mobile */
    }

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

/* ===================================================
   THEME OVERRIDES (ADMIN CONTROLLED)
=================================================== */
.btn-login,
.btn-view-all,
.show-detail-btn-ticket-action,
.show-detail-ticket-load-btn,
.tkt-show-btn-fill,
.date-page-btn-fill,
.venues-page-load-btn,
.es-dates-load-btn,
.shows-page-load-btn {
    background-color: var(--button-bg);
    color: var(--button-text);
    border-color: var(--button-bg);
}

.btn-login:hover,
.btn-view-all:hover,
.show-detail-btn-ticket-action:hover,
.show-detail-ticket-load-btn:hover,
.tkt-show-btn-fill:hover,
.date-page-btn-fill:hover,
.venues-page-load-btn:hover,
.es-dates-load-btn:hover,
.shows-page-load-btn:hover {
    background-color: var(--button-bg-alt);
    color: var(--button-text-alt);
    border-color: var(--button-bg-alt);
}

.card-btn-anim::before {
    background: var(--button-bg);
}

.modern-card:hover .card-btn-anim {
    border-color: var(--button-bg);
    color: var(--button-text);
}

.btn-subscribe {
    background: var(--gradient-primary);
    color: var(--button-text);
}

.btn-ticket {
    background-color: var(--button-bg-alt);
    color: var(--button-text-alt);
    border-color: var(--button-bg-alt);
}

.btn-ticket:hover {
    background-color: var(--button-bg);
    color: var(--button-text);
    border-color: var(--button-bg);
}

/* Extended theme controls */
.slide-date {
    background-color: var(--label-bg);
    color: var(--label-text);
}

.cat-pill {
    background-color: var(--pill-bg);
    color: var(--pill-text);
    border-color: var(--pill-border);
}

.cat-pill.active {
    background-color: var(--pill-active-bg);
    color: var(--pill-active-text);
    border-color: var(--pill-active-border);
}

.card-tags,
.tkt-show-badge,
.date-page-badge {
    background: var(--tag-bg);
    color: var(--tag-text);
    border-color: var(--tag-border);
}

.show-detail-hero-badge {
    background: var(--badge-bg);
    color: var(--badge-text);
}

.slide-overlay {
    background: var(--gradient-hero-overlay);
}

.featured-wrapper {
    background: var(--gradient-section);
}

.newsletter-section {
    background: var(--gradient-newsletter);
}

.btn-subscribe {
    background: var(--gradient-accent);
    color: var(--button-text);
}

.newsletter-card {
    background: var(--card-bg);
    color: var(--text-dark);
}

.newsletter-title {
    color: var(--text-dark);
}

.newsletter-subtitle {
    color: var(--muted-text);
}

.privacy-note {
    color: var(--muted-text);
}

.modern-card,
.date-page-card,
.tkt-show-card,
.contact-page-card,
.newsletter-card,
.contact-page-form-wrapper,
.shows-page-filter-box,
.shows-page-sidebar-inner,
.show-detail-ticket-list-section,
.show-detail-info-section,
.show-detail-schedule-section,
.show-detail-sidebar-box {
    background: var(--card-bg);
    border-color: var(--card-border);
}

.contact-page-input,
.contact-page-select,
.contact-page-textarea,
.shows-page-search-input,
.shows-page-select,
.newsletter-form input,
.mini-newsletter input {
    background-color: var(--input-bg);
    border-color: var(--input-border);
    color: var(--input-text);
}

.contact-page-input::placeholder,
.contact-page-textarea::placeholder,
.shows-page-search-input::placeholder,
.newsletter-form input::placeholder,
.mini-newsletter input::placeholder {
    color: var(--muted-text);
}

.contact-page-hero {
    background: var(--gradient-newsletter);
}

/* ===================================================
             Footer Refresh
=================================================== */

.footer-section {
    position: relative;
    background: #0a1222;
    color: #cfd6e6;
    padding: 80px 0 40px;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(252, 163, 17, 0.18), transparent 45%),
        radial-gradient(circle at 70% 20%, rgba(20, 33, 61, 0.35), transparent 50%);
    opacity: 0.9;
    pointer-events: none;
}

.footer-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px 35px;
    box-shadow: 0 20px 40px rgba(10, 18, 34, 0.35);
}

.footer-kicker {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 600;
}

.footer-cta-text h3 {
    color: #fff;
    font-size: 2rem;
    margin: 8px 0 10px;
}

.footer-cta-text p {
    color: #c7d0e3;
    max-width: 520px;
    line-height: 1.7;
}

.footer-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-btn {
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-btn-primary {
    background: var(--accent-color);
    color: #1c1f2a;
    box-shadow: 0 8px 20px rgba(252, 163, 17, 0.35);
}

.footer-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(252, 163, 17, 0.45);
}

.footer-btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.footer-btn-ghost:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 30px 0 40px;
}

.footer-highlight {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-highlight i {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-top: 2px;
}

.footer-highlight h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 6px;
}

.footer-highlight p {
    color: #b7c2d8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-grid--simple {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-top: 10px;
}

.footer-logo {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-desc {
    color: #b7c2d8;
    margin-top: 14px;
    line-height: 1.7;
}

.footer-heading {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    border-radius: 999px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #cfd6e6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: #9aa6bd;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #9aa6bd;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

@media (max-width: 1024px) {
    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-highlights {
        grid-template-columns: 1fr;
    }

}

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}