/***********************
* Css Navbar
***********************/
/* ===== TOPBAR STYLES ===== */
.topbar {
    background-color: #0073e6;
    padding: 1px 0;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}


.topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    background-color: #0073e6;
}

.topbar-info ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.topbar-info ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Jarak ikon & teks */
}

.topbar-icon i {
    color: #ffffff;
    font-size: 13px;
    width: 14px;
    text-align: center;
}

.topbar-text a,
.topbar-text span {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.topbar-text a:hover {
    color: #7aacdf;
}

.topbar-right ul {
    display: flex;
    list-style: none;
    gap: 16px;
    align-items: center;
}

.topbar-right a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.topbar-right a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.3s ease;
}

.topbar-right a:hover::before {
    left: 0;
}

.topbar-right a:hover {
    background: rgba(2, 168, 89, 0.2);
    color: #02a859;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== MAIN NAVIGATION ===== */
.main-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.main-menu-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 8px;      /* dikurangi dari 8px 16px */
    max-height: 90px;      /* dikurangi dari 90px */
}


.main-menu-left {
    display: flex;
    align-items: center;
    gap: 1px;
}

.main-menu-logo{
	min-width: 253px;
	justify-content: center;
	display: flex;
	align-items: center;
	padding: 33px 20px;
	background: transparent;
}

.main-menu-logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 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;       /* pindah baris jika sempit */
    gap: 8px;              /* jarak antar menu */
    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: 4px 6px;   /* lebih kecil dari 6px 8px */
    font-size: 13px;    /* lebih kecil dari 14px */
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 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(0, 59, 73, 0.08), rgba(2, 168, 89, 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: #0073e6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 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: #003b49;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 59, 73, 0.15);
}

.btn-login {
    padding: 4px 6px;  
    background: #0073e6;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 97, 255, 0.3);
}
.btn-login:hover {
    border: 1px solid #0073e6;
    background-color: #fff;
    color: #0073e6!important;
    transform: translateY(-2px);
}

/* ===== DROPDOWN STYLES ===== */
.navigation ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 280px;
    padding: 0;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 100;
    overflow: visible;
    border: none;
    margin-top: -2px;
}

.navigation ul.sub-menu .has-dropdown > ul.sub-menu {
    position: absolute;   /* WAJIB: biar bisa nempel di kanan */
    top: 0;
    left: 100%;
    margin-left: 2px;
    min-width: 220px;
    background: #fff;
    border-radius: 0 10px 10px 0;
    box-shadow: 4px 8px 20px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.navigation ul.sub-menu .has-dropdown:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
}

.navigation li.has-dropdown {
    position: relative;
}

.navigation li.has-dropdown > a {
    position: relative;
    z-index: 101;
}

.navigation li.has-dropdown:hover > a {
    border-radius: 10px 10px 0 0;
    background: #ffffff;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.navigation li.has-dropdown:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.navigation ul.sub-menu .has-dropdown:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navigation ul.sub-menu li {
    border-bottom: 1px solid #f1f5f9;
}

.navigation ul.sub-menu li:last-child {
    border-bottom: none;
}

.navigation ul.sub-menu li a {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    color: #64748b !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    position: relative;
    background: #ffffff;
    z-index: 102;
    display: inline-block; /* pastikan relative bekerja */
    overflow: hidden; /* agar animasi tidak keluar */
}

/* ==== 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: #0073e6;
    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: #0073e6 !important;
}

.navigation ul {
    list-style: none;      /* hilangkan bullet/titik */
    padding-left: 0;       /* hilangkan indent/kotak default */
    margin: 0;             /* hilangkan margin default */
}

/* Buat li tetap berfungsi untuk dropdown */
.navigation ul li {
    position: relative;
}


/* ===== MOBILE MENU BUTTON ===== */
/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    z-index: 1100; /* pastikan di atas navigation */
}

.mobile-menu-button:hover {
    background: rgba(0, 59, 73, 0.08);
}

