/* ============================================
   UNIKKU SHOW — Landing Page Styles
   ============================================ */

:root {
    --color-bg: #0a0a12;
    --color-surface: #151520;
    --color-primary: #00f0ff;
    --color-primary-dim: rgba(0, 240, 255, 0.15);
    --color-accent: #c9a227;
    --color-accent-dim: rgba(201, 162, 39, 0.15);
    --color-text: #e8e8e8;
    --color-text-muted: #a0a0a0;
    --color-border: rgba(255,255,255,0.12);
    --font-main: 'Montserrat', sans-serif;
    --radius: 16px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 70px;
}

::selection {
    background: var(--color-primary);
    color: #000;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* ============================================
   NAVBAR
   ============================================ */

#mainNav {
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
    z-index: 1000;
}

#mainNav.scrolled {
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

#mainNav .nav-link {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0 0.5rem;
    position: relative;
    transition: var(--transition);
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--color-primary);
}

#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

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

.lang-toggle {
    border: 1px solid var(--color-border);
    border-radius: 30px;
    padding: 0.4rem 1rem !important;
}

.lang-toggle:hover {
    border-color: var(--color-primary);
}

.lang-toggle::after {
    display: none !important;
}

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--color-bg);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-video.loaded {
    opacity: 1;
}

.hero-bg.video-ready {
    background-image: none !important;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,18,0.12) 0%,
        rgba(10,10,18,0.22) 55%,
        rgba(10,10,18,0.5) 100%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 30px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: 8px;
    margin: 1.5rem 0;
    background: linear-gradient(135deg, #fff 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.2s both;
    text-transform: uppercase;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.45));
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.4s both;
    text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

.hero-cta {
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-btn {
    min-width: 220px;
}

@media (max-width: 575px) {
    .hero-btn {
        width: 100%;
        max-width: 320px;
    }
}

.hero-locations {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.8s both;
}

/* Buttons */
.btn-primary {
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    color: #000;
    font-weight: 600;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-primary);
    box-shadow: 0 0 30px var(--color-primary-dim);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-weight: 600;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn-outline-light:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.hero .btn-outline-light {
    border-color: rgba(255,255,255,0.55);
    background: rgba(0,0,0,0.12);
    backdrop-filter: blur(6px);
}

.hero .btn-outline-light:hover {
    border-color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.1);
}

.btn-outline-primary {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--color-primary);
    color: #000;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeInUp 1s ease 1s both;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 6rem 0;
    position: relative;
}

.section-label {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FOR WHOM
   ============================================ */

.for-whom {
    background: linear-gradient(180deg, var(--color-bg) 0%, #0d0d18 100%);
}

.for-you .container {
    max-width: 1200px;
}

.venue-cards-row {
    align-items: stretch;
}

.venue-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.venue-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.venue-card.featured {
    border-color: var(--color-accent);
    box-shadow: 0 0 40px var(--color-accent-dim);
}

.venue-card.featured:hover {
    box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 60px var(--color-accent-dim);
}

.venue-photo {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    flex-shrink: 0;
    background: #0a0a12;
}

.venue-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s ease;
}

.venue-photo-img--clubs {
    object-position: center 35%;
}

.venue-photo-img--hotels {
    object-position: center 40%;
}

.venue-photo-img--private {
    object-position: center 30%;
}

.venue-card:hover .venue-photo-img {
    transform: scale(1.04);
}

.venue-photo-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,18,0) 40%,
        rgba(10,10,18,0.55) 70%,
        rgba(10,10,18,0.95) 100%
    );
    pointer-events: none;
}

.venue-photo-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.25rem 1.25rem 1.5rem;
    z-index: 1;
}

.venue-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
    margin-bottom: 0.5rem;
}

.venue-tag i {
    font-size: 0.95rem;
    color: var(--color-primary);
}

.venue-card.featured .venue-tag i {
    color: var(--color-accent);
}

