/***********************
* Kecamatan BatangKapas Custom CSS - Coastal Blue & Green Theme
* Tema Biru Laut & Hijau untuk Sekretariat Daerah Pesisir Selatan
* Primary Color: #1DB6B3 (Ocean Blue - dari logo)
* Secondary Color: #C4D82E (Nature Green - dari logo)
* Accent Color: #F0F8F8 (Golden Yellow - dari logo)
***********************/

/***********************
* CSS VARIABLES
***********************/
:root {
    --primary-blue: #1DB6B3;
    --secondary-green: #C4D82E;
    --accent-yellow: #F0F8F8;
    --dark-blue: #0D9A97;
    --light-blue: #E8F7F6;
    --bright-yellow: #F3F8D8;
}

/***********************
* ANNOUNCEMENT BAR STYLING
***********************/
.announcement-bar {
    font-size: 1rem;
    background: linear-gradient(135deg, #C4D82E, #F0F8F8) !important;
    box-shadow: 0 2px 8px rgba(29, 182, 179, 0.2);
}

.announcement-bar .fa-bullhorn {
    color: #F0F8F8;
    animation: bellShake 2s ease-in-out infinite;
}

@keyframes bellShake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(-10deg);
    }

    20%,
    40% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

.announcement-bar a {
    color: #ffffff !important;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.announcement-bar a:hover {
    color: #F0F8F8 !important;
}

.announcement-bar .btn-light {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #1DB6B3 !important;
    border: none;
    transition: all 0.3s ease;
}

.announcement-bar .btn-light:hover {
    background: #ffffff !important;
    color: #C4D82E !important;
    transform: scale(1.05);
}

/***********************
* TOPBAR STYLING
***********************/
.topbar {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    box-shadow: 0 2px 12px rgba(29, 182, 179, 0.08);
    border-bottom: 1px solid rgba(29, 182, 179, 0.1);
    padding: 0.75rem 0;
    margin: inherit;
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0 1rem;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 1.5rem;
    border-right: 2px solid rgba(29, 182, 179, 0.15);
}

.logo-section img {
    width: 4.5rem;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-section img:hover {
    transform: scale(1.05);
}

.logo-text h1 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #C4D82E;
    margin-bottom: 2px;
    line-height: 1.3;
}

.logo-text p {
    font-size: 0.85rem;
    color: #1DB6B3;
    margin: 0;
    line-height: 1.3;
    font-weight: 500;
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-top: -1.5rem;
    padding-left: 1rem;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #1DB6B3;
    border: 2px solid rgba(29, 182, 179, 0.2);
    border-radius: 12px;
    padding: 0.5rem 0.9rem;
    box-shadow: 0 4px 15px rgba(29, 182, 179, 0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(240, 248, 248, 1);
    text-align: left;
    min-width: 175px;
    position: relative;
    top: -1px;
}

.contact-button:hover {
    background: linear-gradient(135deg, #F0F8F8, #F3F8D8);
    border-color: #1DB6B3;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 182, 179, 0.2);
}

.icon-circle {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.contact-button:hover .icon-circle {
    transform: rotate(360deg);
}

.contact-text h3 {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 700;
    color: #C4D82E;
    line-height: 1;
}

.contact-text p {
    margin: 0;
    font-size: 0.75rem;
    color: #1DB6B3;
    line-height: 1.2;
    font-weight: 500;
}

/***********************
* MAIN HEADER STYLING
***********************/
.header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 4px 20px rgba(29, 182, 179, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(29, 182, 179, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

/***********************
* DESKTOP NAVIGATION
***********************/
.desktop-nav {
    display: flex;
    gap: 0.5rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: #C4D82E;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(240, 248, 248, 1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(29, 182, 179, 0.08), rgba(232, 247, 246, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    z-index: -1;
}

.nav-link:hover::before,
.dropdown:hover>.nav-link::before {
    opacity: 1;
}

.nav-link:hover {
    color: #1DB6B3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(29, 182, 179, 0.15);
}

.nav-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.1);
}

/***********************
* DROPDOWN MENU STYLING
***********************/
.dropdown {
    position: relative;
}

.dropdown>.nav-link::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.dropdown:hover>.nav-link::after {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    box-shadow: 0 10px 40px rgba(29, 182, 179, 0.15);
    min-width: 15rem;
    border-radius: 12px;
    padding: 0.75rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(240, 248, 248, 1);
    border: 2px solid rgba(29, 182, 179, 0.1);
}

@media (hover: hover) and (pointer: fine) {
    .dropdown:hover>.dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.85rem 1.2rem;
    color: #C4D82E;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    margin: 0.25rem 0;
    transition: all 0.3s cubic-bezier(240, 248, 248, 1);
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.dropdown-item:hover {
    color: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(29, 182, 179, 0.2);
}

.dropdown-item:hover::before {
    opacity: 1;
}

/***********************
* SUBMENU STYLING
***********************/
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-item::after {
    content: '›';
    position: absolute;
    right: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.dropdown-submenu:hover>.dropdown-item::after {
    opacity: 1;
    right: 0.75rem;
}

.dropdown-submenu .dropdown-menu {
    top: -0.5rem;
    left: calc(100% + 8px);
}

@media (hover: hover) and (pointer: fine) {
    .dropdown-submenu:hover>.dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
}

/***********************
* SEARCH STYLING - blue & Gold Theme
* Disesuaikan dengan skema warna Dishub
***********************/

.search-section {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.search-container {
    width: 100%;
    max-width: 32rem;
    position: relative;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 0.7rem 3rem 0.7rem 1.2rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    color: #C4D82E;
    border: 2px solid rgba(13, 145, 151, 0.2);
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.search-input:focus {
    background: #ffffff;
    border-color: #1DB6B3;
    outline: none;
    box-shadow: 0 4px 20px rgba(13, 145, 151, 0.15);
    transform: translateY(-1px);
}

.search-input::placeholder {
    color: #64748b;
    font-weight: 400;
}

.search-button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.search-button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(13, 145, 151, 0.3);
}

/* Popular Tags */
.popular-tags {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.popular-tags .font-medium {
    color: #64748b;
    font-weight: 500;
}

.tag-link {
    color: #1DB6B3;
    text-decoration: none;
    padding: 0.25rem 0.75rem;
    background: rgba(13, 145, 151, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tag-link:hover {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(13, 145, 151, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .search-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .search-input {
        padding: 0.6rem 2.5rem 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .search-button {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .search-section {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .search-container {
        max-width: 100%;
    }

    .search-input {
        padding: 0.5rem 2.5rem 0.5rem 0.9rem;
        font-size: 0.8rem;
    }

    .search-button {
        width: 32px;
        height: 32px;
        right: 0.4rem;
        font-size: 0.8rem;
    }

    .popular-tags {
        gap: 0.35rem;
    }

    .tag-link {
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }
}

/***********************
* MOBILE MENU BUTTON
***********************/
.mobile-menu-button {
    display: none;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border: none;
    color: white;
    padding: 0.75rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 182, 179, 0.2);
    margin-right: auto;
}

.mobile-menu-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(29, 182, 179, 0.3);
}

.mobile-menu-button i {
    font-size: 1.4rem;
}

/***********************
* RESPONSIVE STYLING
***********************/
@media (max-width: 1200px) {
    .nav-link {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .topbar-content {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .logo-section {
        padding-right: 1rem;
        gap: 0.75rem;
    }

    .search-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .contact-buttons {
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .logo-section {
        border-right: none;
    }

    .logo-section img {
        width: 4rem;
    }

    .logo-text h1 {
        font-size: 1rem;
    }

    .logo-text p {
        font-size: 0.8rem;
    }

    .contact-button {
        min-width: 155px;
        padding: 0.4rem 0.75rem;
    }

    .icon-circle {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo-section {
        gap: 0.5rem;
    }

    .logo-section img {
        width: 3.5rem;
    }

    .search-container {
        max-width: 100%;
    }

    .contact-button {
        min-width: 100%;
    }
}

/***********************
* CONTAINER
***********************/
.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1320px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Continue with remaining CSS from original file... */
/* ============================================
   MAIN MENU IMPROVEMENTS
   ============================================ */

.main-menu-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px !important;
    /* Perbesar padding */
    min-height: 64px !important;
    /* Tingkatkan height */
    background: #ffffff;
    border-bottom: 1px solid rgba(29, 182, 179, 0.1);
}

.main-menu-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Perbesar gap dari 1px */
}

.main-menu-logo {
    min-width: 240px;
    /* Lebarkan dari 220px */
    justify-content: center;
    display: flex;
    align-items: center;
    padding: 10px 16px;
    /* Perbesar padding */
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(29, 182, 179, 0.1);
    margin-right: 1rem;
    /* Tambah margin kanan */
}

.main-menu-logo img {
    height: 52px;
    /* Perbesar dari 50px */
    width: auto;
    transition: all 0.3s cubic-bezier(240, 248, 248, 1);
    filter: brightness(1) contrast(1.1);
    margin-right: 12px;
    /* Perbesar dari 10px */
}

/* ============================================
   NAVIGATION MENU - SPACING IMPROVEMENTS
   ============================================ */

.navigation ul.main-menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    /* Perbesar gap dari 8px */
    margin: 0;
    padding: 0;
    list-style: none;
}

.navigation ul.main-menu-list li {
    position: relative;
}

.navigation ul.main-menu-list>li>a {
    display: flex;
    align-items: center;
    padding: 0.65rem 1rem !important;
    /* Perbesar padding */
    font-size: 0.95rem !important;
    font-weight: 600;
    color: #1DB6B3 !important;
    text-decoration: none;
    border-radius: 8px;
    /* Perbesar radius dari 6px */
    transition: all 0.3s cubic-bezier(240, 248, 248, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    /* Tambah letter spacing untuk jarak antar huruf */
    white-space: nowrap;
    /* Cegah text wrap */
}

/* Nav Link - Menu Utama dengan spacing lebih baik */
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    /* Perbesar gap */
    padding: 0.85rem 1.5rem;
    /* Perbesar padding */
    color: var(--gray-700);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(240, 248, 248, 1);
    position: relative;
    cursor: pointer;
    user-select: none;
    border-radius: 8px;
    letter-spacing: 2.3px;
    /* Tambah letter spacing */
    line-height: 1.5;
    /* Tambah line height */
    white-space: nowrap;
}

/* Button Login dengan spacing yang lebih baik */
.btn-login {
    padding: 8px 20px;
    /* Perbesar padding dari 4px 6px */
    background: #1DB6B3;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(29, 182, 179, 0.3);
    margin-left: 0.75rem;
    /* Tambah margin kiri */
    letter-spacing: 0.3px;
}

/* ============================================
   DROPDOWN ITEM - SPACING IMPROVEMENTS
   ============================================ */

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    /* Perbesar gap untuk icon/text */
    padding: 1rem 1.8rem;
    /* Perbesar padding untuk jarak lebih lega */
    color: var(--gray-700);
    font-size: 1rem;
    /* Sedikit lebih besar */
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(240, 248, 248, 1);
    position: relative;
    border-radius: 0.5rem;
    margin: 0.35rem 0;
    /* Perbesar margin untuk jarak antar item */
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    letter-spacing: 0.3px;
    /* Tambah letter spacing */
    line-height: 1.6;
    /* Perbesar line height */
    white-space: nowrap;
}

/* Dropdown Menu dengan spacing lebih baik */
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    /* Perbesar gap dari 4px */
    left: 0;
    background-color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.06);
    min-width: 15rem;
    /* Lebarkan dari 13rem */
    border-radius: 0.75rem;
    padding: 0.85rem;
    /* Perbesar padding dari 0.5rem */
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.95);
    transition: all 0.25s cubic-bezier(240, 248, 248, 1);
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Submenu dengan spacing lebih baik */
.dropdown-submenu>.dropdown-item {
    padding-right: 3rem;
    /* Perbesar dari 2.5rem */
}

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

@media (max-width: 1200px) {
    .main-menu-inner {
        padding: 8px 20px !important;
    }

    .navigation ul.main-menu-list {
        gap: 10px;
    }

    .navigation ul.main-menu-list>li>a {
        padding: 0.6rem 0.9rem !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 992px) {
    .topbar-content {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .logo-section {
        padding-right: 1rem;
    }

    .search-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .contact-buttons {
        gap: 0.5rem;
        padding-left: 0.5rem;
    }

    .main-menu-inner {
        padding: 8px 16px !important;
    }
}

@media (max-width: 768px) {
    .topbar-content {
        gap: 0.75rem;
        padding: 0 0.5rem;
    }

    .logo-section {
        gap: 0.75rem;
        padding-right: 0.75rem;
        border-right: none;
    }

    .logo-section img {
        width: 4rem;
    }

    .logo-text h1 {
        font-size: 1rem;
    }

    .logo-text p {
        font-size: 0.8rem;
    }

    .search-section {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .contact-buttons {
        margin-top: 0.5rem;
    }

    .contact-button {
        min-width: 155px;
        padding: 0.4rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .logo-section {
        gap: 0.5rem;
    }

    .logo-section img {
        width: 3.5rem;
    }

    .search-container {
        max-width: 100%;
    }

    .contact-button {
        min-width: 100%;
    }
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #ffffff;
    color: #1DB6B3;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.35rem 0.7rem;
    box-shadow: 0 15px 40px #F0F8F8;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
    min-width: 165px;
    position: relative;
    top: -1px;
}

.contact-button:hover {
    background-color: #f0f6ff;
    border-color: #1DB6B3;
    transform: translateY(-1px);
    box-shadow: 0 15px 40px #1DB6B3;
}

.icon-circle {
    width: 26px;
    height: 26px;
    background-color: linear-gradient(135deg, #1DB6B3, #F0F8F8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.contact-text h3 {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1DB6B3;
    line-height: 1;
}

.contact-text p {
    margin: 0;
    font-size: 0.75rem;
    color: #555;
    line-height: 1.2;
}


/* ===== MAIN NAVIGATION ===== */
.main-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 30px rgba(232, 247, 246, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(232, 247, 246, 0.06);
}

.main-menu-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 18px !important;
    min-height: 60px !important;
    background: #ffffff;
    border-bottom: 1px solid rgba(29, 182, 179, 0.1);
}

.main-menu-left {
    display: flex;
    align-items: center;
    gap: 1px;
}

.main-menu-logo {
    min-width: 220px;
    justify-content: center;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(29, 182, 179, 0.1);
}

.main-menu-logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s cubic-bezier(240, 248, 248, 1);
    filter: brightness(1) contrast(1.1);
    margin-right: 10px;
}

.main-menu-logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.2);
}

/* ===== NAVIGATION MENU ===== */
.navigation ul.main-menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navigation ul.main-menu-list li {
    position: relative;
}

.navigation ul.main-menu-list>li>a {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.95rem !important;
    font-weight: 600;
    color: #1DB6B3 !important;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(240, 248, 248, 1);
    position: relative;
    overflow: hidden;
}

.navigation ul.main-menu-list>li>a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(29, 182, 179, 0.08), rgba(232, 247, 246, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.navigation ul.main-menu-list>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #1DB6B3;
    transition: all 0.3s cubic-bezier(240, 248, 248, 1);
    transform: translateX(-50%);
    border-radius: 1px;
}

.navigation ul.main-menu-list>li>a:hover::before,
.navigation ul.main-menu-list>li.active>a::before {
    opacity: 1;
}

.navigation ul.main-menu-list>li>a:hover::after,
.navigation ul.main-menu-list>li.active>a::after {
    width: 80%;
}

.navigation ul.main-menu-list>li>a:hover,
.navigation ul.main-menu-list>li.active>a {
    color: #1DB6B3;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(29, 182, 179, 0.15);
}

.btn-login {
    padding: 4px 6px;
    background: #1DB6B3;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(29, 182, 179, 0.3);
}

.btn-login:hover {
    border: 1px solid #1DB6B3;
    background-color: #fff;
    color: #1DB6B3 !important;
    transform: translateY(-2px);
}

/* ============================================
   DROPDOWN MENU SYSTEM - HOVER FIXED
   ============================================ */

/* Dropdown Container */
.dropdown {
    position: relative;
}

/* SOLUSI: Tambahkan area hover invisible */
.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
    /* Area jembatan hover */
    background: transparent;
    z-index: 99;
}

/* Nav Link - Menu Utama */
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: var(--gray-700);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(240, 248, 248, 1);
    position: relative;
    cursor: pointer;
    user-select: none;
    border-radius: 0.5rem;
}

/* Hover effect untuk nav-link */
.nav-link:hover {
    color: #1DB6B3;
    background-color: rgba(232, 247, 246, 0.05);
}

/* Underline animation */
.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1DB6B3, #F0F8F8);
    transition: width 0.4s cubic-bezier(240, 248, 248, 1);
}

.nav-link:hover::after,
.dropdown:hover>.nav-link::after,
.dropdown.active>.nav-link::after {
    width: 80%;
}

/* Active State */
.dropdown-item.active,
.dropdown.active>.nav-link,
.dropdown:hover>.nav-link {
    color: #1DB6B3;
    background-color: rgba(232, 247, 246, 0.08);
    font-weight: 600;
}

/* Dropdown indicator (panah) */
.dropdown>.nav-link::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: auto;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.dropdown:hover>.nav-link::before,
.dropdown.active>.nav-link::before {
    transform: rotate(180deg);
    opacity: 1;
}

/* ============================================
   DROPDOWN MENU - HOVER AREA EXTENDED
   ============================================ */

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    /* Kurangi gap dari 8px ke 4px */
    left: 0;
    background-color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.06);
    min-width: 13rem;
    border-radius: 0.75rem;
    padding: 0.5rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.95);
    transition: all 0.25s cubic-bezier(240, 248, 248, 1);
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* CRITICAL: Tambahkan hover bridge area di dropdown-menu */
.dropdown-menu::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 12px;
    /* Sama dengan dropdown::after */
    background: transparent;
}

/* Show state - Desktop Hover */
@media (hover: hover) and (pointer: fine) {
    .dropdown:hover>.dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
        animation: dropdownFadeIn 0.25s ease-out;
    }
}

/* Show state - Mobile Click */
.dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

@media (hover: none) or (pointer: coarse) {
    .dropdown.active>.dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }
}

/* ============================================
   DROPDOWN ITEM
   ============================================ */

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(240, 248, 248, 1);
    position: relative;
    border-radius: 0.5rem;
    margin: 0.125rem 0;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
}

/* Hover Background Effect */
.dropdown-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1DB6B3 0%, #F0F8F8 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.dropdown-item:hover {
    color: #fff;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(232, 247, 246, 0.2);
}

