@import url("https://fonts.googleapis.com/css2?family=TikTok+Sans:wght@400;500;600;700&display=swap");

body,
html {
    margin: 0 !important;
    padding: 0 !important;
    font-family: "Poppins", "TikTok Sans", Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    width: 100%;
}

/* Container utama */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Bootstrap row dan col */
.row {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.col-lg-5,
.col-lg-7,
.col-lg-12 {
    box-sizing: border-box;
    padding: 0 15px;
}

/* ================= HEADER / NAVBAR ================= */
.header-navbar {
    background: #003350;
    padding: 0;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 100;
    transition: background 0.3s, color 0.3s;
    width: 100%;
    max-width: 100vw;
}

/* Large tablets and small desktops (1200px and down) */
@media (max-width: 1200px) {
    .header-navbar {
        height: 62px;
    }

    .header-navbar .container {
        height: 62px;
    }

    .header-navbar .logo img,
    .header-navbar .color-logo img {
        height: 58px;
    }
}

/* Tablets (992px and down) */
@media (max-width: 992px) {
    .header-navbar {
        height: 60px;
    }

    .header-navbar .container {
        height: 60px;
    }

    .header-navbar .logo img,
    .header-navbar .color-logo img {
        height: 55px;
    }
}

/* Large mobile devices (768px and down) */
@media (max-width: 768px) {
    .header-navbar {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(0, 51, 80, 0.95);
        backdrop-filter: blur(10px);
        height: 58px;
    }

    .header-navbar .container {
        height: 58px;
        padding: 0 15px;
    }

    .header-navbar .logo img,
    .header-navbar .color-logo img {
        height: 45px;
    }

    .header-navbar .navbar-toggler {
        padding: 10px;
    }
}

/* Mobile devices (576px and down) */
@media (max-width: 576px) {
    .header-navbar {
        height: 55px;
    }

    .header-navbar .container {
        height: 55px;
        padding: 0 12px;
    }

    .header-navbar .logo img,
    .header-navbar .color-logo img {
        height: 42px;
    }

    .header-navbar .navbar-toggler {
        padding: 8px;
    }
}

/* Small mobile devices (480px and down) */
@media (max-width: 480px) {
    .header-navbar {
        height: 52px;
    }

    .header-navbar .container {
        height: 52px;
        padding: 0 10px;
    }

    .header-navbar .logo img,
    .header-navbar .color-logo img {
        height: 40px;
    }

    .header-navbar .navbar-toggler {
        padding: 6px;
    }
}

/* Extra small devices (400px and down) */
@media (max-width: 400px) {
    .header-navbar {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(0, 51, 80, 0.95);
        backdrop-filter: blur(10px);
        height: 50px; /* Kurangi tinggi header di mobile */
    }

    /* Sesuaikan elemen header di mobile */
    .header-navbar .container {
        height: 50px;
        padding: 0 15px;
    }

    .header-navbar .logo img,
    .header-navbar .color-logo img {
        height: 35px; /* Kurangi ukuran logo */
    }

    .header-navbar .navbar-toggler {
        padding: 8px;
    }
}

/* Hamburger Menu */
.navbar-toggler {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler-icon {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: all 0.3s;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.navbar-toggler-icon::before {
    top: -6px;
}

.navbar-toggler-icon::after {
    bottom: -6px;
}

/* Hamburger Menu Active State */
.navbar-toggler.active .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler.active .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler.active .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Navigation */
.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #003350;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 0px !important;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

/* Custom scrollbar untuk mobile nav */
.mobile-nav::-webkit-scrollbar {
    width: 4px;
}

.mobile-nav::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-nav::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.mobile-nav::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.mobile-nav.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-item {
    margin-bottom: 12px;
    width: 100%;
}

.mobile-nav-item:last-child {
    margin-bottom: 0;
}

.mobile-nav-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.2s;
    text-align: left;
}

.mobile-nav-item a:hover {
    color: #00e0d6;
}

.header-navbar .logo img {
    height: 24px;
}

.header-navbar .color-logo img {
    height: 35px;
}

.header-navbar nav {
    display: flex;
    gap: 32px;
}

.header-navbar nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.header-navbar nav a.active,
.header-navbar nav a:hover {
    color: #00e0d6;
}

/* Animasi rotasi untuk ikon chevron */
.header-navbar nav a i {
    transition: transform 0.3s ease;
}

.header-navbar nav a:hover i {
    transform: rotate(90deg);
}

.header-navbar .btn-kontak {
    background: linear-gradient(
        to bottom right,
        #1a2f50 0%,
        #243a5e 50%,
        #2d4870 100%
    );
    color: #fff;
    border: 2px solid #1a2f50;
    border-radius: 8px;
    padding: 8px 24px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 6px rgba(26, 47, 80, 0.3);
}

.header-navbar.sticky-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    color: #2a4d7a;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: background 0.3s, color 0.3s;
}

.header-navbar.sticky-navbar .logo,
.header-navbar.sticky-navbar nav a {
    color: #2a4d7a;
}

.header-navbar.sticky-navbar .mobile-nav a {
    color: #2a4d7a;
}

.sticky-navbar .navbar-toggler-icon,
.sticky-navbar .navbar-toggler-icon::after,
.sticky-navbar .navbar-toggler-icon::before {
    background-color: #000000;
}

.header-navbar.sticky-navbar nav a.active,
.header-navbar.sticky-navbar nav a:hover {
    color: #1e7fae;
}

/* Animasi rotasi untuk ikon chevron pada sticky navbar */
.header-navbar.sticky-navbar nav a i {
    transition: transform 0.3s ease;
}

.header-navbar.sticky-navbar nav a:hover i {
    transform: rotate(90deg);
}

.header-navbar.sticky-navbar .btn-kontak {
    background: linear-gradient(
        to bottom right,
        #1a2f50 0%,
        #243a5e 50%,
        #2d4870 100%
    );
    color: #ffffff !important;
    border: 2px solid #1a2f50;
    box-shadow: 0 3px 10px rgba(26, 47, 80, 0.5);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 900;
}

/* Tambahan: styling khusus link Tentang Kami saat sticky navbar */
.header-navbar.sticky-navbar #tentang a {
    color: #2a4d7a;
}