.mobile-menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    background: #003b49;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-button span:nth-child(1) { top: 14px; }
.mobile-menu-button span:nth-child(2) { top: 21px; }
.mobile-menu-button span:nth-child(3) { top: 28px; }

.mobile-menu-button.active span:nth-child(1) {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
}
.mobile-menu-button.active span:nth-child(2) { opacity: 0; }
.mobile-menu-button.active span:nth-child(3) {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
}

/* ===== MOBILE NAVIGATION ===== */
@media (max-width: 992px) {
    .mobile-menu-button { display: block; }

    .navigation {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        height: calc(100vh - 72px);
        background: #fff;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        padding-bottom: 50px;
    }

    .navigation.active {
        transform: translateX(0);
    }

    .navigation ul.main-menu-list {
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .navigation ul.main-menu-list > li {
        border-bottom: 1px solid #e2e8f0;
        width: 100%;
    }

    .navigation ul.main-menu-list > li > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 24px;
        font-size: 15px;
        font-weight: 600;
        color: #1e293b;
        text-decoration: none;
        background: transparent;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .navigation ul.main-menu-list > li > a:hover,
    .navigation ul.main-menu-list > li.active > a {
        background: #f8fafc;
        color: #0073e6;
    }

    /* Dropdown Arrow */
    .navigation ul.main-menu-list > li.has-dropdown > a::after {
        content: '';
        width: 10px;
        height: 10px;
        border-right: 2px solid #64748b;
        border-bottom: 2px solid #64748b;
        transform: rotate(45deg);
        margin-left: auto;
        transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .navigation ul.main-menu-list > li.has-dropdown.active > a::after {
        transform: rotate(135deg);
        border-color: #0073e6;
    }

    /* Submenu */
    .navigation ul.sub-menu {
        display: none;
        flex-direction: column;
        padding-left: 16px;
        background: #f8fafc;
        transition: all 0.3s ease;
    }

    .navigation ul.sub-menu li a {
        padding: 12px 24px;
        font-size: 14px;
        font-weight: 400;
        color: #64748b;
        background: transparent;
        display: block;
        transition: all 0.2s ease;
    }

    .navigation ul.sub-menu li a:hover {
        color: #0073e6;
        padding-left: 32px;
    }

    .navigation ul.main-menu-list > li.has-dropdown.active > ul.sub-menu {
        display: flex;
    }
}

/* ===== 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; }

/* Default: menu sembunyi di layar kecil */
@media (max-width: 992px) {
    .navigation {
      display: none;
      position: absolute;
      top: 72px; /* atau 0, sesuaikan header */
      left: 0;
      width: 100%;
      background: #fff;
      flex-direction: column;
      padding: 1rem;
    }
  
    /* Kalau tombol diklik, muncul */
    .navigation.active {
      display: flex;
    }
  }
  
/***********************
* End Css Mobile Nav
***********************/

/***********************
* Css Hero
***********************/
.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 15px;
}
.hero-content {
    text-align: center;
    color: white;
    min-width: 900px;
    padding: 40px 20px 80px 20px;
    /* padding bawah untuk ruang */
    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; /* putih polos */
    font-weight: 400;
    line-height: 1.6;
    animation: slideUp 1s ease-out 0.4s both;
}


/* 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(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: #000000;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 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: #0073e6;
    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(30, 58, 138, 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: #0073e6;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 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;
    }

    .social-sidebar {
        left: -5px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .social-icon i {
        font-size: 18px;
    }

    .marquee-text {
        font-size: 14px;
    }
}

/* 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: #0073e6;
    color: white;
    border-color: #0073e6;
    transform: translateY(-2px); /* efek naik dikit */
    box-shadow: 0 6px 15px rgba(45, 205, 124, 0.3); /* efek glow hijau */
}


#searchResults .suggestion-item {
    color: black;
    /* warna teks hitam */
    padding: 8px 10px;
    cursor: pointer;
}

#searchResults .suggestion-item:hover {
    background-color: #f2f2f2;
    /* efek hover abu-abu */
}

