/* ==========================================================================
   Homepage Slider Arrows
   ========================================================================== */
/* Premium white circle slick arrows for main homepage slider */
.slider .slick-arrow {
    width: 60px !important;
    height: 60px !important;
    background-color: #ffffff !important;
    color: #213360 !important;
    border-radius: 50% !important;
    border: none !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    transform: translateY(-50%) !important;
    /* Centered vertically on the slider background */
    opacity: 0.9 !important;
    z-index: 10 !important;
}

.slider .slick-arrow.slick-prev {
    left: 40px !important;
}

.slider .slick-arrow.slick-next {
    right: 40px !important;
}

/* Hover state: changes to premium cyan with smooth scale up and drop shadow */
.slider .slick-arrow:hover {
    background-color: #21cdc0 !important;
    color: #ffffff !important;
    opacity: 1 !important;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 12px 35px rgba(33, 205, 192, 0.4) !important;
}

/* Resize arrow icons inside the circle */
.slider .slick-arrow:before {
    font-size: 26px !important;
    line-height: 1 !important;
    font-weight: bold !important;
    display: block !important;
}

/* Responsive styling for small devices */
@media (max-width: 767px) {
    .slider .slick-arrow {
        width: 45px !important;
        height: 45px !important;
    }

    .slider .slick-arrow.slick-prev {
        left: 15px !important;
    }

    .slider .slick-arrow.slick-next {
        right: 15px !important;
    }

    .slider .slick-arrow:before {
        font-size: 18px !important;
    }
}

@media (max-width: 575px) {
    .slider .slick-arrow {
        display: none !important;
    }
}

/* ==========================================================================
   Premium Contact Info Cards - Redesign
   ========================================================================== */
.premium-card-wrapper {
    margin-top: -60px;
    /* Pulls cards overlapping the slider */
    position: relative;
    z-index: 10;
}

.premium-contact-card {
    position: relative;
    display: flex;
    flex-direction: row;
    padding: 35px 30px;
    height: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #ffffff;
    overflow: hidden;
}

.premium-contact-card:hover {
    transform: translateY(-8px);
}

