/* Background and Color Utility Classes */
.bg-nav { background-color: var(--nav-bg);}
.bg-main-card {background-color: var(--main-card);}
.bg-secondary-card{background-color: var(--secondary-cards);}
.bg-wwo-mini-card {background-color: var(--wwo-mini-card);}
.bg-red-card {background-color: var(--red-card-bg);}
.bg-header-message-card {background-color: var(--message-header-bg);}
.bg-message-box {background-color: var(--message-box);}
.boarder-contact{border-color:var(--normal-text);}

.text-nav { color: var(--nav-text);}
.text-main-heading { color: var(--main-headding);}
.text-sub-heading { color: var(--sub-heading); }
.text-normal { color: var(--normal-text); }
.text-admin-hint { color: var(--map-hint); }
.text-ticket-link { color: var(--ticket-link); }
.text-red-heading { color: var(--red-heading); }
.text-red-card { color: var(--red-card-text); }
.text-wwo-mini-card-text { color: var(--wwo-mini-card-text); }
.text-table { color: var(--table-text); }

.red-card{ background-color: var(--red-card); }
.red-slice { border-color: var(--red-slice); }

.green-card{ background-color: var(--green-card); }
.green-slice { border-color: var(--green-slice); }
.text-green-text { color: var(--green-text); }
.text-table-coming-soon-text {
    color: var( --table-coming-soon-text);
    transition: color 0.2s ease, transform 0.2s ease;
}
.text-dashboard-text { color: var(--dashboard-text); }

.dashboard-main-card {background-color: var(--dashboard-main-card);}

.border-card { border-color: var(--card-border); }

.table-hover { border-color: var(--table-hover); }

.edit-card-border { border-color: var(--edit-card-border); }

tr.table-hover:hover .text-table-coming-soon-text {
    color: var(--table-text-hover );
}
.login-card{
    background-color: var(--login-card);
    border: 1px solid var(--card-border);}