.social-icons {
    position: fixed; /* biar selalu ikut layar */
    left: 0; /* langsung nempel kiri */
    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; /* kotak dengan sudut agak tumpul */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.social-icons a:hover {
    background: #0073e6; /* hijau elegan pas hover */
    color: #fff;
    transform: translateX(5px); /* animasi geser dikit pas hover */
}

.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; /* hanya ikon */
    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; /* mulai di luar */
    opacity: 0;
    white-space: nowrap;
    background: #0073e6;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
    transition: opacity 0.3s ease, right 0.3s ease;
    pointer-events: none;
}

/* Panah kecil ke ikon */
.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 #0073e6;
    opacity: 0;
    transition: opacity 0.3s ease, right 0.3s ease;
}

/* Hover: teks & panah muncul */
.hero-widgets .widget-card:hover {
    background: #0073e6;
}

.hero-widgets .widget-card:hover span {
    opacity: 1;
    right: 60px; /* slide efek */
}

.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;
    /* Angkat ke atas */
    height: 140px;
    /* Sama dengan tinggi SVG */
    overflow: hidden;
    z-index: 10;
    background-color: transparent;
    /* Biarkan transparan agar hanya SVG yg kelihatan */
}

.custom-curved-svg {
    width: 100%;
    height: 100%;
    display: block;
}
/* === Css Waves === */

/* === Layanan Publik === */
/* Wrapper khusus layanan publik */
.lp-wrapper {
    --lp-blue: #0056b3;
    --lp-dark-blue: #0073e6;
    --lp-light-blue: #e6f0fa;
    --lp-white: #ffffff;
    --lp-light-gray: #f8f9fa;
    --lp-dark-text: #212529;
    --lp-gray-text: #6c757d;
}

/* Base Styles */
.lp-wrapper {
    background-color: var(--lp-light-gray);
    padding: 2rem 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;
}

/* Service Cards */
.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(0, 86, 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(0, 86, 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(0, 86, 179, 0.3);
}

/* Floating Elements */
.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(0, 86, 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); }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .lp-section-title h2 {
        font-size: 2rem;
    }

    .lp-service-card {
        padding: 1.5rem;
    }
}

/* === End Layanan Publik === */

/* === Berita === */

/* ===== Nav Tabs ===== */
.nav-tabs .nav-link {
    color: inherit;
    transition: color 0.3s ease;
    position: relative;
}

.nav-tabs .nav-link.active {
    color: #0D6efd !important;
    font-weight: 600;
}

.nav-tabs .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #0D6efd;
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-tabs .nav-link:hover::after {
    width: 100%;
}

/* ===== Carousel ===== */
#beritaCarousel .carousel-control-prev,
#beritaCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(45, 205, 124, 0.6);
    border-radius: 50%;
    top: 45%;
    transform: translateY(-50%);
}

#beritaCarousel .carousel-control-prev:hover,
#beritaCarousel .carousel-control-next:hover {
    background-color: #0D6efd;
}

/* ===== Read More Link ===== */
.read-more-link {
    color: #fff;
    text-decoration: underline;
    font-size: 0.85rem;
}

.read-more-link i {
    transition: transform 0.3s ease;
}

.read-more-link:hover i {
    transform: translateX(4px);
}

/* ===== Tab Content Berita ===== */
.berita-item h6 {
    font-weight: 600;
}

.berita-meta {
    font-size: 0.8rem;
    color: #6c757d;
}

/* ===== Button Group Dokumen ===== */
.btn-group-dokumen {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
}

/* ===== Hover Link ===== */
.hover-link:hover {
    color: #0D6efd !important;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {

    .ppid-card h5 {
        min-height: auto;
        font-size: 1rem;
    }

    .btn-group-dokumen {
        flex-direction: column;
        gap: 8px;
    }

    .btn.btn-lihat-semua {
        min-width: 100%;
    }

    .cover-wrapper {
        height: 300px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f8f9fa;
        border-radius: 12px;
    }

    .cover-image {
        height: 100%;
        width: auto;
        object-fit: cover;
        border-radius: 10px;
    }

    .pdf-icon {
        height: 90%;
        width: auto;
        max-height: 280px;
        object-fit: contain;
    }

    .card h6 {
        font-size: 1rem;
        line-height: 1.4;
    }

    @media (max-width: 768px) {
        .cover-wrapper {
            height: 240px;
        }
    }
}
 /* ===== End Section Berita ===== */