.dropdown-item:hover::before {
    opacity: 1;
}

/* Active State untuk dropdown-item */
.dropdown-item.active {
    color: #1DB6B3;
    background-color: rgba(232, 247, 246, 0.08);
    font-weight: 600;
}

/* ============================================
   SUBMENU - LEVEL 2
   ============================================ */

.dropdown-submenu {
    position: relative;
}

/* SOLUSI: Hover bridge untuk submenu */
.dropdown-submenu::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 12px;
    /* Area jembatan hover horizontal */
    background: transparent;
    z-index: 199;
}

/* Submenu Indicator */
.dropdown-submenu>.dropdown-item {
    padding-right: 2.5rem;
}

.dropdown-submenu>.dropdown-item::after {
    content: "›";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.dropdown-submenu:hover>.dropdown-item::after,
.dropdown-submenu.active>.dropdown-item::after {
    opacity: 1;
    right: 0.75rem;
}

/* Submenu dropdown */
.dropdown-submenu .dropdown-menu {
    display: none;
    position: absolute;
    top: -0.5rem;
    left: calc(100% + 4px);
    /* Kurangi gap */
    background-color: var(--white);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08);
    min-width: 13rem;
    border-radius: 0.75rem;
    padding: 0.5rem;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-8px) scale(0.95);
    transition: all 0.25s cubic-bezier(240, 248, 248, 1);
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Hover bridge area untuk submenu */
.dropdown-submenu .dropdown-menu::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    width: 12px;
    background: transparent;
}

/* Desktop: Hover support untuk submenu */
@media (hover: hover) and (pointer: fine) {
    .dropdown-submenu:hover>.dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateX(0) scale(1);
        pointer-events: auto;
        animation: dropdownSlideRight 0.25s ease-out;
    }
}

/* Mobile: Click support untuk submenu */
.dropdown-submenu .dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

@media (hover: none) or (pointer: coarse) {
    .dropdown-submenu.active>.dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateX(0) scale(1);
        pointer-events: auto;
    }
}

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

@keyframes dropdownFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

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

@keyframes dropdownSlideRight {
    0% {
        opacity: 0;
        transform: translateX(-10px) scale(0.95);
    }

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

/* ============================================
   DIVIDER
   ============================================ */

.dropdown-divider {
    height: 1px;
    margin: 0.5rem 0;
    background: linear-gradient(90deg,
            transparent,
            var(--gray-200) 20%,
            var(--gray-200) 80%,
            transparent);
}

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

@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 11rem;
        font-size: 0.8125rem;
    }

    .dropdown-item {
        padding: 0.625rem 0.875rem;
    }

    /* Submenu di mobile */
    .dropdown-submenu .dropdown-menu {
        position: static;
        transform: none;
        margin-left: 1rem;
        margin-top: 0.25rem;
        box-shadow: none;
        border-left: 2px solid rgba(232, 247, 246, 0.3);
        border-radius: 0.5rem;
    }

    .dropdown-submenu .dropdown-menu.show {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    /* Hilangkan hover bridge di mobile */
    .dropdown::after,
    .dropdown-submenu::after,
    .dropdown-menu::before {
        display: none;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.dropdown-item:focus-visible,
.nav-link:focus-visible {
    outline: 2px solid #1DB6B3;
    outline-offset: 2px;
    border-radius: 0.5rem;
}

/* Touch feedback */
.dropdown-item:active,
.nav-link:active {
    transform: scale(0.98);
}

/* Reduce motion untuk accessibility */
@media (prefers-reduced-motion: reduce) {

    .dropdown-menu,
    .dropdown-item,
    .nav-link {
        transition: none;
        animation: none;
    }
}

/* ============================================
   ANIMATION KEYFRAMES
   ============================================ */

@keyframes dropdownSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dropdownSlideRight {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==== Hover SUB MENU ==== */
.navigation ul.sub-menu li a {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: white;
    z-index: 1;
}

.navigation ul.sub-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #1DB6B3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

/* shimmer layer */
.navigation ul.sub-menu li a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    z-index: 0;
    transition: none;
    pointer-events: none;
}

/* trigger hover */
.navigation ul.sub-menu li a:hover::before {
    transform: scaleX(1);
}

.navigation ul.sub-menu li a:hover::after {
    animation: shimmer 2s infinite;
}

/* keyframes shimmer */
@keyframes shimmer {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* === End Hover Sub menu=== */

.navigation ul.sub-menu li a:hover {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9) !important;
    color: #f8f8f8 !important;
    padding-left: 32px;
}

.navigation ul.sub-menu li a:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.navigation ul.sub-menu li a:hover::after {
    opacity: 1;
    transform: translateX(0);
    color: #1DB6B3 !important;
}

.navigation ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.navigation ul li {
    position: relative;
}

/* =============================
   Mobile Navigation
============================= */

.mobile-login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* Jarak antara ikon dan teks */
    padding: 10px 14px;
    margin-top: 12px;
    width: 100%;
    /* Biar penuh di lebar menu */
    background-color: #1DB6B3;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mobile-login-button:hover {
    background-color: #1DB6B3;
    ;
    transform: translateY(-2px);
}

.mobile-login-button i {
    font-size: 1rem;
}


.mobile-menu-button {
    display: none;
    background: none;
    border: none;
}

.mobile-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    padding: 15px;
}

.mobile-menu.d-block {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 10px;
}

.mobile-nav a {
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 500;
}

/* Dropdowns in mobile */
.mobile-dropdown summary {
    cursor: pointer;
    font-weight: 600;
    color: #1DB6B3;
    ;
    list-style: none;
}

.mobile-dropdown-content,
.mobile-subdropdown-content {
    padding-left: 15px;
    margin-top: 8px;
}

.mobile-dropdown-item,
.mobile-subdropdown-item {
    display: block;
    padding: 6px 0;
    color: var(--gray-700);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: block;
        font-size: 1.4rem;
        color: #1DB6B3;
        ;
    }

    .logo-section img {
        height: 45px;
    }

    .logo-text h1 {
        font-size: 1.1rem;
    }
}


/* =========================================
   Responsive
========================================= */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        gap: 2rem;
    }

    .mobile-menu-button,
    .mobile-menu {
        display: none;
    }
}


/* ===== SMALLER DEVICES ===== */
@media (max-width: 768px) {
    .main-menu-inner {
        padding: 0 16px;
        height: 64px;
    }

    .main-menu-logo img {
        height: 36px;
    }

    .navigation {
        top: 64px;
        height: calc(100vh - 64px);
    }
}

@media (max-width: 480px) {
    .main-menu-inner {
        padding: 0 12px;
        height: 56px;
    }

    .main-menu-logo img {
        height: 32px;
    }

    .navigation {
        top: 56px;
        height: calc(100vh - 56px);
    }
}

/* ===== SMOOTH ANIMATION ===== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navigation ul.sub-menu li a {
    animation: slideDown 0.3s ease;
}

@media (max-width: 992px) {
    .navigation {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
    }

    .navigation.active {
        display: flex;
    }
}

/***********************
* End Css Mobile Nav
***********************/

/***********************
* Css Hero
***********************/
.hero-content {
    text-align: center;
    color: white;
    min-width: 900px;
    padding: 40px 20px 80px 20px;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: 37px;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.6;
    animation: slideUp 1s ease-out 0.4s both;
}

.hero-subtitle p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin: 0;
}

/* Search Box */
.hero-search {
    margin-bottom: 2.5rem;
    animation: slideUp 1s ease-out 0.6s both;
}

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 18px 60px 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(232, 247, 246, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: #C4D82E;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 25px 80px rgba(232, 247, 246, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
}

.search-input::placeholder {
    color: #64748b;
    font-weight: 500;
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #1DB6B3;
    border: none;
    border-radius: 50px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 16px;
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(29, 182, 179, 0.4);
}

/* Quick Links */
.quick-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 1s ease-out 0.8s both;
}

.quick-link {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.quick-link:hover::before {
    left: 100%;
}

.quick-link:hover {
    background: #1DB6B3;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 247, 246, 0.2);
    color: white;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 24px;
    margin-bottom: 5px;
    display: block;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Animations */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 15px;
    }

    .search-input {
        padding: 15px 50px 15px 20px;
        font-size: 14px;
    }

    .quick-links {
        gap: 10px;
    }

    .quick-link {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* Popular Searches */
.popular-searches {
    margin-top: 15px;
    animation: slideUp 1s ease-out 1s both;
}

.popular-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 10px;
}

.popular-tags {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.popular-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.popular-tag:hover {
    background: #1DB6B3;
    color: white;
    border-color: #1DB6B3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(29, 182, 179, 0.3);
}

#searchResults .suggestion-item {
    color: black;
    padding: 8px 10px;
    cursor: pointer;
}

#searchResults .suggestion-item:hover {
    background-color: #f2f2f2;
}

.social-icons {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.social-icons a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.social-icons a:hover {
    background: #1DB6B3;
    color: #fff;
    transform: translateX(5px);
}

.hero-widgets {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.hero-widgets .widget-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    width: 45px;
    position: relative;
    cursor: pointer;
    overflow: visible;
    transition: background 0.3s ease;
}

.hero-widgets .widget-card i {
    width: 45px;
    font-size: 18px;
    text-align: center;
    display: block;
}

.hero-widgets .widget-card span {
    position: absolute;
    right: 50px;
    opacity: 0;
    white-space: nowrap;
    background: #1DB6B3;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
    transition: opacity 0.3s ease, right 0.3s ease;
    pointer-events: none;
}

.hero-widgets .widget-card .tooltip-arrow {
    position: absolute;
    right: 40px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #1DB6B3;
    opacity: 0;
    transition: opacity 0.3s ease, right 0.3s ease;
}

.hero-widgets .widget-card:hover {
    background: #1DB6B3;
}

.hero-widgets .widget-card:hover span {
    opacity: 1;
    right: 60px;
}

.hero-widgets .widget-card:hover .tooltip-arrow {
    opacity: 1;
    right: 55px;
}

/***********************
* End Css Hero
***********************/

/*********************
* Css Beranda
**********************/
/* === Css Waves === */
.custom-curved-wrapper {
    position: relative;
    width: 100%;
    margin-top: -80px;
    height: 140px;
    overflow: hidden;
    z-index: 10;
    background-color: linear-gradient(135deg, #C4D82E, #F0F8F8);
}

.custom-curved-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* === Layanan Publik === */
.lp-wrapper {
    --lp-blue: #1DB6B3;
    --lp-dark-blue: #0D9A97;
    --lp-green: #C4D82E;
    --lp-white: #ffffff;
    --lp-light-blue: #E8F7F6;
    --lp-dark-text: #212529;
    --lp-gray-text: #6c757d;
}

.lp-wrapper {
    background-color: var(--lp-light-blue);
    padding: 1rem 0;
}

.lp-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.lp-section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lp-dark-blue);
    position: relative;
}

.lp-section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--lp-blue), var(--lp-dark-blue));
    border-radius: 2px;
}

.lp-service-category {
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.lp-service-category:hover {
    transform: translateY(-5px);
}

.lp-service-card {
    background: var(--lp-white);
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    border: none;
    box-shadow: 0 8px 25px rgba(29, 182, 179, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.lp-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lp-blue), var(--lp-dark-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.lp-service-card:hover::before {
    transform: scaleX(1);
}

.lp-service-card:hover {
    box-shadow: 0 15px 40px rgba(29, 182, 179, 0.2);
}

.lp-service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--lp-blue), var(--lp-dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.lp-service-card:hover .lp-service-icon {
    transform: rotate(360deg) scale(1.1);
}

.lp-service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lp-dark-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.lp-service-description {
    color: var(--lp-gray-text);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
}

.lp-service-btn {
    background: linear-gradient(135deg, var(--lp-blue), var(--lp-dark-blue));
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.lp-service-btn:hover {
    background: linear-gradient(135deg, var(--lp-dark-blue), var(--lp-blue));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29, 182, 179, 0.3);
}

.lp-floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.lp-floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(29, 182, 179, 0.05);
    animation: lp-float 6s ease-in-out infinite;
}

.lp-circle-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.lp-circle-2 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.lp-circle-3 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes lp-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .lp-section-title h2 {
        font-size: 2rem;
    }

    .lp-service-card {
        padding: 1.5rem;
    }
}

/***********************
* CSS Berita Section - Modern & Clean Design
* Tema Hitam-Putih SETDA
***********************/

/* === Section Berita === */
.berita-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Header Berita */
.berita-header {
    position: relative;
}

.berita-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.berita-main-title .text-highlight {
    color: #1DB6B3;
    position: relative;
}

.berita-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

.btn-lihat-semua-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 182, 179, 0.2);
}

.btn-lihat-semua-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 182, 179, 0.3);
    color: white;
}

.btn-lihat-semua-modern i {
    transition: transform 0.3s ease;
}

.btn-lihat-semua-modern:hover i {
    transform: translateX(4px);
}

/* === Berita Featured Card (Slider) === */
.berita-featured-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(232, 247, 246, 0.08);
    position: relative;
    height: 100%;
    min-height: 600px;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(29, 182, 179, 0.3);
}

.featured-image-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.berita-featured-card:hover .featured-image {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(232, 247, 246, 0.7), transparent);
}

.featured-content {
    padding: 24px;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.meta-item i {
    color: #1DB6B3;
}

.featured-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.featured-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-title a:hover {
    color: #1DB6B3;
}

.featured-excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #1DB6B3;
}

.author-info {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.author-info i {
    color: #1DB6B3;
    margin-right: 6px;
    font-size: 16px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: rgba(29, 182, 179, 0.1);
    color: #1DB6B3;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #1DB6B3;
    color: white;
    transform: translateX(3px);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

/* ===== CAROUSEL CONTROLS - MATCHING STYLE ===== */
.custom-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(29, 182, 179, 0.3);
}


.berita-featured-card:hover .custom-carousel-btn {
    opacity: 1;
}

.carousel-control-prev.custom-carousel-btn {
    left: 20px;
}

.carousel-control-next.custom-carousel-btn {
    right: 20px;
}

.custom-carousel-btn:hover {
    background: linear-gradient(135deg, #C4D82E, #1DB6B3);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(29, 182, 179, 0.5);
}

.custom-carousel-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.custom-carousel-btn:hover i {
    transform: scale(1.1);
}

/* Responsive Carousel Controls */
@media (max-width: 768px) {
    .custom-carousel-btn {
        width: 40px;
        height: 40px;
        opacity: 1;
    }

    .carousel-control-prev.custom-carousel-btn {
        left: 10px;
    }

    .carousel-control-next.custom-carousel-btn {
        right: 10px;
    }

    .custom-carousel-btn i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .custom-carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-control-prev.custom-carousel-btn {
        left: 8px;
    }

    .carousel-control-next.custom-carousel-btn {
        right: 8px;
    }
}

/* Carousel Indicators */
.custom-indicators {
    bottom: 65px;
}

.custom-indicators button {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.custom-indicators button.active {
    background: #1DB6B3;
    width: 40px;
}

.featured-content {
    padding: 16px;
    padding-bottom: 70px;
}

/* === Berita List Card === */
.berita-list-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(232, 247, 246, 0.08);
    height: 100%;
    min-height: 600px;
}

/* Tabs Navigation */
.berita-tabs {
    border: none;
    gap: 8px;
    background: #f8f9fa;
    padding: 6px;
    border-radius: 12px;
}

.berita-tabs .nav-item {
    flex: 1;
}

.berita-tabs .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
    background: transparent;
    transition: all 0.3s ease;
}

.berita-tabs .nav-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.berita-tabs .nav-link:hover {
    color: #1DB6B3;
    background: white;
}

.berita-tabs .nav-link.active {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    box-shadow: 0 4px 15px rgba(29, 182, 179, 0.2);
}

.berita-tabs .nav-link.active i {
    transform: scale(1.1);
}

/* Berita List Wrapper */
.berita-list-wrapper {
    max-height: 480px;
    overflow-y: auto;
    padding-right: 8px;
}

/* Custom Scrollbar */
.berita-list-wrapper::-webkit-scrollbar {
    width: 6px;
}

.berita-list-wrapper::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.berita-list-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-radius: 10px;
}

.berita-list-wrapper::-webkit-scrollbar-thumb:hover {
    background: #C4D82E;
}

/* Berita List Item */
.berita-list-item {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.berita-list-item:last-child {
    margin-bottom: 0;
}

.berita-item-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.berita-item-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.berita-item-link:hover::before {
    transform: scaleY(1);
}

.berita-item-link:hover {
    background: white;
    box-shadow: 0 4px 20px rgba(29, 182, 179, 0.1);
    transform: translateX(4px);
}

.berita-item-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1DB6B3, #F0F8F8);
    color: #475569;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.berita-item-number.popular {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
}

