#section-timeline {
    padding: 100px 0 40px 0;
    min-height: 100vh;
    overflow: visible;
}

.timelineSwiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0 0 0;
    overflow: visible;
}

.timelineSwiper .swiper-wrapper {
    align-items: stretch;
    padding: 60px 0 0 0;
}

.timelineSwiper .swiper-slide {
    height: auto;
    width: 320px;
}

.timeline-card {
    height: 83%;
    perspective: 1200px;
    margin-bottom: 30px;
}

.card2 {
    height: 100%;
    min-height: 580px;
    max-height: 650px;
    background: #2a2a3a;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
}

.card2:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.team-pic2 {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: #2a2a3a;
    display: flex;
    align-items: flex-start;
}

.team-pic2 img {
    margin-top: 0px !important;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
    transition: transform 0.3s ease;
}

.card2:hover .team-pic2 img {
    transform: scale(1.05);
}

.team-desc {
    flex: 1;
    padding: 20px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bg-marker-timeline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 12px;
    border-radius: 10px;
}

.team-desc h3 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
}

.team-desc p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.team-desc .lead {
    margin: 10px 0;
    min-height: 24px;
}

.small-border {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3D43B4, #67729D);
    margin: 0 auto;
}

/* Card Stack Effect */
.timelineSwiper .swiper-slide-active {
    transform: translateY(0) scale(1);
    z-index: 2;
}

.timelineSwiper .swiper-slide-prev,
.timelineSwiper .swiper-slide-next {
    transform: translateY(30px) scale(0.85);
    z-index: 1;
}

.timelineSwiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
    transform: translateY(60px) scale(0.7);
    z-index: 0;
}

/* Navigation */
.timelineSwiper .swiper-button-next,
.timelineSwiper .swiper-button-prev {
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.timelineSwiper .swiper-button-next:after,
.timelineSwiper .swiper-button-prev:after {
    font-size: 16px;
}

.timelineSwiper .swiper-button-next:hover,
.timelineSwiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.timelineSwiper .swiper-pagination {
    bottom: -20px;
}

.timelineSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.timelineSwiper .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.2);
}

/* Disabled navigation buttons */
.timelineSwiper .swiper-button-next[style*="opacity: 0.3"],
.timelineSwiper .swiper-button-prev[style*="opacity: 0.3"] {
    cursor: not-allowed;
    transition: all 0.3s ease;
}

/* Swipe Hint */
.swipe-hint {
    display: block;
    width: fit-content;
    margin: 20px auto 0 auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.6s ease-out;
}

.swipe-hint i {
    margin-left: 8px;
    animation: handWave 2s ease-in-out infinite;
}

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

@keyframes handWave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

@media (max-width: 768px) {
    .swipe-hint {
        font-size: 0.8rem;
        padding: 10px 16px;
        margin: 15px auto 0 auto;
    }
}