/* === End Berita === */


/* === Agenda dan Pejabat === *//* Scoped styling */
   /* === Agenda & Pejabat (Final Clean) === */

/* Scope section */
.agenda-pejabat-section .card-body {
    padding: 1rem !important;
}

.agenda-pejabat-section .bg-primary {
    background-color: #0073e6 !important;
}

.agenda-pejabat-section .text-primary {
    color: #0073e6 !important;
}

.agenda-pejabat-section .border-primary {
    border-color: #0073e6 !important;
}

.agenda-pejabat-section .btn-primary {
    background-color: #0073e6 !important;
    border-color: #0073e6 !important;
    transition: all 0.2s ease-in-out;
}

.agenda-pejabat-section .btn-primary:hover {
    background-color: #00387A !important;
    border-color: #00387A !important;
    box-shadow: 0 0 0 0.25rem rgba(0, 74, 173, 0.5) !important;
    transform: translateY(-1px);
}

.agenda-pejabat-section .object-fit-cover {
    object-fit: cover;
    object-position: center top;
}

.agenda-pejabat-section .min-w-0 {
    min-width: 0;
}

.agenda-pejabat-section .card {
    transition: all 0.2s ease-in-out;
}

.agenda-pejabat-section .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.agenda-pejabat-section .modern-position-badge {
    background: rgba(0, 115, 230, 0.05) !important;
    transition: all 0.3s ease;
}

.agenda-pejabat-section .modern-position-badge:hover {
    background: rgba(0, 115, 230, 0.1) !important;
    transform: scale(1.02);
}

/* === Agenda === */
.agenda-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    overflow: hidden;
    background: #fff;
}

.agenda-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.agenda-card .card-header {
    border: none;
    background: linear-gradient(135deg, #0073e6, #0073e6);
    color: #fff;
    font-weight: 600;
    padding: 1rem 1.25rem;
}

/* Prioritas */
.priority-high {
    border-left: 4px solid #ef4444;
}

.priority-medium {
    border-left: 4px solid #f59e0b;
}

.priority-low {
    border-left: 4px solid #0073e6;
}

/* Badge status */
.status-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === Calendar === */
.calendar-day {
    min-width: 50px;
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 5px;
    text-align: center;
}

.calendar-day:hover {
    background-color: rgba(0, 115, 230, 0.1); 
    color: #0073e6 !important; 
}


.calendar-day.active {
    background: #0073e6;
    color: #fff !important;
    border-radius: 10%;
}

.calendar-day.active .dot {
    background-color: #ffc107;
}

.calendar-day .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: transparent;
    margin: 0 auto 4px;
    transition: all 0.3s ease;
}

/* Hari Minggu */
.minggu-merah p {
    color: #d00 !important;
}

/* Responsive */
@media (max-width: 992px) {
    .agenda-pejabat-section .card-header .d-flex {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .agenda-pejabat-section .card-header .d-flex > div:first-child {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
/* === End Agenda dan Pejabat */

/* === PPID === */
.ppid-container {
    width: 100%;
    max-width: 100%; 
    padding: 0 40px; 
    margin: 0 auto;
}

.ppid-section {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.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-title .ppid-highlight {
    background: linear-gradient(135deg, #0073e6 0%, #0052cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ppid-description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    font-weight: 400;
}

.ppid-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.ppid-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: ppidFadeInUp 0.6s ease forwards;
}

.ppid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0073e6, #0052cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.ppid-card:hover::before {
    transform: scaleX(1);
}

.ppid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: rgba(0, 115, 230, 0.2);
}

.ppid-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #0073e6 0%, #0052cc 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.ppid-card:hover .ppid-icon {
    transform: scale(1.1);
}

.ppid-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #0073e6, #0052cc);
    border-radius: 22px;
    opacity: 0.2;
    z-index: -1;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.ppid-card:hover .ppid-icon::after {
    transform: scale(1);
}

.ppid-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.ppid-card-description {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.ppid-card-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #0073e6 0%, #0052cc 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ppid-card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.ppid-card-button:hover::before {
    left: 100%;
}

.ppid-card-button:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 115, 230, 0.4);
}