.berita-item-link:hover .berita-item-number {
    transform: scale(1.1);
}

.berita-item-content {
    flex: 1;
    min-width: 0;
}

.berita-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.berita-item-link:hover .berita-item-title {
    color: #1DB6B3;
}

.berita-item-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #64748b;
}

.meta-date,
.meta-views {
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-views.popular {
    color: #1DB6B3;
    font-weight: 600;
}

.meta-views.popular i {
    color: #ef4444;
}

.berita-item-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(29, 182, 179, 0.1);
    color: #1DB6B3;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.berita-item-link:hover .berita-item-arrow {
    background: #1DB6B3;
    color: white;
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .berita-featured-card {
        padding-bottom: 65px;
    }

    .berita-list-card {
        min-height: 550px;
    }
}

@media (max-width: 768px) {
    .berita-main-title {
        font-size: 2rem;
    }

    .berita-featured-card {
        min-height: auto;
        margin-bottom: 24px;
    }

    .featured-image-wrapper {
        height: 250px;
    }

    .featured-title {
        font-size: 1.25rem;
    }

    .featured-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .berita-list-card {
        min-height: auto;
    }

    .berita-list-wrapper {
        max-height: 400px;
    }

    .custom-carousel-btn {
        width: 36px;
        height: 36px;
        opacity: 12;
    }

    .carousel-control-prev.custom-carousel-btn {
        left: 10px;
    }

    .carousel-control-next.custom-carousel-btn {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .berita-main-title {
        font-size: 1.75rem;
    }

    .btn-lihat-semua-modern {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
    }

    .berita-tabs {
        flex-direction: column;
    }

    .berita-tabs .nav-link {
        font-size: 13px;
        padding: 10px 16px;
    }

    .featured-content {
        padding: 16px;
    }

    .berita-item-link {
        padding: 12px;
        gap: 12px;
    }

    .berita-item-number {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .berita-item-title {
        font-size: 13px;
    }

    .berita-item-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.berita-featured-card,
.berita-list-card {
    animation: fadeInUp 0.6s ease both;
}

.berita-list-card {
    animation-delay: 0.2s;
}

/* === Agenda & Pejabat === */
.agenda-pejabat-section .card-body {
    padding: 1rem !important;
}

.agenda-pejabat-section .bg-primary {
    background-color: #1DB6B3 !important;
}

.agenda-pejabat-section .text-primary {
    color: #1DB6B3 !important;
}

.agenda-pejabat-section .border-primary {
    border-color: #1DB6B3 !important;
}

.agenda-pejabat-section .btn-primary {
    background-color: #1DB6B3 !important;
    border-color: #1DB6B3 !important;
    transition: all 0.2s ease-in-out;
}

.agenda-pejabat-section .btn-primary:hover {
    background-color: #C4D82E !important;
    border-color: #C4D82E !important;
    box-shadow: 0 0 0 0.25rem rgba(29, 182, 179, 0.5) !important;
    transform: translateY(-1px);
}

.agenda-pejabat-section .modern-position-badge {
    background: rgba(29, 182, 179, 0.05) !important;
    transition: all 0.3s ease;
}

.agenda-pejabat-section .modern-position-badge:hover {
    background: rgba(29, 182, 179, 0.1) !important;
    transform: scale(1.02);
}

.calendar-day:hover {
    background-color: rgba(29, 182, 179, 0.1);
    color: #1DB6B3 !important;
}

.calendar-day.active {
    background: #1DB6B3;
    color: #fff !important;
    border-radius: 10%;
}

/***********************
* Search
***********************/
.search-section {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    /* Geser ke kiri */
    align-items: center;
    padding-left: 1rem;
    /* Tambah jarak kiri biar gak mepet */
}

.search-container {
    width: 100%;
    max-width: 28rem;
    /* Lebarkan dari 28rem ke 36rem */
}

.search-box {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    background-color: var(--gray-50);
    color: var(--gray-800);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.search-input:focus {
    background-color: var(--white);
    border-color: #1DB6B3;
    ;
    outline: none;
    box-shadow: 0 15px 40px #F0F8F8;
}


.search-button {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #1DB6B3;
    ;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.search-button:hover {
    color: #1DB6B3;
    ;
}

/* Popular Tags */
.search-section .popular-tags {
    margin-top: 0.4rem;
    font-size: 0.75rem;
    display: flex;
    color: var(--gray-500);
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: flex-start;
    width: 100%;
}

/***********************
* Informasi Publik PPID - Desain Baru
***********************/
.ppid-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.ppid-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header PPID */
.ppid-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.ppid-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.ppid-highlight {
    color: #1DB6B3;
}

.ppid-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* PPID Grid */
.ppid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .ppid-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* PPID Card */
.ppid-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(232, 247, 246, 0.08);
    transition: all 0.4s cubic-bezier(240, 248, 248, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.ppid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1DB6B3, #C4D82E);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ppid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(29, 182, 179, 0.15);
    border-color: rgba(29, 182, 179, 0.2);
}

.ppid-card:hover::before {
    transform: scaleX(1);
}

/* PPID Icon */
.ppid-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ppid-card:hover .ppid-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(29, 182, 179, 0.3);
}

/* PPID Card Title */
.ppid-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* PPID Card Description */
.ppid-card-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 80px;
}

/* PPID Card Button */
.ppid-card-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 182, 179, 0.2);
}

.ppid-card-button i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.ppid-card-button:hover {
    background: linear-gradient(135deg, #C4D82E, #1DB6B3);
    color: white;
    transform: translateX(3px);
    box-shadow: 0 6px 25px rgba(29, 182, 179, 0.3);
}

.ppid-card-button:hover i {
    transform: translateX(4px);
}

/* =========================================
   5. Header (Navbar)
========================================= */

.nav {
    display: flex;
    align-items: center;
    /* sejajarkan semua item di tengah */
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    /* biar isi dalam li (termasuk tombol login) sejajar */
}

.header {
    background: linear-gradient(to right, #ffffff, #f9f9f9);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: #1DB6B3
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .ppid-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .searcj-input {
        padding: 15px 50px 15px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .ppid-section {
        padding: 60px 0;
    }

    .ppid-title {
        font-size: 2rem;
    }

    .ppid-header {
        margin-bottom: 40px;
    }

    .ppid-card {
        padding: 30px 25px;
    }

    .ppid-card-description {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .ppid-title {
        font-size: 1.75rem;
    }

    .ppid-icon {
        width: 70px;
        height: 70px;
    }

    .ppid-icon img {
        width: 40px;
        height: 40px;
    }
}

/* Animation on scroll */
.ppid-card {
    animation: fadeInUp 0.6s ease both;
}

.ppid-card:nth-child(1) {
    animation-delay: 0.1s;
}

.ppid-card:nth-child(2) {
    animation-delay: 0.2s;
}

.ppid-card:nth-child(3) {
    animation-delay: 0.3s;
}

.ppid-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* === Tombol "Lihat Semua" === */
.btn.btn-lihat-semua {
    color: #1DB6B3;
    border: 1px solid #1DB6B3;
    font-size: 14px;
    border-radius: 8px;
    font-weight: 500;
    padding: 8px 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn.btn-lihat-semua:hover {
    background-color: #1DB6B3;
    color: #ffffff;
    border: 1px solid #1DB6B3;
}

/*********************
* Css Page
**********************/
.content-box-depth {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(232, 247, 246, 0.1);
    border: 1px solid #dcdcdc;
    padding: 24px;
    margin-bottom: 1.5rem;
}

.custom-card-depth {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(232, 247, 246, 0.08);
    border: 1px solid #dcdcdc;
    margin-bottom: 1.5rem;
    padding: 16px;
}

/*********************
* Css General
**********************/
.text-kominfo {
    color: #1DB6B3 !important;
    border-color: #1DB6B3 !important;
}

.pagination .page-link {
    color: #1DB6B3;
    border-color: #1DB6B3;
}

.pagination .page-link:hover {
    background-color: #1DB6B3;
    color: #fff;
}

.pagination .active .page-link {
    background-color: #1DB6B3;
    border-color: #1DB6B3;
    color: #fff;
}

.transition-hover {
    transition: all 0.3s ease-in-out;
    border: 1px solid #f0f0f0;
}

.transition-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(29, 182, 179, 0.12);
    background-color: #f9f9f9;
}

.news-details-socials a:hover {
    background: #1DB6B3;
    color: #fff;
}

.btn-kominfo {
    background: #1DB6B3 !important;
    color: #fff !important;
}

.btn-kominfo:hover {
    background: #C4D82E !important;
}

.form-control {
    border: 2px solid #1DB6B3;
}

.form-control:focus {
    border-color: #1DB6B3;
}

/*==============================================
  FOOTER STYLES - MODERN UI/UX DESIGN
  Theme: blue & Gold
  Primary: #1DB6B3 | Secondary: #C4D82E
==============================================*/

/* === FOOTER MAIN === */
.footer {
    background: linear-gradient(135deg, #C4D82E 0%, #1DB6B3 50%, #F0F8F8 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(13, 145, 151, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(232, 247, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-inner {
    padding: 70px 0 50px;
    position: relative;
    z-index: 1;
}

/* === LOGO & BRAND === */
.footer-brand {
    padding-right: 20px;
}

.footer-logo-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 16px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(240, 248, 248, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.footer-logo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(13, 145, 151, 0.3);
    border-color: rgba(232, 247, 246, 0.5);
}

.footer-logo-wrapper img {
    max-width: 120px;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.footer-logo-wrapper:hover img {
    transform: scale(1.05);
}

.brand-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.brand-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* === SOCIAL MEDIA === */
.footer-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 17px;
    transition: all 0.3s cubic-bezier(240, 248, 248, 1);
    position: relative;
    overflow: hidden;
}

.footer-socials a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #C4D82E, #F0F8F8);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.footer-socials a:hover::before {
    width: 100%;
    height: 100%;
}

.footer-socials a i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(232, 247, 246, 0.4);
    border-color: #C4D82E;
}

.footer-socials a:hover i {
    color: #C4D82E;
    transform: scale(1.1);
}

/* === WIDGET SECTIONS === */
.footer-widget {
    height: 100%;
}

.widget-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #C4D82E, #F0F8F8);
    border-radius: 2px;
}

/* === FOOTER LINKS === */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 18px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #C4D82E;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #F3F8D8;
    padding-left: 24px;
}

.footer-links a:hover::before {
    color: #F3F8D8;
    left: 6px;
}

/* === CONTACT INFO === */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 20px;
}

.contact-info li:last-child {
    margin-bottom: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(232, 247, 246, 0.2), rgba(255, 160, 0, 0.2));
    border: 1px solid rgba(232, 247, 246, 0.3);
    border-radius: 10px;
    color: #C4D82E;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, #C4D82E, #F0F8F8);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(232, 247, 246, 0.3);
}

.contact-item:hover .contact-icon i {
    color: #C4D82E;
}

.contact-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
}

.contact-text a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-text a:hover {
    color: #F3F8D8;
}

/* === FOOTER BOTTOM === */
.footer-bottom {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    width: 100%;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright p,
.developer-credit p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.developer-credit strong {
    color: #F3F8D8;
    font-weight: 600;
}

.developer-credit i {
    color: #C4D82E;
    margin-right: 5px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 991px) {
    .footer-inner {
        padding: 50px 0 40px;
    }

    .footer-brand {
        margin-bottom: 30px;
        padding-right: 0;
    }

    .widget-title {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .footer-inner {
        padding: 40px 0 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .brand-title {
        font-size: 18px;
    }

    .footer-logo-wrapper img {
        max-width: 100px;
    }

    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .footer-logo-wrapper {
        padding: 20px;
    }

    .footer-logo-wrapper img {
        max-width: 90px;
    }

    .brand-title {
        font-size: 16px;
    }

    .brand-description {
        font-size: 13px;
    }

    .widget-title {
        font-size: 16px;
    }

    .footer-links a,
    .contact-text {
        font-size: 13px;
    }

    .copyright p,
    .developer-credit p {
        font-size: 12px;
    }
}

/* === SMOOTH ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-brand,
.footer-widget {
    animation: fadeInUp 0.6s ease-out;
}

.footer-widget:nth-child(2) {
    animation-delay: 0.1s;
}

.footer-widget:nth-child(3) {
    animation-delay: 0.2s;
}

.footer-widget:nth-child(4) {
    animation-delay: 0.3s;
}

/*==============================================
  BERANDA STYLES - MODERN UI/UX DESIGN
  Theme: blue & Gold
  Primary: #1DB6B3 | Secondary: #C4D82E
==============================================*/
/* Section Badge - Updated to blue-Yellow */
.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(13, 145, 151, 0.1);
}

/* Enhanced Service Cards */
.lp-service-card-modern {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    height: 100%;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(240, 248, 248, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(40px);
}

.lp-service-card-modern:hover .service-card-glow {
    opacity: 0.15;
}

.lp-service-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(13, 145, 151, 0.15);
}

.lp-service-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(13, 145, 151, 0.2);
    transition: all 0.4s ease;
}

.lp-service-icon-modern i {
    font-size: 2rem;
    color: #fff;
}

.lp-service-card-modern:hover .lp-service-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.lp-service-title-modern {
    font-size: 1.25rem;
    font-weight: 700;
    color: #C4D82E;
    margin-bottom: 1rem;
}

.lp-service-description-modern {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.lp-service-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lp-service-card-modern:hover .lp-service-btn-modern {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(13, 145, 151, 0.3);
}

/* Modern Buttons - Updated to blue-Yellow */
.btn-gradient-primary {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 145, 151, 0.3);
}

.btn-gradient-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 145, 151, 0.4);
    color: #fff;
}

.btn-gradient-success {
    background: linear-gradient(135deg, #C4D82E, #1DB6B3);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 247, 246, 0.3);
}

.btn-gradient-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 247, 246, 0.4);
    color: #fff;
}