.header-navbar.sticky-navbar #tentang a:hover {
    color: #1e7fae;
}

/* ========== LOGO VISIBILITY CONTROL ========== */
/* Default state (not sticky): show .logo, hide .color-logo */
.header-navbar .color-logo {
    display: none;
}

.header-navbar .logo {
    display: block;
}

/* Sticky state: show .color-logo, hide .logo */
.header-navbar.sticky-navbar .color-logo {
    display: block;
}

.header-navbar.sticky-navbar .logo {
    display: none;
}

/* ========== NAVBAR DROPDOWN ========== */
.nav-dropdown {
    position: relative;
    display: inline-block;
    z-index: 300;
}

.nav-dropdown .dropdown-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    opacity: 0;
    background: #fff;
    min-width: 1100px;
    max-width: 95vw;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 16px 16px;
    z-index: 200;
    padding: 32px 32px 24px 32px;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 1.4, 0.6, 1),
        opacity 0.25s cubic-bezier(0.4, 1.4, 0.6, 1);
    border-top: 2px solid #0cc0ec;
}

.nav-dropdown.dropdown-open .dropdown-menu {
    display: block;
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown .dropdown-menu:hover {
    display: block;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px 16px;
}

.dropdown-grid a {
    color: #003350;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    font-size: 0.98rem;
    text-align: left;
    white-space: nowrap;
}

.dropdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 6px;
    transition: background 0.2s;
    cursor: pointer;
}

.dropdown-item img {
    height: 120px;
    object-fit: cover;
    margin-bottom: 6px;
    border-radius: 4px;
    background: #f7fafd;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.dropdown-item a img {
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-item a:hover img {
    transform: translateY(-5px);
}

.dropdown-title {
    font-size: 0.95rem;
    color: #003350;
    font-weight: 500;
    white-space: normal;
}

/* Override Bootstrap dropdown-item active/focus background */
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item.active {
    background-color: transparent !important;
}

.dropdown-item a:active,
.dropdown-item a:focus {
    background-color: transparent !important;
    outline: none;
}

@media (max-width: 1200px) {
    .nav-dropdown .dropdown-menu {
        min-width: 90vw;
        padding: 24px 8px 16px 8px;
    }
}

@media (max-width: 700px) {
    .nav-dropdown .dropdown-menu {
        min-width: 98vw;
        max-width: 98vw;
        padding: 10px 2px;
    }

    .dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================= HERO SECTION ================= */
.hero-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 0;
    overflow: hidden;
    max-width: 100vw;
}

.hero-section .hero-content {
    max-width: 600px;
    padding: 0 40px;
    text-align: left;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.hero-section .btn-hero {
    background: #1e7fae;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 32px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ================= DETAIL SECTION ================= */
.detail-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 64px 0 32px 0;
    overflow: hidden;
    /* height: 286px; */
    max-width: 100vw;
}

.detail-section .title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: #fff;
    padding-top: 40px;
}

.detail-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* ================= LAYANAN KAMI ================= */
.layanan-section {
    background: #f8fafc;
    padding: 70px 0;
    text-align: center;
    width: 100%;
    max-width: 100vw;
    box-shadow: inset 0 10px 40px rgba(0, 224, 214, 0.1);
}

.layanan-section h2 {
    color: #2a5599;
    font-size: 1.7rem;
    margin-bottom: 50px;
    font-weight: bold;
}

.layanan-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.layanan-item {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    width: 100%;
    min-height: 320px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.layanan-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.layanan-item .icon {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 16px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #3f51b5, #4fc3f7);
    box-shadow: 0 4px 12px rgba(79, 195, 247, 0.3);
}

.layanan-item .icon img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.layanan-item h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2a4d7a;
}

.h3-line {
    width: 15px;
    height: 3px;
    background: #a0b0d4;
    margin-bottom: 16px;
    border-radius: 2px;
}

.layanan-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6e6e6e;
}

/* ================= PRODUK KAMI ================= */
.produk-section {
    background-image: url("../circle-produk.png");
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: left bottom;
    background-color: #ecf7fb;
    padding: 70px 0;
    text-align: center;
    width: 100%;
    max-width: 100vw;
}

/* ================= PRODUK ACCORDION - MOBILE ONLY ================= */
.produk-accordion-section {
    background-color: #f8f9fa;
    padding: 50px 0;
    width: 100%;
    max-width: 100vw;
}

.produk-accordion-section .accordion {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.produk-accordion-section .accordion-item {
    border: none;
    border-bottom: 1px solid #e9ecef;
    background: #fff;
}

.produk-accordion-section .accordion-item:last-child {
    border-bottom: none;
}

.produk-accordion-section .accordion-button {
    background: #fff;
    border: none;
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2a5599;
    box-shadow: none;
    transition: all 0.3s ease;
}

.produk-accordion-section .accordion-button:not(.collapsed) {
    background: #2a5599;
    color: #fff;
    box-shadow: none;
}

.produk-accordion-section .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.produk-accordion-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232A5599'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.produk-accordion-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.produk-accordion-section .accordion-body {
    padding: 25px;
    background: #fff;
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

/* Card styling inside accordion */
.produk-accordion-section .card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.produk-accordion-section .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.produk-accordion-section .card-img-top {
    border-radius: 0;
    object-fit: cover;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100px;
}

.produk-accordion-section .card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

/* Mobile specific image styling */
@media (max-width: 767px) {
    .produk-accordion-section .card-img-top img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 0;
        display: block;
    }
}

.produk-accordion-section .card-title {
    color: #2a5599;
    font-weight: 600;
    font-size: 0.75rem;
    margin-top: 6px;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.3;
}

.produk-accordion-section a:hover .card-title {
    color: #1e3d5c;
}