.venue-photo-caption .venue-pain {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    font-style: normal;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.venue-footer {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
}

.venue-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.venue-features li {
    font-size: 0.78rem;
    color: #a8a8a8;
    padding-left: 1rem;
    position: relative;
    line-height: 1.4;
}

.venue-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-primary);
}

.venue-card .btn {
    border-radius: 10px;
    padding: 0.7rem;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: auto;
}

@media (min-width: 992px) {
    .venue-photo {
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 767px) {
    .venue-photo {
        aspect-ratio: 3 / 4;
        max-height: 420px;
    }

    .venue-photo-img {
        object-fit: cover;
    }
}

.for-you-trust {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--color-border);
}

.for-you-trust-label {
    display: block;
}

.for-you-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.for-you-trust-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.35rem 1.5rem;
    transition: var(--transition);
}

.for-you-trust-item:hover {
    border-color: rgba(0, 229, 255, 0.35);
    transform: translateY(-3px);
}

.for-you-trust-item i {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 0.15rem;
}

.for-you-trust-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.for-you-trust-item p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 991px) {
    .for-you-trust-grid {
        grid-template-columns: 1fr;
    }
}

.audience-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
    background: #0c0c14;
    padding: 4rem 0 3.5rem;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stat-item {
    padding: 1rem 0;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, #e8c96a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }
}

.stats-venues-label {
    display: block;
    text-align: center;
}