/* Card Specific Gradients & Sleek Shadows */
.premium-card-teal {
    background: linear-gradient(135deg, #21cdc0 0%, #15b3a7 100%);
    box-shadow: 0 12px 30px rgba(33, 205, 192, 0.25);
}

.premium-card-teal:hover {
    box-shadow: 0 20px 45px rgba(33, 205, 192, 0.45);
}

.premium-card-blue {
    background: linear-gradient(135deg, #3851a2 0%, #253975 100%);
    box-shadow: 0 12px 30px rgba(56, 81, 162, 0.25);
}

.premium-card-blue:hover {
    box-shadow: 0 20px 45px rgba(56, 81, 162, 0.45);
}

.premium-card-navy {
    background: linear-gradient(135deg, #21325e 0%, #152244 100%);
    box-shadow: 0 12px 30px rgba(33, 50, 94, 0.3);
}

.premium-card-navy:hover {
    box-shadow: 0 20px 45px rgba(33, 50, 94, 0.5);
}

/* Glassmorphism style card icon wrapper */
.premium-card-icon-wrap {
    flex: 0 0 65px;
    width: 65px;
    height: 65px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s ease;
}

.premium-contact-card:hover .premium-card-icon-wrap {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.08) rotate(5deg);
}

.premium-card-icon-wrap i {
    font-size: 28px !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    height: auto !important;
    line-height: normal !important;
}

/* Content Area */
.premium-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.premium-card-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.premium-card-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Action items / buttons container */
.premium-card-action {
    margin-top: auto;
    /* Push action elements to the bottom for perfect alignment */
}

/* Phone Link styling inside card */
.premium-phone-number {
    display: inline-flex;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.premium-phone-number i {
    font-size: 14px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.premium-phone-number:hover {
    opacity: 0.95;
}

.premium-phone-number:hover i {
    background: #ffffff;
    color: #21cdc0;
    transform: scale(1.1);
}

/* Custom outlined rounded button */
.premium-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 30px;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.premium-btn-outline i {
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.premium-btn-outline:hover {
    background: #ffffff;
    color: #3851a2 !important;
    border-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.premium-btn-outline:hover i {
    transform: translateX(4px);
}

/* Time details */
.premium-time-badge {
    font-size: 1rem;
    font-weight: 700;
    display: block;
    line-height: 1.4;
    color: #ffffff;
}

.premium-subtext-uppercase {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    font-weight: 600;
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
    .premium-card-wrapper {
        margin-top: 0px;
        /* remove negative margin for smaller screens to prevent overlapping bugs */
        padding-top: 30px;
    }

    .premium-contact-card {
        padding: 30px 25px;
    }
}

@media (max-width: 767px) {
    .premium-contact-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .premium-card-icon-wrap {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.kepala-welcome-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.kepala-welcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(33, 205, 192, 0.05) 1.2px, transparent 1.2px);
    background-size: 14px 14px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.95;
}

.kepala-welcome-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #21cdc0, #60e8db);
    border-radius: 4px 0 0 4px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scaleY(0.7);
    transform-origin: center;
    z-index: 2;
}

.kepala-welcome-card:hover {
    transform: translateY(-4px);
    border-color: rgba(33, 205, 192, 0.35);
    box-shadow: 0 20px 35px -10px rgba(33, 205, 192, 0.12), 0 8px 16px -4px rgba(33, 205, 192, 0.05);
}

.kepala-welcome-card:hover::after {
    transform: scaleY(1);
}

.kepala-avatar-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #fff;
    box-shadow: 0 6px 15px rgba(33, 205, 192, 0.12);
    background: linear-gradient(135deg, rgba(33, 205, 192, 0.1), rgba(96, 232, 219, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.kepala-welcome-card:hover .kepala-avatar-wrapper {
    transform: scale(1.06) rotate(1deg);
    box-shadow: 0 10px 25px rgba(33, 205, 192, 0.22);
    border-color: rgba(33, 205, 192, 0.7);
}

.kepala-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kepala-info-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kepala-info-name {
    font-family: 'Quicksand', sans-serif;
    font-weight: 750;
    color: #0c152b !important;
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.3;
}

.kepala-info-role {
    font-size: 0.78rem;
    color: #21cdc0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: rgba(33, 205, 192, 0.06);
    padding: 3px 10px;
    border-radius: 6px;
    width: fit-content;
}

/* ==========================================================================
   Video Banner
   ========================================================================== */
/* Custom video banner pulse and hover effect */
.video-banner-premium {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(12, 21, 43, 0.15);
    transition: all 0.4s ease;
}

.video-banner-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(12, 21, 43, 0.22);
}

.video-banner-premium:hover img {
    transform: scale(1.05);
}

.video-banner-premium:hover a.video__btn-premium {
    background: #21cdc0 !important;
    transform: translate(-50%, -50%) scale(1.1) !important;
    box-shadow: 0 15px 30px rgba(33, 205, 192, 0.6) !important;
}

.video-banner-premium:hover a.video__btn-premium i {
    color: #ffffff !important;
}

/* Pulsing effect on play button */
.video-banner-premium a.video__btn-premium::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: pulse-border 2s infinite;
    pointer-events: none;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ==========================================================================
   Fasilitas Unggulan (Laboratorium) Section
   ========================================================================== */
.services-premium-section {
    background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background dots */
.services-premium-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(33, 205, 192, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 1;
}

/* Floating background glowing orb */
.services-premium-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(33, 205, 192, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.services-premium-section .container {
    position: relative;
    z-index: 2;
}

/* Premium Lab Card Styling */
.premium-lab-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(13, 27, 62, 0.06);
    box-shadow: 0 10px 30px -5px rgba(12, 21, 43, 0.04);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 35px 30px;
    z-index: 1;
}

/* Accent Top Color Bars */
.premium-lab-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: transparent;
    transition: all 0.3s ease;
}

/* Hover states for the main card container */
.premium-lab-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(12, 21, 43, 0.12);
}

/* Theme-specific accent colors and styles */
.lab-card--teal::before {
    background: #1ab5a8;
}

.lab-card--teal:hover {
    border-color: rgba(26, 181, 168, 0.3);
    box-shadow: 0 20px 40px -10px rgba(26, 181, 168, 0.2);
}

.lab-card--blue::before {
    background: #3851a2;
}

.lab-card--blue:hover {
    border-color: rgba(56, 81, 162, 0.3);
    box-shadow: 0 20px 40px -10px rgba(56, 81, 162, 0.2);
}

.lab-card--green::before {
    background: #28a745;
}

.lab-card--green:hover {
    border-color: rgba(40, 167, 69, 0.3);
    box-shadow: 0 20px 40px -10px rgba(40, 167, 69, 0.2);
}

.lab-card--purple::before {
    background: #6f42c1;
}

.lab-card--purple:hover {
    border-color: rgba(111, 66, 193, 0.3);
    box-shadow: 0 20px 40px -10px rgba(111, 66, 193, 0.2);
}

.lab-card--orange::before {
    background: #fd7e14;
}

.lab-card--orange:hover {
    border-color: rgba(253, 126, 20, 0.3);
    box-shadow: 0 20px 40px -10px rgba(253, 126, 20, 0.2);
}

.lab-card--red::before {
    background: #dc3545;
}

.lab-card--red:hover {
    border-color: rgba(220, 53, 69, 0.3);
    box-shadow: 0 20px 40px -10px rgba(220, 53, 69, 0.2);
}

.lab-card--navy::before {
    background: #21325e;
}

.lab-card--navy:hover {
    border-color: rgba(33, 50, 94, 0.3);
    box-shadow: 0 20px 40px -10px rgba(33, 50, 94, 0.25);
}

/* Icon Floating Wrapper */
.lab-icon-box {
    width: 76px;
    height: 76px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.4s ease;
    background: rgba(13, 27, 62, 0.04);
}

.premium-lab-card:hover .lab-icon-box {
    transform: scale(1.1) rotate(5deg);
}

/* Specific color themes for icon box on hover */
.lab-card--teal:hover .lab-icon-box {
    background: #1ab5a8;
}

.lab-card--blue:hover .lab-icon-box {
    background: #3851a2;
}

.lab-card--green:hover .lab-icon-box {
    background: #28a745;
}

.lab-card--purple:hover .lab-icon-box {
    background: #6f42c1;
}

.lab-card--orange:hover .lab-icon-box {
    background: #fd7e14;
}

.lab-card--red:hover .lab-icon-box {
    background: #dc3545;
}

.lab-card--navy:hover .lab-icon-box {
    background: #21325e;
}

.lab-icon-box i {
    font-size: 32px;
    transition: all 0.4s ease;
}

/* Icon color classes */
.lab-card--teal .lab-icon-box i {
    color: #1ab5a8;
}

.lab-card--blue .lab-icon-box i {
    color: #3851a2;
}

.lab-card--green .lab-icon-box i {
    color: #28a745;
}

.lab-card--purple .lab-icon-box i {
    color: #6f42c1;
}

.lab-card--orange .lab-icon-box i {
    color: #fd7e14;
}

.lab-card--red .lab-icon-box i {
    color: #dc3545;
}

.lab-card--navy .lab-icon-box i {
    color: #21325e;
}

.premium-lab-card:hover .lab-icon-box i {
    color: #ffffff !important;
}

/* Typography */
.lab-card-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0c152b;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.lab-card--teal:hover .lab-card-title {
    color: #1ab5a8;
}

.lab-card--blue:hover .lab-card-title {
    color: #3851a2;
}

.lab-card--green:hover .lab-card-title {
    color: #28a745;
}

.lab-card--purple:hover .lab-card-title {
    color: #6f42c1;
}

.lab-card--orange:hover .lab-card-title {
    color: #fd7e14;
}

.lab-card--red:hover .lab-card-title {
    color: #dc3545;
}

.lab-card--navy:hover .lab-card-title {
    color: #21325e;
}

/* Badges */
.lab-unit-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lab-card--teal .lab-unit-badge {
    background: rgba(26, 181, 168, 0.06);
    border: 1px solid rgba(26, 181, 168, 0.12);
    color: #1ab5a8;
}

.lab-card--blue .lab-unit-badge {
    background: rgba(56, 81, 162, 0.06);
    border: 1px solid rgba(56, 81, 162, 0.12);
    color: #3851a2;
}

.lab-card--green .lab-unit-badge {
    background: rgba(40, 167, 69, 0.06);
    border: 1px solid rgba(40, 167, 69, 0.12);
    color: #28a745;
}

.lab-card--purple .lab-unit-badge {
    background: rgba(111, 66, 193, 0.06);
    border: 1px solid rgba(111, 66, 193, 0.12);
    color: #6f42c1;
}

.lab-card--orange .lab-unit-badge {
    background: rgba(253, 126, 20, 0.06);
    border: 1px solid rgba(253, 126, 20, 0.12);
    color: #fd7e14;
}

.lab-card--red .lab-unit-badge {
    background: rgba(220, 53, 69, 0.06);
    border: 1px solid rgba(220, 53, 69, 0.12);
    color: #dc3545;
}

.lab-card--navy .lab-unit-badge {
    background: rgba(33, 50, 94, 0.06);
    border: 1px solid rgba(33, 50, 94, 0.12);
    color: #21325e;
}

/* Descriptions */
.lab-card-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 4.8em;
    /* Force equal height for descriptions */
}

/* Action buttons */
.btn-lab-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 1px solid;
    background: transparent;
}

.lab-card--teal .btn-lab-action {
    border-color: rgba(26, 181, 168, 0.25);
    color: #1ab5a8;
}

.lab-card--blue .btn-lab-action {
    border-color: rgba(56, 81, 162, 0.25);
    color: #3851a2;
}

.lab-card--green .btn-lab-action {
    border-color: rgba(40, 167, 69, 0.25);
    color: #28a745;
}

.lab-card--purple .btn-lab-action {
    border-color: rgba(111, 66, 193, 0.25);
    color: #6f42c1;
}

.lab-card--orange .btn-lab-action {
    border-color: rgba(253, 126, 20, 0.25);
    color: #fd7e14;
}

.lab-card--red .btn-lab-action {
    border-color: rgba(220, 53, 69, 0.25);
    color: #dc3545;
}

.lab-card--navy .btn-lab-action {
    border-color: rgba(33, 50, 94, 0.25);
    color: #21325e;
}

.lab-card--teal:hover .btn-lab-action {
    background: #1ab5a8;
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(26, 181, 168, 0.25);
}

.lab-card--blue:hover .btn-lab-action {
    background: #3851a2;
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(56, 81, 162, 0.25);
}

.lab-card--green:hover .btn-lab-action {
    background: #28a745;
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.25);
}

.lab-card--purple:hover .btn-lab-action {
    background: #6f42c1;
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.25);
}

.lab-card--orange:hover .btn-lab-action {
    background: #fd7e14;
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(253, 126, 20, 0.25);
}

.lab-card--red:hover .btn-lab-action {
    background: #dc3545;
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.25);
}