/* Table hovers  */
tbody tr.table-hover {
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

tbody tr.table-hover:hover {
    background-color: var(--table-hover);
    border-color: var(--table-hover);
    cursor: pointer;
}

tbody tr.table-hover:hover td {
    color: var(--table-text-hover);
}

/* Buttons and button colors  */
.btn-purple {
    background-color: var(--purple-button-bg);
    color: var(--purple-button-text);
}
.nav-border{
    background-color: var(--nav-bg);
    border-color: var(--card-border);
}
.nav-border:hover{
    background-color: var(--wwo-mini-card);
    border-color: var(--purple-button-bg);
}
.text-nav-disabled {
    color: var(--nav-text-disabled);
}
.nav-purple {
    color: var(--normal-text);
}

.nav-purple:hover {
    background-color: var(--purple-button-bg);
    color: var(--purple-button-text);
}
.btn-green {
    background-color: var(--green-button);
    color: var(--purple-button-text);
}

.btn-red {
    background-color: var(--red-button-bg);
    color: var(--red-button-text);
}

/* Form style */
.form-input {
    background-color: var(--form-input-bg);
    color: var(--form-input-text);
    border-color: var(--form-input-border);
}

.form-label { color: var(--contact-form-label); }
.form-subtext { color: var(--contact-form-subtext); }
.form-input::placeholder { color: var(--form-placeholder); }

/* Gallery syle for toggle  */
.gallery-toggle-selected {
    background-color: var(--gallery-toogle-selected-bg);
    color: var(--gallery-toogle-selected-text);
}

.gallery-toggle-unselected {
    background-color: var(--gallery-toogle-unselected-bg);
    color: var(--gallery-toogle-unselected-text);
}

.gallery-filter-color { color: var(--gallery-filter); }

.table-header-bg { background-color: var(--table-header); }

/* Card Shadows  */
.shadow-card {
    box-shadow: 0 4px 6px -1px var(--card-shadow),
    0 2px 4px -1px var(--card-shadow);
}

/* Global Style */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* Focus style */
input:focus, textarea:focus, button:focus {
    outline: 2px solid #8b5cf6;
    outline-offset: 2px;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 0;
}


input:focus, textarea:focus, button:focus {
    outline: 2px solid #8b5cf6;
    outline-offset: 2px;
}

/* Services Section  */
.services {
    padding: 0 0 30px;
    background: var(--main-card);
    min-height: 50vh;
}

.main-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #4a1a4a;
    font-weight: 700;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #6b2d6b;
    position: relative;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #4a1a4a, #6b2d6b);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: var(--secondary-cards);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    min-height: 250px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #4a1a4a, #6b2d6b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(74, 26, 74, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    background: linear-gradient(45deg, #4a1a4a, #6b2d6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    color: var(--main-headding);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card p {
    color: var(--normal-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Service card  annimations  */
.service-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

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

/* Toggle  background */
.toggle-bg {
    background: #ede9fe;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    padding: 0.3rem 0.3rem;
    height: 2.5rem;
    box-shadow: none;
}

/* Segmentatin for Toggle */
.segmented-control {
    display: flex;
    background: transparent;
    border-radius: 9999px;
    overflow: hidden;
    border: none;
    gap: 0.1rem;
    height: 2rem;
    align-items: center;
}

.seg-btn {
    padding: 0 1.1rem;
    font-size: 1rem;
    font-weight: 200;
    text-transform: uppercase;
    color: #222;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    outline: none;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    height: 1.5rem;
    line-height: 1.75rem;
    margin: 0 0.05rem;
    box-sizing: border-box;
    justify-content: center;
}

.seg-radio:checked + .seg-btn,
input[type="radio"]:checked + .seg-btn {
    background: var(--gallery-toogle-selected-bg) !important;
    color: var(--gallery-toogle-selected-text) !important;
    font-weight: 200;
}


.seg-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* year filter drop down for the gallery  */
.year-filter-select {
    appearance: none;
    background: var(--secondary-cards);
    border: 1px solid #d1d5db;
    border-radius: 9999px;
    padding: 0 2.5rem 0 1rem;
    font-size: 1rem;
    color: var(--normal-text);
    font-weight: 500;
    outline: none;
    height: 2.5rem;
    line-height: 2.5rem;
    min-width: 160px;
    box-shadow: none;
    margin-left: 0;
    transition: border 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
}

.year-filter-select:focus {
    border-color: var(--main-headding);
    box-shadow: 0 0 0 2px #ede9fe;
}
.year-filter-select option {
    background-color: var(--secondary-cards);
    color: var(--normal-text);
}

/* Custom highlight color for hovered or the selected options */
.year-filter-select option:checked,
.year-filter-select option:hover,
.year-filter-select option:focus {
    background-color: var(--main-headding) !important;
    color: #fff !important;
}


.year-filter {
    position: relative;
    display: inline-block;
}

.year-filter_select::-ms-expand {
    display: none;
}

.year-filter::after {
    content: '\25BC';
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--normal-text);
    font-size: 1rem;
}

/* Gallery grid layour  */
#image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
    justify-content: center;
}