.stats-venues {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.venue-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.venue-logo {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 40px;
    opacity: 0.55;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.venue-logo:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.venue-logo img {
    max-height: 36px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
}

@media (max-width: 767px) {
    .venue-logos {
        gap: 1.25rem 1.75rem;
    }

    .venue-logo {
        min-width: 80px;
        height: 32px;
    }

    .venue-logo img {
        max-height: 28px;
        max-width: 110px;
    }
}

/* ============================================
   SERVICES
   ============================================ */

.services {
    background: #0c0c14;
}

.service-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.service-img {
    height: 220px;
    overflow: hidden;
}

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

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

.service-body {
    padding: 1.8rem;
}

.service-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.service-body p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.service-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.service-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.service-meta i {
    color: var(--color-primary);
}

/* ============================================
   SHOWS
   ============================================ */

.shows {
    background: linear-gradient(180deg, #0d0d18 0%, #090912 100%);
}

/* Shows Grid (equipment-style) */
.shows-grid-section {
    background: linear-gradient(180deg, #0d0d18 0%, #090912 100%);
    padding: 5rem 0 0;
}

.shows-grid {
    display: grid;
    gap: 2px;
}

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

.shows-grid--portrait,
.shows-grid--more {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shows-grid--portrait-five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.shows-grid--portrait-five .shows-grid-overlay {
    padding: clamp(0.75rem, 1.2vw, 1.5rem);
}

.shows-grid--portrait-five .shows-grid-overlay h4 {
    font-size: clamp(0.82rem, 1.05vw, 1.15rem);
}

.shows-grid--portrait-five .shows-grid-overlay p {
    font-size: clamp(0.72rem, 0.85vw, 0.85rem);
}

.shows-grid-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-width: 0;
}

.shows-grid--wide .shows-grid-item {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.shows-grid--wide .shows-grid-item video {
    object-fit: cover;
    object-position: center center;
}

.shows-grid--portrait .shows-grid-item,
.shows-grid--more .shows-grid-item,
.shows-grid--pair .shows-grid-item {
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: min(72vh, 720px);
    justify-self: stretch;
}

.shows-grid--pair {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.shows-grid--pair .shows-grid-item:nth-child(1) {
    grid-column: 2 / span 2;
}

.shows-grid--pair .shows-grid-item:nth-child(2) {
    grid-column: 4 / span 2;
}

.shows-grid--more .shows-grid-item--center {
    grid-column: 2;
}

.shows-grid-item video,
.shows-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.shows-grid-item:hover video,
.shows-grid-item:hover img {
    transform: scale(1.08);
}

.shows-grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,18,0.2) 0%,
        rgba(10,10,18,0.5) 60%,
        rgba(10,10,18,0.85) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: var(--transition);
    pointer-events: none;
}

.shows-grid-item:hover .shows-grid-overlay {
    background: linear-gradient(
        180deg,
        rgba(10,10,18,0.1) 0%,
        rgba(10,10,18,0.3) 50%,
        rgba(10,10,18,0.75) 100%
    );
}

.shows-grid-item::before {
    content: '\F4F2';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 3rem;
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.shows-grid-item:hover::before {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1);
}

.shows-grid-overlay h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #fff;
}

.shows-grid-overlay p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
    line-height: 1.4;
}

.shows-grid-section .container {
    padding-bottom: 4rem;
}

.shows-cta {
    margin-top: 2.5rem;
    padding-bottom: 1rem;
    text-align: center;
}

.shows-hint {
    max-width: 520px;
    margin: 0 auto 1.5rem;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(0, 240, 255, 0.28);
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.shows-hint-q {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 0.35rem;
}

.shows-hint-a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 575px) {
    .shows-hint {
        padding: 1rem 1.25rem;
    }
    .shows-hint-q {
        font-size: 1rem;
    }
}

@media (max-width: 991px) {
    .shows-grid--wide {
        grid-template-columns: repeat(2, 1fr);
    }
    .shows-grid--portrait-five {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .shows-grid--portrait,
    .shows-grid--more,
    .shows-grid--pair {
        grid-template-columns: repeat(2, 1fr);
    }
    .shows-grid--portrait-five .shows-grid-item,
    .shows-grid--portrait .shows-grid-item,
    .shows-grid--more .shows-grid-item,
    .shows-grid--pair .shows-grid-item {
        max-height: min(65vh, 560px);
    }
    .shows-grid--pair .shows-grid-item:nth-child(1),
    .shows-grid--pair .shows-grid-item:nth-child(2) {
        grid-column: auto;
    }
}

@media (max-width: 575px) {
    .shows-grid--wide,
    .shows-grid--portrait-five,
    .shows-grid--portrait,
    .shows-grid--more,
    .shows-grid--pair {
        grid-template-columns: 1fr;
    }
    .shows-grid--portrait-five .shows-grid-item,
    .shows-grid--portrait .shows-grid-item,
    .shows-grid--more .shows-grid-item,
    .shows-grid--pair .shows-grid-item {
        max-height: min(60vh, 520px);
    }
    .shows-grid--pair .shows-grid-item:nth-child(1),
    .shows-grid--pair .shows-grid-item:nth-child(2) {
        grid-column: auto;
    }
}

.shows-grid-item.show-card {
    background: none;
    border: none;
    border-radius: 0;
}

.shows-grid-item.show-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.show-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.show-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 30px var(--color-primary-dim);
}

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

.show-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(1.15);
}

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

.show-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.show-overlay i {
    font-size: 3rem;
    color: var(--color-primary);
}

.show-card:hover .show-overlay {
    opacity: 1;
}

.show-body {
    padding: 1.3rem;
}

.show-body h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.show-body p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

/* Featured show cards */
.show-card-featured .show-img {
    height: 320px;
}

.show-card-featured .show-body h4 {
    font-size: 1.4rem;
    font-weight: 700;
}

.show-card-featured .show-body p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.show-card-featured .show-meta {
    font-size: 0.85rem;
}

@media (max-width: 767px) {
    .show-card-featured .show-img {
        height: 220px;
    }
    .show-card-featured .show-body h4 {
        font-size: 1.15rem;
    }
}

.show-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 0.8rem;
}

.show-meta i {
    color: var(--color-primary);
    margin-right: 0.2rem;
}

.show-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
}

/* ============================================
   GO-GO
   ============================================ */