/* Mobile specific adjustments */
@media (max-width: 767px) {
    .produk-accordion-section .row {
        margin: 0 -4px;
    }

    .produk-accordion-section .col-6 {
        padding: 0 4px;
        margin-bottom: 24px;
    }

    .produk-accordion-section .card {
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        margin-bottom: 10px;
        width: 100%;
        aspect-ratio: 1;
        height: auto;
    }

    .produk-accordion-section .card-img-top {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .produk-accordion-section .card-title {
        font-size: 0.65rem;
        margin-top: 8px;
        margin-bottom: 0;
        padding: 0 4px;
        line-height: 1.3;
        min-height: 28px;
        max-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        word-wrap: break-word;
        overflow: hidden;
    }
}

/* ================= LAYANAN MOBILE - STANDARD FORMAT ================= */
.layanan-mobile-section {
    background: #1d5271;
    padding: 60px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.layanan-mobile-section h2 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 800;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.layanan-mobile-slider-container {
    position: relative;
    max-width: 90%;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 20px;
}

.layanan-mobile-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.layanan-mobile-slide {
    min-width: 100%;
    display: none;
}

.layanan-mobile-slide:first-child {
    display: block;
}

.layanan-mobile-item {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.layanan-mobile-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.layanan-mobile-item .icon {
    width: 70px;
    height: 70px;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a5599, #1e3a5f);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(42, 85, 153, 0.3);
}

.layanan-mobile-item .icon img {
    width: 25px !important;
    height: 25px !important;
    filter: brightness(0) invert(1);
}

.layanan-mobile-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2a5599;
    margin-bottom: 12px;
    line-height: 1.3;
}

.layanan-mobile-item .h3-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00a86b, #00d08b);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.layanan-mobile-item p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto;
}

/* Dots Navigation */
.layanan-mobile-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 12px;
    visibility: hidden;
}

.layanan-mobile-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(42, 85, 153, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.layanan-mobile-dot.active {
    background: #2a5599;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(42, 85, 153, 0.4);
}

.layanan-mobile-dot:hover {
    background: rgba(42, 85, 153, 0.6);
    transform: scale(1.1);
}

/* Responsive Design untuk Layanan Mobile */
@media (max-width: 768px) {
    .layanan-mobile-section {
        padding: 40px 0;
    }

    .layanan-mobile-section h2 {
        color: #ffffff;
        font-size: 24px;
        margin-bottom: 30px;
    }

    .layanan-mobile-item {
        padding: 25px 20px;
        min-height: 260px;
    }

    .layanan-mobile-item .icon {
        width: 60px;
        height: 60px;
        margin: 0 0 15px 0;
    }

    .layanan-mobile-item .icon img {
        width: 25px;
        height: 25px;
    }

    .layanan-mobile-item h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .layanan-mobile-item p {
        font-size: 14px;
    }

    .layanan-mobile-slider-container {
        max-width: 85%;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .layanan-mobile-section {
        padding: 40px 0;
    }

    .layanan-mobile-section h2 {
        color: #ffffff;
        font-size: 24px;
        margin-bottom: 35px;
    }

    .layanan-mobile-item {
        padding: 35px 25px;
        min-height: 320px;
        border-radius: 20px;
    }

    .layanan-mobile-item .icon {
        width: 80px;
        height: 80px;
        margin: 0 0 20px 0;
    }

    .layanan-mobile-item .icon img {
        width: 30px;
        height: 30px;
    }

    .layanan-mobile-item h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .layanan-mobile-item .h3-line {
        width: 60px;
        height: 3px;
        margin-bottom: 20px;
    }

    .layanan-mobile-item p {
        font-size: 15px;
        line-height: 1.6;
    }

    .layanan-mobile-slider-container {
        max-width: 90%;
        padding: 0 15px;
    }

    .layanan-mobile-dots {
        margin-top: 30px;
        gap: 12px;
    }

    .layanan-mobile-dot {
        width: 12px;
        height: 12px;
    }
}

/* Mobile HP (max-width: 600px) - Icon di kiri atas */
@media (max-width: 600px) {
    .layanan-mobile-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 30px 25px;
        min-height: 200px;
    }

    .layanan-mobile-item .icon {
        order: 1;
        margin: 0 0 15px 0;
        align-self: flex-start;
    }

    .layanan-mobile-item .icon img {
        width: 40px;
        height: 40px;
    }

    .layanan-mobile-item .content-wrapper {
        order: 2;
        flex: 1;
        width: 100%;
    }

    .layanan-mobile-item h3 {
        text-align: left;
        margin-bottom: 10px;
    }

    .layanan-mobile-item .h3-line {
        margin: 0 0 15px 0;
    }

    .layanan-mobile-item p {
        text-align: left;
        margin: 0;
    }
}

/* ================= AKSESORIS SLIDER - MOBILE ONLY ================= */
.aksesoris-slider-section {
    background-color: #f8f9fa;
    padding: 50px 0;
    width: 100%;
    max-width: 100vw;
}

.aksesoris-slider-section h2 {
    color: #2a5599;
    font-size: 1.7rem;
    margin-bottom: 30px;
    font-weight: bold;
    text-align: center;
}

.aksesoris-slider-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.aksesoris-slider {
    display: flex;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.aksesoris-slide {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
    background: #fff;
    padding: 20px;
    text-align: center;
    display: none;
}

.aksesoris-slide:first-child {
    display: block;
}

.aksesoris-slide .aksesoris-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.aksesoris-slide .img-group {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
}

.aksesoris-slide .img-group img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.aksesoris-slide .aksesoris-item:hover .img-group img {
    transform: scale(1.05);
}

.aksesoris-slide h5 {
    color: #2a5599;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.aksesoris-description {
    margin-top: 30px;
    text-align: center;
    padding: 0 20px;
}

.aksesoris-description p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
}

/* ================= PRODUCT CARD SLIDER - MOBILE ONLY ================= */
.product-card-slider-section {
    background-color: #f8f9fa;
    padding: 50px 0;
    width: 100%;
    max-width: 100vw;
}

.product-card-slider-section h2 {
    color: #2a5599;
    font-size: 1.7rem;
    margin-bottom: 30px;
    font-weight: bold;
    text-align: center;
}

.product-card-slider-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.product-card-slider {
    display: flex;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.product-card-slide {
    width: 100%;
    flex-shrink: 0;
    display: none;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    padding: 0;
}

.product-card-slide:first-child {
    display: block;
}

.product-image-section {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.product-image {
    width: 350px;
    height: 350px;
    overflow: hidden;
    border-radius: 0;
    position: relative;
    background-color: #fff;
    margin: 0 auto;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.color-button {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: #e5f2fc;
    color: #007bff;
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.color-button:hover {
    background-color: #d1e7f7;
}

.product-content-section {
    padding: 20px 15px;
    background-color: transparent;
    margin: 10px 0 0 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.title-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 8px 0;
}

.product-title {
    font-size: 18px;
    font-weight: bold;
    color: #2a5599;
    margin: 0;
    flex: 1;
}

.product-rating {
    color: #ffc107;
    font-size: 16px;
    margin: 0;
    text-align: right;
}

.product-description {
    font-size: 12px;
    color: #999;
    line-height: 1.3;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 47px; /* 3 lines * 1.3 line-height * 12px font-size */
}

.produk-section h2 {
    color: #2a5599;
    font-size: 1.7rem;
    margin-bottom: 50px;
    font-weight: bold;
}
.pt-3 {
    padding-top: 1rem !important;
    color: #2a5599 !important;
}
.produk-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.produk-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 0;
    width: 260px;
    text-align: center;
    transition: box-shadow 0.2s;
    overflow: hidden;
}

.produk-item .img-group {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
    border-radius: 16px 16px 0 0;
}

.produk-item .img-group img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 16px 16px 0 0;
}

.produk-item .text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 77, 94, 0.4));
    padding: 20px 10px 10px 10px;
    z-index: 2;
    transition: background 0.3s ease;
}