@media (max-width: 1024px) {
    .timelineSwiper .swiper-slide {
        width: 300px;
    }

    .card2 {
        min-height: 550px;
        max-height: 620px;
    }

    .team-pic2 {
        height: 250px;
    }

    .team-desc {
        padding: 15px;
        padding-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .timelineSwiper .swiper-slide {
        width: 280px;
    }

    .card2 {
        min-height: 520px;
        max-height: 580px;
    }

    .team-pic2 {
        height: 220px;
    }

    .team-desc {
        padding: 15px;
        padding-bottom: 20px;
        gap: 12px;
    }

    .team-desc h3 {
        font-size: 1.2rem;
    }

    .team-desc p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .timelineSwiper .swiper-slide {
        width: 260px;
    }

    .card2 {
        min-height: 500px;
        max-height: 550px;
    }

    .team-pic2 {
        height: 200px;
    }

    .team-desc {
        padding: 12px;
        padding-bottom: 20px;
        gap: 10px;
    }

    .team-desc h3 {
        font-size: 1.1rem;
    }

    .team-desc p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .bg-marker-timeline {
        padding: 8px;
    }
}

.de-team-list {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-pic {
    flex-shrink: 0;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.team-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-desc {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.team-desc h3 {
    margin: 0;
}

.team-desc .lead {
    margin: 10px 0;
}

.team-desc p {
    flex: 1;
}

.team-desc .social {
    margin-top: auto;
}
.hiburan-img-card {
    width: 100%;
    height: 400px;
    display: block;
    border-radius: 18px;
    box-shadow: 0 6px 32px 0 rgba(0,0,0,0.18);
    object-fit: cover;
}
.hiburan-card-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 18px;
    overflow: hidden;
}
.hiburan-card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(34,34,44,0.92) 80%, rgba(34,34,44,0.2) 100%);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 20px 24px 20px;
    text-align: center;
    border-radius: 18px;
    transition: opacity 0.3s, visibility 0.3s;
    pointer-events: none;
}
.hiburan-card-container:hover .hiburan-card-overlay,
.hiburan-card-container:focus-within .hiburan-card-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.hiburan-card-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}
.hiburan-card-overlay .hiburan-type {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #e0e0e0;
}
.hiburan-card-overlay .hiburan-desc {
    font-size: 1.05rem;
    color: #e0e0e0;
    margin-bottom: 0.5em;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0,0,0,0.18);
    text-align: justify;
    text-align-last: center;
    word-break: break-word;
    padding-left: 30px;
    padding-right: 30px;
}
.hiburan-card-overlay .hiburan-ig {
    margin-top: 8px;
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.hiburan-card-overlay .hiburan-ig:hover {
    background: #E1306C;
    color: #fff;
}
@media (max-width: 992px) {
    .hiburan-card-container {
        height: 340px;
        min-height: 340px;
        max-height: 340px;
    }
    .hiburan-card-overlay {
        padding: 18px 8px 12px 8px;
    }
}
@media (max-width: 576px) {
    .hiburan-card-container {
        height: 400px;
        min-height: 400px;
        max-height: 400px;
    }
    .hiburan-img-card {
        height: 100%;
        min-height: 100%;
        max-height: 100%;
    }
    .hiburan-card-overlay {
        padding: 10px 2px 6px 2px;
    }
}

.de-team-list {
    position: relative;
    min-height: 600px;
    height: 100%;
    border-radius: 18px;
    box-shadow: 0 6px 32px 0 rgba(0,0,0,0.18);
    overflow: hidden;
    background: #22223a;
}
.team-pic {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.team-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.team-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(34,34,44,0.85) 40%, rgba(34,34,44,0.2) 100%);
    z-index: 2;
}
.team-desc-wrapper {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 3;
    width: 100%;
    padding: 40px 24px 32px 24px;
    color: #fff;
    text-align: center;
}
.team-desc h3,
.team-desc .lead,
.team-desc p {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
    .de-team-list {
        min-height: 400px;
    }
    .team-desc-wrapper {
        padding: 24px 10px 18px 10px;
    }
}
@media (max-width: 480px) {
    .de-team-list {
        min-height: 280px;
    }
    .team-desc-wrapper {
        padding: 14px 4px 10px 4px;
    }
}

.swiper-button-next, .swiper-button-prev {
    color: #fff;
    background: rgba(34,34,44,0.7);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
    z-index: 10;
    transition: opacity 0.2s, background 0.2s;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}
.swiper-button-next {
    right: 4px;
}
.swiper-button-prev {
    left: 4px;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    opacity: 1;
    background: rgba(34,34,44,0.95);
}
.hiburanSwiper {
    position: relative;
}
@media (max-width: 576px) {
    .swiper-button-next, .swiper-button-prev {
        width: 28px;
        height: 28px;
    }
    .swiper-button-next {
        right: 2px;
    }
    .swiper-button-prev {
        left: 2px;
    }
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 13px;
    }
}

#swipe-hint-tickets {
    color: #ffffff;
    background: linear-gradient(#a865a0, #3D43B4);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    font-weight: 600;
}

/* Mobile Tickets Swiper Styles */
@media (max-width: 767px) {
    .ticketsSwiper {
        padding: 0 !important;
    }
    
    .ticketsSwiper .swiper-slide {
        width: 100% !important;
        margin: 0 !important;
    }
    
    /* Remove shadow from pricing cards in mobile swiper */
    .ticketsSwiper .pricing-s1 {
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
    }
    
    /* Hide pagination and navigation buttons */
    .ticketsSwiper .swiper-pagination,
    .ticketsSwiper .swiper-button-prev,
    .ticketsSwiper .swiper-button-next {
        display: none !important;
    }
    
    /* Ensure full width cards */
    .ticketsSwiper .swiper-slide .col-12 {
        padding: 0 !important;
    }
    
    /* Adjust container padding if needed */
    .ticketsSwiper .swiper-wrapper {
        padding: 0 !important;
    }
}