.equipment {
    background: linear-gradient(180deg, #090912 0%, #0d0d18 100%);
}

/* Equipment Grid Variant */
.equipment-grid-section {
    background: linear-gradient(180deg, #090912 0%, #0d0d18 100%);
    padding: 5rem 0 0;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
}

.equip-grid-item {
    grid-column: span 2;
    position: relative;
    height: 340px;
    overflow: hidden;
    cursor: pointer;
}

.equip-grid-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.equip-grid-item:hover video {
    transform: scale(1.08);
}

.equip-grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,18,0.2) 0%,
        rgba(10,10,18,0.5) 60%,
        rgba(10,10,18,0.85) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: var(--transition);
}

.equip-grid-item:hover .equip-grid-overlay {
    background: linear-gradient(
        180deg,
        rgba(10,10,18,0.1) 0%,
        rgba(10,10,18,0.3) 50%,
        rgba(10,10,18,0.75) 100%
    );
}

.equip-grid-item::before {
    content: '\F4F2';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 3rem;
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.equip-grid-item:hover::before {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1);
}

/* Equipment video modal */
.equip-video-modal .modal-dialog {
    max-width: 90vw;
    margin: 1rem auto;
}

.equip-video-modal .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
}

.equip-video-modal .modal-body {
    padding: 0;
}

.equip-video-modal .show-viewer {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    background: #000;
}

.equip-grid-overlay h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #fff;
}

.equip-grid-overlay p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .equip-grid-item {
        grid-column: span 1;
        height: 280px;
    }
}

@media (max-width: 575px) {
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    .equip-grid-item {
        grid-column: span 1;
        height: 260px;
    }
}

.equip-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.equip-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 30px var(--color-primary-dim);
}

.equip-video-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.equip-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.equip-card:hover .equip-video-wrap video {
    transform: scale(1.05);
}

.equip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,10,18,0.8) 100%);
    pointer-events: none;
}

.equip-body {
    padding: 1.3rem;
}

.equip-body h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.equip-body p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin: 0;
}

.gogo {
    background: #0c0c14;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}

.feature-list i {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.price-tag {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--color-accent-dim);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.gogo-gallery {
    position: relative;
}

.gogo-video-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    max-height: min(72vh, 720px);
    overflow: hidden;
    cursor: pointer;
}

.gogo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gogo-video-wrap:hover .gogo-video {
    transform: scale(1.08);
}

.gogo-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,18,0.2) 0%,
        rgba(10,10,18,0.5) 60%,
        rgba(10,10,18,0.85) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 1.5rem;
    transition: var(--transition);
    pointer-events: none;
    text-align: center;
}

.gogo-video-wrap:hover .gogo-video-overlay {
    background: linear-gradient(
        180deg,
        rgba(10,10,18,0.1) 0%,
        rgba(10,10,18,0.3) 50%,
        rgba(10,10,18,0.75) 100%
    );
}

.gogo-video-wrap::before {
    content: '\F4F2';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 3rem;
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.gogo-video-wrap:hover::before {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1);
}

.gogo-video-overlay span {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.4;
}



/* ============================================
   PACKAGES
   ============================================ */

.packages {
    background: linear-gradient(180deg, #090912 0%, #0d0d18 100%);
}

.package-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
}

.package-card.featured {
    border-color: var(--color-accent);
    box-shadow: 0 0 40px var(--color-accent-dim);
}

.package-card.featured:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 60px var(--color-accent-dim);
}

.package-badge {
    position: absolute;
    top: 0;
    right: 1.5rem;
    background: var(--color-accent);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 0 0 8px 8px;
    letter-spacing: 1px;
}

.package-header {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.package-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-accent);
}