/* Enhanced News Cards */
.berita-featured-card-modern {
    position: relative;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.featured-badge-modern {
    position: absolute;
    top: 20px;
    left: 50px;
    background: linear-gradient(135deg, #1DB6B3, #F0F8F8);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(232, 247, 246, 0.4);
}

.featured-image-wrapper-modern {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.featured-image-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.berita-featured-card-modern:hover .featured-image-modern {
    transform: scale(1.1);
}

.featured-overlay-modern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.featured-content-modern {
    padding: 2rem;
}

.featured-meta-modern {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #f3e5f5;
    color: #1DB6B3;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.featured-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.featured-title-modern a {
    color: #C4D82E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-title-modern a:hover {
    color: #1DB6B3;
}

.text-highlight {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-excerpt-modern {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid #f3e5f5;
}

.author-info-modern {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
}

.author-info-modern span {
    font-weight: 600;
    color: #C4D82E;
}

.read-more-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more-btn-modern:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(13, 145, 151, 0.4);
    color: #fff;
}

/* Custom Carousel Controls */
.custom-carousel-btn-modern {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1DB6B3;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.custom-carousel-btn-modern:hover {
    background: #1DB6B3;
    color: #fff;
    transform: scale(1.1);
}

.custom-indicators-modern {
    bottom: -50px;
}

.custom-indicators-modern button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #F0F8F8;
    border: none;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.custom-indicators-modern button.active {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    width: 32px;
    border-radius: 6px;
}

/* News List Modern */
.berita-list-card-modern {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.berita-tabs-modern {
    background: #f8fafc;
    border-radius: 16px;
    padding: 6px;
}

.berita-tabs-modern .nav-link {
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
}

.berita-tabs-modern .nav-link.active {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: #fff;
    box-shadow: 0 4px 15px rgba(13, 145, 151, 0.3);
}

.berita-list-item-modern {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.berita-item-link-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(240, 248, 248, 1);
    border: 2px solid transparent;
}

.berita-item-link-modern:hover {
    background: #fff;
    transform: translateX(8px);
    border-color: #1DB6B3;
    box-shadow: 0 8px 25px rgba(13, 145, 151, 0.15);
}

.berita-item-number-modern {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1DB6B3, #F0F8F8);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.berita-item-number-modern.popular {
    background: linear-gradient(135deg, #1DB6B3, #F0F8F8);
    color: #ffffff;
}

.berita-item-content-modern {
    flex: 1;
}

.berita-item-title-modern {
    font-size: 0.95rem;
    font-weight: 600;
    color: #C4D82E;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.berita-item-meta-modern {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
}

.meta-date-modern,
.meta-views-modern {
    color: #64748b;
}

.meta-views-modern.popular {
    color: #F57C00;
}

.berita-item-arrow-modern {
    color: #1DB6B3;
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.berita-item-link-modern:hover .berita-item-arrow-modern {
    transform: translateX(5px);
}

/* Modern Card Design */
.card-modern {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: none;
}

.card-header-modern {
    background: linear-gradient(135deg, #f8fafc, #fff);
    padding: 2rem;
    border-bottom: 2px solid #f3e5f5;
}

.card-body-modern {
    padding: 2rem;
}

.icon-gradient-modern {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(13, 145, 151, 0.3);
}

.icon-gradient-modern.agenda {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    box-shadow: 0 8px 20px rgba(232, 247, 246, 0.3);
}

/* Pejabat Modern Card */
.pejabat-card-modern {
    text-align: center;
    padding: 2rem;
}

.pejabat-photo-wrapper {
    display: inline-block;
    position: relative;
    margin-bottom: 2rem;
}

.pejabat-photo-modern {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #1DB6B3, #C4D82E) border-box;
    box-shadow: 0 15px 40px rgba(13, 145, 151, 0.2);
    position: relative;
}

.pejabat-photo-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pejabat-card-modern:hover .photo-overlay {
    opacity: 1;
}

.pejabat-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #C4D82E;
    margin-bottom: 1rem;
}

.pejabat-position {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: linear-gradient(135deg, #C4D82E, #F0F8F8);
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Carousel Controls Modern */
.carousel-controls-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f3e5f5;
}

.carousel-btn-modern {
    width: 45px;
    height: 45px;
    background: #fff;
    border: 2px solid #1DB6B3;
    border-radius: 50%;
    color: #1DB6B3;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn-modern:hover {
    background: #1DB6B3;
    color: #fff;
    transform: scale(1.1);
}

.carousel-dots-modern {
    display: flex;
    gap: 10px;
}

.carousel-dots-modern .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #F0F8F8;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots-modern .dot.active {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    width: 30px;
    border-radius: 5px;
}

/* Modern Calendar */
.month-display-modern {
    background: linear-gradient(135deg, #C4D82E, #F0F8F8);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.calendar-navigation-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.calendar-navigation-modern .nav-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #1DB6B3;
    border-radius: 50%;
    color: #1DB6B3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.calendar-navigation-modern .nav-btn:hover {
    background: #1DB6B3;
    color: #fff;
}

.calendar-week-modern {
    display: flex;
    gap: 8px;
    flex: 1;
}

.calendar-day-modern {
    flex: 1;
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-day-modern.today {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: #fff;
    box-shadow: 0 6px 20px rgba(13, 145, 151, 0.4);
}

.calendar-day-modern.sunday {
    color: #ef4444;
}

.calendar-day-modern.today.sunday {
    color: #fff;
}

.agenda-dot {
    width: 8px;
    height: 8px;
    background: #C4D82E;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    right: 6px;
}

.calendar-day-modern.today .agenda-dot {
    background: #fff;
}

.day-name {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 4px;
    opacity: 0.8;
}

.day-number {
    font-size: 1rem;
    font-weight: 700;
}

/* Agenda Today Modern */
.agenda-today-modern {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
}

.agenda-title-modern {
    font-weight: 700;
    color: #C4D82E;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3e5f5;
}

.agenda-list-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.agenda-item-modern {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    border-left: 4px solid #1DB6B3;
    transition: all 0.3s ease;
}

.agenda-item-modern:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(13, 145, 151, 0.1);
}

.agenda-tema {
    font-size: 1rem;
    font-weight: 700;
    color: #C4D82E;
    margin-bottom: 0.5rem;
}

.agenda-desc {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.agenda-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #64748b;
}

.detail-item i {
    width: 20px;
    color: #1DB6B3;
}

.no-agenda-modern {
    text-align: center;
    padding: 3rem 1rem;
    color: #94a3b8;
}

.no-agenda-modern i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-agenda-modern p {
    font-size: 1rem;
    margin: 0;
}

/* PPID Modern Section */
.ppid-section-modern {
    padding: 3rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.ppid-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.ppid-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: #C4D82E;
    margin-bottom: 1rem;
}

.ppid-highlight-modern {
    background: linear-gradient(135deg, #1DB6B3, #F0F8F8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ppid-description-modern {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.ppid-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.ppid-card-modern {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.5s cubic-bezier(240, 248, 248, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.ppid-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ppid-card-modern:hover::before {
    opacity: 1;
}

.ppid-card-modern:hover {
    transform: translateY(-12px);
    border-color: rgba(13, 145, 151, 0.3);
    box-shadow: 0 20px 50px rgba(13, 145, 151, 0.15);
}

.ppid-link-modern {
    text-decoration: none;
    color: inherit;
}

.ppid-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(13, 145, 151, 0.2);
    transition: all 0.4s ease;
}

.ppid-icon-modern i {
    font-size: 2rem;
    color: #fff;
}

.ppid-card-modern:hover .ppid-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.ppid-card-title-modern {
    font-size: 1.25rem;
    font-weight: 700;
    color: #C4D82E;
    margin-bottom: 1rem;
}

.ppid-card-description-modern {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Specific Responsive Rules for Header, Hero and Footer (From Partials) */

@media (max-width: 992px) {

    /* Hide Vertical Socials on Mobile/Tablet */
    .social-icons-vertical {
        display: none !important;
    }

    /* Hero Section Scaling */
    .hero-container {
        padding: 40px 20px;
    }

    .hero-title .title-main {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 90%;
    }
}

@media (max-width: 768px) {

    /* Announcement Bar Mobile Flow */
    .announcement-bar {
        font-size: 0.85rem !important;
        flex-direction: column;
        align-items: flex-start !important;
        text-align: left;
    }

    .announcement-bar .d-flex {
        align-items: flex-start !important;
    }

    .announcement-bar .ms-2 {
        margin-left: 0 !important;
        margin-top: 5px;
    }

    .announcement-bar button {
        align-self: flex-end;
        margin-top: -25px;
    }

    /* Hero Adjustments */
    .hero-title .title-main {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
        line-height: 1.5;
    }

    .main-hero {
        height: 70vh;
        min-height: 500px;
    }
}

@media (max-width: 480px) {

    /* Hero Mobile Adjustments */
    .hero-title .title-main {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .main-hero {
        height: 60vh;
        min-height: 400px;
    }

    /* Footer Mobile Alignment */
    .footer-widget,
    .footer-brand {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .footer-socials {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }
}

.ppid-card-button-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.ppid-card-modern:hover .ppid-card-button-modern {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(13, 145, 151, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .ppid-title-modern,
    .berita-main-title-modern {
        font-size: 1.75rem;
    }

    .pejabat-photo-modern {
        width: 200px;
        height: 200px;
    }

    .calendar-week-modern {
        gap: 4px;
    }

    .calendar-day-modern {
        padding: 8px 4px;
    }

    .day-name {
        font-size: 0.65rem;
    }

    .day-number {
        font-size: 0.9rem;
    }

    /* Adjust Paddings for Cards */
    .lp-service-card-modern,
    .ppid-card-modern {
        padding: 1.5rem;
    }

    .berita-list-card-modern,
    .card-header-modern,
    .card-body-modern,
    .pejabat-card-modern,
    .featured-content-modern {
        padding: 1.25rem;
    }

    /* Image Wrappers */
    .featured-image-wrapper-modern {
        height: 250px;
    }

    /* Typography Overrides */
    .featured-title-modern {
        font-size: 1.25rem;
    }

    .lp-service-title-modern,
    .ppid-card-title-modern {
        font-size: 1.1rem;
    }

    /* Layout Adjustments */
    .berita-item-link-modern {
        padding: 1rem;
        gap: 0.75rem;
    }

    .icon-gradient-modern {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .pejabat-photo-modern {
        width: 150px;
        height: 150px;
        margin-bottom: 1rem;
    }

    .custom-curved-wrapper {
        height: 80px;
        margin-top: -40px;
    }

    .featured-image-wrapper-modern {
        height: 200px;
    }

    .lp-service-icon-modern,
    .ppid-icon-modern {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }

    .lp-service-icon-modern i,
    .ppid-icon-modern i {
        font-size: 1.5rem;
    }

    .berita-tabs-modern .nav-link {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Animation Keyframes */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(13, 145, 151, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(13, 145, 151, 0);
    }
}

.lp-floating-circle {
    animation: float 6s ease-in-out infinite;
}

.calendar-day-modern.today {
    animation: pulse-glow 2s infinite;
}


/*********************
* hero.css
**********************/
/* ===== HERO SECTION THEME - CLEAR BACKGROUND ===== */

/* Main Hero Container */
.main-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Background Image with Minimal Filter */
.item-slider-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: brightness(0.85) contrast(1.1) saturate(1.1);
}

/* Subtle Gradient Overlay */
.gradient-overlay-subtle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 59, 73, 0.4) 0%,
            rgba(0, 99, 122, 0.35) 30%,
            rgba(45, 205, 124, 0.3) 70%,
            rgba(45, 205, 124, 0.25) 100%);
    z-index: 2;
}

.gradient-overlay-subtle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="heroPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23heroPattern)"/></svg>');
    pointer-events: none;
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Social Icons - Vertical Theme */
.social-icons-vertical {
    position: absolute;
    top: 35%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
    animation: slideInLeft 0.8s ease-out 0.5s both;
}

.social-icon {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0 20px 20px 0;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(45, 205, 124, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(45, 205, 124, 0.2);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e6f7ff, #ffffff);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateX(10px) scale(1.05);
    box-shadow: 0 8px 30px rgba(45, 205, 124, 0.4);
}

.social-icon:hover::before {
    transform: translateX(0);
}

.social-icon i {
    font-size: 22px;
    position: relative;
    z-index: 2;
}

.social-icon.whatsapp i {
    color: #25D366;
}

.social-icon.instagram i {
    color: #e1306c;
}

.social-icon.facebook i {
    color: #1877f2;
}

.social-icon.tiktok i {
    color: #000000;
}

.social-icon.youtube i {
    color: #ff0000;
}

/* Hero Content */
.hero-content {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: clamp(45x, 6vw, 68px);
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.title-main {
    background: linear-gradient(#ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    background-clip: text;
    display: block;
    animation: slideInRight 0.8s ease-out 0.4s both;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    font-style: italic;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    flex-direction: row;
    gap: 15px;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    min-width: 160px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #2dcd7c, #003b49);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(230, 247, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(45, 205, 124, 0.5);
    color: white;
}

.btn-outline:hover {
    background: rgba(230, 247, 255, 0.25);
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(230, 247, 255, 0.6);
    color: white;
}

/* Hero Statistics */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 35px;
    animation: fadeInUp 0.8s ease-out 1s both;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #e6f7ff;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(230, 247, 255, 0.5), transparent);
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.particle {
    position: absolute;
    background: rgba(230, 247, 255, 0.7);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.particle:nth-child(1) {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation-duration: 20s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 12px;
    height: 12px;
    top: 60%;
    left: 80%;
    animation-duration: 25s;
    animation-delay: 5s;
}

.particle:nth-child(3) {
    width: 6px;
    height: 6px;
    top: 40%;
    left: 25%;
    animation-duration: 18s;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    width: 10px;
    height: 10px;
    top: 70%;
    left: 50%;
    animation-duration: 22s;
    animation-delay: 7s;
}

.particle:nth-child(5) {
    width: 5px;
    height: 5px;
    top: 30%;
    left: 70%;
    animation-duration: 17s;
    animation-delay: 3s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

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

/* Large Desktop */
@media (min-width: 1200px) {
    .hero-container {
        padding: 40px;
    }
}

/* Tablet & Below */
@media (max-width: 992px) {
    .main-hero {
        min-height: 100vh;
        height: auto;
    }

    .hero-container {
        padding: 100px 20px 80px;
        min-height: 100vh;
    }

    .social-icons-vertical {
        top: 50%;
        bottom: auto;
        left: 0;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }

    .social-icon {
        border-radius: 0 15px 15px 0;
        width: 45px;
        height: 45px;
    }

    .social-icon:hover {
        transform: translateX(8px) scale(1.05);
    }

    .hero-stats {
        gap: 25px;
        margin-top: 30px;
    }

    .stat-divider {
        display: none;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .hero-container {
        padding: 80px 15px 80px;
    }

    .hero-title {
        font-size: clamp(24px, 6vw, 36px);
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .hero-actions {
        gap: 12px;
        margin-top: 20px;
    }

    .btn-primary,
    .btn-outline {
        min-width: 140px;
        padding: 12px 20px;
        font-size: 13px;
    }

    .hero-stats {
        gap: 20px;
        margin-top: 25px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }

    .social-icons-vertical {
        top: 45%;
        gap: 8px;
    }

    .social-icon {
        width: 42px;
        height: 42px;
        border-radius: 0 12px 12px 0;
    }

    .social-icon i {
        font-size: 20px;
    }

}

/* Mobile Standard */
@media (max-width: 576px) {
    .hero-container {
        padding: 70px 12px 70px;
    }

    .hero-title {
        font-size: clamp(20px, 5.5vw, 28px);
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
        padding: 0 5px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 18px;
        width: 100%;
        max-width: 300px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        min-width: auto;
        padding: 12px 20px;
        font-size: 13px;
    }

    .hero-stats {
        gap: 15px;
        margin-top: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .social-icons-vertical {
        top: 40%;
        gap: 7px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 0 12px 12px 0;
    }

    .social-icon i {
        font-size: 18px;
    }

}

/* Mobile Small */
@media (max-width: 400px) {
    .hero-container {
        padding: 60px 10px 70px;
    }

    .hero-title {
        font-size: clamp(18px, 5vw, 24px);
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .hero-actions {
        max-width: 280px;
    }

    .btn-primary,
    .btn-outline {
        padding: 11px 18px;
        font-size: 12px;
    }

    .hero-stats {
        gap: 12px;
        margin-top: 18px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 11px;
    }

    .social-icons-vertical {
        top: 38%;
        gap: 6px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        border-radius: 0 10px 10px 0;
    }

    .social-icon i {
        font-size: 17px;
    }

}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero-container {
        padding: 50px 8px 60px;
    }

    .hero-title {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .hero-stats {
        gap: 10px;
    }

    .stat-number {
        font-size: 24px;
    }

    .social-icons-vertical {
        top: 35%;
        gap: 5px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        border-radius: 0 10px 10px 0;
    }

    .social-icon i {
        font-size: 16px;
    }
}

/*==============================================
          PAGE DETAIL STYLES - MODERN UI/UX
          Theme: blue & Gold
          Primary: #1DB6B3 | Secondary: #C4D82E
        ==============================================*/

/* === SECTION === */
.page-detail-section {
    padding: 30px 0 70px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

/* === BREADCRUMB === */
.breadcrumb-wrapper {
    margin-bottom: 30px;
}

.breadcrumb {
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.05), rgba(232, 247, 246, 0.05));
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(13, 145, 151, 0.1);
    margin-bottom: 0;
    backdrop-filter: blur(10px);
}

.breadcrumb-item a {
    color: #1DB6B3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #C4D82E;
    gap: 10px;
}

.breadcrumb-item a i {
    font-size: 14px;
}

.breadcrumb-item.active {
    color: #666;
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #C4D82E;
    font-size: 10px;
}

/* === ARTICLE === */
.content-article {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(13, 145, 151, 0.08);
    border: 1px solid rgba(13, 145, 151, 0.1);
}

/* === ARTICLE HEADER === */
.article-header {
    padding: 35px 35px 25px;
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.03), rgba(232, 247, 246, 0.03));
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #1DB6B3, #C4D82E, #F3F8D8) 1;
}

.article-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1DB6B3;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(13, 145, 151, 0.1);
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.meta-item i {
    color: #1DB6B3;
    font-size: 15px;
}

/* === FEATURED IMAGE === */
.article-featured-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.article-featured-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(74, 20, 140, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.article-featured-image:hover .image-overlay {
    opacity: 1;
}

/* === ARTICLE CONTENT === */
.article-content {
    padding: 40px 35px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    color: #1DB6B3 !important;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content h2 {
    font-size: 1.8rem;
    border-left: 4px solid #C4D82E;
    padding-left: 15px;
}

.article-content h3 {
    font-size: 1.5rem;
}

.article-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.article-content img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(13, 145, 151, 0.2);
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.article-content blockquote {
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.05), rgba(232, 247, 246, 0.05));
    border-left: 4px solid #C4D82E;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555 !important;
}

.article-content a {
    color: #1DB6B3;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-content a:hover {
    color: #C4D82E;
}

/* === SHARE BUTTONS === */
.article-share {
    padding: 30px 35px;
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.03), rgba(232, 247, 246, 0.03));
    border-top: 1px solid rgba(13, 145, 151, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 600;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.share-label i {
    color: #1DB6B3;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(240, 248, 248, 1);
    position: relative;
    overflow: hidden;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.share-btn:hover::before {
    width: 100%;
    height: 100%;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.linkedin {
    background: #0077b5;
}

/* === EMPTY STATE === */
.empty-state {
    background: #ffffff;
    border-radius: 16px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(13, 145, 151, 0.08);
}

.empty-icon {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h3 {
    color: #1DB6B3;
    font-weight: 700;
    margin-bottom: 10px;
}

.empty-state p {
    color: #666;
    margin-bottom: 25px;
}

/* === SIDEBAR === */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(13, 145, 151, 0.08);
    border: 1px solid rgba(13, 145, 151, 0.1);
}

/* === ALL NEWS BUTTON === */
.btn-all-news {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    background: linear-gradient(135deg, #C4D82E, #C4D82E);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-all-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #C4D82E, #C4D82E);
    transition: left 0.4s ease;
}

.btn-all-news span,
.btn-all-news i {
    position: relative;
    z-index: 1;
}

.btn-all-news:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 145, 151, 0.3);
}

.btn-all-news:hover::before {
    left: 0;
}

.btn-all-news i {
    transition: transform 0.3s ease;
}

.btn-all-news:hover i {
    transform: translateX(5px);
}

/* === NEWS WIDGET === */
.news-widget {
    padding: 0;
}

.news-tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.05), rgba(232, 247, 246, 0.05));
    border-bottom: 2px solid rgba(13, 145, 151, 0.1);
}

.news-tab-item {
    flex: 1;
}

.news-tab {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: #666;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.news-tab i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.news-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1DB6B3, #C4D82E);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.news-tab:hover {
    color: #1DB6B3;
    background: rgba(13, 145, 151, 0.03);
}

.news-tab.active {
    color: #1DB6B3;
    background: rgba(13, 145, 151, 0.05);
}

.news-tab.active::after {
    transform: scaleX(1);
}

.news-tab.active i {
    transform: scale(1.1);
}

/* === NEWS LIST === */
.news-tab-content {
    padding: 20px;
    max-height: 600px;
    overflow-y: auto;
}

.news-tab-content::-webkit-scrollbar {
    width: 6px;
}

.news-tab-content::-webkit-scrollbar-track {
    background: rgba(13, 145, 151, 0.05);
    border-radius: 10px;
}

.news-tab-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1DB6B3, #C4D82E);
    border-radius: 10px;
}

.news-tab-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #C4D82E, #1DB6B3);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #ffffff;
    border: 1px solid rgba(13, 145, 151, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(240, 248, 248, 1);
    position: relative;
    overflow: hidden;
}

.news-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1DB6B3, #C4D82E);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.news-item:hover {
    border-color: #C4D82E;
    box-shadow: 0 5px 20px rgba(13, 145, 151, 0.12);
    transform: translateX(5px);
}

.news-item:hover::before {
    transform: scaleY(1);
}

.news-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(13, 145, 151, 0.2);
}

.news-number.terpopuler {
    background: linear-gradient(135deg, #ff6b6b, #F3F8D8);
}

.news-content {
    flex: 1;
    min-width: 0;
}

.news-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.news-item:hover .news-title {
    color: #1DB6B3;
}

.news-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

.news-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-meta i {
    color: #1DB6B3;
    font-size: 11px;
}

/* === EMPTY NEWS === */
.empty-news {
    padding: 40px 20px;
    text-align: center;
    color: #999;
}

.empty-news i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.empty-news p {
    margin: 0;
    font-size: 14px;
}

/* === RESPONSIVE === */
@media (max-width: 1199px) {
    .article-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 991px) {
    .article-title {
        font-size: 1.6rem;
    }

    .article-header,
    .article-content,
    .article-share {
        padding-left: 25px;
        padding-right: 25px;
    }

    .sidebar {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .page-detail-section {
        padding: 20px 0 50px;
    }

    .breadcrumb {
        padding: 12px 15px;
        font-size: 14px;
    }

    .article-title {
        font-size: 1.4rem;
    }

    .article-header,
    .article-content,
    .article-share {
        padding: 20px;
    }

    .article-meta {
        gap: 12px;
    }

    .meta-item {
        font-size: 13px;
    }

    .article-content {
        font-size: 15px;
    }

    .share-buttons {
        width: 100%;
        justify-content: center;
    }

    .news-tab {
        padding: 14px 15px;
        font-size: 13px;
    }

    .news-tab span {
        display: none;
    }

    .news-tab i {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .breadcrumb-item.active {
        font-size: 13px;
    }
}

/* Page Detail Specific Mobile Tweaks */
@media (max-width: 480px) {
    .article-title {
        font-size: 1.25rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .article-content {
        padding: 15px;
        font-size: 14px;
    }

    .article-header {
        padding: 20px 15px;
    }

    .article-share {
        padding: 15px;
    }

    .share-buttons {
        gap: 8px;
    }

    .share-btn {
        width: 35px;
        height: 35px;
    }
}

/* === PRINT STYLES === */
@media print {

    .breadcrumb-wrapper,
    .article-share,
    .sidebar {
        display: none !important;
    }

    .content-article {
        box-shadow: none;
        border: none;
    }

    .article-content {
        padding: 0;
    }
}

/*==============================================
          AGENDA PAGE STYLES - MODERN UI/UX
          Theme: blue & Yellow
          Primary: #1DB6B3 | Secondary: #C4D82E
        ==============================================*/

/* === SECTION === */
.agenda-section {
    padding: 30px 0 70px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

/* === BREADCRUMB === */
.breadcrumb-wrapper {
    margin-bottom: 30px;
}

.breadcrumb {
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.05), rgba(232, 247, 246, 0.05));
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(13, 145, 151, 0.1);
    margin-bottom: 0;
    backdrop-filter: blur(10px);
}

.breadcrumb-item a {
    color: #1DB6B3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #C4D82E;
    gap: 10px;
}

.breadcrumb-item.active {
    color: #666;
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #C4D82E;
    font-size: 10px;
}

/* === AGENDA CONTAINER === */
.agenda-container {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(13, 145, 151, 0.08);
    border: 1px solid rgba(13, 145, 151, 0.1);
}

/* === HEADER === */
.agenda-header {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    padding: 35px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.agenda-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.header-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.header-icon i {
    font-size: 32px;
    color: #ffffff;
}

.header-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.agenda-main-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.agenda-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin-bottom: 0;
}

/* === AGENDA LIST === */
.agenda-list {
    padding: 30px;
}

/* === AGENDA CARD === */
.agenda-card {
    background: #ffffff;
    border: 1px solid rgba(13, 145, 151, 0.1);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    gap: 25px;
    transition: all 0.4s cubic-bezier(240, 248, 248, 1);
    position: relative;
    overflow: hidden;
}

.agenda-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1DB6B3, #C4D82E);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.agenda-card:hover {
    border-color: #C4D82E;
    box-shadow: 0 8px 30px rgba(13, 145, 151, 0.15);
    transform: translateY(-5px);
}

.agenda-card:hover::before {
    transform: scaleY(1);
}

/* === DATE BADGE === */
.date-badge {
    width: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-radius: 12px;
    text-align: center;
    padding: 15px 10px;
    color: white;
    box-shadow: 0 4px 15px rgba(13, 145, 151, 0.3);
    position: relative;
    overflow: hidden;
}

.date-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #F3F8D8;
}

.date-day {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.date-month {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.date-year {
    font-size: 12px;
    opacity: 0.9;
}

/* === AGENDA CONTENT === */
.agenda-content {
    flex: 1;
    min-width: 0;
}

.agenda-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1DB6B3;
    margin-bottom: 20px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.agenda-card:hover .agenda-title {
    color: #C4D82E;
}

/* === META === */
.agenda-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(13, 145, 151, 0.1);
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.meta-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.1), rgba(232, 247, 246, 0.1));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1DB6B3;
    font-size: 14px;
}

.meta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.meta-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* === DESCRIPTION === */
.agenda-description {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* === READ MORE BUTTON === */
.btn-read-more {
    background: linear-gradient(135deg, rgba(29, 182, 179, 0.1), rgba(232, 247, 246, 0.1));
    border: 1px solid rgba(29, 182, 179, 0.2);
    color: #1DB6B3;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-read-more:hover {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    border-color: transparent;
    transform: translateX(5px);
}

.btn-read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(3px);
}

/* === STATUS BADGE === */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 15px;
}

.status-badge.upcoming {
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.1), rgba(13, 145, 151, 0.05));
    color: #1DB6B3;
    border: 1px solid rgba(13, 145, 151, 0.3);
}

.status-badge.ongoing {
    background: linear-gradient(135deg, rgba(232, 247, 246, 0.1), rgba(232, 247, 246, 0.05));
    color: #F0F8F8;
    border: 1px solid rgba(232, 247, 246, 0.3);
}

.status-badge.completed {
    background: linear-gradient(135deg, rgba(158, 158, 158, 0.1), rgba(158, 158, 158, 0.05));
    color: #9e9e9e;
    border: 1px solid rgba(158, 158, 158, 0.3);
}

/* === MODAL === */
.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    border-radius: 16px 16px 0 0;
    padding: 20px 25px;
    border-bottom: none;
}

.modal-title {
    font-weight: 700;
    font-size: 1.3rem;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(13, 145, 151, 0.1);
}

.modal-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.modal-meta-item i {
    color: #1DB6B3;
}

.modal-description {
    color: #333;
    font-size: 15px;
    line-height: 1.7;
}

/* === EMPTY STATE === */
.empty-state {
    padding: 80px 40px;
    text-align: center;
}

.empty-icon {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h3 {
    color: #1DB6B3;
    font-weight: 700;
    margin-bottom: 10px;
}

.empty-state p {
    color: #666;
}

/* === PAGINATION === */
.pagination-wrapper {
    padding: 25px 0 0;
    display: flex;
    justify-content: center;
}

.pagination {
    gap: 5px;
}

.pagination .page-link {
    border: 1px solid rgba(13, 145, 151, 0.2);
    color: #1DB6B3;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(13, 145, 151, 0.3);
}

.pagination .page-item.disabled .page-link {
    background: #f5f5f5;
    border-color: #e0e0e0;
    color: #999;
}

/* === SIDEBAR === */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(13, 145, 151, 0.08);
    border: 1px solid rgba(13, 145, 151, 0.1);
}

/* === ALL NEWS BUTTON === */
.btn-all-news {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-all-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #C4D82E, #1DB6B3);
    transition: left 0.4s ease;
}

.btn-all-news span,
.btn-all-news i {
    position: relative;
    z-index: 1;
}

.btn-all-news:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 145, 151, 0.3);
}

.btn-all-news:hover::before {
    left: 0;
}

.btn-all-news i {
    transition: transform 0.3s ease;
}

.btn-all-news:hover i {
    transform: translateX(5px);
}

/* === NEWS WIDGET === */
.news-widget {
    padding: 0;
}

.news-tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.05), rgba(232, 247, 246, 0.05));
    border-bottom: 2px solid rgba(13, 145, 151, 0.1);
}

.news-tab-item {
    flex: 1;
}

.news-tab {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: #666;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.news-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1DB6B3, #C4D82E);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.news-tab:hover {
    color: #1DB6B3;
    background: rgba(13, 145, 151, 0.03);
}

.news-tab.active {
    color: #1DB6B3;
    background: rgba(13, 145, 151, 0.05);
}

.news-tab.active::after {
    transform: scaleX(1);
}

/* === NEWS LIST === */
.news-tab-content {
    padding: 20px;
    max-height: 600px;
    overflow-y: auto;
}

.news-tab-content::-webkit-scrollbar {
    width: 6px;
}

.news-tab-content::-webkit-scrollbar-track {
    background: rgba(13, 145, 151, 0.05);
    border-radius: 10px;
}

.news-tab-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1DB6B3, #C4D82E);
    border-radius: 10px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #ffffff;
    border: 1px solid rgba(13, 145, 151, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(240, 248, 248, 1);
    position: relative;
    overflow: hidden;
}

.news-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1DB6B3, #C4D82E);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.news-item:hover {
    border-color: #C4D82E;
    box-shadow: 0 5px 20px rgba(13, 145, 151, 0.12);
    transform: translateX(5px);
}

