/***********************
* BPKPAD Custom CSS - Green Theme
* Tema Hijau untuk Website BPKPAD
* Primary Color: #2dcd7c
* Dark Green: #1fb66a
***********************/

/***********************
* Css Navbar
***********************/
/* ===== TOPBAR STYLES ===== */
.topbar,
.topbar-inner,
.topbar-left,
.topbar-socials,
.topbar-info,
.topbar-right {
    background: linear-gradient(135deg, #003b49, #2dcd7c) !important;
    color: #ffffff !important;
}

.topbar {
    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: #2dcd7c;
}

.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;
}

.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: rgba(255, 255, 255, 0.8);
}

.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 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 18px !important;
    min-height: 60px !important;
    background: #ffffff;
    border-bottom: 1px solid rgba(45, 205, 124, 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(45, 205, 124, 0.1);
}

.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;
    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: #003b49 !important;
    text-decoration: none;
    border-radius: 6px;
    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(45, 205, 124, 0.08), rgba(31, 182, 106, 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: #2dcd7c;
    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: #2dcd7c;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(45, 205, 124, 0.15);
}

.btn-login {
    padding: 4px 6px;  
    background: #2dcd7c;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(45, 205, 124, 0.3);
}

.btn-login:hover {
    border: 1px solid #2dcd7c;
    background-color: #fff;
    color: #2dcd7c!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;
    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;
    overflow: hidden;
}

/* ==== 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: #2dcd7c;
    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: #2dcd7c !important;
}

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

.navigation ul li {
    position: relative;
}

/* ===== 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;
}

.mobile-menu-button:hover {
    background: rgba(45, 205, 124, 0.08);
}

.mobile-menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    background: #2dcd7c;
    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: #2dcd7c;
    }

    .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: #2dcd7c;
    }

    .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: #2dcd7c;
        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; }

@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-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;
    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;
}

/* 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: #2dcd7c;
    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(45, 205, 124, 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: #2dcd7c;
    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;
    }
}

/* 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: #2dcd7c;
    color: white;
    border-color: #2dcd7c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(45, 205, 124, 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: #2dcd7c;
    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: #2dcd7c;
    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 #2dcd7c;
    opacity: 0;
    transition: opacity 0.3s ease, right 0.3s ease;
}

.hero-widgets .widget-card:hover {
    background: #2dcd7c;
}

.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: transparent;
}

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

/* === Layanan Publik === */
.lp-wrapper {
    --lp-green: #2dcd7c;
    --lp-dark-green: #1fb66a;
    --lp-light-green: #e6f9f1;
    --lp-white: #ffffff;
    --lp-light-gray: #f8f9fa;
    --lp-dark-text: #212529;
    --lp-gray-text: #6c757d;
}

.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-green);
    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-green), var(--lp-dark-green));
    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(45, 205, 124, 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-green), var(--lp-dark-green));
    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(45, 205, 124, 0.2);
}

.lp-service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--lp-green), var(--lp-dark-green));
    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-green);
    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-green), var(--lp-dark-green));
    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-green), var(--lp-green));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 205, 124, 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(45, 205, 124, 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 Hijau BPKPAD
***********************/

/* === 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: #2dcd7c;
    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, #2dcd7c, #1fb66a);
    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(45, 205, 124, 0.2);
}

.btn-lihat-semua-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 205, 124, 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(0, 0, 0, 0.08);
    position: relative;
    height: 100%;
    min-height: 600px;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #2dcd7c, #1fb66a);
    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(45, 205, 124, 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(0, 0, 0, 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: #2dcd7c;
}

.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: #2dcd7c;
}

.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 #2dcd7c;
}

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

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

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

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

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

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

/* Carousel Controls */
.custom-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(45, 205, 124, 0.9);
    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(45, 205, 124, 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: #1fb66a;
    transform: translateY(-50%) scale(1.1);
}

/* Carousel Indicators */
.custom-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

.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: #2dcd7c;
    width: 40px;
}

/* === Berita List Card === */
.berita-list-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 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: #2dcd7c;
    background: white;
}

.berita-tabs .nav-link.active {
    background: linear-gradient(135deg, #2dcd7c, #1fb66a);
    color: white;
    box-shadow: 0 4px 15px rgba(45, 205, 124, 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, #2dcd7c, #1fb66a);
    border-radius: 10px;
}

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

/* 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, #2dcd7c, #1fb66a);
    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(45, 205, 124, 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, #e2e8f0, #cbd5e1);
    color: #475569;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.berita-item-number.popular {
    background: linear-gradient(135deg, #2dcd7c, #1fb66a);
    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: #2dcd7c;
}

.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: #2dcd7c;
    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(45, 205, 124, 0.1);
    color: #2dcd7c;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .berita-featured-card {
        min-height: 550px;
    }
    
    .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: 1;
    }

    .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: #2dcd7c !important;
}

.agenda-pejabat-section .text-primary {
    color: #2dcd7c !important;
}

.agenda-pejabat-section .border-primary {
    border-color: #2dcd7c !important;
}

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

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

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

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

.calendar-day:hover {
    background-color: rgba(45, 205, 124, 0.1); 
    color: #2dcd7c !important; 
}

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

/***********************
* 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: #2dcd7c;
}

.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(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 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, #2dcd7c, #1fb66a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ppid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(45, 205, 124, 0.15);
    border-color: rgba(45, 205, 124, 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, #2dcd7c, #1fb66a);
    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(45, 205, 124, 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, #2dcd7c, #1fb66a);
    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(45, 205, 124, 0.2);
}

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

.ppid-card-button:hover {
    background: linear-gradient(135deg, #1fb66a, #2dcd7c);
    color: white;
    transform: translateX(3px);
    box-shadow: 0 6px 25px rgba(45, 205, 124, 0.3);
}

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

/* Responsive Adjustments */
@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: 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: #2dcd7c;
    border: 1px solid #2dcd7c;
    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: #2dcd7c;
    color: #ffffff;
    border: 1px solid #2dcd7c;
}

/*********************
* Css Page
**********************/
.content-box-depth {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 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(0, 0, 0, 0.08);
    border: 1px solid #dcdcdc;
    margin-bottom: 1.5rem;
    padding: 16px;
}

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

.pagination .page-link {
    color: #2dcd7c;
    border-color: #2dcd7c;
}

.pagination .page-link:hover {
    background-color: #2dcd7c;
    color: #fff;
}

.pagination .active .page-link {
    background-color: #2dcd7c;
    border-color: #2dcd7c;
    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(45, 205, 124, 0.12);
    background-color: #f9f9f9;
}

.news-details-socials a:hover {
    background: #2dcd7c;
    color: #fff;
}

.btn-kominfo {
    background: #2dcd7c !important;
    color: #fff !important;
}

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

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

.form-control:focus {
    border-color: #2dcd7c;
}

/*********************
* End CSS
**********************/