.package-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.package-body li {
    padding: 0.5rem 0;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.package-body li:last-child {
    border-bottom: none;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
    background: linear-gradient(180deg, #090912 0%, #0c0c14 100%);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255,255,255,0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question i {
    font-size: 1rem;
    color: var(--color-text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    padding: 0 1.5rem 1.2rem;
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq .section-desc a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.faq .section-desc a:hover {
    text-decoration: underline;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery {
    background: #090912;
    padding-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
    align-items: start;
}

.gallery-item--g1 { grid-column: 1 / span 6; }
.gallery-item--g2 { grid-column: 7 / span 6; }
.gallery-item--g3 { grid-column: 1 / span 8; }
.gallery-item--g4 { grid-column: 9 / span 4; }
.gallery-item--g5 { grid-column: 1 / span 3; }
.gallery-item--g6 { grid-column: 4 / span 3; }
.gallery-item--g7 { grid-column: 7 / span 3; }
.gallery-item--g8 { grid-column: 10 / span 3; }

.gallery-item--ar-3x2 { aspect-ratio: 3 / 2; }
.gallery-item--ar-16x9 { aspect-ratio: 16 / 9; }
.gallery-item--ar-2x3 { aspect-ratio: 2 / 3; }
.gallery-item--ar-9x16 { aspect-ratio: 9 / 16; }

/* Universal skeleton loader for all images */
.skeleton-bg {
    background: linear-gradient(
        110deg,
        rgba(20, 20, 30, 0.8) 8%,
        rgba(35, 35, 50, 0.9) 18%,
        rgba(20, 20, 30, 0.8) 33%
    );
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s linear infinite;
}

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

[data-skeleton] {
    opacity: 0;
    transition: opacity 0.6s ease;
}

[data-skeleton].loaded {
    opacity: 1;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    transition: var(--transition);
    background: #0a0a12;
}

.gallery-item.skeleton-bg {
    background: linear-gradient(
        110deg,
        #12121c 8%,
        #1e1e2e 18%,
        #2a2a3d 28%,
        #1e1e2e 38%,
        #12121c 48%
    );
    background-size: 200% 100%;
    animation: skeletonShimmer 1.4s linear infinite;
}

.gallery-item--portrait img {
    object-fit: contain;
}

.gallery-item:hover {
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--gallery-pos, center center);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-cta {
    margin-top: 2.5rem;
    padding-top: 0.5rem;
}

.gallery-insta-hint {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 992px) {
    .gallery.section {
        padding-top: 4rem;
        padding-bottom: 2.5rem;
    }

    .gallery .section-header {
        margin-bottom: 2rem !important;
    }

    .gallery-grid {
        max-width: 1180px;
        margin-inline: auto;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-template-rows: clamp(160px, 17vw, 210px) clamp(220px, 24vw, 280px);
        gap: 0.75rem;
        align-items: stretch;
    }

    .gallery-item--g1 { grid-column: 1; grid-row: 1; }
    .gallery-item--g2 { grid-column: 2; grid-row: 1; }
    .gallery-item--g3 { grid-column: 3; grid-row: 1; }
    .gallery-item--g4 { grid-column: 4; grid-row: 1; }
    .gallery-item--g5 { grid-column: 1; grid-row: 2; }
    .gallery-item--g6 { grid-column: 2; grid-row: 2; }
    .gallery-item--g7 { grid-column: 3; grid-row: 2; }
    .gallery-item--g8 { grid-column: 4; grid-row: 2; }

    .gallery-grid .gallery-item {
        width: 100%;
        height: 100%;
        min-height: 0;
        aspect-ratio: unset;
        max-height: none;
        justify-self: stretch;
    }

    .gallery-item--ar-3x2 img,
    .gallery-item--ar-16x9 img {
        object-fit: cover;
    }

    .gallery-item--portrait img {
        object-fit: contain;
    }

    .gallery-grid .gallery-item--portrait {
        display: block;
    }

    .gallery-grid .gallery-item--portrait img {
        width: 100%;
        height: 100%;
        max-width: none;
    }

    .gallery-cta {
        margin-top: 1.75rem;
    }
}

@media (min-width: 1400px) {
    .gallery-grid {
        max-width: 1280px;
        gap: 0.85rem;
        grid-template-rows: clamp(175px, 15vw, 220px) clamp(240px, 22vw, 300px);
    }
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
    background: linear-gradient(180deg, #0a0a0f 0%, #050505 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-whatsapp {
    background: #25d366;
    border: 2px solid #25d366;
    color: #fff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: transparent;
    color: #25d366;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.2);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border: 2px solid transparent;
    color: #fff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-instagram:hover {
    opacity: 0.9;
    color: #fff;
    transform: translateY(-2px);
}

.btn-email {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-email:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.contact-info {
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.contact-info i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-info p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255,255,255,0.8);
}

.contact-info small {
    color: var(--color-text-muted);
}

/* ============================================
   BOOKING FORM
   ============================================ */

.booking-page {
    background: linear-gradient(180deg, var(--color-bg) 0%, #0d0d18 50%, var(--color-bg) 100%);
    min-height: calc(100vh - 70px);
    padding: 8rem 0 4rem;
}

.booking-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-hero .section-label {
    margin-bottom: 0.8rem;
}

.booking-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.booking-hero p {
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.booking-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

@media (max-width: 575px) {
    .booking-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.form-label .required {
    color: var(--color-accent);
    margin-left: 2px;
}

.form-control,
.form-select {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-control::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-primary);
    background: rgba(0,240,255,0.03);
    box-shadow: 0 0 0 3px var(--color-primary-dim);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0a0a0' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-select option {
    background: var(--color-surface);
    color: #fff;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 575px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.booking-submit {
    width: 100%;
    background: var(--color-accent);
    border: 2px solid var(--color-accent);
    color: #000;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.booking-submit:hover {
    background: transparent;
    color: var(--color-accent);
    box-shadow: 0 0 30px var(--color-accent-dim);
}

.booking-alt {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.booking-alt p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.booking-alt-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.booking-alt-buttons .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #020202;
    padding: 2rem 0;
    border-top: 1px solid var(--color-border);
}

.footer a {
    color: var(--color-text-muted);
    font-size: 1.2rem;
    margin: 0 0.6rem;
    transition: var(--transition);
}

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

/* ============================================
   MODAL
   ============================================ */

.modal {
    --bs-backdrop-opacity: 0.92;
}

.modal-backdrop {
    background-color: #030308;
}

.modal-backdrop.show {
    opacity: var(--bs-backdrop-opacity);
}

.show-modal .modal-dialog {
    max-width: 90vw;
    margin: 1rem auto;
}

.show-modal .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
}

.show-modal .modal-body {
    padding: 0;
}

.show-viewer-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.show-viewer {
    width: 100%;
    background: transparent;
    box-shadow: none;
}

.show-viewer-title {
    color: var(--color-primary);
    font-size: clamp(0.78rem, 2.2vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 1rem;
    padding: 0 1rem;
}

.show-viewer-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: calc(75vh - 72px);
    min-height: 200px;
    margin: 0 auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.show-viewer-frame {
    position: relative;
    width: 100%;
    max-width: 100%;
    max-height: calc(75vh - 72px);
    line-height: 0;
}

.show-viewer-poster,
.show-viewer-frame video {
    display: block;
    width: 100%;
    height: 100%;
    max-height: calc(75vh - 72px);
    object-fit: contain;
    border-radius: 12px;
    background: #000;
}

.show-viewer-media--loading .show-viewer-poster {
    display: block;
}

.show-viewer-media--loading video {
    display: none;
}

.show-viewer-media--ready .show-viewer-poster {
    display: none;
}

.show-viewer-media--ready video {
    display: block;
}

.show-viewer-media--error .show-viewer-poster {
    display: block;
}

.show-viewer-media--error video {
    display: none;
}

.show-viewer-media--photo .show-main-media {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    background: #000;
}

.show-viewer-media--photo.show-viewer-media--loading .show-viewer-frame {
    background: linear-gradient(
        110deg,
        rgba(20, 20, 30, 0.8) 8%,
        rgba(35, 35, 50, 0.9) 18%,
        rgba(20, 20, 30, 0.8) 33%
    );
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s linear infinite;
}

.show-viewer-fallback {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 10, 18, 0.35) 0%, rgba(10, 10, 18, 0.75) 100%);
}

.show-viewer-fallback[hidden] {
    display: none !important;
}

.show-viewer-loader {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.55);
    pointer-events: none;
}

.show-viewer-loader[hidden] {
    display: none !important;
}

.show-viewer-loader-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.show-viewer-spinner {
    width: 42px;
    height: 42px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: showViewerSpin 0.8s linear infinite;
}

@keyframes showViewerSpin {
    to { transform: rotate(360deg); }
}

.show-viewer-media--ready .show-viewer-loader {
    display: none;
}

.show-viewer-fallback .bi {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.45);
}

.show-viewer-fallback-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.show-viewer-fallback-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    max-width: 280px;
}

.show-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.show-nav:hover {
    background: rgba(0,0,0,0.8);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.show-nav-prev { left: -22px; }
.show-nav-next { right: -22px; }

.show-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) transparent;
}

.show-thumbs::-webkit-scrollbar {
    height: 4px;
}

.show-thumbs::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 2px;
}

.show-thumb {
    flex: 0 0 auto;
    width: 80px;
    height: 55px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: var(--transition);
    position: relative;
}

.show-thumb:hover,
.show-thumb.active {
    border-color: var(--color-primary);
    opacity: 1;
}

.show-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.show-thumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
}

