        body {
            font-family: 'Poppins', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        :root {
            --boc-base: rgba(33, 111, 160, 1);
            --boc-base-light: rgba(33, 111, 160, 0.4);
            /* Untuk overlay */
        }

        .boc-footer {
            background-color: #097650;
            color: #ffffff;
            font-family: 'Poppins', sans-serif;
            padding: 4rem 0 2rem 0;
        }

        .footer-container {
            max-width: 80rem;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        .footer-heading {
            font-weight: 700;
            font-size: 1.125rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .mt-custom {
            margin-top: 1.5rem;
        }
        .brand-col {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-logo {
            height: 4rem;
            width: auto;
            filter: brightness(0) invert(1);
            align-self: flex-start;
        }
        .footer-desc {
            font-size: 0.875rem;
            line-height: 1.625;
            color: #e5e7eb;
            text-align: justify;
        }
        .social-links {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 0.5rem;
        }
        .social-icon {
            width: 2.5rem;
            height: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.05);
            color: #ffffff;
            font-size: 1.25rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .social-icon:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        .footer-link {
            font-size: 0.875rem;
            color: #e5e7eb;
            text-decoration: none;
            transition: color 0.3s ease;
            line-height: 1.625;
            display: block;
        }
        .footer-link:hover {
            color: #ffffff;
        }
        .address-link {
            margin-bottom: 1rem;
        }
        .footer-subtext {
            font-size: 0.75rem;
            color: #d1d5db;
            margin-top: 0.25rem;
            text-transform: uppercase;
            letter-spacing: -0.025em;
        }
        .footer-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-list a {
            font-size: 0.875rem;
            color: #e5e7eb;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-list a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        .subscribe-form {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .form-input {
            width: 100%;
            background-color: #f3f4f6;
            color: #374151;
            padding: 0.875rem 1rem;
            border-radius: 0.5rem;
            border: 2px solid transparent;
            outline: none;
            font-family: inherit;
            font-size: 0.875rem;
            transition: border-color 0.3s ease;
        }
        .form-input:focus {
            border-color: #34d399;
        }
        .submit-btn {
            width: 100%;
            background-color: #2da1d9;
            color: #ffffff;
            font-weight: 700;
            padding: 0.875rem 1rem;
            border-radius: 0.75rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease, transform 0.1s ease;
            font-family: inherit;
            font-size: 0.875rem;
        }
        .submit-btn:hover {
            background-color: #258ab8;
        }
        .submit-btn:active {
            transform: scale(0.95);
        }
        .footer-bottom {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.75rem;
            font-weight: 600;
            color: #d1d5db;
            text-align: center;
        }
        .icon-link {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }
        .icon-link i {
            margin-top: 0.25rem;
            font-size: 1rem;
            color: #34d399;
        }
        .icon-link span {
            flex: 1;
        }
        /* Tablet & Layar Menengah */
        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-bottom {
                text-align: left;
            }
        }

        /* Laptop & Desktop / Monitor Ultrawide */
        @media (min-width: 1024px) {
            .footer-container {
                padding: 0 2.5rem;
            }

            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Smooth Mega Menu Transition */
        .mega-menu {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-5px);
        }

        .group:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .hero-slide {
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
        }

        .hero-section-container {
            position: relative;
            z-index: 1;
        }

        .slide-forced-full {
            background-size: 100% 100%;
        }

        /* Panggil Gambar melalui CSS */
        .slide-1 {
            background-image: url('../lp-bg-herosection3.webp');
        }

        .slide-2 {
            background-image: url('../lp-bg-pesisirpantai2.webp');
        }

        .slide-3 {
            background-image: url('../lp-bg-transparan.webp');
        }

        .heroSwiper {
            width: 100%;
            height: 100vh;
            cursor: grab;
        }

        /* Custom Pagination Bullets */
        .heroSwiper .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: #ffffff;
            opacity: 0.5;
            margin: 0 !important;
            transition: 0.3s ease;
        }

        .heroSwiper .swiper-pagination-bullet-active {
            opacity: 1;
            background: var(--boc-base) !important;
            border: 2px solid white;
            transform: scale(1.4);
        }

        .overlay-boc {
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg,
                    rgba(14, 17, 19, 0.7) 0%,
                    rgba(33, 111, 160, 0.1) 60%,
                    transparent 100%);
            z-index: 5;
            pointer-events: none;
        }

        .heroSwiper:active {
            cursor: grabbing;
        }

        .vertical-stroke {
            height: auto;
            width: 2px;
            background-color: white;
            align-self: stretch;
        }

        .relative.z-10 {
            pointer-events: none;
            /* Layout teks tidak menangkap klik */
        }

        button,
        .swiper-pagination {
            pointer-events: auto;
        }

        /* Shadow Button Slide 1 */
        button {
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        }

        .heroSwiper .swiper-pagination {
            right: 40px !important;
            left: auto !important;
            top: 65% !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 12px;
        }

        /* --- Tablet & Laptop Kecil (max-width: 1024px) --- */
        @media (max-width: 1024px) {
            .heroSwiper .swiper-pagination {
                right: 25px !important;
            }
        }
        /* --- Mobile / Smartphone (max-width: 768px) --- */
        @media (max-width: 768px) {
            .hero-slide, 
            .heroSwiper {
                height: 100vh; 
                height: 100dvh; 
            }
            .heroSwiper .swiper-pagination {
                right: 15px !important;
                top: 50% !important; 
                transform: translateY(-50%); 
                gap: 8px; 
            }
            .heroSwiper .swiper-pagination-bullet {
                width: 8px;
                height: 8px;
            }
            .overlay-boc {
                background: linear-gradient(180deg, 
                        rgba(14, 17, 19, 0.3) 0%, 
                        rgba(14, 17, 19, 0.7) 60%, 
                        rgba(14, 17, 19, 0.95) 100%);
            }
        }

        /* settingan konten problem-topik */
        .section-container {
            width: 100%;
            padding: 80px 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Wrapper Konten */
        .trouble-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 40px;
            padding-left: 21px;
            padding-right: 21px;
            width: 100%;
        }

        .image-content {
            width: 390px;
            height: auto;
        }

        /* Styling Teks */
        .text-content {
            display: flex;
            flex-direction: column;
            color: white;
            max-width: 500px;
            text-align: center;
        }

        .title-primary {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .title-secondary {
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .desc-text {
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.6;
            text-align: justify;
            margin-bottom: 30px;
        }

        /* Styling Tombol */
        .btn-learn-more {
            width: 174px;
            height: 32px;
            background-color: #216FA0;
            color: white;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
            transition: all 0.3s ease;
            margin: 0 auto;
        }

        .btn-learn-more:hover {
            background-color: #1a5a82;
            transform: translateY(-2px);
        }

        /* Styling Gambar */
        .img-trouble {
            width: 100%;
            max-width: 720px;
            height: auto;
            border-radius: 15px;
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        /* --- MEDIA QUERY: DESKTOP (Layar Lebar) --- */
        @media (min-width: 1024px) {
            .trouble-wrapper {
                flex-direction: row;
                gap: 80px;
            }

            .text-content {
                text-align: left;
            }

            .btn-learn-more {
                margin: 0;
            }

            .img-trouble {
                width: 720px;
                height: 579px;
            }
        }

        /* --- Solution Section Styling --- */
        .solution-section {
            width: 100%;
            background-color: rgba(6, 75, 61, 1);
            padding: 100px 0;
            position: relative;
            display: flex;
            z-index: 10;
            justify-content: center;
            align-items: center;
            box-shadow: 0 25px 30px -15px rgba(0, 0, 0, 0.6);
        }

        .solution-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 60px;
            padding: 0 21px;
            width: 100%;
            max-width: 1280px;
        }

        /* --- Image Stacking (Sisi Kiri) --- */
        .image-stack-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 450px;
            display: flex;
            justify-content: center;
        }

        .img-box {
            position: absolute;
            width: 280px;
            height: 320px;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            background: #ccc;
        }

        .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Posisi Kotak 1 */
        .box-1 {
            top: 0;
            left: -2%;
            z-index: 2;
        }

        /* Posisi Kotak 2 (Bertumpuk di bawah sedikit) */
        .box-2 {
            bottom: 0;
            right: -10%;
            z-index: 1;
        }

        /* --- Text Content Styling (Sisi Kanan) --- */
        .solution-text-content {
            color: white;
            max-width: 600px;
            text-align: left;
        }

        .sol-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .sol-subtitle {
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 25px;
            text-transform: uppercase;
        }

        .sol-description {
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* --- List & Hover Effect --- */
        .sol-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .list-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        /* Effect Hover pada Baris List */
        .list-item:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateX(10px);
        }

        .check-icon {
            color: #4ade80;
            font-weight: bold;
        }

        .list-text {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        /* --- MEDIA QUERY: DESKTOP --- */
        @media (min-width: 1024px) {
            .solution-wrapper {
                flex-direction: row;
                justify-content: space-between;
            }

            .image-stack-container {
                width: 50%;
                height: 500px;
            }

            .img-box {
                width: 320px;
                height: 380px;
            }

            .solution-text-content {
                width: 50%;
                padding-left: 40px;
            }
        }

        /* --- MEDIA QUERY: MOBILE FIX --- */
        @media (max-width: 768px) {
            .sol-title {
                font-size: 2.5rem;
            }

            .image-stack-container {
                height: 400px;
            }

            .img-box {
                width: 220px;
                height: 280px;
            }

            .box-1 {
                top: 0;
                left: 10%;
                z-index: 2;
            }

            /* Posisi Kotak 2 (Bertumpuk di bawah sedikit) */
            .box-2 {
                bottom: 0;
                right: 10%;
                z-index: 1;
            }
        }

        /* --- Section Why BOC --- */
        .why-section {
            position: relative;
            width: 100%;
            min-height: 800px;
            background-image: url('../lp-bg02.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            padding: 100px 21px;
            z-index: 1;
        }

        /* Wrapper untuk mengatur posisi card */
        .why-wrapper {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
        }

        /* --- Styling Card --- */
        .why-card {
            background-color: rgba(35, 70, 73, 1);
            border-radius: 13px;
            padding: 50px 40px;
            width: 100%;
            max-width: 550px;
            color: white;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            transform: translateX(-57%);
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* Baris 1: Judul */
        .why-title {
            font-size: 1.8rem;
            font-weight: 800;
            text-transform: uppercase;
            text-align: center;
            letter-spacing: 1px;
            margin: 0;
        }

        /* Baris 2: Deskripsi */
        .why-desc {
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.6;
            text-align: justify;
            margin: 0;
            opacity: 0.95;
        }

        /* Baris 3: List & Hover Effect */
        .why-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .why-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 10px;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        /* Interaktif Hover pada list */
        .why-item:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateX(8px);
        }

        .why-check {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .why-text {
            font-size: 1rem;
            font-weight: 500;
        }

        /* --- Garis Pemisah (Divider) Bawah --- */
        .why-divider {
            position: absolute;
            bottom: -14px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            max-width: 800px;
            height: 1px;
            background-color: rgba(255, 255, 255, 0.6);
            /* Garis putih dengan sedikit transparansi */
        }

        /* --- MEDIA QUERY: MOBILE FIX --- */
        @media (max-width: 768px) {
            .why-section {
                padding: 60px 21px;
                min-height: 600px;
            }

            .why-card {
                padding: 40px 25px;
                transform: translateX(0);
                max-width: 100%;
            }

            .why-title {
                font-size: 1.5rem;
            }

            .why-divider {
                width: 85%;
                bottom: 20px;
            }
        }

        /* --- Section Explore BOC --- */
        .explore-section {
            position: relative;
            width: 100%;
            padding: 80px 0;
            color: white;
        }

        /* --- Header Styling --- */
        .explore-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto 60px auto;
            padding: 0 21px;
        }

        .explore-logo-wrapper {
            flex-shrink: 0;
        }

        .explore-logo {
            width: 150px;
            height: auto;
            object-fit: contain;
        }

        .explore-text-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .explore-title {
            font-size: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            text-align: center;
            justify-content: center;
            margin: 0;
        }

        .explore-desc {
            font-size: 0.85rem;
            font-weight: 400;
            text-align: center;
            line-height: 1.6;
            text-transform: uppercase;
            opacity: 0.9;
        }

        /* --- Grid Styling --- */
        .explore-grid {
            display: grid;
            grid-template-columns: 1fr;
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
        }

        /* --- Card Styling --- */
        .explore-card {
            position: relative;
            width: 100%;
            height: 350px;
            overflow: hidden;
            cursor: pointer;
        }

        .card-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            transition: transform 0.5s ease;
        }

        /* Muka Konten (Front) */
        .card-front {
            position: absolute;
            inset: 0;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.2);
            transition: opacity 0.4s ease;
        }

        .card-heading {
            font-size: 1.5rem;
            font-weight: 800;
            text-transform: uppercase;
            text-align: center;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        }

        /* Konten Deskripsi (Back - Hidden by Default) */
        .card-back {
            position: absolute;
            inset: 0;
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.8);
            padding: 30px;
            text-align: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .card-heading-back {
            font-size: 1.2rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .card-desc {
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .card-link {
            font-size: 0.9rem;
            font-weight: 600;
            color: white;
            text-decoration: underline;
            text-underline-offset: 4px;
            transition: color 0.3s;
        }

        .card-link:hover {
            color: #4ade80;
        }

        /* --- INTERACTIVE STATE (Saat diklik/Active) --- */
        .explore-card.active .card-back {
            opacity: 1;
            visibility: visible;
        }

        .explore-card.active .card-front {
            opacity: 0;
            visibility: hidden;
        }

        .explore-card.active .card-bg {
            transform: scale(1.1);
        }

        .explore-divider {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            max-width: 800px;
            height: 1px;
            background-color: rgba(255, 255, 255, 0.6);
        }

        /* --- MEDIA QUERY: DESKTOP --- */
        @media (min-width: 1024px) {
            .explore-header {
                flex-direction: row;
                justify-content: center;
                gap: 60px;
                padding: 0 40px;
            }

            .explore-logo-wrapper {
                width: 20%;
                display: flex;
                justify-content: flex-end;
            }

            .explore-text-wrapper {
                width: 60%;
            }

            .explore-title {
                text-align: left;
            }

            .explore-desc {
                text-align: center;
            }

            .explore-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* --- Section Artikel Content --- */
        .artikel-section {
            position: relative;
            width: 100%;
            padding: 80px 21px 120px 21px;
            color: white;
        }

        /* --- Header --- */
        .artikel-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .artikel-title {
            font-size: 2.5rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .artikel-subtitle {
            font-size: 1.1rem;
            font-weight: 400;
            margin: 0;
        }

        /* --- Layout Utama --- */
        .artikel-layout {
            display: flex;
            flex-direction: column;
            gap: 40px;
            max-width: 1600px;
            margin: 0 auto;
            align-items: stretch;
        }

        /* --- Sisi Kiri: Static Card --- */
        .artikel-static-card {
            background-color: rgba(217, 217, 217, 1);
            border-radius: 9px;
            padding: 40px;
            color: #333;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .static-card-title {
            font-size: 1.4rem;
            font-weight: 800;
            text-transform: capitalize;
            margin-bottom: 20px;
            transform: translateY(-90px);
            line-height: 1.3;
        }

        .static-card-desc {
            font-size: 0.95rem;
            font-weight: 400;
            text-align: justify;
            line-height: 1.6;
            transform: translateY(-60px);
        }

        /* --- Sisi Kanan: Slider Wrapper --- */
        .artikel-slider-wrapper {
            display: flex;
            align-items: center;
            width: 100%;
            min-width: 0;
        }

        /* --- Card Artikel dalam Slider --- */
        .custom-slide-width {
            padding-right: 20px;
            box-sizing: border-box;
            height: auto;
        }

        /* --- Desain Murni Card Artikel --- */
        .artikel-card {
            background-color: rgba(217, 217, 217, 1);
            border-radius: 9px;
            padding: 20px;
            color: #333;
            display: flex;
            flex-direction: column;
            width: 350px;
            height: auto;
        }


        .artikel-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 6px;
            background-color: #999;
            margin-bottom: 20px;
        }

        .artikel-card-title {
            font-size: 1rem;
            font-weight: 800;
            text-align: left;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .artikel-card-desc {
            font-size: 0.65rem;
            font-weight: 400;
            text-align: justify;
            line-height: 1.5;
        }

        /* --- Arrows (Tombol Navigasi) --- */
        .slider-arrow {
            width: 30px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.15);
            border-radius: 6px;
            cursor: pointer;
            opacity: 0.4;
            transition: opacity 0.3s ease, background-color 0.3s ease;
            flex-shrink: 0;
        }

        .slider-arrow:hover {
            opacity: 1;
            background-color: rgba(255, 255, 255, 0.3);
        }

        .slider-arrow svg {
            width: 20px;
            height: 20px;
            color: white;
        }

        /* --- Garis Pemisah --- */
        .artikel-divider {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            max-width: 800px;
            height: 1px;
            background-color: rgba(255, 255, 255, 0.6);
        }

        /* --- MEDIA QUERY: DESKTOP --- */
        @media (min-width: 1024px) {
            .artikel-layout {
                flex-direction: row;
            }

            .artikel-static-card {
                width: 29%;
                flex-shrink: 0;
            }

            .artikel-slider-wrapper {
                width: 68%;
            }

            .custom-slide-width {
                width: 350px !important;
            }
        }

        @media (max-width: 768px) {
            .static-card-title {
                transform: translateY(0px);
            }
            .artikel-title {
            font-size: 1rem;
            }

            .artikel-subtitle {
                font-size: 0.7rem;;
            }
            .artikel-slider-wrapper {
                width: 100%;
            }
            .static-card-desc {
                transform: translateY(0px);
            }
            .custom-slide-width {
                width: 180px !important;
            }
            .artikel-card {
             width: 215px;
             height: auto;
            }
            .swiper-slide{
                gap: 15px;
            }
            .slider-arrow {
            width: 20px;
            height: 60px;
            }
        }
        @media (max-width: 320px) {
            .static-card-title {
                transform: translateY(0px);
            }
            .artikel-title {
            font-size: 1rem;
            }

            .artikel-subtitle {
                font-size: 0.7rem;;
            }
            .artikel-slider-wrapper {
                width: 100%;
            }
            .static-card-desc {
                transform: translateY(0px);
            }
            .custom-slide-width {
                width: 180px !important;
            }
            .artikel-card {
             width: 200px;
             height: auto;
            }
            .swiper-slide{
                gap: 5px;
            }
        }

        /* Styling Khusus Brand Partner */
        .brand-card {
            aspect-ratio: 16 / 9;
            width: 100%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Efek Saat Kartu di-Hover */
        .brand-card:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border-color: transparent;
        }

        /* Gaya Gambar Logo */
        .brand-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            /* Mengubah ukuran gambar menyesuaikan kotak tanpa memotong */
            transition: transform 0.5s ease-in-out;
        }

        /* Efek Zoom Gambar Saat Kartu di-Hover */
        .brand-card:hover .brand-img {
            transform: scale(1.1);
        }

        /* Container Titik */
        .map-point {
            width: 20px;
            height: 20px;
            transform: translate(-50%, -50%);
            cursor: pointer;
            z-index: 20;
        }

        /* Titik Hijau (Marker) */
        .point-marker {
            width: 12px;
            height: 12px;
            background: #10b981;
            /* Emerald 500 */
            border: 2px solid white;
            border-radius: 50%;
            position: relative;
            box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
        }

        /* Animasi Pulse (Berdenyut) */
        .point-marker::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 50%;
            border: 2px solid #10b981;
            animation: pulse-map 2s infinite;
        }

        @keyframes pulse-map {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }

            100% {
                transform: scale(2.5);
                opacity: 0;
            }
        }

        /* Tooltip Styling */
        .tooltip-box {
            position: absolute;
            bottom: 150%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: white;
            padding: 12px;
            border-radius: 8px;
            width: 180px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        /* Panah Tooltip */
        .tooltip-box::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border-width: 6px;
            border-style: solid;
            border-color: white transparent transparent transparent;
        }

        /* Hover State */
        .map-point:hover .tooltip-box {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .map-point:hover .point-marker {
            background: #f2b814;
            /* Berubah jadi kuning saat hover */
            transform: scale(1.2);
        }