.news-item:hover::before {
    transform: scaleY(1);
}

.news-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(13, 145, 151, 0.2);
}

.news-number.popular {
    background: linear-gradient(135deg, #C4D82E, #F3F8D8);
}

.news-content {
    flex: 1;
    min-width: 0;
}

.news-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.news-item:hover .news-title {
    color: #1DB6B3;
}

.news-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

.news-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-meta i {
    color: #1DB6B3;
    font-size: 11px;
}

/* === EMPTY NEWS === */
.empty-news {
    padding: 40px 20px;
    text-align: center;
    color: #999;
}

.empty-news i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .agenda-main-title {
        font-size: 1.6rem;
    }

    .sidebar {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .agenda-section {
        padding: 20px 0 50px;
    }

    .agenda-header {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
    }

    .header-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .header-icon i {
        font-size: 28px;
    }

    .agenda-main-title {
        font-size: 1.4rem;
    }

    .agenda-list {
        padding: 20px;
    }

    .agenda-card {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .date-badge {
        width: 100%;
        max-width: 120px;
        margin: 0 auto;
    }

    .agenda-title {
        font-size: 1.2rem;
    }

    .agenda-meta {
        grid-template-columns: 1fr;
    }

    .news-tab span {
        display: none;
    }

    .news-tab i {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .agenda-main-title {
        font-size: 1.25rem;
    }

    .agenda-title {
        font-size: 1.1rem;
    }

    .meta-value {
        font-size: 13px;
    }
}

/*==============================================
          ANNOUNCEMENT PAGE STYLES - MODERN UI/UX
          Theme: blue & Yellow
          Primary: #1DB6B3 | Secondary: #C4D82E
        ==============================================*/

/* === SECTION === */
.announcement-section {
    padding: 30px 0 70px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

/* === BREADCRUMB === */
.breadcrumb-wrapper {
    margin-bottom: 30px;
}

.breadcrumb {
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.05), rgba(232, 247, 246, 0.05));
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(13, 145, 151, 0.1);
    margin-bottom: 0;
    backdrop-filter: blur(10px);
}

.breadcrumb-item a {
    color: #1DB6B3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #C4D82E;
    gap: 10px;
}

.breadcrumb-item.active {
    color: #666;
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #C4D82E;
    font-size: 10px;
}

/* === HEADER === */
.announcement-header {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(13, 145, 151, 0.2);
}

.announcement-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.header-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

.header-icon i {
    font-size: 40px;
    color: white;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.header-text {
    color: white;
}

.header-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.header-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin: 0;
}

.btn-back {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-5px);
    color: white;
}

/* === STATS BAR === */
.stats-bar {
    background: white;
    border-radius: 16px;
    padding: 20px 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 50px;
    box-shadow: 0 4px 20px rgba(13, 145, 151, 0.08);
    border: 1px solid rgba(13, 145, 151, 0.1);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    font-size: 15px;
}

.stat-item i {
    font-size: 20px;
    color: #1DB6B3;
}

.stat-item strong {
    color: #1DB6B3;
    font-weight: 700;
}

/* === ANNOUNCEMENT CONTAINER === */
.announcement-container {
    display: grid;
    gap: 20px;
}

/* === ANNOUNCEMENT CARD === */
.announcement-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(13, 145, 151, 0.1);
    transition: all 0.4s cubic-bezier(240, 248, 248, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(13, 145, 151, 0.05);
}

.announcement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #1DB6B3, #C4D82E);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.announcement-card:hover {
    border-color: #C4D82E;
    box-shadow: 0 8px 30px rgba(13, 145, 151, 0.15);
    transform: translateY(-5px);
}

.announcement-card:hover::before {
    transform: scaleY(1);
}

/* === CARD HEADER === */
.card-header-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(13, 145, 151, 0.1);
}

.announcement-badge {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(13, 145, 151, 0.3);
    position: relative;
    overflow: hidden;
}

.announcement-badge::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: #F3F8D8;
    border-radius: 0 12px 0 20px;
}

.badge-number {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
}

.announcement-meta {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.meta-date,
.meta-file {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.meta-date i {
    color: #1DB6B3;
    font-size: 16px;
}

.meta-file {
    background: linear-gradient(135deg, rgba(232, 247, 246, 0.1), rgba(232, 247, 246, 0.05));
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(232, 247, 246, 0.2);
}

.meta-file i {
    color: #C4D82E;
}

/* === CARD BODY === */
.card-body-section {
    margin-bottom: 20px;
    position: relative;
}

.announcement-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.title-link {
    color: #1DB6B3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.title-link i {
    font-size: 0.8em;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.title-link:hover {
    color: #C4D82E;
}

.title-link:hover i {
    opacity: 1;
    transform: translate(3px, -3px);
}

/* === STATUS BADGE === */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.new {
    background: linear-gradient(135deg, rgba(255, 214, 0, 0.15), rgba(255, 214, 0, 0.05));
    color: #F0F8F8;
    border: 1px solid rgba(255, 214, 0, 0.3);
    animation: glow 2s infinite;
}

.status-badge.recent {
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.15), rgba(13, 145, 151, 0.05));
    color: #1DB6B3;
    border: 1px solid rgba(13, 145, 151, 0.3);
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 214, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 214, 0, 0.5);
    }
}

/* === CARD FOOTER === */
.card-footer-section {
    padding-top: 20px;
    border-top: 1px solid rgba(13, 145, 151, 0.1);
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.btn-action {
    flex: 1;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-view {
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.1), rgba(13, 145, 151, 0.05));
    color: #1DB6B3;
    border-color: rgba(13, 145, 151, 0.2);
}

.btn-view:hover {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 145, 151, 0.3);
}