.show-thumb-play::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid var(--color-primary);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

@keyframes scrollMouse {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 12px);
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .section {
        padding: 4rem 0;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item--g1,
    .gallery-item--g2,
    .gallery-item--g3,
    .gallery-item--g4,
    .gallery-item--g5,
    .gallery-item--g6,
    .gallery-item--g7,
    .gallery-item--g8 {
        grid-column: auto;
    }
    .gallery-item--ar-3x2,
    .gallery-item--ar-16x9 {
        grid-column: span 2;
    }
    .gogo-video-wrap {
        max-height: min(65vh, 560px);
    }
}

@media (max-width: 767px) {
    .hero-title {
        letter-spacing: 3px;
    }
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(10,10,18,0.18) 0%,
            rgba(10,10,18,0.28) 55%,
            rgba(10,10,18,0.58) 100%
        );
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item--g1,
    .gallery-item--g2,
    .gallery-item--g3,
    .gallery-item--g4,
    .gallery-item--g5,
    .gallery-item--g6,
    .gallery-item--g7,
    .gallery-item--g8 {
        grid-column: auto;
    }
    .gallery-item--ar-3x2,
    .gallery-item--ar-16x9,
    .gallery-item--ar-2x3,
    .gallery-item--ar-9x16 {
        grid-column: span 1;
    }
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    .contact-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

}

@media (max-width: 575px) {
    .package-card {
        margin-bottom: 1rem;
    }
    .audience-card {
        padding: 1.8rem;
    }
}
/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 8, 0.96);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.2s;
    line-height: 1;
    padding: 0;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    opacity: 0.7;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}

.lightbox-nav:hover {
    opacity: 1;
    background: rgba(255,255,255,0.2);
    border-color: var(--color-primary);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    text-align: center;
    z-index: 10;
}

.lightbox-counter {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    letter-spacing: 1px;
    z-index: 10;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
    .lightbox-close {
        top: 0.8rem;
        right: 1rem;
        font-size: 2rem;
    }
    .show-modal .btn-close {
        top: -30px !important;
        right: 0 !important;
    }
    .show-modal .modal-dialog {
        margin: 2.5rem 0.5rem 0.5rem;
    }
}