.gallery-grid-item {
    height: 200px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gallery-media-container {
    height: 100%;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0.75rem;
    background: transparent;
    position: relative;
    flex-shrink: 0;
}

.gallery-media-container img {
    height: 100%;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 0.75rem;
    background: transparent;
}

.gallery-media-container video {
    background: #000;
    height: 200px !important;
    width: auto !important;
    max-width: none !important;
    max-height: 200px !important;
    min-height: 200px !important;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    display: block;
    border-radius: 0.75rem;
}



/* mobile phone slide transitions  */
.sliding-transition {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-slide-out-left {
    animation: mobileSlideOutLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mobile-slide-out-right {
    animation: mobileSlideOutRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mobile-slide-in-left {
    animation: mobileSlideInLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    display: flex !important;
}

.mobile-slide-in-right {
    animation: mobileSlideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    display: flex !important;
}

@keyframes mobileSlideOutLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

@keyframes mobileSlideOutRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

@keyframes mobileSlideInLeft {
    0% { transform: translateX(100px); }
    100% { transform: translateX(0); }
}

@keyframes mobileSlideInRight {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(0); }
}

/* nav active state : color and background  */
.nav-active {
    background-color: #7C3AED;
    color: white;
}

/* Gallery item hover */
.gallery-item {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.gallery-item:hover {
    opacity: 0.85;
}

/* Gallery Lightbox  */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

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

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10000;
}

.lightbox-content video {
    touch-action: manipulation;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 48px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    padding: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    z-index: 10001;
    padding: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    backdrop-filter: blur(5px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* hideing the overflow  */
body.lightbox-open {
    overflow: hidden;
}

/* Media Queries */

/* Tablet and Mobile Styles */
@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }

    .container {
        padding: 0 1rem;
    }

    .main-title {
        font-size: 2.5rem;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .flex.items-center.justify-between.w-full {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.5rem;
        width: 100%;
    }



    .year-filter {
        width: auto !important;
        min-width: 0;
    }

    .year-filter-select {
        width: auto !important;
        min-width: 0;
        margin-left: 0.5rem;
        margin-top: 0;
    }

    .lightbox-content {
        max-width: 95vw;
        max-height: 85vh;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 36px;
        width: 44px;
        height: 44px;
    }

    .lightbox-nav {
        font-size: 28px;
        width: 50px;
        height: 50px;
        padding: 15px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-content img,
    .lightbox-content video {
        max-height: 85vh;
    }
}

/*mobile styles for small screen  */
@media (max-width: 480px) {
    .seg-btn {
        font-size: 0.85rem;
        padding: 0 0.6rem;
    }

    .year-filter-select {
        font-size: 0.95rem;
        padding: 0 1.5rem 0 0.7rem;
        min-width: 100px;
    }

    .year-filter::after {
        right: 0.7rem;
    }
}



/* Media Security - Prevent Downloads and Interactions */
img, video {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
    pointer-events: auto;
}

/* Hide download button from all video controls globally */
video {
    controlsList: nodownload;
}
video::-webkit-media-controls-panel-button[aria-label="Download"] {
    display: none !important;
}
video::-webkit-media-controls-panel-button[title="Download"] {
    display: none !important;
}
video::-webkit-media-controls-panel-button[data-title="Download"] {
    display: none !important;
}
/* Hide download menu items in video controls */
video::-webkit-media-controls-panel-menu-button,
video::-webkit-media-controls-panel-menu {
    /* Additional selectors for download menu */
}
video::-webkit-media-controls-panel-menu-item[aria-label*="Download"] {
    display: none !important;
}

/* Carousel transition for images  */
.carousel-image {
    transition: transform 0.3s ease;
}

/* Home carosol for gallery  */
.home-gallery-carousel {
    margin: auto;
    width: 100%;
    overflow: hidden !important;
    position: relative;
}

/* gallery carosol arrows  */
.home-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--carrousel-arrow-bg);
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    transition: all 0.18s ease;
    z-index: 30;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.home-gallery-arrow svg {
    color: var(--carrousel-arrow);
}

.home-gallery-arrow.left {
    left: 8px !important;
}

.home-gallery-arrow.right {
    right: 8px !important;
}


.home-gallery-track {
    display: flex;
    align-items: center;
    gap: 1rem;
    will-change: transform;
    justify-content: flex-start;
}

/* 3 cards to show for home gallery (carosol ) */
.home-gallery-card {
    box-sizing: border-box;
    flex: 0 0 calc(33.333% - 0.67rem);
    max-width: calc(33.333% - 0.67rem);
    height: 240px;
    border-radius: 0.75rem;
    text-align: center;
    align-content: center;
    padding: 0;
}

.home-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

/**************** Home Gallery Carousel Media ******************** */

/* Tablet (769px - 1024px): Show 2 images */
@media (min-width: 769px) and (max-width: 1024px) {
    .home-gallery-track {
        gap: 1rem;
    }

    .home-gallery-card {
        flex: 0 0 calc(50% - 0.5rem) !important;
        max-width: calc(50% - 0.5rem) !important;
        width: calc(50% - 0.5rem) !important;
    }
}

/* Mobile (≤768px): Single centered image - CRITICAL FIX */
@media (max-width: 768px) {
    
    .home-gallery-carousel {
        padding: 0 !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .home-gallery-arrow {
        width: 36px;
        height: 36px;
    }

    .home-gallery-arrow.left {
        left: 8px !important;
    }

    .home-gallery-arrow.right {
        right: 8px !important;
    }

    .home-gallery-track {
        gap: 0 !important;
        padding: 0 !important;
    }

    .home-gallery-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        height: auto !important;
        aspect-ratio: 4 / 3;
        border-radius: 0.75rem;
    }

    
    #infiniteCarousel {
        padding: 0 !important;
    }

    .home-gallery-carousel .home-gallery-track {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .home-gallery-card {
        aspect-ratio: 3 / 2 !important;
    }
}

/* Shows carosol */
.shows-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--carrousel-arrow-bg);
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    transition: all 0.18s ease;
    z-index: 30;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.shows-arrow svg {
    color: var(--carrousel-arrow);
}

.shows-arrow.left {
    left: -2px !important;
}

.shows-arrow.right {
    right: -2px !important;
}

/* infitnate carosol  */
#showsInfinite {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
}

/*  Track shows  */
#showsInfinite .shows-track {
    display: flex !important;
    align-items: stretch !important;
    gap: 1rem;
    padding: 8px 12px;
    justify-content: flex-start;
    will-change: transform;
}

/* Shows Cards - Default Desktop: 3 cards showing */
#showsInfinite .shows-track .shows-card {
    box-sizing: border-box;
    flex: 0 0 calc(33.333% - 0.67rem) !important;
    max-width: calc(33.333% - 0.67rem) !important;
    width: calc(33.333% - 0.67rem) !important;
    min-height: 420px !important;
    height: auto !important;
    display: flex !important;
    align-items: stretch !important;
    flex-direction: column !important;
    background: transparent !important;
}