.ppid-card-button i {
    transition: transform 0.3s ease;
}

.ppid-card-button:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1200px) {
    .ppid-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ppid-section {
        padding: 60px 0;
    }

    .ppid-title {
        font-size: 2.25rem;
    }

    .ppid-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ppid-card {
        padding: 32px 24px;
    }
}

@media (max-width: 576px) {
    .ppid-title {
        font-size: 1.875rem;
    }

    .ppid-description {
        font-size: 1rem;
    }
}

/* Animation entrance */
.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;
}

@keyframes ppidFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* === End PPID === */

/* === Pertanyaan === */
  /* Full width */
  .pertanyaan {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto 60px auto;
}

/* Feedback Section */
.feedback-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 40px;
    margin-bottom: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feedback-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title .highlight {
    background: linear-gradient(135deg, #0073e6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Feedback Cards Grid */
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.feedback-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    cursor: pointer;
    min-height: 320px;
    /* tinggi seragam */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feedback-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.08), transparent);
    transition: left 0.6s ease;
}

.feedback-card:hover::before {
    left: 100%;
}

.feedback-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 18px 50px rgba(0, 115, 230, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Icon */
.feedback-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0073e6, #3b82f6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.feedback-card:hover .feedback-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(0, 115, 230, 0.25);
}

/* Title & Description */
.feedback-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.feedback-description {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
    /* biar deskripsi fleksibel */
}

/* Button */
.feedback-btn {
    background: linear-gradient(135deg, #0073e6, #3b82f6);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.feedback-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.feedback-btn:hover::before {
    left: 100%;
}

.feedback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 115, 230, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
    .feedback-section {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .feedback-card {
        min-height: auto;
        /* biar fleksibel di HP */
    }
}

/* Animation */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-up.delay-1 {
    animation-delay: 0.2s;
}

.animate-fade-up.delay-2 {
    animation-delay: 0.4s;
}

.animate-fade-up.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* === End Pertanyaan === */


/* ===== Tombol "Lihat Semua" ===== */
.btn.btn-lihat-semua {
    color: #0073e6;
    border: 1px solid #0073e6;
    font-size: 14px;
    border-radius: 8px;
    font-weight: 500;
    font-family: sans-serif;
    padding: 8px 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn.btn-lihat-semua:hover {
    background-color: #0073e6;
    color: #ffffff;
    border: 1px solid #0073e6;
}
/*********************
* Css Beranda
**********************/

/*********************
* Css Page
**********************/
/* === Page Card */
.content-box-depth {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* Bayangan sedikit lebih gelap dan padat */
    border: 1px solid #dcdcdc; /* Garis tepi yang lebih jelas */
    padding: 24px;
    margin-bottom: 1.5rem;
}

.custom-card-depth {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Bayangan lebih jelas untuk kartu */
    border: 1px solid #dcdcdc; /* Garis tepi yang lebih jelas */
    margin-bottom: 1.5rem;
    padding: 16px;
}
/* === End Page Card */
/*********************
* End Css Page
**********************/

/*********************
* Css Agenda
**********************/

/* === Text kominfo === */
.text-kominfo {
    color: #0073e6 !important;
    border-color: #0073e6 !important;
}
/* === End  Text Kominfo*/

/* === Pagination */
.pagination .page-link {
    color: #0073e6;
    /* Warna teks utama */
    border-color: #0073e6;
    /* Warna border */
}

.pagination .page-link:hover {
    background-color: #0073e6;
    color: #fff;
}

.pagination .active .page-link {
    background-color: #0073e6;
    border-color: #0073e6;
    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(0, 115, 230, 0.12);
    background-color: #f9f9f9;
}
/* === End Pagination */

/*********************
* Css Agenda
**********************/

/*********************
* Css Berita All
**********************/
.object-fit-cover {
    object-fit: cover;
}

.card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-img-top:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.blog-section.blog-section-two {
    margin-top: 3rem !important;
    padding-top: 0 !important;
}
/*********************
* Css End Berita All
**********************/

/*********************
* Css Berita Show
**********************/
.news-details-socials a {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    margin-left: 10px;
    text-align: center;
    background-color: var(--thm-light-bg);
    color: var(--thm-black);
    transition: 0.3s;
}

.news-details-socials a:hover {
    background: #0073e6;
    color: #fff;
}

.news-details-socials a i {
    font-size: 20px;
    transition: 0.3s;
}

.btn-kominfo {
    background: #0073e6 !important;
    color: #fff !important;
}

.btn-kominfo:hover {
    background: #005bb5 !important;
}

.comments-title {
    font-size: 1.25rem;
    font-weight: 600;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5rem;
}

.comments-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.comment-avatar img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.comment-text {
    margin: 0.25rem 0 0.5rem;
    line-height: 1.4;
}

.form-control {
    border: 2px solid #003b49;
    border-radius: 8px;
    padding: 10px 15px;
}

.form-control:focus {
    border-color: #0073e6;
    outline: none;
}
/*********************
* Css End Berita Show
**********************/

/*********************
* Css Album
**********************/
:root {
    --primary-blue: #1e40af;
    --primary-light: #3b82f6;
    --accent-blue: #0ea5e9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-light: #f1f5f9;
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
}


/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
}

.text-accent {
    color: #93c5fd;
}

.page-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 400;
}