.produk-item .text-overlay h5 {
    color: #fff;
    margin: 0;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
    font-size: 1rem;
    text-align: center;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.produk-item h4 {
    font-size: 1.05rem;
    font-weight: bold;
    margin-bottom: 4px;
}

/* Styling untuk container produk dan teks title */

/* Styling untuk link produk */
.produk-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.produk-link:hover {
    transform: translateY(-4px);
    text-decoration: none;
    color: inherit;
}

.produk-link:hover .produk-item {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.produk-link:hover .produk-item .img-group img {
    transform: scale(1.05);
}

.produk-link:hover .produk-item .text-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.produk-link:hover .produk-item .text-overlay h5 {
    transform: translateY(-2px);
}

/* Styling untuk produk list h5 sudah dipindah ke text-overlay */

/* ================= AKSESORIS ================= */
.aksesoris-section {
    background: #ffffff;
    padding: 100px 0;
    text-align: center;
    width: 100%;
    max-width: 100vw;
}

.aksesoris-section h2 {
    color: #2a5599;
    font-size: 1.7rem;
    margin-bottom: 32px;
    font-weight: bold;
}

.aksesoris-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

.aksesoris-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 0;
    width: 340px;
    text-align: center;
    transition: box-shadow 0.2s;
    overflow: hidden;
}

.aksesoris-item .img-group {
    width: 100%;
    height: 340px;
    overflow: hidden;
    position: relative;
}

.aksesoris-item .img-group img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.aksesoris-item .text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 77, 94, 0.4));
    padding: 20px 10px 10px 10px;
    z-index: 2;
    transition: background 0.3s ease;
}