.btn-download {
    background: linear-gradient(135deg, #C4D82E, #F0F8F8);
    color: white;
    border-color: transparent;
}

.btn-download:hover {
    background: linear-gradient(135deg, #F0F8F8, #C4D82E);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 247, 246, 0.3);
}

.no-file-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: rgba(158, 158, 158, 0.08);
    border-radius: 10px;
    color: #999;
    font-size: 14px;
}

.no-file-info i {
    font-size: 16px;
}

/* === EMPTY STATE === */
.empty-state {
    background: white;
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(13, 145, 151, 0.08);
    border: 1px solid rgba(13, 145, 151, 0.1);
}

.empty-icon {
    font-size: 100px;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.empty-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1DB6B3;
    margin-bottom: 15px;
}

.empty-text {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-empty {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-empty:hover {
    background: linear-gradient(135deg, #C4D82E, #1DB6B3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 145, 151, 0.3);
    color: white;
}

/* === PAGINATION === */
.pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination {
    gap: 8px;
}

.pagination .page-link {
    border: 2px solid rgba(13, 145, 151, 0.2);
    color: #1DB6B3;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(13, 145, 151, 0.3);
}

.pagination .page-item.disabled .page-link {
    background: #f5f5f5;
    border-color: #e0e0e0;
    color: #999;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .header-title {
        font-size: 1.8rem;
    }

    .announcement-header {
        flex-direction: column;
        text-align: center;
    }

    .header-content {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .announcement-section {
        padding: 20px 0 50px;
    }

    .announcement-header {
        padding: 30px 20px;
    }

    .header-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }

    .header-icon i {
        font-size: 35px;
    }

    .header-title {
        font-size: 1.5rem;
    }

    .stats-bar {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .stat-item {
        justify-content: center;
    }

    .announcement-card {
        padding: 20px;
    }

    .card-header-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .announcement-badge {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .badge-number {
        font-size: 1.3rem;
    }

    .announcement-title {
        font-size: 1.1rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-action {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .header-title {
        font-size: 1.3rem;
    }

    .announcement-meta {
        flex-direction: column;
        gap: 10px;
    }

    .empty-state {
        padding: 60px 25px;
    }

    .empty-icon {
        font-size: 80px;
    }

    .empty-title {
        font-size: 1.4rem;
    }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.announcement-card {
    animation: fadeInUp 0.5s ease-out;
}

/*==============================================
          CONTACT PAGE STYLES - MODERN UI/UX
          Theme: blue & Yellow
          Primary: #1DB6B3 | Secondary: #C4D82E
        ==============================================*/

/* === SECTION === */
.contact-section {
    padding: 40px 0 80px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

/* === HERO HEADER === */
.contact-hero {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    font-size: 40px;
    color: white;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: #F3F8D8;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === CONTACT INFO CARD === */
.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(13, 145, 151, 0.08);
    border: 1px solid rgba(13, 145, 151, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1DB6B3, #C4D82E, #F3F8D8);
}

/* === OFFICE HEADER === */
.office-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(13, 145, 151, 0.1);
}

.office-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(13, 145, 151, 0.3);
}

.office-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1DB6B3;
    margin-bottom: 5px;
}

.office-subtitle {
    color: #666;
    font-size: 15px;
    margin: 0;
}

/* === CONTACT DETAILS === */
.contact-details-list {
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(13, 145, 151, 0.08);
    transition: all 0.3s ease;
}

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

.detail-item:hover {
    padding-left: 10px;
}

.detail-item:hover .detail-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(13, 145, 151, 0.3);
}

.detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.1), rgba(232, 247, 246, 0.1));
    border: 1px solid rgba(13, 145, 151, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1DB6B3;
    font-size: 20px;
    transition: all 0.3s ease;
}

.detail-content {
    flex: 1;
    min-width: 0;
}

.detail-title {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.detail-text {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.detail-link {
    color: #1DB6B3;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.detail-link:hover {
    color: #C4D82E;
    transform: translateX(3px);
}

/* === SOCIAL SECTION === */
.social-section {
    padding: 25px 0;
    border-top: 2px solid rgba(13, 145, 151, 0.1);
    border-bottom: 2px solid rgba(13, 145, 151, 0.1);
    margin-bottom: 25px;
}

.social-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(240, 248, 248, 1);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-btn:hover::before {
    width: 100%;
    height: 100%;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #0d65d9);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #e1306c, #c13584, #833ab4);
}

.social-btn.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-btn.tiktok {
    background: #000000;
}

/* === QUICK INFO === */
.quick-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.05), rgba(232, 247, 246, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(13, 145, 151, 0.1);
}

.info-box i {
    font-size: 24px;
    color: #1DB6B3;
    margin-top: 2px;
}

.info-box strong {
    display: block;
    color: #1DB6B3;
    font-size: 14px;
    margin-bottom: 3px;
}

.info-box p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

/* === CONTACT FORM CARD === */
.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(13, 145, 151, 0.08);
    border: 1px solid rgba(13, 145, 151, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1DB6B3, #C4D82E, #F3F8D8);
}

/* === FORM HEADER === */
.form-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(13, 145, 151, 0.1);
}

.form-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(13, 145, 151, 0.3);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1DB6B3;
    margin-bottom: 5px;
}

.form-subtitle {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* === FORM STYLES === */
.contact-form .form-floating {
    margin-bottom: 0;
}

.contact-form .form-control {
    border: 2px solid rgba(13, 145, 151, 0.15);
    border-radius: 12px;
    padding: 1rem;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-form .form-control:focus {
    border-color: #C4D82E;
    box-shadow: 0 0 0 0.25rem rgba(232, 247, 246, 0.1);
    background: rgba(232, 247, 246, 0.02);
}

.contact-form .form-floating>label {
    color: #666;
    font-weight: 500;
    padding: 1rem;
}

.contact-form .form-floating>.form-control:focus~label,
.contact-form .form-floating>.form-control:not(:placeholder-shown)~label {
    color: #1DB6B3;
}

/* === SUBMIT BUTTON === */
.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #C4D82E, #1DB6B3);
    transition: left 0.4s ease;
}

.btn-submit .btn-text,
.btn-submit .btn-loading {
    position: relative;
    z-index: 1;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 145, 151, 0.3);
}

.btn-submit:hover::before {
    left: 0;
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    text-align: center;
    color: #999;
    font-size: 13px;
    margin-top: 15px;
    margin-bottom: 0;
}

.form-note i {
    color: #1DB6B3;
}

/* === ALERT === */
#alertContainer {
    margin-bottom: 25px;
}

.alert {
    border-radius: 12px;
    border: none;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: linear-gradient(135deg, rgba(232, 247, 246, 0.1), rgba(232, 247, 246, 0.05));
    color: #F0F8F8;
    border-left: 4px solid #C4D82E;
}

.alert-danger {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1), rgba(244, 67, 54, 0.05));
    color: #f44336;
    border-left: 4px solid #f44336;
}

/* === MAP SECTION === */
.map-section {
    margin-top: 50px;
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(13, 145, 151, 0.08);
    border: 1px solid rgba(13, 145, 151, 0.1);
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1DB6B3, #C4D82E, #F3F8D8);
}

.map-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.map-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(13, 145, 151, 0.3);
}

.map-header-content {
    flex: 1;
}

.map-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1DB6B3;
    margin-bottom: 5px;
}

.map-description {
    color: #666;
    font-size: 15px;
    margin: 0;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 3px solid rgba(13, 145, 151, 0.1);
}

.map-iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.btn-direction {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(13, 145, 151, 0.4);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-direction:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13, 145, 151, 0.5);
    color: white;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2rem;
    }

    .office-header,
    .form-header {
        flex-direction: column;
        text-align: center;
    }

    .map-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 30px 0 60px;
    }

    .contact-hero {
        padding: 40px 25px;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-badge {
        width: 60px;
        height: 60px;
    }

    .hero-badge i {
        font-size: 30px;
    }

    .contact-info-card,
    .contact-form-card,
    .map-section {
        padding: 25px 20px;
    }

    .office-icon,
    .form-icon,
    .map-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .office-icon i,
    .form-icon i,
    .map-icon i {
        font-size: 28px;
    }

    .office-title,
    .form-title,
    .map-title {
        font-size: 1.25rem;
    }

    .map-iframe {
        height: 350px;
    }

    .btn-direction {
        padding: 10px 20px;
        font-size: 13px;
    }

    .map-overlay {
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .social-links {
        gap: 10px;
    }

    .social-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .map-iframe {
        height: 300px;
    }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info-card,
.contact-form-card,
.map-section {
    animation: fadeInUp 0.6s ease-out;
}

/*==============================================
          CATEGORY PAGE STYLES - MODERN UI/UX
          Theme: blue & Yellow
          Primary: #1DB6B3 | Secondary: #C4D82E
        ==============================================*/

/* === SECTION === */
.category-section {
    padding: 30px 0 70px;
    background: linear-gradient(135deg, #f8f9fa 0%, ##F0F8F8 100%);
    min-height: 100vh;
}

/* === BREADCRUMB === */
.breadcrumb-wrapper {
    margin-bottom: 30px;
}

.breadcrumb {
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.05), rgba(232, 247, 246, 0.05));
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(13, 145, 151, 0.1);
    margin-bottom: 0;
    backdrop-filter: blur(10px);
}

.breadcrumb-item a {
    color: #1DB6B3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #C4D82E;
    gap: 10px;
}

.breadcrumb-item.active {
    color: #666;
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #C4D82E;
    font-size: 10px;
}

/* === CATEGORY HEADER === */
.category-header {
    background: linear-gradient(135deg, #C4D82E, #F0F8F8);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(13, 145, 151, 0.2);
}

.category-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.category-badge {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.category-badge i {
    font-size: 40px;
    color: white;
}

.category-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.category-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.category-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin: 0;
    display: flex;
    align-items: center;
}

/* === NEWS GRID === */
.news-grid {
    display: grid;
    gap: 25px;
}

/* === NEWS CARD === */
.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(13, 145, 151, 0.1);
    transition: all 0.4s cubic-bezier(240, 248, 248, 1);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    box-shadow: 0 4px 15px rgba(13, 145, 151, 0.05);
}

.news-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #1DB6B3, #C4D82E);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.news-card:hover {
    border-color: #C4D82E;
    box-shadow: 0 8px 30px rgba(13, 145, 151, 0.15);
    transform: translateY(-5px);
}

.news-card:hover::before {
    transform: scaleY(1);
}

/* === IMAGE SECTION === */
.news-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.9), rgba(232, 247, 246, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-overlay i {
    color: white;
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.news-card:hover .image-overlay {
    opacity: 1;
}

.news-card:hover .image-overlay i {
    transform: scale(1);
}

.category-badge-small {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(13, 145, 151, 0.4);
    z-index: 1;
}

/* === CONTENT SECTION === */
.news-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
}

/* === META INFO === */
.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(13, 145, 151, 0.1);
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 13px;
    font-weight: 500;
}

.meta-item i {
    color: #1DB6B3;
    font-size: 14px;
}

/* === TITLE === */
.news-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-title a:hover {
    color: #1DB6B3;
}

/* === EXCERPT === */
.news-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* === FOOTER === */
.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-read-more {
    background: linear-gradient(135deg, #C4D82E, #F0F8F8);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
}

.btn-read-more:hover {
    background: linear-gradient(135deg, #F0F8F8, #C4D82E);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(232, 247, 246, 0.3);
    color: white;
}

.btn-read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(3px);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 13px;
}

.author-info i {
    color: #1DB6B3;
    font-size: 16px;
}

/* === EMPTY STATE === */
.empty-state {
    background: white;
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(13, 145, 151, 0.08);
    border: 1px solid rgba(13, 145, 151, 0.1);
}

.empty-icon {
    font-size: 100px;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.empty-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1DB6B3;
    margin-bottom: 15px;
}

.empty-text {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-empty {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-empty:hover {
    background: linear-gradient(135deg, #C4D82E, #1DB6B3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 145, 151, 0.3);
    color: white;
}

/* === PAGINATION === */
.pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination {
    gap: 8px;
}

.pagination .page-link {
    border: 2px solid rgba(13, 145, 151, 0.2);
    color: #1DB6B3;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(13, 145, 151, 0.3);
}

.pagination .page-item.disabled .page-link {
    background: #f5f5f5;
    border-color: #e0e0e0;
    color: #999;
}

/* === SIDEBAR === */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(13, 145, 151, 0.08);
    border: 1px solid rgba(13, 145, 151, 0.1);
}

/* === ALL NEWS BUTTON === */
.btn-all-news {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    background: linear-gradient(135deg, #1DB6B3, #F0F8F8);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-all-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F0F8F8, #1DB6B3);
    transition: left 0.4s ease;
}

.btn-all-news span,
.btn-all-news i {
    position: relative;
    z-index: 1;
}

.btn-all-news:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 145, 151, 0.3);
}

.btn-all-news:hover::before {
    left: 0;
}

.btn-all-news i {
    transition: transform 0.3s ease;
}

.btn-all-news:hover i {
    transform: translateX(5px);
}

/* === NEWS WIDGET === */
.news-widget {
    padding: 0;
}

.news-tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.05), rgba(232, 247, 246, 0.05));
    border-bottom: 2px solid rgba(13, 145, 151, 0.1);
}

.news-tab-item {
    flex: 1;
}

.news-tab {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: #666;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.news-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1DB6B3, #C4D82E);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.news-tab:hover {
    color: #1DB6B3;
    background: rgba(13, 145, 151, 0.03);
}

.news-tab.active {
    color: #1DB6B3;
    background: rgba(13, 145, 151, 0.05);
}

.news-tab.active::after {
    transform: scaleX(1);
}

/* === NEWS LIST === */
.news-tab-content {
    padding: 20px;
    max-height: 600px;
    overflow-y: auto;
}

.news-tab-content::-webkit-scrollbar {
    width: 6px;
}

.news-tab-content::-webkit-scrollbar-track {
    background: rgba(13, 145, 151, 0.05);
    border-radius: 10px;
}

.news-tab-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1DB6B3, #C4D82E);
    border-radius: 10px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #ffffff;
    border: 1px solid rgba(13, 145, 151, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(240, 248, 248, 1);
    position: relative;
    overflow: hidden;
}

.news-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1DB6B3, #C4D82E);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.news-item:hover {
    border-color: #C4D82E;
    box-shadow: 0 5px 20px rgba(13, 145, 151, 0.12);
    transform: translateX(5px);
}

.news-item:hover::before {
    transform: scaleY(1);
}

.news-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C4D82E, #F0F8F8);
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(13, 145, 151, 0.2);
}

.news-number.popular {
    background: linear-gradient(135deg, #C4D82E, #F3F8D8);
}

.news-item-content {
    flex: 1;
    min-width: 0;
}

.news-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.news-item:hover .news-item-title {
    color: #1DB6B3;
}

.news-item-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

.news-item-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-item-meta i {
    color: #1DB6B3;
    font-size: 11px;
}

/* === EMPTY NEWS === */
.empty-news {
    padding: 40px 20px;
    text-align: center;
    color: #999;
}

.empty-news i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .category-title {
        font-size: 1.6rem;
    }

    .news-card {
        grid-template-columns: 1fr;
    }

    .news-image-wrapper {
        height: 250px;
    }

    .sidebar {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .category-section {
        padding: 20px 0 50px;
    }

    .category-header {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
    }

    .category-badge {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }

    .category-badge i {
        font-size: 35px;
    }

    .category-title {
        font-size: 1.4rem;
    }

    .category-subtitle {
        justify-content: center;
    }

    .news-image-wrapper {
        height: 200px;
    }

    .news-content {
        padding: 20px;
    }

    .news-title {
        font-size: 1.1rem;
    }

    .news-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-tab span {
        display: none;
    }

    .news-tab i {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .category-title {
        font-size: 1.25rem;
    }

    .news-excerpt {
        font-size: 14px;
    }

    .meta-item {
        font-size: 12px;
    }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card {
    animation: fadeInUp 0.5s ease-out;
}

/*==============================================
          ALL NEWS PAGE STYLES - MODERN UI/UX
          Theme: blue & Yellow
          Primary: #1DB6B3 | Secondary: #C4D82E
        ==============================================*/

/* === SECTION === */
.all-news-section {
    padding: 30px 0 70px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

/* === BREADCRUMB === */
.breadcrumb-wrapper {
    margin-bottom: 30px;
}

.breadcrumb {
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.05), rgba(232, 247, 246, 0.05));
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(13, 145, 151, 0.1);
    margin-bottom: 0;
    backdrop-filter: blur(10px);
}

.breadcrumb-item a {
    color: #1DB6B3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #C4D82E;
    gap: 10px;
}

.breadcrumb-item.active {
    color: #666;
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #C4D82E;
    font-size: 10px;
}

/* === HERO HEADER === */
.news-hero {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(13, 145, 151, 0.2);
}

.news-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-badge {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

.hero-badge i {
    font-size: 40px;
    color: white;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin: 0;
    max-width: 600px;
}

.btn-back {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-5px);
    color: white;
}

/* === STATS BAR === */
.stats-bar {
    background: white;
    border-radius: 16px;
    padding: 20px 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 50px;
    box-shadow: 0 4px 20px rgba(13, 145, 151, 0.08);
    border: 1px solid rgba(13, 145, 151, 0.1);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    font-size: 15px;
}

.stat-item i {
    font-size: 20px;
    color: #1DB6B3;
}

.stat-item strong {
    color: #1DB6B3;
    font-weight: 700;
}

/* === NEWS GRID === */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

/* === NEWS CARD === */
.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(13, 145, 151, 0.1);
    transition: all 0.4s cubic-bezier(240, 248, 248, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(13, 145, 151, 0.05);
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1DB6B3, #C4D82E);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.news-card:hover {
    border-color: #C4D82E;
    box-shadow: 0 8px 30px rgba(13, 145, 151, 0.15);
    transform: translateY(-8px);
}

.news-card:hover::before {
    transform: scaleX(1);
}

/* === IMAGE SECTION === */
.news-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image {
    transform: scale(1.15);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.9), rgba(232, 247, 246, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.overlay-content i {
    font-size: 2.5rem;
}

.overlay-content span {
    font-weight: 600;
    font-size: 14px;
}

.news-card:hover .image-overlay {
    opacity: 1;
}

.news-card:hover .overlay-content {
    transform: scale(1);
}

/* === BADGES === */
.category-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(13, 145, 151, 0.4);
    z-index: 1;
}

.new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #F3F8D8, #F0F8F8);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.4);
    z-index: 1;
    animation: glow 2s infinite;
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(255, 214, 0, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(255, 214, 0, 0.6);
    }
}

/* === CONTENT SECTION === */
.news-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* === META INFO === */
.news-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(13, 145, 151, 0.1);
}

.meta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 13px;
    font-weight: 500;
}

.meta-item i {
    color: #1DB6B3;
    font-size: 14px;
}

/* === TITLE === */
.news-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-title a:hover {
    color: #1DB6B3;
}

/* === EXCERPT === */
.news-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === FOOTER === */
.news-footer {
    margin-top: auto;
}