.lab-card--navy:hover .btn-lab-action {
    background: #21325e;
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(33, 50, 94, 0.25);
}

.btn-lab-action i {
    font-size: 10px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.premium-lab-card:hover .btn-lab-action i {
    transform: translateX(4px);
}

/* Force equal heights on Slick Carousel */
.services-carousel .slick-track {
    display: flex !important;
    align-items: stretch;
}

.services-carousel .slick-slide {
    height: auto !important;
    display: flex;
}

.services-carousel .slick-slide>div {
    width: 100%;
    display: flex;
}

/* Dot slide navigation styling */
.services-premium-section .slick-dots {
    bottom: -35px !important;
}

.services-premium-section .slick-dots li button:before {
    color: #0c152b !important;
    opacity: 0.25;
    font-size: 8px !important;
}

.services-premium-section .slick-dots li.slick-active button:before {
    color: #21cdc0 !important;
    opacity: 1;
    font-size: 10px !important;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-premium-section {
    position: relative;
    background: linear-gradient(135deg, #0f1f45 0%, #192d5e 50%, #0d1b3e 100%);
    padding: 80px 0 90px;
    overflow: hidden;
}

/* Subtle animated dot-grid overlay */
.stats-premium-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

/* Soft radial glow behind the cards */
.stats-premium-section::after {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(33, 205, 192, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stats-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #21cdc0;
    margin-bottom: 14px;
}

.stats-heading {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 0;
}

/* Individual stat card */
.stat-card {
    position: relative;
    border-radius: 20px;
    padding: 40px 30px 35px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-card:hover {
    transform: translateY(-10px);
}

/* Card colour variants */
.stat-card--teal {
    background: linear-gradient(145deg, #1ab5a8 0%, #0e9e93 100%);
    box-shadow: 0 15px 40px rgba(26, 181, 168, 0.30);
}

.stat-card--teal:hover {
    box-shadow: 0 25px 60px rgba(26, 181, 168, 0.50);
}

.stat-card--blue {
    background: linear-gradient(145deg, #3851a2 0%, #2a3d88 100%);
    box-shadow: 0 15px 40px rgba(56, 81, 162, 0.30);
}

.stat-card--blue:hover {
    box-shadow: 0 25px 60px rgba(56, 81, 162, 0.50);
}

.stat-card--navy {
    background: linear-gradient(145deg, #21325e 0%, #162244 100%);
    box-shadow: 0 15px 40px rgba(33, 50, 94, 0.35);
}

.stat-card--navy:hover {
    box-shadow: 0 25px 60px rgba(33, 50, 94, 0.55);
}

/* Decorative glow orb inside card */
.stat-card__glow {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

/* Glassmorphic icon wrapper */
.stat-card__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    margin-bottom: 24px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover .stat-card__icon-wrap {
    transform: scale(1.1) rotate(6deg);
    background: rgba(255, 255, 255, 0.25);
}

.stat-card__icon-wrap i {
    font-size: 30px !important;
    color: #ffffff !important;
    line-height: 1 !important;
}

/* Counter number */
.stat-card__number {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

/* Decorative divider line */
.stat-card__divider {
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    margin: 0 auto 14px;
}

/* Label text */
.stat-card__label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.80);
}

@media (max-width: 767px) {
    .stats-heading {
        font-size: 1.75rem;
    }

    .stat-card__number {
        font-size: 2.8rem;
    }

    .stat-card {
        padding: 32px 24px 28px;
        margin-bottom: 16px;
    }
}

/* ==========================================================================
   Pengumuman & Agenda Section
   ========================================================================== */
.pengumuman-agenda-section {
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
    position: relative;
}

.pa-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #21cdc0;
    margin-bottom: 10px;
}

.pa-heading {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #0c152b;
    margin-bottom: 0;
}

.pa-heading--accent {
    color: #21cdc0;
}

/* Panel card */
.pa-panel {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(13, 27, 62, 0.07);
    border: 1px solid rgba(13, 27, 62, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pa-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(13, 27, 62, 0.12);
}

/* Panel header */
.pa-panel__header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 30px 22px;
    border-bottom: 1px solid rgba(13, 27, 62, 0.06);
}

.pa-panel--pengumuman .pa-panel__header {
    background: linear-gradient(135deg, #0d1b3e 0%, #1e3a8a 100%);
}

.pa-panel--agenda .pa-panel__header {
    background: linear-gradient(135deg, #0e7490 0%, #21cdc0 100%);
}

.pa-panel__icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pa-panel__icon-wrap i {
    font-size: 22px;
    color: #ffffff;
}

.pa-panel__title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2px;
}

.pa-panel__subtitle {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

/* Panel body / list */
.pa-panel__body {
    flex: 1;
    padding: 10px 0;
}

/* Individual item */
.pa-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 28px;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(13, 27, 62, 0.05);
    transition: background 0.2s ease;
}

.pa-item:last-child {
    border-bottom: none;
}

.pa-item:hover {
    background: rgba(13, 27, 62, 0.025);
    text-decoration: none !important;
}

/* Date badge */
.pa-item__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 54px;
    height: 58px;
    border-radius: 12px;
    background: linear-gradient(145deg, #0d1b3e 0%, #1e3a8a 100%);
    padding: 6px 4px;
    text-align: center;
    transition: transform 0.2s ease;
}

.pa-item:hover .pa-item__date {
    transform: scale(1.05);
}

.pa-item__date--agenda {
    background: linear-gradient(145deg, #0e7490 0%, #21cdc0 100%);
}

.pa-item__day {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    font-family: 'Quicksand', sans-serif;
    display: block;
}

.pa-item__month {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 3px;
}

/* Content */
.pa-item__content {
    flex: 1;
    min-width: 0;
}

.pa-item__title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0c152b;
    margin-bottom: 3px;
    line-height: 1.4;
    transition: color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pa-item:hover .pa-item__title {
    color: #1e3a8a;
}

.pa-panel--agenda .pa-item:hover .pa-item__title {
    color: #0e7490;
}

.pa-item__desc {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Arrow icon */
.pa-item__arrow {
    flex-shrink: 0;
    color: #cbd5e1;
    font-size: 0.75rem;
    transition: transform 0.2s ease, color 0.2s ease;
}

.pa-item:hover .pa-item__arrow {
    transform: translateX(4px);
    color: #1e3a8a;
}

.pa-panel--agenda .pa-item:hover .pa-item__arrow {
    color: #0e7490;
}

/* Empty state */
.pa-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    color: #94a3b8;
    text-align: center;
}

.pa-empty i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    opacity: 0.5;
}

.pa-empty p {
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* Footer / "lihat semua" button */
.pa-panel__footer {
    padding: 18px 28px;
    border-top: 1px solid rgba(13, 27, 62, 0.06);
}

.pa-btn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #1e3a8a !important;
    text-decoration: none !important;
    transition: gap 0.2s ease, opacity 0.2s;
}

.pa-btn-more:hover {
    gap: 14px;
    opacity: 0.85;
}

.pa-btn-more--agenda {
    color: #0e7490 !important;
}

@media (max-width: 991px) {
    .pa-panel {
        margin-bottom: 24px;
    }
}

@media (max-width: 575px) {
    .pa-panel__header {
        padding: 22px 20px 18px;
    }

    .pa-item {
        padding: 12px 18px;
    }

    .pa-panel__footer {
        padding: 14px 18px;
    }
}

/* ==========================================================================
   Mini Calendar (Beranda Agenda Widget)
   ========================================================================== */
.pa-mini-cal {
    padding: 16px 24px 8px;
    border-bottom: 1px solid rgba(13, 27, 62, 0.06);
}

.pa-mini-cal__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.pa-mini-cal__month-label {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    color: #0c152b;
    text-transform: capitalize;
}

.pa-mini-cal__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.pa-mini-cal__dow {
    font-size: 0.65rem;
    font-weight: 700;
    text-align: center;
    color: #94a3b8;
    text-transform: uppercase;
    padding: 4px 0 6px;
    letter-spacing: 0.3px;
}

.pa-mini-cal__cell {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    font-size: 0.78rem;
    font-weight: 600;
    color: #374151;
    border-radius: 8px;
    cursor: default;
    transition: background 0.15s;
}

.pa-mini-cal__cell--empty {
    background: transparent;
    cursor: default;
}

.pa-mini-cal__cell--today {
    background: linear-gradient(135deg, #0e7490 0%, #21cdc0 100%);
    color: #ffffff !important;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(33, 205, 192, 0.35);
}

.pa-mini-cal__cell--event {
    background: rgba(30, 58, 138, 0.08);
    color: #1e3a8a;
    font-weight: 700;
}

.pa-mini-cal__cell--today.pa-mini-cal__cell--event {
    background: linear-gradient(135deg, #0e7490 0%, #21cdc0 100%);
    color: #ffffff;
}

.pa-mini-cal__dot {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #1e3a8a;
    margin-top: 2px;
}

.pa-mini-cal__cell--today .pa-mini-cal__dot {
    background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 480px) {
    .pa-mini-cal {
        padding: 12px 14px 6px;
    }

    .pa-mini-cal__cell {
        font-size: 0.7rem;
        border-radius: 6px;
    }
}