#showsInfinite .shows-track .shows-card > div {
    border-radius: 12px;
    overflow: hidden;
    background: var(--secondary-cards);
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--card-border);
    padding: 1.25rem;
    box-sizing: border-box;
    justify-content: flex-start !important;
    height: 100% !important;
}

#showsInfinite .shows-track .shows-card img {
    width: auto;
    height: auto;
    max-height: 7rem;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

#showsInfinite .shows-track .shows-card h3 {
    font-size: 1.375rem;
    line-height: 1.2;
    text-align: center;
    color: var(--sub-heading);
    font-weight: 700;
    margin: 0 0 0.75rem 0;
}

#showsInfinite .shows-track .shows-card p {
    font-size: 0.875rem;
    color: var(--normal-text);
    text-align: center;
    line-height: 1.5;
    margin: 0;
    padding: 0 0.5rem;
}

/* Shows Carousel Media Queries */

/* Tablet (769px - 1024px): Show 2 cards */
@media (min-width: 769px) and (max-width: 1024px) {
    #showsInfinite .shows-track {
        gap: 1rem !important;
    }

    #showsInfinite .shows-track .shows-card {
        flex: 0 0 calc(50% - 0.5rem) !important;
        max-width: calc(50% - 0.5rem) !important;
        width: calc(50% - 0.5rem) !important;
        min-height: 400px !important;
    }

    #showsInfinite .shows-track .shows-card img {
        max-height: 6.5rem !important;
    }

    #showsInfinite .shows-track .shows-card h3 {
        font-size: 1.25rem !important;
    }

    #showsInfinite .shows-track .shows-card p {
        font-size: 0.875rem !important;
    }
}

/* Mobile (≤768px): Single centered card */
@media (max-width: 768px) {
    #showsInfinite {
        padding: 0 !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .shows-arrow {
        width: 36px;
        height: 36px;
    }
    
    

    #showsInfinite .shows-track {
        gap: 0 !important;
        padding: 0 !important;
    }

    #showsInfinite .shows-track .shows-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        min-height: 380px !important;
        height: auto !important;
        margin: 0 auto;
    }

    #showsInfinite .shows-track .shows-card > div {
        padding: 1rem !important;
    }

    #showsInfinite .shows-track .shows-card img {
        max-height: 6rem !important;
    }

    #showsInfinite .shows-track .shows-card h3 {
        font-size: 1.125rem !important;
        margin-bottom: 0.5rem !important;
    }

    #showsInfinite .shows-track .shows-card p {
        font-size: 0.875rem !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    #showsInfinite .shows-track .shows-card {
        min-height: 340px !important;
    }

    #showsInfinite .shows-track .shows-card > div {
        padding: 0.875rem !important;
    }

    #showsInfinite .shows-track .shows-card img {
        max-height: 5rem !important;
    }
}

/* Testimonials Carousel */
.testimonials-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--carrousel-arrow-bg);
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    transition: all 0.18s ease;
    z-index: 30;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.testimonials-arrow svg {
    color: var(--carrousel-arrow);
}

.testimonials-arrow.left {
    left: 8px !important;
}

