/* =========================================
   TATA KELOLA PAGE STYLES
   ========================================= */
.bg-orange-custom {
    background-color: #FD7E14;
}

.text-orange-custom {
    color: #FD7E14;
}

.bg-blue-custom {
    background-color: #0EA5E9;
}

.bg-green-custom {
    background-color: #22C55E;
}

.text-green-custom {
    color: #22C55E;
}

/* Custom grid for the chart bars */
.chart-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    height: 100%;
    align-items: end;
}

/* Custom styles untuk detail chart yang presisi */
.chart-grid-line {
    border-top: 1px solid #E5E7EB;
    width: 100%;
    position: absolute;
    left: 0;
}

.chart-bar {
    transition: height 0.3s ease;
}

/* Segitiga kecil untuk tooltip */
.tooltip-arrow::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555555 transparent transparent transparent;
}

/* DOCUMENTATION SWIPER */
.documentationSwiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
}

.documentationSwiper .swiper-slide {
    width: 450px;
    height: 400px;
    /* Match awardsSwiper height */
    position: relative;
    background-position: center;
    background-size: cover;
    border-radius: 12px;
    transition: all 0.5s ease;
    filter: brightness(0.8);
    transform: scale(0.9);
    opacity: 0;
    z-index: 1;
}

/* Active Slide */
.documentationSwiper .swiper-slide-active {
    filter: brightness(1);
    transform: scale(1.1);
    z-index: 30;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 4px solid white;
}

/* Sibling Slides */
.documentationSwiper .swiper-slide-prev,
.documentationSwiper .swiper-slide-next {
    z-index: 20;
    filter: brightness(0.9);
    opacity: 0.6;
}

/* Caption Animation */
.slide-caption {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.documentationSwiper .swiper-slide-active .slide-caption {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .documentationSwiper .swiper-slide {
        width: 300px;
        height: 300px;
    }
}

/* SECURITY CULTURE SWIPER - same as documentationSwiper */
.securityCultureSwiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
}

.securityCultureSwiper .swiper-slide {
    width: 450px;
    height: 400px;
    position: relative;
    background-position: center;
    background-size: cover;
    border-radius: 12px;
    transition: all 0.5s ease;
    filter: brightness(0.8);
    transform: scale(0.9);
    opacity: 0;
    z-index: 1;
}

/* Active Slide */
.securityCultureSwiper .swiper-slide-active {
    filter: brightness(1);
    transform: scale(1.1);
    z-index: 30;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 4px solid white;
}

/* Sibling Slides */
.securityCultureSwiper .swiper-slide-prev,
.securityCultureSwiper .swiper-slide-next {
    z-index: 20;
    filter: brightness(0.9);
    opacity: 0.6;
}

/* Caption Animation */
.securityCultureSwiper .swiper-slide-active .slide-caption {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .securityCultureSwiper .swiper-slide {
        width: 300px;
        height: 300px;
    }
}