.header-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Main Content */
.main-content {
    margin-top: -2rem;
    position: relative;
    z-index: 1;
}

/* Modern Breadcrumb */
.breadcrumb-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-primary);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    margin-bottom: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--text-muted);
    border-radius: 50%;
    margin: 0 0.75rem;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: var(--primary-blue);
}

.breadcrumb-item.active {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Info Banner */
.info-banner {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.banner-text {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 1rem;
}

.banner-stats {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: white;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Album Cards */
.album-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.album-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.album-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.thumbnail-link {
    display: block;
    width: 100%;
    height: 100%;
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.album-card:hover .thumbnail-image {
    transform: scale(1.05);
}

.thumbnail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9), rgba(59, 130, 246, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-card:hover .thumbnail-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-icon {
    margin-bottom: 0.5rem;
}

.overlay-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.photo-counter {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.album-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.album-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.title-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.title-link:hover {
    color: var(--primary-blue);
}

.album-meta {
    margin-top: auto;
}

.meta-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-primary);
    border: 2px dashed var(--border-medium);
    border-radius: var(--radius-lg);
    max-width: 500px;
    margin: 0 auto;
}

.empty-illustration {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.empty-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.empty-description {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .page-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-description {
        font-size: 1rem;
    }

    .header-stats {
        margin-top: 2rem;
    }

    .info-banner {
        padding: 1.5rem;
    }

    .banner-stats {
        margin-top: 1.5rem;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.75rem;
    }

    .breadcrumb-modern {
        padding: 0.75rem 1rem;
    }

    .album-content {
        padding: 1rem;
    }
}

/*********************
* End Css Album
**********************/

/*********************
* Kepuasan Publik
**********************/
       /* Main Styles */
       .aspirasi-page {
        min-height: 100vh;
        background: #f1f3f5;
        position: relative;
        overflow-x: hidden;
    }

    .aspirasi-page::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        opacity: 0.5;
    }

    /* Hero Section */
    .aspirasi-hero {
        padding: 10px 0 10px;
        position: relative;
        z-index: 2;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-icon {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }



    .aspirasi-title {
        font-size: 3rem;
        font-weight: 700;
        color: #0073e6 !important;
        margin-bottom: 16px;
        line-height: 1.2;
    }
    

    .hero-subtitle {
        font-size: 1.1rem;
        color: rgba(0, 0, 0, 0.9);
        line-height: 1.6;
        margin: 0;
    }

    /* Form Section */
    .form-section {
        position: relative;
        z-index: 2;
        padding: 0 0 80px;
        margin-top: 20px;
    }

    .form-container {
        max-width: 800px;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        overflow: hidden;
    }

    .form-header {
        background: white;
        padding: 40px 40px 30px;
        text-align: center;
        border-bottom: 1px solid #e2e8f0;
    }

    .form-header h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 12px;
    }

    .form-header p {
        color: #64748b;
        line-height: 1.6;
        margin: 0;
    }

    /* Modern Form */
    .modern-form {
        padding: 40px;
    }

    /* Progress Bar */
    .progress-container {
        margin-bottom: 40px;
    }

    .progress-bar {
        height: 6px;
        background: #e2e8f0;
        border-radius: 3px;
        overflow: hidden;
        margin-bottom: 8px;
    }

    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #0073e6, #00aaff);
        border-radius: 3px;
        transition: width 0.3s ease;
        width: 33.33%;
    }

    .progress-text {
        text-align: center;
        color: #64748b;
        font-size: 14px;
        font-weight: 500;
    }

    /* Form Steps */
    .form-step {
        display: none;
    }

    .form-step.active {
        display: block;
        animation: slideIn 0.3s ease-out;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .step-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 32px;
        padding-bottom: 20px;
        border-bottom: 2px solid #f1f5f9;
    }

    .step-number {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #0073e6, #00aaff);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 700;
        flex-shrink: 0;
    }

    .step-header h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #1e293b;
        margin: 0;
    }

    /* Form Groups */
    .form-group {
        margin-bottom: 32px;
    }

    .form-label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        color: #374151;
        margin-bottom: 12px;
        font-size: 15px;
    }

    .label-icon {
        width: 18px;
        height: 18px;
        color: #0073e6;
    }

    .required {
        color: #ef4444;
    }

    .form-control {
        width: 100%;
        padding: 16px 20px;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        font-size: 15px;
        background: white;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        outline: none;
        border-color: #0073e6;
        box-shadow: 0 0 0 3px rgba(0, 115, 230, 0.2);        
    }

    .character-count {
        text-align: right;
        font-size: 12px;
        color: #9ca3af;
        margin-top: 8px;
    }

    /* Email Toggle */
    .email-toggle {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
        background: #f8fafc;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .toggle-switch {
        position: relative;
        width: 50px;
        height: 26px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .toggle-slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #cbd5e1;
        transition: .3s;
        border-radius: 26px;
    }

    .toggle-slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 3px;
        bottom: 3px;
        background: white;
        transition: .3s;
        border-radius: 50%;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .toggle-switch input:checked+.toggle-slider {
        background: #0073e6;
    }

    .toggle-switch input:checked+.toggle-slider:before {
        transform: translateX(24px);
    }

    .toggle-content h4 {
        font-size: 15px;
        font-weight: 600;
        color: #374151;
        margin-bottom: 4px;
    }

    .toggle-content p {
        font-size: 13px;
        color: #6b7280;
        margin: 0;
        line-height: 1.4;
    }

    .email-field {
        margin-top: 16px;
    }

    /* Satisfaction Rating */
    .satisfaction-rating {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 16px;
        margin-top: 20px;
    }

    .rating-option {
        cursor: pointer;
    }

    .rating-option input {
        display: none;
    }

    .rating-card {
        text-align: center;
        padding: 20px 12px;
        border: 2px solid #e2e8f0;
        border-radius: 16px;
        transition: all 0.3s ease;
        background: white;
    }

    .rating-card:hover {
        border-color: #0073e6;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 115, 230, 0.15); /* biru glow */
        transition: all 0.3s ease; /* biar smooth */
    }
    
    .rating-option input:checked+.rating-card {
        border-color: #0073e6;
        background: linear-gradient(135deg, #0073e6, #00aaff); /* gradasi biru */
        color: white;
        transform: scale(1.05);
        transition: all 0.3s ease;
    }
    
    

    .rating-emoji {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .rating-label {
        font-size: 13px;
        font-weight: 500;
    }

    /* Radio Group */
    .radio-group {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
        margin-top: 16px;
    }

    .radio-option {
        cursor: pointer;
    }

    .radio-option input {
        display: none;
    }

    .radio-card {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px 20px;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        transition: all 0.3s ease;
        background: white;
    }

    .radio-card:hover {
        border-color: #0073e6;
        background: #f0fdf4;
    }

    .radio-option input:checked+.radio-card {
        border-color: #0073e6;
        background: #f0fdf4;
    }

    .radio-icon {
        font-size: 20px;
    }

    /* Navigation Buttons */
    .form-navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 40px;
        padding-top: 32px;
        border-top: 1px solid #e2e8f0;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        border: none;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn svg {
        width: 16px;
        height: 16px;
    }

    .btn-secondary {
        background: #f1f5f9;
        color: #475569;
    }

    .btn-secondary:hover {
        background: #e2e8f0;
        transform: translateY(-2px);
    }

    .btn-primary {
        background: linear-gradient(135deg, #0073e6, #00aaff);
        color: white;
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 115, 230, 0.3);
    }
    
    .btn-success {
        background: linear-gradient(135deg, #0073e6, #00aaff);
        color: white;
        transition: all 0.3s ease;
    }
    
    .btn-success:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 115, 230, 0.3);
    }
    

    /* Success Modal */
    .success-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        backdrop-filter: blur(4px);
    }

    .success-content {
        background: white;
        padding: 40px;
        border-radius: 20px;
        text-align: center;
        max-width: 400px;
        margin: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .success-icon {
        width: 80px;
        height: 80px;
        background: #0073e6;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
    }

    .success-icon svg {
        width: 36px;
        height: 36px;
        color: white;
    }

    .success-content h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 12px;
    }

    .success-content p {
        color: #64748b;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.2rem;
        }

        .hero-subtitle {
            font-size: 1rem;
        }

        .form-container {
            margin: 20px;
            border-radius: 16px;
        }

        .form-header,
        .modern-form {
            padding: 24px;
        }

        .satisfaction-rating {
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 12px;
        }

        .radio-group {
            grid-template-columns: 1fr;
        }

        .step-header {
            flex-direction: column;
            text-align: center;
            gap: 12px;
        }

        .form-navigation {
            flex-direction: column;
            gap: 12px;
        }

        .form-navigation .btn {
            width: 100%;
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .aspirasi-hero {
            padding: 60px 0 40px;
        }

        .hero-title {
            font-size: 1.8rem;
        }

        .satisfaction-rating {
            grid-template-columns: repeat(2, 1fr);
        }

        .email-toggle {
            flex-direction: column;
            gap: 12px;
        }
    }
/*********************
* End Kepuasan Publik
**********************/

/*********************
* Survey IKM
**********************/
 /* Step Progress */
 .step-progress {
    display: flex;
    align-items: center;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step.active .step-circle {
    background-color: #0d6efd;
    color: white;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.2);
}

.step-label {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

.step.active .step-label {
    color: #0d6efd;
    font-weight: 600;
}

.step-connector {
    width: 80px;
    height: 2px;
    background-color: #e9ecef;
    margin: 0 10px;
}

/* Form Elements */
.form-control {
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid #dee2e6;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.25);
}

.card-option {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: all 0.2s;
}

.card-option:hover {
    border-color: #86b7fe;
    background-color: #f8f9fa;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 0.2em;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Rating Options */
.rating-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* Buttons */
.btn {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
}

.btn-primary:hover {
    background-color: #0b5ed7 !important;
    border-color: #0a58ca !important;
}

.btn-outline-secondary:hover {
    background-color: #f8f9fa;
}

/* Card Styling */
.card {
    border-radius: 12px;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
}
/*********************
* End Survey IKM
**********************/

