/* Left Coast / Modern Aesthetics - Light Theme */
body {
    background-color: #ffffff;
    color: #333333;
}
.header-body {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header-nav-main nav > ul > li > a {
    color: #222 !important;
    font-weight: 600;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}
/* Reduce Navbar Height */
#header .header-container {
    min-height: 70px !important;
}
.hero-slider-wrap {
    padding: 0; /* Hapus padding, kita gunakan margin dari container-fluid */
    background: transparent;
    position: relative;
    margin-top: 15px;
}


.slider-item {
    width: 100%;
    padding: 10px 10px 60px 10px; /* Perbesar ruang fisik shadow di bawah */
    background: transparent;
}
.inner-item {
    width: 100%;
    height: 75vh; /* Kembalikan ke 75% layar agar tidak melewati batas bawah monitor */
    min-height: 550px; 
    max-height: 800px;
    position: relative;
    display: flex;
    align-items: flex-end; /* Posisi ke bawah */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.slider-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1);
}
.owl-item.active .slider-bg {
    animation: kenBurns 6s linear both;
}
@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.slider-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.15); /* Overlay terang dikurangi opacity-nya */
    z-index: 1;
}
.slider-content {
    position: relative;
    z-index: 2;
    padding: 25px; 
    margin-left: 5%; /* Jarak dari kiri */
    margin-bottom: 5%; /* Jarak dari bawah */
    max-width: 500px; 
    text-align: left;
    
    /* Neumorphism Style Card */
    background: rgba(240, 240, 243, 0.85); /* Frosty light base */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    box-shadow: 12px 12px 24px rgba(0,0,0,0.1), -12px -12px 24px rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.4);
}
.slider-subtitle {
    display: inline-block;
    color: #0056b3; /* Biru gelap untuk kontras */
    font-size: 0.45rem; 
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px; 
    padding: 4px 10px;
    border-radius: 30px;
    /* Neumorphic badge */
    background: rgba(240, 240, 243, 0.9);
    backdrop-filter: none;
    border: none;
    box-shadow: 4px 4px 8px rgba(163,177,198,0.5), -4px -4px 8px rgba(255,255,255,0.9);
}
.owl-item.active .slider-subtitle {
    animation: fadeInUp 1s ease 0.2s both;
}
.slider-title {
    font-size: 1.75rem; 
    font-weight: 800; 
    line-height: 1.25;
    margin-bottom: 12px; 
    background: linear-gradient(to right, #0056b3, #00d2ff, #0056b3);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none; /* Bersih tanpa shadow kasar */
}
.owl-item.active .slider-title {
    animation: fadeInUp 1s ease 0.4s both, shineGradient 4s linear infinite;
}
@keyframes shineGradient {
    to { background-position: 200% center; }
}
.slider-desc {
    color: #444444; /* Abu-abu gelap */
    font-size: 0.9rem; 
    line-height: 1.5;
    margin-bottom: 25px; 
    text-shadow: none;
}
.owl-item.active .slider-desc {
    animation: fadeInUp 1s ease 0.6s both;
}
.slider-btn {
    padding: 8px 24px !important; /* Perkecil tombol */
    font-size: 0.75rem !important;
}
.owl-item.active .slider-btn {
    animation: fadeInUp 1s ease 0.8s both;
}

/* Thumbnail Indicators CSS */
#main-slider .owl-dots {
    position: absolute !important;
    bottom: 50px !important; /* Di atas padding bottom 40px */
    right: 30px !important;
    display: flex !important;
    gap: 12px;
    z-index: 99 !important;
}
#main-slider .owl-dot {
    background-color: transparent !important;
    background-size: cover !important;
    background-position: center !important;
    padding: 0 !important;
    border: 2px solid transparent !important;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0.5;
    width: 70px !important;
    height: 45px !important;
    display: block !important;
}
#main-slider .owl-dot span {
    display: none !important; /* Sembunyikan titik bawaan */
}

#main-slider .owl-dot.active {
    opacity: 1;
    border-color: #00e1ff !important;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
#main-slider .owl-dot:hover {
    opacity: 0.8;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Glassmorphism Sections */
.glass-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}
.glass-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    color: #444;
}
.glass-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.glass-box h3 {
    color: #111;
}

.text-gradient {
    background: linear-gradient(to right, #0056b3, #00d2ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Equal Height Owl Carousel for Cards */
#berita-section .owl-stage {
    display: flex;
}
#berita-section .owl-item {
    display: flex;
    flex: 1 0 auto;
}
#berita-section .owl-item .card {
    width: 100%;
}
#berita-section .owl-nav {
    margin-top: 30px;
    text-align: center;
}
#berita-section .owl-nav button {
    background: #f8fafc !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    border-radius: 50% !important;
    width: 50px;
    height: 50px;
    font-size: 20px !important;
    color: #444 !important;
    transition: all 0.3s ease;
    margin: 0 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
#berita-section .owl-nav button:hover {
    background: #0056b3 !important;
    color: #fff !important;
    transform: translateY(-3px);
}