.testimonials-arrow.right {
    right: 8px !important;
}

/* Testimonials Infinite Carousel Container */
#testimonialsInfinite {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

/* Testimonials Track */
#testimonialsInfinite .testimonials-track {
    display: flex !important;
    align-items: stretch !important;
    gap: 1rem;
    padding: 8px 12px;
    justify-content: flex-start;
    will-change: transform;
}

/* Testimonials Cards - Default Desktop: 3 cards showing */
#testimonialsInfinite .testimonials-card {
    box-sizing: border-box;
    flex: 0 0 calc(33.333% - 0.67rem) !important;
    max-width: calc(33.333% - 0.67rem) !important;
    width: calc(33.333% - 0.67rem) !important;
    min-height: 400px !important;
    height: auto !important;
    display: flex !important;
    align-items: stretch !important;
    flex-direction: column !important;
    background: transparent !important;
}

#testimonialsInfinite .testimonials-card > .testimonial-card {
    border-radius: 12px !important;
    overflow: hidden !important;
    background: var(--secondary-cards) !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    border: 2px solid var(--card-border) !important;
    padding: 1.5rem !important;
    box-sizing: border-box !important;
    justify-content: flex-start !important;
    height: 100% !important;
}

#testimonialsInfinite .testimonials-card > .testimonial-card .flex-grow,
#testimonialsInfinite .testimonials-card > .testimonial-card .testimonial-text,
#testimonialsInfinite .testimonials-card > .testimonial-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
    hyphens: auto;
}

#testimonialsInfinite .testimonial-card p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    color: var(--normal-text) !important;
    margin: 0.85rem 0 0 0 !important;
    text-align: center !important;
}


#testimonialsInfinite .testimonial-card .text-center strong {
    font-size: 1rem;
    line-height: 1.15;
    margin: 0 0 0.25rem 0;
    text-align: center;
    font-weight: 700;
    color: var(--sub-heading);
}

#testimonialsInfinite .testimonial-card .text-yellow-400 {
    font-size: 1.5rem;
}

/* Testimonials Carousel Media Queries */

/* Tablet (769px - 1024px): Show 2 cards */
@media (min-width: 769px) and (max-width: 1024px) {
    #testimonialsInfinite .testimonials-track {
        gap: 1rem !important;
    }

    #testimonialsInfinite .testimonials-card {
        flex: 0 0 calc(50% - 0.5rem) !important;
        max-width: calc(50% - 0.5rem) !important;
        width: calc(50% - 0.5rem) !important;
        min-height: 380px !important;
    }

    #testimonialsInfinite .testimonial-card p {
        font-size: 0.9rem !important;
    }
}

/* Mobile (≤768px): Single centered card */
@media (max-width: 768px) {
    #testimonialsInfinite {
        padding: 0 !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .testimonials-arrow {
        width: 36px;
        height: 36px;
    }

    .testimonials-arrow.left {
        left: 4px !important;
    }

    .testimonials-arrow.right {
        right: 4px !important;
    }

    #testimonialsInfinite .testimonials-track {
        gap: 0 !important;
        padding: 0 !important;
    }

    #testimonialsInfinite .testimonials-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        min-height: 360px !important;
        margin: 0 auto;
    }

    #testimonialsInfinite .testimonials-card > .testimonial-card {
        padding: 1.25rem !important;
    }

    #testimonialsInfinite .testimonial-card p {
        font-size: 0.875rem !important;
    }

    #testimonialsInfinite .testimonial-card .text-yellow-400 {
        font-size: 1.25rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    #testimonialsInfinite .testimonials-card {
        min-height: 320px !important;
    }

    #testimonialsInfinite .testimonials-card > .testimonial-card {
        padding: 1rem !important;
    }
}

/* Shows layout for exactly two shows */
.shows-track-two {
    gap: 0 !important;
}
.shows-card-two {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
    min-width: 50% !important;
    height: 50% !important;
    aspect-ratio: 4 / 3;
    border-radius: 0.75rem;
}

.shows-card-single {
    flex: 0 0 100% !important;
    max-width: 400px !important;
    width: 100% !important;
    min-width: 300px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    height: auto !important;
    aspect-ratio: 4 / 3;
    border-radius: 0.75rem;
}

.shows-track-single {
    gap: 0 !important;
    overflow: hidden !important;
}