.aksesoris-item .text-overlay h5 {
    color: #fff;
    margin: 0;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
    font-size: 1rem;
    text-align: center;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.aksesoris-item h4 {
    font-size: 1.05rem;
    font-weight: bold;
    margin-bottom: 4px;
}

/* Styling untuk link aksesoris */
.aksesoris-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aksesoris-link:hover {
    transform: translateY(-4px);
    text-decoration: none;
    color: inherit;
}

.aksesoris-link:hover .aksesoris-item {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.aksesoris-link:hover .aksesoris-item .img-group img {
    transform: scale(1.05);
}

.aksesoris-link:hover .aksesoris-item .text-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.aksesoris-link:hover .aksesoris-item .text-overlay h5 {
    transform: translateY(-2px);
}

/* Styling untuk aksesoris list h5 sudah dipindah ke text-overlay */

/* ================= FOOTER ================= */
.footer-section {
    background: #003350;
    color: #ffffff;
    padding: 60px 0 20px 0;
    font-size: 0.98rem;
    width: 100%;
    max-width: 100vw;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

/* Kolom 1: Logo dengan lebar yang disesuaikan */
.footer-logo-column {
    flex: 0 0 auto;
    max-width: 180px;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Kolom 2: About Us - diperlebar */
.footer-about-column {
    flex: 1.8;
    min-width: 250px;
    position: relative;
    padding-left: 30px;
    padding-top: 5px;
}

/* Kolom 3: Jam Kerja */
.footer-hours-column {
    flex: 1;
    min-width: 180px;
    position: relative;
    padding-top: 5px;
}

/* Kolom 4: Lokasi Kami */
.footer-location-column {
    flex: 1;
    min-width: 180px;
    position: relative;
    padding-top: 5px;
}

.footer-logo img {
    height: 24px;
    margin-bottom: 20px;
    max-width: 100%;
    width: auto;
}

/* Styling khusus untuk logo - center */
.footer-logo-column .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.footer-logo-column .footer-logo img {
    max-width: 100%;
    height: auto;
    max-height: 95px;
    filter: brightness(0) saturate(100%) invert(60%) sepia(25%) saturate(600%)
        hue-rotate(185deg) brightness(0.9);
    display: block;
    margin: 0 auto;
}

.logo-jak {
    font-weight: 700;
    color: #00e0d6;
}

/* Checkmark Icon */
.footer-checkmark {
    position: absolute;
    top: -8px;
    right: 0;
    margin-bottom: 10px;
    z-index: 1;
}

.footer-about-column .footer-checkmark {
    top: -8px;
    right: auto;
    left: 0;
}

.footer-hours-column .footer-checkmark,
.footer-location-column .footer-checkmark {
    top: -8px;
    right: 0;
    left: auto;
}

.footer-about {
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 0.9rem;
    padding-top: 0;
    margin-top: 0;
}

.footer-section-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
    margin-top: 0;
    color: #ffffff;
    padding-top: 0;
}

.title-line {
    width: 15px;
    height: 2px;
    background: #1f456c;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #759eb5;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.88rem;
}

.footer-links a:hover {
    color: #00e0d6;
}

.footer-info {
    color: #ffffff;
    line-height: 1.8;
    font-size: 0.9rem;
}

/* WhatsApp Section */
.footer-whatsapp {
    margin-top: 8px;
}

.whatsapp-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.whatsapp-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateX(4px);
}

.whatsapp-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.whatsapp-number {
    color: #759eb5;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
}

.whatsapp-text {
    color: #9baab1;
    font-size: 0.8rem;
    line-height: 1.2;
}

/* WhatsApp Mobile Container - Hidden by default, shown only on mobile */
.whatsapp-mobile-container {
    display: none;
    margin-top: 12px;
    align-items: center;
    gap: 12px;
}

.whatsapp-logo-mobile {
    flex-shrink: 0;
}

.wa-logo-mobile {
    width: 40px;
    height: auto;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.wa-logo-mobile:hover {
    transform: scale(1.05);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 24px 0 16px 0;
}

.footer-section .copyright {
    text-align: center;
    color: #888888;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-section {
        padding: 40px 0 20px 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-logo-column,
    .footer-about-column,
    .footer-hours-column,
    .footer-location-column {
        flex: 1;
        min-width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-top: 0;
    }

    /* Logo dan text rata kiri di mode HP */
    .footer-logo-column {
        justify-content: flex-start;
        text-align: left;
    }

    .footer-logo-column .footer-logo {
        justify-content: flex-start;
        text-align: left;
    }

    .footer-logo-column .footer-logo img {
        margin: 0;
    }

    .footer-about-column {
        padding-left: 0;
        text-align: left;
    }

    .footer-about {
        text-align: left;
    }

    .footer-hours-column {
        text-align: left;
    }

    .footer-location-column {
        text-align: left;
    }

    .footer-section-title {
        text-align: left;
    }

    .footer-info {
        text-align: left;
    }

    .footer-checkmark {
        position: relative;
        top: 0;
        right: auto;
        left: 0;
        margin-bottom: 10px;
        display: inline-block;
    }

    .footer-hours-column .footer-checkmark,
    .footer-location-column .footer-checkmark {
        left: 0;
        right: auto;
    }
}

@media (max-width: 575px) {
    .footer-section {
        padding: 30px 0 15px 0;
    }

    .footer-about,
    .footer-info {
        font-size: 0.85rem;
    }

    .footer-section-title {
        font-size: 1rem;
    }

    .footer-checkmark svg {
        width: 18px;
        height: 18px;
    }
}

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

/* Large Monitor (min-width: 1200px) */
@media (min-width: 1200px) {
    .footer-content {
        max-width: 1400px;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Laptop (1024px - 1440px) */
@media (min-width: 992px) and (max-width: 1440px) {
    .hero-swiper {
        height: 500px !important;
    }

    .hero-section .hero-text {
        max-width: 450px !important;
    }

    .hero-section .hero-text h1 {
        font-size: 38px !important;
        line-height: 1.2 !important;
    }

    .hero-section .hero-text p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    .hero-section .hero-content {
        padding: 60px 0 0 0 !important;
    }

    .layanan-section {
        padding: 100px 0 70px 0;
    }

    .layanan-section h2 {
        margin-bottom: 60px;
    }
}

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .header-navbar {
        padding: 0;
    }

    .hero-section .hero-content {
        padding: 0;
    }

    .detail-section .title {
        font-size: 2rem;
    }

    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .layanan-section,
    .produk-section,
    .aksesoris-section {
        padding: 50px 0;
    }

    .layanan-section {
        margin-top: 25px;
    }

    .produk-section {
        margin-top: 20px;
    }

    .aksesoris-section {
        margin-top: 20px;
    }

    .layanan-section h2,
    .produk-section h2,
    .aksesoris-section h2 {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .layanan-list,
    .produk-list,
    .aksesoris-list {
        gap: 20px;
    }

    .layanan-item {
        padding: 32px 22px;
        min-height: 290px;
    }

    .layanan-item h3 {
        font-size: 1.1rem;
    }

    .layanan-item p {
        font-size: 0.88rem;
    }

    /* Responsive produk untuk tablet */
    .produk-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .produk-item {
        width: 100%;
        max-width: 200px;
        padding: 0;
    }

    .produk-item .img-group {
        height: 180px;
    }

    .produk-item .img-group img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .produk-list h5 {
        max-width: 200px;
        font-size: 0.9rem;
        text-align: center;
        margin-top: 12px;
        color: #2a5599;
        font-weight: 600;
    }

    .produk-link {
        max-width: 200px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        max-width: 100%;
        padding: 0;
    }

    .footer-column {
        min-width: auto;
    }

    /* Reset kolom logo untuk tablet */
    .footer-content .footer-column:first-child {
        flex: none;
        max-width: none;
        min-width: auto;
    }

    /* Reset lebar kolom untuk tablet */
    .footer-content .footer-column:nth-child(2),
    .footer-content .footer-column:nth-child(3),
    .footer-content .footer-column:nth-child(4),
    .footer-content .footer-column:last-child {
        flex: none;
        min-width: auto;
    }

    /* Reset padding About Us untuk tablet */
    .footer-about {
        padding-left: 0;
    }

    /* Reset alignment kolom Home untuk tablet */
    .footer-content .footer-column:last-child {
        text-align: left;
    }

    .footer-content .footer-column:last-child .footer-section-title {
        text-align: left;
    }

    .footer-content .footer-column:last-child .title-line {
        margin-left: 0;
        margin-right: auto;
    }

    .footer-content .footer-column:last-child .footer-links {
        align-items: flex-start;
    }

    .footer-content .footer-column:last-child .footer-whatsapp {
        align-items: flex-start;
    }
}

/* iPhone/Mobile (max-width: 600px) */
@media (max-width: 600px) {
    .header-navbar {
        flex-direction: row;
        height: 64px;
        padding: 0;
        align-items: center;
    }

    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .header-navbar .logo {
        font-size: 1.3rem;
    }

    .hero-section {
        padding: 0;
        margin-bottom: 15px;
    }

    .hero-section .hero-content {
        padding: 0;
    }

    .detail-section {
        padding: 32px 0 16px 0;
        height: 400px;
    }

    .detail-section .title {
        font-size: 1.8rem;
    }

    .produk-card .img-group {
        height: 150px;
    }

    .produk-card h5 {
        font-size: 0.9rem;
        margin: 8px 12px;
    }

    .layanan-section,
    .produk-section,
    .aksesoris-section {
        padding: 40px 0;
    }

    .layanan-section {
        margin-top: 20px;
    }

    .produk-section {
        margin-top: 15px;
    }

    .aksesoris-section {
        margin-top: 15px;
    }

    .layanan-section h2,
    .produk-section h2,
    .aksesoris-section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .layanan-list,
    .produk-list,
    .aksesoris-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .layanan-list {
        grid-template-columns: 1fr;
    }

    .layanan-item,
    .aksesoris-item {
        width: 90vw;
        max-width: 400px;
        min-height: 280px;
        padding: 35px 30px;
    }

    .layanan-item h3 {
        font-size: 1.2rem;
    }

    .layanan-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .layanan-item .icon {
        width: 65px;
        height: 65px;
        margin-bottom: 14px;
    }

    .produk-item {
        width: 95vw;
        max-width: 340px;
        padding: 0;
    }

    /* Responsive gambar produk untuk mobile */
    .produk-item .img-group {
        width: 100%;
        height: 240px;
        overflow: hidden;
        position: relative;
        border-radius: 16px 16px 0 0;
    }

    .produk-item .img-group img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        border-radius: 16px 16px 0 0;
    }

    /* Hover effect untuk mobile */
    .produk-link:hover .produk-item .img-group img {
        transform: scale(1.02);
    }

    .produk-list h5 {
        max-width: 95vw;
        font-size: 0.95rem;
        text-align: center;
        margin-top: 12px;
        color: #2a5599;
        font-weight: 600;
        line-height: 1.3;
    }

    .produk-link {
        max-width: 95vw;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }

    .footer-column {
        min-width: auto;
    }

    /* Reset kolom logo untuk mobile */
    .footer-content .footer-column:first-child {
        flex: none;
        max-width: none;
        min-width: auto;
    }

    /* Reset lebar kolom untuk mobile */
    .footer-content .footer-column:nth-child(2),
    .footer-content .footer-column:nth-child(3),
    .footer-content .footer-column:nth-child(4),
    .footer-content .footer-column:last-child {
        flex: none;
        min-width: auto;
    }

    /* Reset padding About Us untuk mobile */
    .footer-about {
        padding-left: 0;
    }

    /* Reset alignment kolom Home untuk mobile */
    .footer-content .footer-column:last-child {
        text-align: left;
    }

    .footer-content .footer-column:last-child .footer-section-title {
        text-align: left;
    }

    .footer-content .footer-column:last-child .title-line {
        margin-left: 0;
        margin-right: auto;
    }

    .footer-content .footer-column:last-child .footer-links {
        align-items: flex-start;
    }

    .footer-content .footer-column:last-child .footer-whatsapp {
        align-items: flex-start;
    }

    .whatsapp-number {
        font-size: 0.85rem;
    }

    .whatsapp-text {
        font-size: 0.75rem;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-logo img {
        max-height: 30px !important;
        height: 30px !important;
    }

    .footer-content .footer-column:first-child {
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }

    .footer-section-title {
        font-size: 1rem;
    }

    /* .footer-content .footer-column:last-child .footer-section-title {
        display: none;
    } */

    .whatsapp-mobile-container {
        display: flex;
    }

    .wa-logo-mobile {
        width: 35px;
    }

    .footer-section {
        font-size: 0.92rem;
        padding: 40px 0 16px 0;
    }
}

/* Medium Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .produk-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 10px;
    }

    .produk-item {
        width: 100%;
        max-width: none;
    }

    .produk-item .img-group {
        height: 200px;
        border-radius: 16px 16px 0 0;
    }

    .produk-item .img-group img {
        border-radius: 16px 16px 0 0;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .produk-card .img-group {
        height: 180px;
    }

    .produk-card h5 {
        font-size: 1rem;
        margin: 12px 16px;
    }

    /* Responsive gambar produk untuk layar sangat kecil */
    .produk-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 0 5px;
    }

    .produk-item {
        width: 100%;
        max-width: 300px;
    }

    .produk-item .img-group {
        height: 220px;
        border-radius: 16px 16px 0 0;
    }

    .produk-item .img-group img {
        border-radius: 16px 16px 0 0;
    }

    .produk-list h5 {
        font-size: 0.9rem;
        margin-top: 10px;
        padding: 0 8px;
    }
}

/* ========== MOBILE DROPDOWN ========== */
.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 0;
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
    transform: rotate(-90deg);
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: 8px;
    transform: rotate(-90deg);
    /* Awalnya mengarah ke kanan */
}

.dropdown-arrow.rotate {
    transform: rotate(0deg);
    /* Saat diklik mengarah ke bawah */
}

.mobile-dropdown-menu {
    display: none;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

.mobile-dropdown-menu.show {
    display: block;
}

.mobile-dropdown-item {
    border-bottom: 1px solid #003350;
}

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

.mobile-dropdown-item a {
    padding: 12px 16px !important;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8) !important;
    border-bottom: none !important;
    display: block;
    width: 100%;
}

.mobile-dropdown-item a:hover {
    color: #00e0d6 !important;
    background: rgba(255, 255, 255, 0.05);
}

/* Section produk detail */
.produk-detail {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.produk-detail .row {
    width: 100%;
    margin: 0;
}

.produk-detail .col-lg-5,
.produk-detail .col-lg-7 {
    width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
}

/* Section produk lainnya */
.mt-5 {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.mt-5 .row {
    width: 100%;
    margin: 0;
}

.mt-5 .col-lg-12 {
    width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
}

/* Text center untuk judul produk lainnya */
.text-center {
    width: 100%;
    max-width: 100%;
}

.mb-4 {
    width: 100%;
    max-width: 100%;
}

/* Produk Swiper Styles */

.produk-card {
    background: #702929;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 0;
    text-align: center;
    transition: box-shadow 0.2s;
    overflow: hidden;
    height: 100%;
    width: 100%;
    max-width: 100%;
}

.produk-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.produk-card .img-group {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.produk-card .img-group img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.produk-card .text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    z-index: 2;
    transition: background 0.3s ease;
}

.produk-card .text-overlay h6 {
    color: #fff;
    margin: 0;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
    text-align: center;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.produk-card:hover .img-group img {
    transform: scale(1.05);
}

.produk-card:hover .text-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.produk-card:hover .text-overlay h6 {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.produk-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 12px 16px;
    line-height: 1.3;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#tentang a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

#tentang a:hover {
    color: #00e0d6;
}

/* ================= HOME PAGE SPECIFIC STYLES ================= */
:root {
    --accent-1: #00a86b;
    --accent-2: #00d08b;
    --muted: #6b7280;
    --shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    --bg: #ffffff;
}

.produk-accordion-section {
    background: #f9fafb;
    padding: 60px 0;
    color: #0f172a;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.produk-accordion-section .accordion-wrapper {
    width: 100%;
    padding: 0 2%;
    max-width: 100%;
}

.produk-accordion-section .title {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #2a5599;
}

.produk-accordion-section .accordion {
    display: grid;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.produk-accordion-section .acc-item {
    background: var(--bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.2s ease;
    scroll-behavior: auto;
}

.produk-accordion-section .acc-item:hover {
    transform: translateY(-2px);
}

.produk-accordion-section .acc-trigger {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: #2a5599;
    transition: background 0.3s ease;
    outline: none;
    text-decoration: none;
}

/* Judul kategori accordion menggunakan warna yang sama */
.produk-accordion-section .acc-trigger span {
    color: #2a5599;
}

.produk-accordion-section .acc-trigger:focus {
    outline: none;
    box-shadow: none;
}

.produk-accordion-section .acc-trigger:active {
    transform: none;
}

.produk-accordion-section .acc-trigger {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Prevent scroll behavior */
.produk-accordion-section {
    scroll-behavior: auto;
}

.produk-accordion-section .acc-item {
    scroll-margin-top: 0;
}

.produk-accordion-section .acc-trigger {
    scroll-margin-top: 0;
    position: relative;
    z-index: 1;
}

/* Prevent button from causing scroll */
.produk-accordion-section .acc-trigger[type="button"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Prevent scroll to element */
.produk-accordion-section .acc-trigger:target {
    scroll-margin-top: 0;
}

/* Prevent focus scroll */
.produk-accordion-section .acc-trigger:focus {
    scroll-margin-top: 0;
}

/* Prevent click scroll */
.produk-accordion-section .acc-trigger:active {
    scroll-margin-top: 0;
}

/* Prevent scroll to element completely */
.produk-accordion-section .acc-trigger {
    scroll-margin-top: 0 !important;
    scroll-margin-bottom: 0 !important;
    scroll-margin-left: 0 !important;
    scroll-margin-right: 0 !important;
}

/* Prevent scroll behavior on accordion */
.produk-accordion-section .acc-trigger {
    scroll-behavior: auto !important;
}

.produk-accordion-section .acc-trigger:hover {
    background: rgba(0, 168, 107, 0.05);
}

/* Prevent any scroll behavior on accordion section */
.produk-accordion-section {
    scroll-behavior: auto !important;
    scroll-margin-top: 0 !important;
    scroll-margin-bottom: 0 !important;
}

/* Prevent scroll to accordion elements */
.produk-accordion-section * {
    scroll-margin-top: 0 !important;
    scroll-margin-bottom: 0 !important;
    scroll-margin-left: 0 !important;
    scroll-margin-right: 0 !important;
}

/* Prevent focus scroll on accordion buttons */
.produk-accordion-section .acc-trigger:focus {
    scroll-margin-top: 0 !important;
    scroll-margin-bottom: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Prevent click scroll on accordion buttons */
.produk-accordion-section .acc-trigger:active {
    scroll-margin-top: 0 !important;
    scroll-margin-bottom: 0 !important;
    transform: none !important;
}

/* Prevent any anchor behavior */
.produk-accordion-section .acc-trigger {
    text-decoration: none !important;
    color: inherit !important;
}

/* Prevent scroll to accordion when clicked */
.produk-accordion-section .acc-trigger[onclick] {
    scroll-margin-top: 0 !important;
    scroll-margin-bottom: 0 !important;
}

/* Prevent scroll behavior on body and html when accordion is clicked */
body.accordion-clicked {
    scroll-behavior: auto !important;
}

html.accordion-clicked {
    scroll-behavior: auto !important;
}

/* Prevent any smooth scrolling when accordion is active */
.produk-accordion-section.active {
    scroll-behavior: auto !important;
}

.produk-accordion-section.active * {
    scroll-behavior: auto !important;
}

/* Global scroll prevention when accordion is clicked */
body.accordion-clicked,
html.accordion-clicked {
    scroll-behavior: auto !important;
    scroll-margin-top: 0 !important;
    scroll-margin-bottom: 0 !important;
}

/* Prevent any smooth scrolling globally */
body.accordion-clicked *,
html.accordion-clicked * {
    scroll-behavior: auto !important;
    scroll-margin-top: 0 !important;
    scroll-margin-bottom: 0 !important;
}

/* Prevent scroll to any element when accordion is active */
.produk-accordion-section.active * {
    scroll-margin-top: 0 !important;
    scroll-margin-bottom: 0 !important;
    scroll-margin-left: 0 !important;
    scroll-margin-right: 0 !important;
}

.produk-accordion-section .chev {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.produk-accordion-section .acc-item[aria-expanded="true"] .chev {
    transform: rotate(180deg);
}

/* Pastikan chevron berputar */
.produk-accordion-section .acc-item[aria-expanded="true"] .chev {
    transform: rotate(180deg) !important;
}

.produk-accordion-section .acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
    margin: 0 -2%;
    width: calc(100% + 4%);
}

.produk-accordion-section .acc-panel.open {
    padding: 20px 24px;
    margin: 0 -2%;
    width: calc(100% + 4%);
}

/* Pastikan accordion bisa dibuka */
.produk-accordion-section .acc-item[aria-expanded="true"] .acc-panel {
    max-height: 1000px !important;
    padding: 20px 24px !important;
    margin: 0 -2% !important;
    width: calc(100% + 4%) !important;
}

.produk-accordion-section .acc-body {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
    width: 100%;
}

.produk-accordion-section .acc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Kartu Grid - Responsive untuk HP */
.produk-accordion-section .kartu-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 100%;
}

/* Semua grid menggunakan styling yang sama */
.produk-accordion-section .acc-grid.kartu-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 100%;
}

.produk-accordion-section .kartu-section {
    background: var(--bg);
    margin: 0 -2%;
    width: calc(100% + 4%);
}

.produk-accordion-section .kartu-section .acc-trigger {
    background: none;
    color: #2a5599;
}

.produk-accordion-section .kartu-section .acc-trigger span {
    color: #2a5599;
}

.produk-accordion-section .kartu-section .acc-trigger:hover {
    background: rgba(0, 168, 107, 0.05);
}

.produk-accordion-section .kartu-section .acc-panel {
    background: #f8f9fa;
    color: #0f172a;
    margin: 0 -2%;
    width: calc(100% + 4%);
}

/* Semua accordion panel full width */
.produk-accordion-section .acc-item .acc-panel {
    margin: 0 -2%;
    width: calc(100% + 4%);
}

.produk-accordion-section .acc-item .acc-panel.open {
    margin: 0 -2%;
    width: calc(100% + 4%);
}

/* Semua accordion item full width */
.produk-accordion-section .acc-item {
    margin: 0 -2%;
    width: calc(100% + 4%);
}

/* Semua accordion trigger full width */
.produk-accordion-section .acc-trigger {
    width: 100%;
}

/* Full width untuk semua elemen accordion */
.produk-accordion-section * {
    box-sizing: border-box;
}

/* Memastikan accordion section benar-benar full width */
.produk-accordion-section.d-md-none {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    left: 0;
    right: 0;
}

.produk-accordion-section .card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.produk-accordion-section .card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.produk-accordion-section .card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0;
    text-align: center;
    background: white;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    aspect-ratio: 1;
    overflow: hidden;
}

.produk-accordion-section .card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.produk-accordion-section .card-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produk-accordion-section .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.produk-accordion-section .card-title {
    font-weight: 600;
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.2;
    color: #2a5599;
    text-align: center;
    display: block;
}

.produk-accordion-section .card-desc {
    font-size: 9px;
    color: var(--muted);
    display: none;
}

/* Responsive untuk Produk Accordion */
@media (max-width: 1200px) {
    .produk-accordion-section .kartu-grid,
    .produk-accordion-section .acc-grid.kartu-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .produk-accordion-section .kartu-grid,
    .produk-accordion-section .acc-grid.kartu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .produk-accordion-section .kartu-grid,
    .produk-accordion-section .acc-grid.kartu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        width: 100%;
        max-width: 100%;
    }

    .produk-accordion-section .card {
        aspect-ratio: 1;
        width: 100%;
        height: auto;
    }

    .produk-accordion-section .card-image {
        width: 100%;
        height: 100%;
        aspect-ratio: 1;
    }
}

@media (max-width: 600px) {
    .produk-accordion-section .kartu-grid,
    .produk-accordion-section .acc-grid.kartu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
        width: 100%;
        max-width: 100%;
    }

    .produk-accordion-section .card {
        aspect-ratio: 1;
        width: 100%;
        height: auto;
    }

    .produk-accordion-section .card-image {
        width: 100%;
        height: 100%;
        aspect-ratio: 1;
    }
}

@media (max-width: 480px) {
    .produk-accordion-section {
        padding: 40px 10px;
    }

    .produk-accordion-section .title {
        font-size: 22px;
        margin-bottom: 30px;
        color: #2a5599;
    }

    .produk-accordion-section .acc-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .produk-accordion-section .kartu-grid,
    .produk-accordion-section .acc-grid.kartu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
        width: 100%;
        max-width: 100%;
    }

    .produk-accordion-section .card {
        padding: 0;
        aspect-ratio: 1;
        width: 100%;
        height: auto;
    }

    .produk-accordion-section .card-image {
        width: 100%;
        height: 100%;
        aspect-ratio: 1;
    }

    .produk-accordion-section .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .produk-accordion-section .card-title {
        font-size: 15px;
        margin-top: 4px;
    }

    .produk-accordion-section .kartu-section .acc-trigger-static {
        padding: 16px 20px;
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .produk-accordion-section .kartu-grid,
    .produk-accordion-section .acc-grid.kartu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        width: 100%;
        max-width: 100%;
    }

    .produk-accordion-section .card {
        aspect-ratio: 1;
        width: 100%;
        height: auto;
    }

    .produk-accordion-section .card-image {
        width: 100%;
        height: 100%;
        aspect-ratio: 1;
    }

    .produk-accordion-section .card-title {
        font-size: 10px;
        margin-top: 5px;
    }
}

@media (max-width: 320px) {
    .produk-accordion-section .kartu-grid,
    .produk-accordion-section .acc-grid.kartu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
        width: 100%;
        max-width: 100%;
    }

    .produk-accordion-section .card {
        aspect-ratio: 1;
        width: 100%;
        height: auto;
    }

    .produk-accordion-section .card-image {
        width: 100%;
        height: 100%;
        aspect-ratio: 1;
    }

    .produk-accordion-section .card-title {
        font-size: 9px;
        margin-top: 4px;
    }
}