.btn-read-more {
    background: linear-gradient(135deg, #C4D82E, #F0F8F8);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-read-more:hover {
    background: linear-gradient(135deg, #F0F8F8, #C4D82E);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 247, 246, 0.3);
    color: white;
}

.btn-read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

/* === EMPTY STATE === */
.empty-state {
    grid-column: 1 / -1;
    background: white;
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(13, 145, 151, 0.08);
    border: 1px solid rgba(13, 145, 151, 0.1);
}

.empty-icon {
    font-size: 100px;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.empty-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1DB6B3;
    margin-bottom: 15px;
}

.empty-text {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-empty {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-empty:hover {
    background: linear-gradient(135deg, #C4D82E, #1DB6B3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 145, 151, 0.3);
    color: white;
}

/* === PAGINATION === */
.pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination {
    gap: 8px;
}

.pagination .page-link {
    border: 2px solid rgba(13, 145, 151, 0.2);
    color: #1DB6B3;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(13, 145, 151, 0.3);
}

.pagination .page-item.disabled .page-link {
    background: #f5f5f5;
    border-color: #e0e0e0;
    color: #999;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

@media (max-width: 767px) {
    .all-news-section {
        padding: 20px 0 50px;
    }

    .news-hero {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-badge {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }

    .hero-badge i {
        font-size: 35px;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .stats-bar {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .stat-item {
        justify-content: center;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-image-wrapper {
        height: 200px;
    }

    .news-content {
        padding: 20px;
    }

    .news-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.25rem;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .meta-group {
        flex-direction: column;
        gap: 8px;
    }

    .news-excerpt {
        font-size: 13px;
    }
}

/***********************
        * PDF RSUD TAPAN Modern Design
        * PPID Document Page - Enhanced UI/UX
        * Theme: blue & Gold
        ***********************/

/* === BREADCRUMB === */
.text-coastal {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.text-coastal:hover {
    color: var(--secondary-color);
}

/* === MAIN SECTION === */
.document-section {
    padding: 20px 0 60px;
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
    min-height: 100vh;
}

/* === DOCUMENT CARD === */
.document-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

/* === DOCUMENT HEADER === */
.document-header {
    display: flex;
    gap: 24px;
    padding: 40px;
    background: linear-gradient(180deg, #C4D82E, #F0F8F8);
    border-bottom: 1px solid var(--border-color);
}

.document-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1DB6B3, #F0F8F8);
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(13, 145, 151, 0.25);
}

.document-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.document-header-content {
    flex: 1;
}

.document-category {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(13, 145, 151, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.document-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
    line-height: 1.3;
}

/* === INFO BANNER === */
.info-banner {
    display: flex;
    gap: 20px;
    padding: 24px 40px;
    background: linear-gradient(180deg, #1DB6B3, #F0F8F8);
    border-left: 4px solid var(--primary-color);
}

.info-banner-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 12px;
    flex-shrink: 0;
}

.info-banner-icon i {
    font-size: 1.5rem;
}

.info-banner-content strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.info-banner-content p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* === ACTION BUTTONS === */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 40px;
}

.btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-view {
    background: linear-gradient(135deg, var(--primary-color), #F0F8F8);
    color: #ffffff !important;
}

.btn-download {
    background: linear-gradient(135deg, var(--secondary-color), #F0F8F8);
    color: #ffffff !important;
}

.btn-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* === DOCUMENT INFO GRID === */
.document-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 0 40px 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.info-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #1DB6B3, #F0F8F8);
    color: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-radius: 10px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.3rem;
}

.info-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 4px;
}

.info-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* === PDF VIEWER === */
.pdf-viewer-section {
    padding: 0 40px 40px;
}

.viewer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.viewer-title {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    background: #F0F8F8;
}

.viewer-title i {
    color: var(--primary-color);
}

.viewer-controls {
    display: flex;
    gap: 8px;
}

.btn-control {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.btn-control:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.pdf-viewer-wrapper {
    position: relative;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-light);
    box-shadow: var(--shadow-sm);
}

.pdf-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    z-index: 10;
}

.pdf-loading p {
    color: var(--text-muted);
    margin: 0;
}

.pdf-iframe {
    width: 100%;
    height: 800px;
    border: none;
    display: block;
}

/* === DOCUMENT FOOTER === */
.document-footer {
    display: flex;
    gap: 20px;
    padding: 24px 40px;
    background: #F0F8F8;
    border-top: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
    margin-top: 20px;
}

.footer-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--dark-blue);
    border-radius: 12px;
    flex-shrink: 0;
}

.footer-icon i {
    font-size: 1.5rem;
}

.footer-content strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 6px;
}

.footer-content p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* === EMPTY STATE === */
.empty-state {
    text-align: center;
    padding: 80px 40px;
}

.empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1), rgba(232, 247, 246, 0.1));
    border-radius: 50%;
}

.empty-icon i {
    font-size: 3rem;
    color: #f44336;
}

.empty-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.empty-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--primary-color);
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-back:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === SIDEBAR === */
.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: linear-gradient(180deg, #1DB6B3, #F0F8F8);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.sidebar-card.info-card {
    background: #F0F8F8;
}

.sidebar-card.help-card {
    background: #F0F8F8;
}

.sidebar-title {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.sidebar-title i {
    color: var(--primary-color);
}

/* === QUICK LINKS === */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-link-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.quick-link-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    border-radius: 8px;
    font-size: 0.95rem;
}

.quick-link-item:hover {
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

/* === HELP CARD === */
.help-card {
    text-align: center;
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.05), rgba(232, 247, 246, 0.05));
}

.help-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    border-radius: 50%;
}

.help-icon i {
    font-size: 2rem;
}

.help-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.help-text {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-help {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--secondary-color), #F0F8F8);
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-help:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === INFO CARD === */
.info-card {
    background: linear-gradient(135deg, rgba(255, 214, 0, 0.08), rgba(232, 247, 246, 0.05));
}

.info-card-title {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.info-card-title i {
    color: var(--accent-color);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

.info-list li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.info-list i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .sidebar-sticky {
        position: static;
        margin-top: 40px;
    }

    .document-header {
        padding: 30px;
    }

    .action-buttons,
    .document-info-grid,
    .pdf-viewer-section {
        padding: 30px;
    }

    .document-footer {
        padding: 20px 30px;
    }
}

@media (max-width: 768px) {
    .document-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
    }

    .document-icon {
        width: 70px;
        height: 70px;
    }

    .document-icon i {
        font-size: 2rem;
    }

    .document-title {
        font-size: 1.5rem;
    }

    .info-banner {
        flex-direction: column;
        padding: 20px 24px;
    }

    .action-buttons {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .document-info-grid {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .pdf-viewer-section {
        padding: 0 24px 24px;
    }

    .viewer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .pdf-iframe {
        height: 500px;
    }

    .document-footer {
        flex-direction: column;
        padding: 20px 24px;
    }

    .empty-state {
        padding: 60px 24px;
    }

    .empty-icon {
        width: 80px;
        height: 80px;
    }

    .empty-icon i {
        font-size: 2.5rem;
    }
}

/* === FULLSCREEN MODE === */
.fullscreen-mode {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999;
    border-radius: 0 !important;
}

.fullscreen-mode .pdf-iframe {
    height: 100vh !important;
}

/***********************
        * RSUD TAPAN Modern Design
        * Informasi Publik Page - Enhanced UI/UX
        * Theme: blue & Gold
        ***********************/

/* === BREADCRUMB === */
.text-coastal {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.text-coastal:hover {
    color: var(--secondary-color);
}

/* === MAIN SECTION === */
.informasi-publik-section {
    padding: 20px 0 60px;
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
    min-height: 100vh;
}

/* === PAGE HEADER === */
.page-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.header-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.header-icon.primary {
    background: linear-gradient(135deg, var(--primary-color), #F0F8F8);
}

.header-icon.success {
    background: linear-gradient(135deg, var(--secondary-color), #F0F8F8);
}

.header-icon.warning {
    background: linear-gradient(135deg, var(--warning-color), #ffb74d);
}

.header-icon.danger {
    background: linear-gradient(135deg, var(--danger-color), #e57373);
}

.header-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.header-content {
    flex: 1;
}

.page-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.header-action {
    display: flex;
    gap: 12px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--bg-light);
    color: var(--text-dark) !important;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-back:hover {
    background: var(--primary-color);
    color: #ffffff !important;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === STATISTICS CARDS === */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* === CONTENT CARD === */
.content-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* === TOOLBAR === */
.content-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.toolbar-info {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.toolbar-info i {
    color: var(--primary-color);
}

/* === DOCUMENT LIST === */
.document-list {
    padding: 32px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.document-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.document-item:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.document-item:hover::before {
    transform: scaleY(1);
}

.document-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    font-weight: 700;
    font-size: 1.4rem;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(13, 145, 151, 0.25);
}

.document-content {
    flex: 1;
    min-width: 0;
}

.document-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 0 12px 0;
    line-height: 1.4;
    transition: var(--transition);
}

.document-item:hover .document-title {
    color: var(--primary-color);
}

.document-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

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

.meta-item.views {
    background: rgba(232, 247, 246, 0.1);
    color: var(--secondary-color);
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 600;
}

.meta-item.views i {
    color: var(--secondary-color);
}

/* === DOCUMENT ACTIONS === */
.document-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-action span {
    display: inline;
}

.btn-view {
    background: var(--primary-color);
    color: #1DB6B3 !important;
}

.btn-download {
    background: var(--secondary-color);
    color: #F0F8F8 !important;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-view:hover {
    background: var(--dark-blue);
}

.btn-download:hover {
    background: #F0F8F8;
}

/* === EMPTY STATE === */
.empty-state {
    text-align: center;
    padding: 80px 40px;
}

.empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.1), rgba(232, 247, 246, 0.1));
    border-radius: 50%;
}

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

.empty-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.empty-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* === PAGINATION === */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    padding: 32px;
    border-top: 1px solid var(--border-color);
}

.pagination {
    gap: 8px;
}

.pagination .page-link {
    color: var(--primary-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    transition: var(--transition);
    margin: 0 4px;
}

.pagination .page-link:hover {
    background: var(--secondary-color);
    color: #ffffff;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
}

/* === INFO BANNER === */
.info-banner {
    display: flex;
    gap: 20px;
    padding: 24px 32px;
    background: #F0F8F8;
    border-top: 1px solid var(--border-color);
}

.info-banner-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 12px;
    flex-shrink: 0;
}

.info-banner-icon i {
    font-size: 1.5rem;
}

.info-banner-content {
    flex: 1;
}

.info-banner-content strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.info-banner-content p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .page-header {
        flex-wrap: wrap;
    }

    .header-action {
        width: 100%;
        justify-content: flex-end;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .document-list {
        padding: 24px;
    }

    .content-toolbar {
        padding: 16px 24px;
    }

    .pagination-wrapper {
        padding: 24px;
    }

    .info-banner {
        padding: 20px 24px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 24px;
    }

    .header-icon {
        width: 60px;
        height: 60px;
    }

    .header-icon i {
        font-size: 2rem;
    }

    .page-title {
        font-size: 1.4rem;
    }

    .page-subtitle {
        font-size: 0.9rem;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-icon i {
        font-size: 1.5rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .document-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 16px;
    }

    .document-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .document-title {
        font-size: 1rem;
    }

    .document-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .document-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-action {
        width: 100%;
        justify-content: center;
    }

    .document-list {
        padding: 16px;
    }

    .content-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .info-banner {
        flex-direction: column;
    }

    .empty-state {
        padding: 60px 20px;
    }

    .empty-icon {
        width: 80px;
        height: 80px;
    }

    .empty-icon i {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .btn-action span {
        display: none;
    }

    .btn-action {
        padding: 10px 16px;
    }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.document-item {
    animation: fadeInUp 0.5s ease-out;
}

/*********************** 
        * ALBUM GALLERY - MODERN UI/UX
        * blue & Yellow Theme
        * Matched with Announcement Design
        ***********************/
.album-gallery-section {
    padding: 40px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #F0F8F8 100%);
    min-height: 100vh;
}

/* === BREADCRUMB (Sama dengan Pengumuman) === */
.breadcrumb-wrapper {
    margin-bottom: 24px;
}

.breadcrumb {
    background: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb-item {
    font-size: 0.95rem;
}

.breadcrumb-item a {
    color: var(--primary-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--secondary-green);
}

.breadcrumb-item.active {
    color: var(--dark);
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: #999;
    font-size: 1.2rem;
    padding: 0 8px;
}

/* === HEADER (Sama dengan Pengumuman) === */
.album-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.album-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.header-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-text {
    color: var(--white);
}

.header-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--white);
}

.header-subtitle {
    font-size: 1rem;
    margin: 0;
    opacity: 0.95;
    font-weight: 400;
}

.btn-back {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.btn-back:hover {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === ALBUM GRID === */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* === ALBUM ITEM === */
.album-item {
    animation: fadeInUp 0.6s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.album-link {
    display: block;
    text-decoration: none;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.album-link:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* === ALBUM THUMBNAIL === */
.album-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 75%;
    /* 4:3 Aspect Ratio */
    overflow: hidden;
    background: linear-gradient(135deg, #f3e5f5, #fff9c4);
}

.album-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.album-link:hover .album-img {
    transform: scale(1.1);
}

/* === OVERLAY === */
.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 182, 179, 0.9), rgba(232, 247, 246, 0.9));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-link:hover .album-overlay {
    opacity: 1;
}

.overlay-content {
    color: var(--white);
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition);
}

.album-link:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 8px;
    display: block;
}

.overlay-content span {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === PHOTO BADGE === */
.photo-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--secondary-green);
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.photo-badge i {
    font-size: 0.9rem;
}

/* === ALBUM INFO === */
.album-info {
    padding: 20px;
}

.album-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 10px 0;
    line-height: 1.4;
    transition: var(--transition);
}

.album-link:hover .album-name {
    color: var(--primary-blue);
}

.album-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #666;
    font-size: 0.9rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: var(--secondary-green);
}

/* === EMPTY STATE === */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.empty-icon {
    font-size: 5rem;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.empty-state p {
    color: #666;
    font-size: 1rem;
}

/* === PAGINATION === */
.pagination-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.pagination {
    gap: 8px;
}

.pagination .page-link {
    color: var(--primary-blue);
    border: 2px solid transparent;
    background: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.pagination .page-link:hover {
    background: var(--secondary-green);
    color: var(--white);
    border-color: var(--secondary-green);
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .album-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .album-gallery-section {
        padding: 30px 0 60px;
    }

    .album-header {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .header-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }

    .header-title {
        font-size: 1.5rem;
    }

    .header-subtitle {
        font-size: 0.95rem;
    }

    .btn-back {
        width: 100%;
        justify-content: center;
    }

    .album-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .overlay-content i {
        font-size: 2.5rem;
    }

    .overlay-content span {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .album-grid {
        grid-template-columns: 1fr;
    }

    .header-title {
        font-size: 1.3rem;
    }

    .header-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .breadcrumb {
        padding: 10px 15px;
    }

    .breadcrumb-item a span {
        display: none;
    }

    .empty-state {
        padding: 60px 20px;
    }

    .empty-icon {
        font-size: 4rem;
    }
}

/* === SMOOTH SCROLLING === */
html {
    scroll-behavior: smooth;
}

/* === LOADING ANIMATION === */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.album-img[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/*********************** 
    * ALBUM GALLERY - MODERN UI/UX
    * blue & Yellow Theme
    * Matched with Announcement Design
    ***********************/
/* === SECTION === */
.album-detail-section {
    padding: 40px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f3e5f5 100%);
    min-height: 100vh;
}

/* === BREADCRUMB === */
.breadcrumb-wrapper {
    margin-bottom: 24px;
}

.breadcrumb {
    background: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb-item a {
    color: var(--primary-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--secondary-green);
}

.breadcrumb-item.active {
    color: var(--dark);
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: #999;
    font-size: 1.2rem;
    padding: 0 8px;
}

/* === ALBUM DETAIL HEADER === */
.album-detail-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.album-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.header-main {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.album-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.album-title-section {
    color: var(--white);
}

.album-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--white);
    line-height: 1.3;
}

.album-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.meta-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.meta-badge i {
    font-size: 0.85rem;
}

.btn-back-detail {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.btn-back-detail:hover {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === ALBUM INFO SECTION === */
.album-info-section {
    margin-bottom: 40px;
}

/* === ALBUM COVER CARD === */
.album-cover-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    height: 100%;
}

.cover-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.album-cover-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.album-cover-card:hover .album-cover-img {
    transform: scale(1.05);
}

/* === ALBUM DESCRIPTION CARD === */
.album-description-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.description-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--secondary-green);
}

.description-header i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.description-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.description-content {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

/* === ALBUM STATS CARD === */
.album-stats-card {
    background: linear-gradient(135deg, var(--white), #f8f9fa);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-md);
    height: 100%;
    border: 2px solid rgba(13, 145, 151, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.stat-item {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* === GALLERY CONTAINER === */
.gallery-container {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-md);
}

/* === GALLERY HEADER === */
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--secondary-green);
    position: relative;
}

.gallery-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--bright-yellow);
}

.gallery-header-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gallery-header-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.gallery-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}

.gallery-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin: 4px 0 0 0;
}

.photo-counter {
    background: linear-gradient(135deg, var(--secondary-green), var(--accent-yellow));
    padding: 12px 20px;
    border-radius: 12px;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.counter-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.counter-text {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 2px;
}

/* === PHOTO GRID === */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* === PHOTO CARD === */
.photo-card {
    animation: fadeInUp 0.6s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.photo-link {
    display: block;
    text-decoration: none;
}

.photo-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    /* 4:3 Aspect Ratio */
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, #f3e5f5, #fff9c4);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.photo-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.photo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.photo-wrapper:hover .photo-img {
    transform: scale(1.1);
}

/* === PHOTO OVERLAY === */
.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-wrapper:hover .photo-overlay {
    opacity: 1;
}

.overlay-inner {
    color: var(--white);
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition);
}

.photo-wrapper:hover .overlay-inner {
    transform: translateY(0);
}

.overlay-inner i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 8px;
}

.overlay-inner span {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === PHOTO NUMBER === */
.photo-number {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

/* === EMPTY GALLERY === */
.empty-gallery {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    font-size: 5rem;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-gallery h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.empty-gallery p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 24px;
}

.btn-empty {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: var(--white);
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-empty:hover {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .album-detail-section {
        padding: 30px 0 60px;
    }

    .album-detail-header {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .header-main {
        flex-direction: column;
        text-align: center;
    }

    .album-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }

    .album-title {
        font-size: 1.5rem;
    }

    .album-meta {
        justify-content: center;
    }

    .btn-back-detail {
        width: 100%;
        justify-content: center;
    }

    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .photo-counter {
        align-self: stretch;
    }

    .photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }

    .gallery-container {
        padding: 24px 20px;
    }

    .album-cover-img {
        min-height: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .photo-grid {
        grid-template-columns: 1fr;
    }

    .album-title {
        font-size: 1.3rem;
    }

    .gallery-title {
        font-size: 1.3rem;
    }

    .breadcrumb-item a span {
        display: none;
    }

    .overlay-inner i {
        font-size: 2rem;
    }

    .overlay-inner span {
        font-size: 0.9rem;
    }

    .album-cover-img {
        min-height: 250px;
    }
}

/* === SMOOTH SCROLLING === */
html {
    scroll-behavior: smooth;
}

/*********************** 
    * PLAYLIST VIDEO - MODERN UI/UX
    * Coastal Blue & Green Theme
    * Matched with Album & Announcement Design
    ***********************/
/* === SECTION === */
.playlist-section {
    padding: 40px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #F0F8F8 100%);
    min-height: 100vh;
}

/* === BREADCRUMB === */
.breadcrumb-wrapper {
    margin-bottom: 24px;
}

.breadcrumb {
    background: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb-item {
    font-size: 0.95rem;
}

.breadcrumb-item a {
    color: #1DB6B3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: #C4D82E;
}

.breadcrumb-item.active {
    color: var(--dark);
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: #999;
    font-size: 1.2rem;
    padding: 0 8px;
}

/* === HEADER === */
.playlist-header {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.playlist-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.header-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-text {
    color: var(--white);
}

.header-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--white);
}

.header-subtitle {
    font-size: 1rem;
    margin: 0;
    opacity: 0.95;
    font-weight: 400;
}

.btn-back {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.btn-back:hover {
    background: var(--white);
    color: #1DB6B3;
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === PLAYLIST GRID === */
.playlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* === PLAYLIST ITEM === */
.playlist-item {
    animation: fadeInUp 0.6s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.playlist-link {
    display: block;
    text-decoration: none;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.playlist-link:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* === PLAYLIST THUMBNAIL === */
.playlist-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio for Video */
    overflow: hidden;
    background: linear-gradient(135deg, #f3e5f5, #fff9c4);
}

.playlist-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.playlist-link:hover .playlist-img {
    transform: scale(1.1);
}

/* === OVERLAY === */
.playlist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.9), rgba(232, 247, 246, 0.9));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.playlist-link:hover .playlist-overlay {
    opacity: 1;
}

.overlay-content {
    color: var(--white);
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition);
}

.playlist-link:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 8px;
    display: block;
}

.overlay-content span {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === VIDEO BADGE === */
.video-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #C4D82E;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.video-badge i {
    font-size: 0.9rem;
}

/* === PLAY INDICATOR === */
.play-indicator {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1DB6B3;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    z-index: 10;
    transition: var(--transition);
}

.playlist-link:hover .play-indicator {
    transform: scale(1.1);
    background: #1DB6B3;
    color: var(--white);
}

/* === PLAYLIST INFO === */
.playlist-info {
    padding: 20px;
}

.playlist-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 10px 0;
    line-height: 1.4;
    transition: var(--transition);
}

.playlist-link:hover .playlist-name {
    color: #1DB6B3;
}

.playlist-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #666;
    font-size: 0.9rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: #C4D82E;
}

/* === EMPTY STATE === */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.empty-icon {
    font-size: 5rem;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.empty-state p {
    color: #666;
    font-size: 1rem;
}

/* === PAGINATION === */
.pagination-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.pagination {
    gap: 8px;
}

.pagination .page-link {
    color: #1DB6B3;
    border: 2px solid transparent;
    background: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.pagination .page-link:hover {
    background: #C4D82E;
    color: var(--white);
    border-color: #C4D82E;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: #1DB6B3;
    border-color: #1DB6B3;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .playlist-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .playlist-section {
        padding: 30px 0 60px;
    }

    .playlist-header {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .header-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }

    .header-title {
        font-size: 1.5rem;
    }

    .header-subtitle {
        font-size: 0.95rem;
    }

    .btn-back {
        width: 100%;
        justify-content: center;
    }

    .playlist-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .overlay-content i {
        font-size: 2.5rem;
    }

    .overlay-content span {
        font-size: 1rem;
    }

    .play-indicator {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .playlist-grid {
        grid-template-columns: 1fr;
    }

    .header-title {
        font-size: 1.3rem;
    }

    .header-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .breadcrumb {
        padding: 10px 15px;
    }

    .breadcrumb-item a span {
        display: none;
    }

    .empty-state {
        padding: 60px 20px;
    }

    .empty-icon {
        font-size: 4rem;
    }
}

/* === SMOOTH SCROLLING === */
html {
    scroll-behavior: smooth;
}

/* === LOADING ANIMATION === */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.playlist-img[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0f0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/*********************** 
    * PLAYLIST DETAIL - MODERN UI/UX
    * Coastal Blue & Green Theme
    ***********************/
/* === SECTION === */
.playlist-detail-section {
    padding: 40px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f3e5f5 100%);
    min-height: 100vh;
}

/* === BREADCRUMB === */
.breadcrumb-wrapper {
    margin-bottom: 24px;
}

.breadcrumb {
    background: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb-item a {
    color: #1DB6B3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: #C4D82E;
}

.breadcrumb-item.active {
    color: var(--dark);
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: #999;
    font-size: 1.2rem;
    padding: 0 8px;
}

/* === PLAYLIST DETAIL HEADER === */
.playlist-detail-header {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.playlist-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.header-main {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.playlist-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.playlist-title-section {
    color: var(--white);
}

.playlist-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--white);
    line-height: 1.3;
}

.playlist-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.meta-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-back-detail {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.btn-back-detail:hover {
    background: var(--white);
    color: #1DB6B3;
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === PLAYLIST INFO SECTION === */
.playlist-info-section {
    margin-bottom: 40px;
}

/* === PLAYLIST COVER CARD === */
.playlist-cover-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    height: 100%;
}

.cover-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.playlist-cover-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.playlist-cover-card:hover .playlist-cover-img {
    transform: scale(1.05);
}

/* === PLAYLIST DESCRIPTION CARD === */
.playlist-description-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.description-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 3px solid #C4D82E;
}

.description-header i {
    font-size: 1.5rem;
    color: #1DB6B3;
}

.description-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.description-content {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

/* === PLAYLIST STATS CARD === */
.playlist-stats-card {
    background: linear-gradient(135deg, var(--white), #f8f9fa);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-md);
    height: 100%;
    border: 2px solid rgba(13, 145, 151, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.stat-item {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1DB6B3;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* === VIDEO LIST CONTAINER === */
.video-list-container {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-md);
}

/* === VIDEO LIST HEADER === */
.video-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 3px solid #C4D82E;
    position: relative;
}

.video-list-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: #F3F8D8;
}

.video-list-header-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.video-list-header-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.video-list-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1DB6B3;
    margin: 0;
}

.video-list-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin: 4px 0 0 0;
}

.video-counter {
    background: linear-gradient(135deg, #C4D82E, #F0F8F8);
    padding: 12px 20px;
    border-radius: 12px;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.counter-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.counter-text {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 2px;
}

/* === VIDEO CARDS === */
.video-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.video-card {
    animation: fadeInUp 0.6s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-card-inner {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(13, 145, 151, 0.1);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 0;
}

.video-card-inner:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #C4D82E;
}

/* === VIDEO SECTION === */
.video-section {
    position: relative;
    background: #000;
}

.video-number-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.video-embed-wrapper {
    min-height: 350px;
}

.video-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.video-placeholder {
    min-height: 350px;
    background: linear-gradient(135deg, #f3e5f5, #fff9c4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.placeholder-content {
    text-align: center;
    color: #666;
}

.placeholder-content i {
    font-size: 3rem;
    color: #F3F8D8;
    margin-bottom: 16px;
}

.placeholder-content h5 {
    color: var(--dark);
    margin-bottom: 8px;
}

.placeholder-content p {
    color: #999;
    margin: 0;
}

/* === CONTENT SECTION === */
.content-section {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-content {
    flex: 1;
}

.video-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1DB6B3;
    margin: 0 0 16px 0;
    line-height: 1.4;
    transition: var(--transition);
}

.video-card-inner:hover .video-card-title {
    color: #C4D82E;
}

.video-description {
    margin-bottom: 20px;
}

.video-description p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* === VIDEO FOOTER === */
.video-footer {
    padding-top: 20px;
    border-top: 2px solid rgba(13, 145, 151, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.95rem;
}

.video-meta-item i {
    color: #1DB6B3;
    font-size: 1rem;
}

.video-meta-item:last-child i {
    color: #C4D82E;
}

/* === EMPTY VIDEOS === */
.empty-videos {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    font-size: 5rem;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-videos h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.empty-videos p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 24px;
}

.btn-empty {
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-empty:hover {
    background: linear-gradient(135deg, #C4D82E, #1DB6B3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* === PAGINATION === */
.pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination {
    gap: 8px;
}

.pagination .page-link {
    color: #1DB6B3;
    border: 2px solid transparent;
    background: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.pagination .page-link:hover {
    background: #C4D82E;
    color: var(--white);
    border-color: #C4D82E;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: #1DB6B3;
    border-color: #1DB6B3;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .video-card-inner {
        grid-template-columns: 1fr;
    }

    .video-embed-wrapper {
        min-height: 300px;
    }

    .video-embed-wrapper iframe {
        min-height: 300px;
    }

    .video-placeholder {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .playlist-detail-section {
        padding: 30px 0 60px;
    }

    .playlist-detail-header {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .header-main {
        flex-direction: column;
        text-align: center;
    }

    .playlist-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }

    .playlist-title {
        font-size: 1.5rem;
    }

    .playlist-meta {
        justify-content: center;
    }

    .btn-back-detail {
        width: 100%;
        justify-content: center;
    }

    .video-list-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .video-counter {
        align-self: stretch;
    }

    .video-list-container {
        padding: 24px 20px;
    }

    .playlist-cover-img {
        min-height: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .video-card-title {
        font-size: 1.15rem;
    }

    .video-embed-wrapper {
        min-height: 250px;
    }

    .video-embed-wrapper iframe {
        min-height: 250px;
    }

    .video-placeholder {
        min-height: 250px;
    }
}

@media (max-width: 576px) {
    .playlist-title {
        font-size: 1.3rem;
    }

    .video-list-title {
        font-size: 1.3rem;
    }

    .breadcrumb-item a span {
        display: none;
    }

    .playlist-cover-img {
        min-height: 250px;
    }

    .content-section {
        padding: 20px;
    }

    .video-number-badge {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

/* === SMOOTH SCROLLING === */
html {
    scroll-behavior: smooth;
}

/***********************
            * RSUD TAPAN Modern Design
            * Berita Detail Page - Enhanced UI/UX
        ***********************/
/* === BREADCRUMB === */
.text-coastal {
    color: #1DB6B3;
    font-weight: 500;
    transition: var(--transition);
}

.text-coastal:hover {
    color: #C4D82E;
}

/* === MAIN SECTION === */
.service-details-section {
    padding: 20px 0 60px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* === CONTENT BOX === */
.content-box-depth {
    background: #ffffff;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .content-box-depth {
        padding: 20px;
    }
}

/* === HEADER SECTION === */
.berita-header {
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.service-details-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 0;
}

/* === META INFO === */
.berita-detail-meta {
    padding: 15px 0;
}

.meta-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.meta-item i {
    color: #1DB6B3;
    font-size: 0.9rem;
}

.meta-separator {
    color: var(--border-color);
    font-weight: bold;
}

/* === KATEGORI BADGE === */
.kategori-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: #ffffff !important;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.kategori-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 145, 151, 0.3);
}

/* === IMAGE === */
.berita-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.berita-featured-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.berita-image-container:hover .berita-featured-image {
    transform: scale(1.05);
}

/* === CONTENT === */
.berita-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.berita-content p {
    margin-bottom: 1.2rem;
}

.berita-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* === ACTION BAR === */
.action-bar {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.action-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.reaction-wrapper,
.share-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* === REACTIONS === */
.reaction-buttons {
    display: flex;
    gap: 12px;
}

.btn-reaction {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.btn-reaction:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-like:hover {
    background: #C4D82E;
    border-color: #C4D82E;
    color: #ffffff;
}

.btn-dislike:hover {
    background: #f44336;
    border-color: #f44336;
    color: #ffffff;
}

.btn-reaction i {
    font-size: 1rem;
}

/* === SOCIAL SHARE === */
.social-share {
    display: flex;
    gap: 10px;
}

.btn-social {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-facebook {
    background: #1877f2;
}

.btn-twitter {
    background: #1da1f2;
}

.btn-whatsapp {
    background: #25d366;
}

.btn-link {
    background: var(--text-muted);
    border: none;
    cursor: pointer;
}

.btn-social:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-md);
}

/* === COMMENTS SECTION === */
.comments-section {
    margin-top: 50px;
}

.section-header {
    margin-bottom: 30px;
}

.section-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    background: #1DB6B3;
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 10px;
}

/* === COMMENT FORM === */
.comment-form-wrapper {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.form-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.form-floating>.form-control {
    height: 56px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.form-floating>label {
    color: var(--text-muted);
}

.form-floating>.form-control:focus {
    border-color: #C4D82E;
    box-shadow: 0 0 0 0.2rem rgba(232, 247, 246, 0.1);
}

.form-floating>.form-control:focus~label {
    color: #C4D82E;
}

textarea.form-control {
    min-height: 120px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    resize: vertical;
    transition: var(--transition);
}

textarea.form-control:focus {
    border-color: #C4D82E;
    box-shadow: 0 0 0 0.2rem rgba(232, 247, 246, 0.1);
}

.btn-submit-comment {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    background: linear-gradient(135deg, #C4D82E, #F0F8F8);
    color: #ffffff !important;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit-comment:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 247, 246, 0.3);
    background: linear-gradient(135deg, #F0F8F8, #C4D82E);
}

/* === COMMENTS LIST === */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.comment-item:hover {
    border-color: #1DB6B3;
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--border-color);
}

.comment-body {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.comment-author {
    font-weight: 700;
    color: #1DB6B3;
    font-size: 1rem;
}

.comment-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.comment-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* === EMPTY STATE === */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 145, 151, 0.1), rgba(232, 247, 246, 0.1));
    border-radius: 50%;
}

.empty-icon i {
    font-size: 2.5rem;
    color: #1DB6B3;
}

.empty-text {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.empty-subtext {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* === SIDEBAR === */
.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.btn-lihat-semua {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: linear-gradient(135deg, #1DB6B3, #C4D82E);
    color: #ffffff !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    margin-bottom: 24px;
    transition: var(--transition);
}

.btn-lihat-semua:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 145, 151, 0.3);
}

/* === TABS === */
.nav-tabs-berita {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 20px;
}

.nav-tabs-berita .nav-link {
    color: var(--text-muted);
    font-weight: 600;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 12px 20px;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.nav-tabs-berita .nav-link:hover {
    color: #1DB6B3;
    background: rgba(13, 145, 151, 0.05);
}

.nav-tabs-berita .nav-link.active {
    color: #1DB6B3;
    background: transparent;
    border-bottom-color: #C4D82E;
}

/* === TAB CONTENT === */
.tab-content-berita {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 8px;
}

.tab-content-berita::-webkit-scrollbar {
    width: 6px;
}

.tab-content-berita::-webkit-scrollbar-track {
    background: var(--border-color);
    border-radius: 10px;
}

.tab-content-berita::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1DB6B3, #C4D82E);
    border-radius: 10px;
}

/* === SIDEBAR BERITA === */
.sidebar-berita-item {
    display: block;
    padding: 16px;
    margin-bottom: 12px;
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    border-left: 4px solid transparent;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-berita-item:hover {
    border-left-color: #C4D82E;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.sidebar-berita-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-berita-item:hover .sidebar-berita-title {
    color: #1DB6B3;
}

.sidebar-berita-meta {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.sidebar-berita-meta i {
    color: #1DB6B3;
}

/* === ALERTS === */
.alert {
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .sidebar-sticky {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .service-details-title {
        font-size: 1.5rem;
    }

    .meta-items {
        font-size: 0.85rem;
    }

    .action-bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .reaction-wrapper,
    .share-wrapper {
        width: 100%;
    }

    .comment-form-wrapper {
        padding: 20px;
    }

    .comment-item {
        padding: 16px;
    }

    .comment-avatar img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .btn-reaction {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .btn-social {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

/*********************
* End CSS
**********************/