        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif, Arial;
        }

        body {
            background: #fff;
            color: #111;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
        }

        .container {
            width: 92%;
            max-width: 1280px;
            margin: auto;
            padding-left: 10px;
            padding-right: 10px;
        }


        /* =========================
            HERO
        ========================= */

        .hero {
            position: relative;
            min-height: 92vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .section-title {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: #EAF8F3;
            color: #1E9E6A;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .about-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px 25px;
            margin: 35px 0;
        }

        .about-hero {
            position: relative;
            min-height: 85vh;
        }

        .about-section {
            padding: 80px 0;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-content-card {
            background: #fff;
            border: 1px solid #f1f1f1;
            border-radius: 24px;
            padding: 40px;
            box-shadow:
                0 8px 30px rgba(0, 0, 0, .04),
                0 1px 3px rgba(0, 0, 0, .05);
        }

        .about-image img {
            width: 100%;
            display: block;
            border-radius: 20px;
        }

        .about-content h2 {
            margin-bottom: 20px;
        }

        .about-content p {
            margin-bottom: 15px;
        }

        .vision-section {
            padding: 90px 0;
            background: #f8f9fb;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 48px;
            font-weight: 700;
            color: #111;
        }

        .section-title span {
            color: #2CB67D;
        }

        .section-title p {
            margin-top: 15px;
            color: #666;
            font-size: 18px;
        }

        .vision-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
        }

        .vision-card {
            background: #fff;
            padding: 40px;
            min-height: 50px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
            transition: .3s;
            border: 1px solid #eee;
        }

        .vision-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 55px rgba(0, 0, 0, .12);
        }

        .vision-icon {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            background: #2CB67D;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin-bottom: 25px;
        }

        .vision-card h3 {
            font-size: 30px;
            margin-bottom: 20px;
            color: #111;
        }

        .vision-card p {
            color: #666;
            line-height: 1.8;
            font-size: 17px;
        }

        .why-section {
            padding: 100px 0;
            background: #fff;
        }

        .why-section .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .why-section .section-header h2 {
            font-size: 48px;
            font-weight: 700;
            color: #111;
            margin-bottom: 15px;
        }

        .why-section .section-header span {
            color: #0B7A5C;
        }

        .why-section .section-header p {
            color: #666;
            font-size: 18px;
            line-height: 1.8;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .why-card {
            background: #fff;
            border: 1px solid #ececec;
            border-radius: 20px;
            padding: 35px;
            transition: .3s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
        }

        .why-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
        }

        .why-card i {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 18px;
            background: linear-gradient(135deg, #0B7A5C, #19B57A);
            color: #fff;
            font-size: 28px;
            margin-bottom: 25px;
        }

        .why-card h4 {
            font-size: 24px;
            font-weight: 700;
            color: #111;
            margin-bottom: 15px;
        }

        .why-card p {
            color: #666;
            line-height: 1.8;
            font-size: 16px;
        }

        .workflow-section {
            padding: 100px 0;
            background: #f8f9fb;
        }

        .workflow-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        .workflow-grid-bottom {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            width: 75%;
            margin: 24px auto 0;
        }

        .workflow-card {
            background: #fff;
            border: 1px solid #ececec;
            border-radius: 18px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
            transition: .3s ease;
        }

        .workflow-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
        }

        .workflow-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            border-radius: 18px;
            background: linear-gradient(135deg, #0B7A5C, #2CB67D);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 28px;
        }

        .workflow-card h4 {
            font-size: 24px;
            margin-bottom: 12px;
        }

        .workflow-card p {
            color: #666;
            line-height: 1.7;
        }

        @media(max-width:992px) {

            .workflow-grid {
                grid-template-columns: repeat(2, 1fr);
            }

        }

        @media(max-width:576px) {

            .workflow-grid {
                grid-template-columns: 1fr;
            }

        }

        @media(max-width:768px) {

            .why-grid {
                grid-template-columns: 1fr;
            }

            .why-section .section-header h2 {
                font-size: 36px;
            }

        }

        @media(max-width:768px) {

            .vision-grid {
                grid-template-columns: 1fr;
            }

        }

        .hero img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg,
                    rgba(6, 37, 27, .95) 30%,
                    rgba(6, 37, 27, .6) 65%,
                    rgba(6, 37, 27, .2) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 620px;
            color: #fff;

            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* .hero-tag {
            display: inline-block;
            padding: 10px 24px;
            border: 1px solid rgba(255, 255, 255, .6);
            border-radius: 50px;
            margin-bottom: 28px;
            font-size: 14px;
        } */

        .hero-tag {
            display: inline-flex;
            align-items: center;

            width: fit-content;

            padding: 8px 18px;

            border: 1px solid rgba(255, 255, 255, .55);
            border-radius: 50px;

            font-size: 12px;
            font-weight: 500;

            color: #fff;

            margin-bottom: 28px;
        }

        .hero h1 {
            font-size: 50px;
            line-height: 1.2;
            margin-bottom: 0;
        }


        .hero h1 span {
            color: #20A177;
        }

        .hero p {
            font-size: 18px;
            line-height: 1.8;
            color: #ddd;
            margin-bottom: 35px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #20A177;
            color: #fff;
            padding: 16px 30px;
            border-radius: 50px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-outline {
            border: 1px solid #fff;
            color: #fff;
            padding: 16px 30px;
            border-radius: 50px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* =========================
   BLOG
========================= */

        .blog-hero {
            position: relative;
            min-height: 65vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .blog-hero img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg,
                    rgba(6, 37, 27, .95) 25%,
                    rgba(6, 37, 27, .65) 65%,
                    rgba(6, 37, 27, .2) 100%);
        }

        .blog-hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            color: #fff;
        }

        .blog-hero h1 {
            font-size: 52px;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .blog-hero h1 span {
            color: #20A177;
        }

        .blog-hero p {
            color: #ddd;
            font-size: 18px;
            line-height: 1.8;
            max-width: 650px;
        }


        /* =========================
   FEATURED BLOG
========================= */

        .blog-featured {
            padding: 90px 0;
            background: #fff;
        }

        .featured-blog {
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            gap: 0;
            background: #fff;
            border: 1px solid #ececec;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
        }

        .featured-blog-image {
            min-height: 420px;
        }

        .featured-blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-blog-content {
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .blog-category {
            display: inline-flex;
            width: fit-content;
            padding: 7px 13px;
            background: #EAF8F3;
            color: #20A177;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .featured-blog-content h2 {
            font-size: 32px;
            line-height: 1.35;
            margin-bottom: 15px;
        }

        .featured-blog-content>p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #888;
            font-size: 13px;
            margin-bottom: 15px;
        }


        /* =========================
   BLOG SECTION
========================= */

        .blog-section {
            padding: 100px 0;
            background: #f8f9fb;
        }

        .blog-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 40px;
        }

        .blog-filter button {
            border: 1px solid #dfe5e2;
            background: #fff;
            color: #555;
            padding: 10px 18px;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            cursor: pointer;
            transition: .25s;
        }

        .blog-filter button:hover,
        .blog-filter button.active {
            background: #20A177;
            border-color: #20A177;
            color: #fff;
        }


        /* =========================
   BLOG CARD
========================= */

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .blog-card {
            background: #fff;
            border: 1px solid #ececec;
            border-radius: 22px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
            transition: .3s ease;
        }

        .blog-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
        }

        .blog-image {
            position: relative;
            height: 230px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .4s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.04);
        }

        .blog-image .blog-category {
            position: absolute;
            left: 15px;
            top: 15px;
            margin: 0;
            background: rgba(6, 37, 27, .82);
            color: #fff;
            backdrop-filter: blur(5px);
        }

        .blog-content {
            padding: 25px;
        }

        .blog-content .blog-meta {
            margin-bottom: 12px;
        }

        .blog-content h3 {
            font-size: 20px;
            line-height: 1.4;
            margin-bottom: 12px;
        }

        .blog-content>p {
            color: #666;
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .blog-read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #20A177;
            font-size: 14px;
            font-weight: 600;
        }

        .blog-read-more i {
            transition: .25s;
        }

        .blog-read-more:hover i {
            transform: translateX(4px);
        }


        /* =========================
   RESPONSIVE
========================= */

        @media(max-width: 992px) {

            .featured-blog {
                grid-template-columns: 1fr;
            }

            .featured-blog-image {
                min-height: 300px;
            }

            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }

        }

        @media(max-width: 768px) {

            .blog-hero {
                min-height: 70vh;
            }

            .blog-hero h1 {
                font-size: 38px;
            }

            .blog-hero p {
                font-size: 16px;
            }

            .featured-blog-content {
                padding: 30px;
            }

            .featured-blog-content h2 {
                font-size: 26px;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

        }

        @media(max-width: 480px) {

            .blog-hero h1 {
                font-size: 32px;
            }

            .blog-filter {
                gap: 8px;
            }

            .blog-filter button {
                font-size: 12px;
                padding: 8px 14px;
            }

            .blog-image {
                height: 210px;
            }

        }

        /* =========================
            SECTION TITLE
        ========================= */

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            margin-bottom: 35px;
            flex-wrap: wrap;
        }

        .section-header h2 {
            font-size: 38px;
            margin-bottom: 8px;
        }

        .section-header h2 span {
            color: #20A177;
        }

        .section-header p {
            color: #666;
            font-size: 15px;
        }

        .lihat-btn {
            border: 2px solid #20A177;
            color: #20A177;
            padding: 12px 20px;
            border-radius: 50px;
            transition: .3s;
            font-size: 14px;

            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            background: #fff;
        }

        .lihat-btn i {
            font-size: 13px;
            transition: .3s;
        }

        .lihat-btn:hover {
            background: #20A177;
            color: #fff;
        }

        .lihat-btn:hover i {
            transform: translateX(3px);
        }

        section {
            padding: 40px 0;
        }

        /* =========================
            PROJECT CARD
        ========================= */

        .project-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .project-card {
            background: #fff;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid #e5e5e5;
            box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
            transition: .3s;
        }

        .project-card:hover {
            transform: translateY(-5px);
        }

        .project-image {
            position: relative;
            height: 240px;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .badge {
            position: absolute;
            top: 15px;
            padding: 6px 10px;
            border-radius: 50px;
            font-size: 12px;
            color: #fff;
        }

        .badge-left {
            left: 15px;
            background: rgba(6, 37, 27, 0.6);
            border: 1px solid rgba(32, 161, 118, 0.49);
        }

        .badge-right {
            right: 15px;
            background: rgba(6, 37, 27, 0.6);
            border: 1px solid rgba(32, 161, 118, 0.49);
        }

        .project-body {
            padding: 18px;
        }

        .location {
            position: absolute;
            left: 10px;
            bottom: 10px;

            background: rgba(6, 37, 27, 0.6);
            border: 1px solid rgba(32, 161, 118, 0.49);
            padding: 6px 12px;
            border-radius: 14px;

            font-size: 12px;
            font-weight: 500;
            color: #fff;

            display: flex;
            align-items: center;
            gap: 8px;

            box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
        }

        .location i {
            color: #fff;
        }

        .project-title {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 10px;
            color: #111;

            /* BUKAN ALL CAPS */
            text-transform: none;
        }

        .project-info {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 14px;
            color: #555;
        }

        .info-item i {
            color: #888;
            font-size: 13px;
        }

        .divider {
            width: 1px;
            height: 16px;
            background: #D8D8D8;
        }

        .project-action-btn {
            width: 100%;
            height: 48px;
            background: #1E7A4E;
            color: #fff;
            border-radius: 50px;

            display: flex;
            align-items: center;
            justify-content: center;

            font-weight: 600;
            font-size: 15px;

            transition: .25s ease;
        }

        .project-action-btn:hover {
            background: #16633F;
        }

        @media(max-width:480px) {

            .project-title {
                font-size: 17px;
            }

            .project-info {
                gap: 10px;
            }

            .info-item {
                font-size: 12px;
            }

            .project-action-btn {
                height: 44px;
                font-size: 14px;
            }

        }

        /* =========================
            PORTFOLIO
        ========================= */

        .portfolio-section {
            background: #fff;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .portfolio-card {
            background: #06251B;
            border-radius: 24px;
            padding: 18px;
            overflow: hidden;
        }

        .portfolio-top {
            display: flex;
            justify-content: space-between;
            margin-bottom: 18px;
        }

        .portfolio-top h4 {
            color: #fff;
            margin-bottom: 4px;
        }

        .portfolio-top span {
            color: #20A177;
            font-size: 13px;
        }

        .rating {
            color: #F8CB2E;
            font-size: 13px;
        }


        /* =========================
            BEFORE AFTER SLIDER FIXED
        ========================= */
        .before-after {
            position: relative;
            width: 100%;
            height: 240px;
            overflow: hidden;
            border-radius: 20px;
            margin-bottom: 20px;
            cursor: ew-resize;
            user-select: none;
        }

        /* Mengatur semua gambar di dalam slider */
        .before-after img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
            display: block;
        }

        /* Gambar BEFORE (Paling bawah) */
        .img-before {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        /* Pembungkus Gambar Kanan (After) */
        .after-wrapper {
            position: absolute;
            top: 0;
            right: 0;
            /* KUNCI DI SEBELAH KANAN */
            bottom: 0;
            width: 50%;
            /* Diatur dinamis oleh JS */
            overflow: hidden;
            z-index: 2;
        }

        /* Gambar Kanan (After) agar tidak bergeser saat dipotong */
        .img-after {
            position: absolute;
            top: 0;
            right: 0;
            /* KUNCI DI SEBELAH KANAN */
            height: 100%;
            width: 100%;
            /* Lebar fix disinkronkan oleh JS */
            max-width: none;
            object-fit: cover;
        }

        .before-wrapper {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 1;
        }

        /* Garis Pembatas Vertikal */
        .slider-line {
            position: absolute;
            left: 50%;
            top: 0;
            width: 4px;
            height: 100%;
            background: #fff;
            transform: translateX(-50%);
            z-index: 3;
            pointer-events: none;
            /* Supaya klik mouse menembus ke container */
        }

        /* Tombol Geser Bulat */
        .slider-button {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 4;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            pointer-events: none;
            /* Supaya drag bisa dilakukan di area mana saja */
        }

        .slider-button i {
            color: #06251B;
            font-size: 16px;
        }

        .architect {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .architect img {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            object-fit: cover;
        }

        .architect h5 {
            color: #fff;
            font-size: 14px;
        }

        .architect span {
            color: #20A177;
            font-size: 12px;
        }

        /* =========================
            CTA
        ========================= */

        .cta {
            padding-top: 20px;
        }

        .cta-box {
            background: #06251B;
            border-radius: 24px;
            padding: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .cta-content {
            display: flex;
            align-items: center;
            gap: 20px;
            flex: 1;
        }

        .circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #20A177;

            display: flex;
            align-items: center;
            justify-content: center;

            flex-shrink: 0;
        }

        .circle i {
            color: #fff;
            font-size: 28px;
        }

        .cta-content h3 {
            color: #fff;
            font-size: 24px;
            line-height: 1.4;
            margin: 0;
        }

        .cta-btn {
            background: #fff;
            color: #20A177;
            padding: 15px 28px;
            border-radius: 50px;
            font-weight: 600;
            white-space: nowrap;
            transition: .3s;
        }

        .cta-btn:hover {
            background: #20A177;
            color: #fff;
        }

        /* =========================
            SHOP
        ========================= */

        .shop-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .shop-card {
            position: relative;
            background: #fff;
            border-radius: 28px;
            padding: 18px;
            border: 1px solid #E7E7E7;
            box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
            transition: .3s;
        }

        .shop-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(32, 161, 119, 0.04);
        }

        /* IMAGE */
        .shop-image {
            width: 100%;
            height: 240px;
            background: #F7F7F5;
            border-radius: 24px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .shop-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* WISHLIST */
        .wishlist-btn {
            position: absolute;
            top: 28px;
            right: 28px;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #111;
            z-index: 5;
            box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
        }

        /* TITLE */
        .shop-title {
            font-size: 20px;
            line-height: 1.5;
            font-weight: 600;
            margin-bottom: 10px;
            color: #111;
        }

        /* PRICE + RATING */
        .shop-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .price {
            font-size: 20px;
            font-weight: 700;
            color: #20A177;
        }

        .shop-rating {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #999;
            font-weight: 500;
            font-size: 16px;
        }

        .shop-rating i {
            color: #FFC933;
        }


        .before-after {
            position: relative;
            height: 240px;
            overflow: hidden;
            border-radius: 20px;
            margin-bottom: 20px;
            cursor: ew-resize;
            user-select: none;
        }

        .slider-line {
            position: absolute;
            left: 50%;
            top: 0;
            width: 3px;
            height: 100%;
            background: #fff;
            transform: translateX(-50%);
            z-index: 3;
        }

        .slider-button {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            z-index: 4;
            box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
        }

        /* =========================
            RESPONSIVE
        ========================= */

        @media(max-width:992px) {

            .project-grid,
            .portfolio-grid,
            .shop-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero h1 {
                font-size: 48px;
            }

        }

        @media(max-width:768px) {

            .hero {
                min-height: auto;
                padding: 50px 0;
            }

            .hero h1 {
                font-size: 38px;
            }

            .hero p {
                font-size: 16px;
            }

            .section-header h2 {
                font-size: 24px;
            }

            .section-header p {
                font-size: 14px;
            }

            .project-grid,
            .portfolio-grid,
            .shop-grid {
                grid-template-columns: 1fr;
            }

            .before-after {
                height: 220px;
            }

            .cta-box {
                text-align: center;
                justify-content: center;
            }

            .cta-left {
                flex-direction: column;
            }

        }

        @media(max-width:480px) {

            section {
                padding: 25px 0;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 13px;
                line-height: 1.6;
                margin-bottom: 18px;
            }

            .hero-tag {
                display: inline-block;
                padding: 9px 18px;
                border: 1px solid rgba(255, 255, 255, .6);
                border-radius: 50px;
                margin-bottom: 28px;
                font-size: 12px;
            }

            .hero-buttons {
                display: flex;
                flex-direction: row;
                /* dari column jadi row */
                gap: 14px;
                flex-wrap: nowrap;
            }

            .lihat-btn {
                padding: 10px 18px;
            }

            .project-title {
                font-size: 16px;
            }

            .deadline {
                margin-bottom: 10px;
            }

            .shop-title {
                font-size: 16px;
            }

            .price {
                font-size: 14px;
            }

            .shop-rating {
                font-size: 14px;
            }


            .cta-box {
                padding: 24px;
                flex-direction: column;
                align-items: flex-start;
                gap: 22px;
            }

            .cta-content {
                align-items: flex-start;
                gap: 16px;
            }

            .circle {
                width: 58px;
                height: 58px;
            }

            .circle i {
                font-size: 22px;
            }

            .cta-content h3 {
                font-size: 18px;
                text-align: left;

            }

            .cta-btn {
                width: 100%;
                justify-content: center;
                display: flex;
                align-items: center;
                padding: 14px 20px;
                font-size: 14px;
            }

            .wishlist-btn {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .btn-primary,
            .btn-outline {
                flex: 1;
                justify-content: center;
                padding: 10px 12px;
                font-size: 15px;
                white-space: nowrap;
            }

            .btn-primary i,
            .btn-outline i {
                font-size: 14px;
            }


            /* COMMON HORIZONTAL SLIDER */
            .project-grid,
            .portfolio-grid,
            .shop-grid {
                display: flex !important;
                flex-wrap: nowrap;
                overflow-x: auto;
                overflow-y: hidden;
                gap: 16px;
                padding-bottom: 10px;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
            }

            .project-grid::-webkit-scrollbar,
            .portfolio-grid::-webkit-scrollbar,
            .shop-grid::-webkit-scrollbar {
                height: 6px;
            }

            .project-grid::-webkit-scrollbar-thumb,
            .portfolio-grid::-webkit-scrollbar-thumb,
            .shop-grid::-webkit-scrollbar-thumb {
                background: #20A177;
                border-radius: 20px;
            }

            .project-card,
            .portfolio-card,
            .shop-card {
                flex: 0 0 85%;
                min-width: 85%;
                scroll-snap-align: start;
            }

            .section-header {
                align-items: flex-start;
            }

        }

        /* =========================
        BEFORE AFTER LABEL TAG (FIXED)
    ========================= */
        .label-tag {
            position: absolute;
            top: 15px;
            padding: 4px 12px;
            background: rgba(0, 0, 0, 0.51);
            color: #fff;
            font-size: 12px;
            font-weight: 500;
            border-radius: 10px;
            z-index: 10;
            pointer-events: none;
            user-select: none;
        }

        .label-before {
            left: 15px;
        }

        .label-after {
            right: 15px;
        }

        .rating {
            color: #FFD43B;
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
        }

        /* =========================
    SLIDER DOTS
    ========================= */

        .slider-dots {
            display: none;
        }

        @media(max-width:480px) {

            .slider-dots {
                display: flex;
                justify-content: center;
                align-items: left;
                gap: 8px;
                margin-top: 20px;
            }

            .slider-dots span {
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: #CFCFCF;
                transition:
                    width .25s ease,
                    background .25s ease,
                    transform .25s ease;
            }

            .slider-dots span.active {
                width: 18px;
                border-radius: 20px;
                background: #06251B;
                transform: scale(1.05);
            }
        }

        .hero-bottom {
            margin-top: 20px;
        }

        .hero-services {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 18px;
            margin-bottom: 25px;
        }

        .hero-services span {
            font-size: 13px;
            font-weight: 500;
            color: #fff;
        }

        .hero-services .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #fff;
            display: block;
        }

        @media (min-width:768px) and (max-width:1024px) {

            .hero-content {
                transform: none;
            }
        }

        @media (min-width:768px) and (max-width:1024px) {

            .hero {
                align-items: center;
            }

            .hero-content {
                margin-top: -160px;
            }

        }

        @media (min-width:768px) and (max-width:1024px) {

            .hero .container {
                display: flex;
                align-items: flex-start;
                height: 100%;
            }

        }

        .project-grid-wrapper {
            position: relative;
        }

        .locked-card {
            filter: blur(5px);
            pointer-events: none;
            user-select: none;
        }

        .project-login-overlay {
            margin-top: 20px;

            padding: 24px 20px;

            background: rgba(6, 37, 27, .88);
            backdrop-filter: blur(6px);

            border-radius: 25px;

            text-align: center;
        }

        .project-login-overlay h3 {
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.5;
            margin-bottom: 8px;
        }

        .project-login-overlay p {
            color: #fff;
            font-size: 10px;
            margin-bottom: 14px;
        }

        .register-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            width: 70px;
            height: 25px;

            border-radius: 25px;

            border: 1px solid #20A177;
            background: rgba(32, 161, 119, .39);

            color: #fff;
            font-size: 12px;
            font-weight: 500;
            text-decoration: none;
        }

        .project-card-locked {
            position: relative;
            overflow: hidden;
        }

        .project-card-locked .project-image,
        .project-card-locked .project-body {
            filter: blur(4px);
        }

        .card-lock-overlay {
            position: absolute;
            inset: 0;

            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            background: rgba(255, 255, 255, .15);
            backdrop-filter: blur(3px);

            z-index: 5;
        }

        .lock-icon {
            margin-bottom: 6px;
        }

        .lock-icon i {
            font-size: 14px;
            color: #111;
        }

        .lock-text {
            font-size: 10px;
            font-weight: 600;
            color: #111;
            margin-bottom: 8px;
        }

        .lock-actions {
            display: flex;
            gap: 6px;
        }

        .lock-login {
            height: 20px;
            padding: 0 12px;

            display: flex;
            align-items: center;

            border-radius: 20px;

            background: #0b6b50;

            color: #fff;
            font-size: 9px;
            text-decoration: none;
        }

        .lock-register {
            height: 20px;
            padding: 0 12px;

            display: flex;
            align-items: center;

            border-radius: 20px;

            background: #8b8b8b;

            color: #fff;
            font-size: 9px;
            text-decoration: none;
        }

        /* Desktop */
        @media (min-width: 1200px) {
            .project-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 900px) {
            .project-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* =========================
   TABLET
========================= */
        @media (min-width: 768px) and (max-width: 900px) {

            .project-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }

            .project-card {
                width: 100%;
                max-width: none;
            }

            .project-image {
                height: 170px;
            }

            .project-body {
                padding: 14px;
            }

            .project-title {
                font-size: 14px;
                line-height: 1.4;
                margin-bottom: 10px;
            }

            .location {
                font-size: 11px;
            }

            .location i {
                font-size: 11px;
            }

            .badge {
                font-size: 10px;
                padding: 4px 10px;
            }

            .project-info {
                gap: 10px;
            }

            .info-item {
                font-size: 11px;
            }

            .info-item i {
                font-size: 11px;
            }

            .divider {
                height: 12px;
            }
        }

        .brand-section {
            padding: 90px 0;
            background: #fff;
            overflow: hidden;
        }

        .brand-slider {
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .brand-track {
            display: flex;
            align-items: center;
            gap: 20px;
            width: max-content;

            animation: brand-marquee 25s linear infinite;
        }

        .brand-card {
            width: 220px;
            height: 110px;

            flex-shrink: 0;

            background: #fff;
            border: 1px solid #e8e8e8;
            border-radius: 12px;

            display: flex;
            align-items: center;
            justify-content: center;

            padding: 15px;
        }

        .brand-card img {
            width: 100%;
            height: 100%;

            object-fit: contain;

            transition: .3s;
        }

        /* pause saat hover */
        .brand-track:hover {
            animation-play-state: paused;
        }

        .brand-card:hover img {
            transform: scale(1.08);
        }

        @keyframes brand-marquee {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(calc(-50% - 10px));
            }
        }

        .brand-slider::before,
        .brand-slider::after {
            content: '';
            position: absolute;
            top: 0;
            width: 120px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .brand-slider::before {
            left: 0;
            background: linear-gradient(to right,
                    #f7f7f7 0%,
                    rgba(247, 247, 247, 0) 100%);
        }

        .brand-slider::after {
            right: 0;
            background: linear-gradient(to left,
                    #f7f7f7 0%,
                    rgba(247, 247, 247, 0) 100%);
        }

        .brand-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;

            padding: 8px 18px;

            border: 1px solid rgba(47, 179, 135, .2);
            border-radius: 999px;

            background: rgba(47, 179, 135, .08);

            color: #2fb387;

            font-size: 13px;
            font-weight: 600;

            margin-bottom: 18px;
        }

        .brand-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #2fb387;
        }

        .brand-header h2 {
            font-size: 42px;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .brand-header h2 span {
            color: #2fb387;
        }

        .brand-header p {
            color: #7d7d7d;
            font-size: 16px;
            line-height: 1.8;
        }

        /* DESKTOP */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        /* Card */
        .portfolio-card {
            min-width: 0;
        }

        /* Judul card */
        .portfolio-top h4 {
            font-size: 16px;
            line-height: 1.3;
            margin-bottom: 4px;
        }

        .portfolio-top span {
            font-size: 13px;
        }

        .rating {
            font-size: 13px;
        }

        .architect h5 {
            font-size: 14px;
            margin-bottom: 2px;
        }

        .architect span {
            font-size: 12px;
        }

        /* Gambar before after */
        .before-after {
            height: 220px;
        }

        .before-after img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (max-width: 991px) {

            .portfolio-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 14px;
            }

            .portfolio-top h4 {
                font-size: 14px;
            }

            .portfolio-top span,
            .rating {
                font-size: 11px;
            }

            .architect h5 {
                font-size: 12px;
            }

            .architect span {
                font-size: 10px;
            }

            .before-after {
                height: 160px;
            }

            .architect img {
                width: 36px;
                height: 36px;
            }
        }

        @media (max-width: 767px) {

            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .portfolio-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }

            .portfolio-top h4 {
                font-size: 13px;
                line-height: 1.3;
            }

            .portfolio-top span,
            .rating {
                font-size: 10px;
            }

            .architect {
                gap: 8px;
            }

            .architect img {
                width: 32px;
                height: 32px;
            }

            .architect h5 {
                font-size: 11px;
            }

            .architect span {
                font-size: 9px;
            }

            .before-after {
                height: 130px;
            }

            .label-tag {
                font-size: 9px;
                padding: 4px 8px;
            }

            .slider-button {
                width: 28px;
                height: 28px;
                font-size: 11px;
            }
        }

        /* =========================
   SHOP GRID
========================= */

        .shop-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .shop-card {
            min-width: 0;
            height: 100%;
        }

        .shop-image {
            aspect-ratio: 1/1;
            overflow: hidden;
        }

        .shop-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .shop-title {
            font-size: 16px;
            line-height: 1.4;

            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;

            overflow: hidden;
            min-height: 45px;
        }

        .price {
            font-size: 15px;
            font-weight: 700;
        }

        .shop-rating {
            font-size: 13px;
        }

        @media (max-width: 991px) {

            /* Sama seperti mobile */
            .shop-grid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 14px;

                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .shop-grid::-webkit-scrollbar {
                display: none;
            }

            .shop-card {
                flex: 0 0 calc(50% - 7px);
                scroll-snap-align: start;
            }

            .shop-body {
                padding: 12px;
            }

            .shop-title {
                font-size: 13px;
                min-height: 38px;
            }

            .price {
                font-size: 13px;
            }

            .shop-rating {
                font-size: 11px;
            }

            .wishlist-btn {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }

            /* Dots di tengah bawah */
            .shop-dots {
                display: flex;
                justify-content: center;
                align-items: center;
                margin-top: 18px;
            }
        }

        @media (max-width:767px) {
            .shop-grid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 12px;
            }

            .shop-card {
                flex: 0 0 calc(50% - 6px);
                scroll-snap-align: start;
            }

            .shop-body {
                padding: 10px;
            }

            .shop-title {
                font-size: 12px;
                line-height: 1.4;
                min-height: 34px;
            }

            .shop-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
            }

            .price {
                font-size: 12px;
            }

            .shop-rating {
                font-size: 10px;
            }

            .wishlist-btn {
                width: 28px;
                height: 28px;
                font-size: 11px;
                top: 8px;
                right: 8px;
            }

            /* =========================
   SHOP CARD MOBILE COMPACT
========================= */

            .shop-card {
                flex: 0 0 calc(50% - 6px);
                min-width: calc(50% - 6px);
                border-radius: 12px;
            }

            .shop-image {
                aspect-ratio: 1;
                /* lebih pendek dari sebelumnya */
            }

            .shop-body {
                padding: 6px 8px;
            }

            .shop-title {
                font-size: 10.5px;
                line-height: 1.25;
                min-height: 24px;
            }

            .shop-meta {
                gap: 2px;
            }

            .price {
                font-size: 12px;
            }

            .shop-rating {
                font-size: 9px;
            }

            .shop-rating i {
                font-size: 9px;
            }

            .wishlist-btn {
                width: 26px;
                height: 26px;
                font-size: 10px;
                top: 6px;
                right: 6px;
            }
        }

        .shop-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .shop-dots span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #cfcfcf;
            transition: .3s;
        }

        .shop-dots span.active {
            width: 18px;
            border-radius: 20px;
            background: #06251B;
        }

        /* =========================
   FLOATING WHATSAPP
========================= */

        .wa-floating {
            position: fixed;
            right: 24px;
            bottom: 24px;
            z-index: 9999;

            display: flex;
            align-items: center;
            gap: 8px;

            animation: waFloat .3s ease;
        }

        .wa-btn {
            display: flex;
            align-items: center;
            gap: 10px;

            padding: 12px 18px;

            background: #18C552;
            color: #fff;

            border-radius: 999px;

            text-decoration: none;
            font-size: 14px;
            font-weight: 600;

            box-shadow: 0 8px 25px rgba(24, 197, 82, .3);

            transition: .3s;
        }

        .wa-btn:hover {
            transform: translateY(-2px);
        }

        .wa-btn i {
            font-size: 22px;
        }

        .wa-close {
            width: 30px;
            height: 30px;

            border: none;
            border-radius: 50%;

            background: #fff;
            color: #666;

            cursor: pointer;

            box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
        }

        @keyframes waFloat {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* MOBILE */
        @media(max-width:768px) {

            .wa-floating {
                right: 16px;
                bottom: 16px;
            }

            .wa-btn span {
                display: none;
            }

            .wa-btn {
                width: 56px;
                height: 56px;
                padding: 0;
                justify-content: center;
                border-radius: 50%;
            }

            .wa-btn i {
                font-size: 28px;
            }
        }


        /* ========================================================
            STICKY CHAT DESKTOP BUTTON
        ======================================================== */
        .sticky-chat-container {
            position: fixed;
            bottom: 35px;
            right: 35px;
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sticky-chat-button {
            width: 56px;
            height: 56px;
            background: #06251B;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            box-shadow: 0 8px 24px rgba(6, 37, 27, 0.25);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .sticky-chat-close-btn {
            position: absolute;
            top: -6px;
            right: -6px;
            width: 20px;
            height: 20px;
            background: #F35A70;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            font-size: 14px;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1000;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .sticky-chat-close-btn:hover {
            background: #d4495d;
            transform: scale(1.15);
        }

        .sticky-chat-icon-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sticky-chat-button i {
            font-size: 22px;
            transition: transform 0.3s ease;
        }

        .sticky-chat-status-dot {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 8px;
            height: 8px;
            background: #20A177;
            border-radius: 50%;
            border: 1.5px solid #06251B;
        }

        .sticky-chat-button:hover {
            background: #20A177;
            box-shadow: 0 10px 28px rgba(32, 161, 119, 0.35);
            transform: translateY(-4px) scale(1.05);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .sticky-chat-button:hover .sticky-chat-status-dot {
            border-color: #20A177;
            background: #fff;
        }

        .sticky-chat-button:hover i {
            transform: scale(1.08);
        }

        .sticky-chat-button:active {
            transform: translateY(-1px) scale(0.98);
        }

        /* STICKY BOTTOM ACTION BAR (MOBILE MOBILE) */
        .mobile-bottom-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #fff;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
            padding: 10px 16px;
            z-index: 999;
            align-items: center;
            gap: 10px;
        }

        .m-bar-chat-btn {
            width: 48px;
            height: 44px;
            border: 1px solid #DADADA;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #20A177;
            font-size: 16px;
        }

        .m-bar-cart-btn {
            flex: 1;
            height: 44px;
            border: 1.5px solid #20A177;
            background: #fff;
            color: #20A177;
            font-weight: 600;
            font-size: 14px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            cursor: pointer;
        }

        .m-bar-buy-btn {
            flex: 1;
            height: 44px;
            background: #06251B;
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
        }

        /* BOTTOM SHEET MODAL LAYOUT (GAYA SHOPEE) */
        .bottom-sheet-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .bottom-sheet-overlay.active {
            display: block;
            opacity: 1;
        }

        .bottom-sheet-container {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #fff;
            border-radius: 16px 16px 0 0;
            z-index: 1001;
            padding: 20px 16px;
            transform: translateY(100%);
            transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            max-height: 80vh;
            overflow-y: auto;
        }

        .bottom-sheet-container.active {
            transform: translateY(0);
        }

        .bs-header {
            display: flex;
            gap: 16px;
            position: relative;
            padding-bottom: 16px;
            border-bottom: 1px solid #EAEAEA;
        }

        .bs-img-wrap {
            width: 90px;
            height: 90px;
            background: #F6F6F4;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .bs-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .bs-info-wrap {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding-bottom: 4px;
        }

        .bs-price {
            font-size: 20px;
            color: #1E7A4E;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .bs-stock {
            font-size: 13px;
            color: #777;
        }

        .bs-close-btn {
            position: absolute;
            top: -4px;
            right: 0;
            font-size: 24px;
            color: #999;
            cursor: pointer;
            line-height: 1;
        }

        .bs-body {
            padding: 16px 0;
        }

        .bs-section-title {
            font-size: 14px;
            font-weight: 500;
            color: #333;
            margin-bottom: 12px;
        }

        .bs-color-group {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 20px;
            border-bottom: 1px solid #EAEAEA;
            padding-bottom: 16px;
        }

        .bs-color-pill {
            padding: 8px 16px;
            background: #F4F4F4;
            border: 1px solid transparent;
            border-radius: 8px;
            font-size: 13px;
            color: #333;
            cursor: pointer;
            font-weight: 500;
            transition: 0.2s;
        }

        .bs-color-pill.active {
            background: #FFF;
            border-color: #20A177;
            color: #20A177;
        }

        .bs-qty-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 16px;
        }

        .bs-footer {
            margin-top: 10px;
        }

        .bs-submit-btn {
            width: 100%;
            height: 46px;
            background: #06251B;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
        }

        /* MOBILE */
        @media (max-width: 768px) {

            .project-grid-wrapper {
                overflow: hidden;
                width: 100%;
            }

            .project-grid {
                display: flex;
                gap: 16px;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scrollbar-width: none;
                -ms-overflow-style: none;
                padding-bottom: 5px;
            }

            .project-grid::-webkit-scrollbar {
                display: none;
            }

            .project-card {
                flex: 0 0 100%;
                width: 100%;
                scroll-snap-align: center;
            }

            .project-image {
                height: 220px;
            }

            .project-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .project-title {
                font-size: 16px;
            }

            .project-info {
                flex-wrap: wrap;
                gap: 8px;
            }

            .project-dots {
                display: flex;
                justify-content: center;
                gap: 8px;
                margin-top: 20px;
            }

            .project-dots span {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: #cfcfcf;
            }

            .project-dots span.active {
                background: #0d3d1f;
                width: 18px;
                border-radius: 20px;
            }
        }

        @media (max-width:768px) {

            .project-grid-wrapper {
                overflow: hidden;
            }

            .project-grid {
                display: flex;
                gap: 12px;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scrollbar-width: none;
                padding: 0 16px;
            }

            .project-grid::-webkit-scrollbar {
                display: none;
            }

            .project-card {
                flex: 0 0 80%;
                scroll-snap-align: start;
            }

            .project-image {
                height: 180px;
            }

            .project-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        /* ==========================
   TABLET PORTFOLIO SLIDER
========================== */

        @media (min-width:768px) and (max-width:991px) {

            .portfolio-grid {
                display: flex;
                overflow-x: auto;
                gap: 24px;
                scroll-snap-type: x mandatory;
                padding-bottom: 10px;
                -webkit-overflow-scrolling: touch;
            }

            .portfolio-grid::-webkit-scrollbar {
                display: none;
            }

            .portfolio-card {
                flex: 0 0 360px;
                flex-shrink: 0;
                scroll-snap-align: start;
            }

            /* Samakan persis dengan mobile */
            .portfolio-dots {
                display: flex;
                justify-content: center;
                gap: 8px;
                margin-top: 20px;
            }

            .portfolio-dots span {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: #cfcfcf;
            }

            .portfolio-dots span.active {
                background: #0d3d1f;
            }

            .slider-dots span.active {
                width: 18px;
                border-radius: 20px;
                background: #06251B;
                transform: scale(1.05);

            }
        }

        @media (max-width:767px) {

            .portfolio-grid {
                display: flex;
                overflow-x: auto;
                gap: 16px;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 10px;
            }

            .portfolio-grid::-webkit-scrollbar {
                display: none;
            }

            .portfolio-card {
                flex: 0 0 85%;
                flex-shrink: 0;
                scroll-snap-align: start;
            }

        }

        @media (max-width:767px) {

            .portfolio-dots {
                display: flex;
                justify-content: center;
                gap: 8px;
                margin-top: 20px;
            }

            .portfolio-dots span {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: #cfcfcf;
            }

            .portfolio-dots span.active {
                width: 18px;
                border-radius: 20px;
                background: #06251B;
            }

        }