        :root {
            --site-bg: #f5f7fa;
            --site-text: #101828;
            --site-muted: #667085;
            --site-card: #ffffff;
            --site-border: #e4e7ec;
            --site-primary: #2563eb;
        }

        body {
            margin: 0;
            background: var(--site-bg);
            color: var(--site-text);
            font-family: "Lato", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        }

        .site-navbar {
            position: sticky;
            top: 0;
            z-index: 999999;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--site-border);
        }

        .brand {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            color: var(--site-text);
        }

        .brand-logo {
            height: 40px;
            width: auto;
            object-fit: contain;
        }

        .hero-inner {
            width: 100%;
            padding: 48px 0 34px;
        }

        .hero-copy {
            max-width: 580px;
        }

        .hero h1 {
            font-weight: 800;
            font-size: clamp(2.8rem, 4vw, 3rem);
            margin-bottom: .75rem;
        }

        .hero p {
            color: #d0d5dd;
            font-size: 1rem;
            margin-bottom: 0;
            max-width: 760px;
        }

        .hero-search-surface {
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(8px);
            padding: 16px;
        }

        .hero-search-surface .form-label {
            color: #e7ecf6;
            font-size: .78rem;
            margin-bottom: .25rem;
            font-weight: 600;
        }

        .hero-search-surface .form-control,
        .hero-search-surface .form-select {
            border-color: rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.94);
        }

        .hero-chip {
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 999px;
            padding: .28rem .7rem;
            text-decoration: none;
            color: #fff;
            font-size: .78rem;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.10);
        }

        .hero-chip:hover {
            background: rgba(255, 255, 255, 0.18);
            color: #fff;
        }

        .hero-trust {
            margin-top: 14px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 8px;
        }

        .hero-trust-item {
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: 12px;
            background: rgba(8, 13, 24, 0.26);
            padding: 10px 12px;
        }

        .hero-trust-value {
            font-size: 1.05rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
        }

        .hero-trust-label {
            font-size: .72rem;
            color: #d0d8e8;
            margin-top: 2px;
        }

        @media (max-width: 767.98px) {
            .hero {
                min-height: 680px;
            }

            .hero-inner {
                padding-top: 34px;
            }

            .hero-search-surface {
                margin-top: 14px;
            }

            .hero-trust {
                grid-template-columns: 1fr;
            }
        }

        .panel-surface,
        .listing-card,
        .stat-item {
            border: 1px solid var(--site-border);
            border-radius: 12px;
            background: var(--site-card);
        }

        

        .panel-surface {
            box-shadow: 0 14px 34px rgba(16, 24, 40, 0.06);
        }

        .section-title {
            font-size: 1.1rem;
            font-weight: 800;
            margin-bottom: .25rem;
        }

        .section-subtitle {
            color: var(--site-muted);
            font-size: .9rem;
        }

        .category-chip {
            border: 1px solid var(--site-border);
            border-radius: 12px;
            padding: .5rem .8rem;
            text-decoration: none;
            color: var(--site-text);
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            background: #fff;
        }

        .category-chip:hover {
            border-color: #c7d7fe;
            background: #f8faff;
        }

        .stat-item {
            height: 100%;
            padding: 16px 18px;
            display: flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
        }

        .stat-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: inline-grid;
            place-items: center;
            flex: 0 0 auto;
            font-size: 1.1rem;
        }

        .stat-icon.primary {
            background: #eff6ff;
            color: #2563eb;
        }

        .stat-icon.success {
            background: #ecfdf3;
            color: #039855;
        }

        .stat-icon.warning {
            background: #fffaeb;
            color: #b54708;
        }

        .stat-label {
            color: var(--site-muted);
            font-size: .82rem;
            margin-bottom: 2px;
        }

        .stat-value {
            font-size: 1.3rem;
            font-weight: 800;
        }

        .listing-card {
            overflow: hidden;
            height: 100%;
        }

        .listing-media {
            position: relative;
        }

        .listing-badges {
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 8px;
            pointer-events: none;
        }

        .listing-photo {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            background: #e5e7eb;
        }

        .listing-content {
            padding: 14px;
        }

        .listing-title {
            font-weight: 700;
            margin-bottom: 8px;
            font-size: .98rem;
        }

        .listing-meta {
            color: var(--site-muted);
            font-size: .70rem;
        }

        .step-box {
            border: 1px solid var(--site-border);
            border-radius: 12px;
            padding: 16px;
            background: #fff;
            height: 100%;
        }

        .step-number {
            width: 34px;
            height: 34px;
            border-radius: 12px;
            display: inline-grid;
            place-items: center;
            background: #eef4ff;
            color: #1d4ed8;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .cta-band {
            border: 1px solid var(--site-border);
            border-radius: 12px;
            background: #284e44;
            color: #fff;
            padding: 40px;
        }

        .site-footer {
            border-top: 1px solid var(--site-border);
            background: #FFFFFFA6;
        }

        /* Wrapper */
.category-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Carousel container */
.category-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 8px 0;
}

/* Card styling */
.category-card {
    flex: 0 0 auto; /* mencegah shrink */
    width: 150px;
    height: 150px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: #4b5563;
    transition: 0.2s ease;
}

.category-card:hover {
    border-color: #284e44;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.12);
    transform: translateY(-2px);
    color: #284e44;
}

.category-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #cfa76e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 30px;
    color: #eef5ff;
}

.category-name {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

/* Tombol navigasi */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.9);
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn.prev {
    left: -18px;
}

.carousel-btn.next {
    right: -18px;
}

/* Responsive */
@media (max-width: 992px) {
    .category-card { width: 130px; height: 130px; }
    .category-icon { width: 56px; height: 56px; }
    .category-icon i { font-size: 26px; }
    .category-name { font-size: 14px; }
}

@media (max-width: 576px) {
    .category-card { width: 120px; height: 120px; }
    .category-icon { width: 50px; height: 50px; }
    .category-icon i { font-size: 22px; }
    .category-name { font-size: 13px; }
}



.why-kiels-property {
    background-color: #f8f9fa;
}

.why-kiels-property .section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2937;
}

.why-kiels-property .section-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 40px;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 80px;
    max-width: 100%;
    flex: 1 1 280px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.feature-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2937;
}

.feature-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}


.partner-section {
    background: #f8f9fa;
    padding: 70px 0 95px;
    overflow: hidden;
}

.partner-title {
    font-size: 34px;
    font-weight: 800;
    color: #212529;
    margin-bottom: 8px;
}

.partner-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 55px;
}

.partner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.partner-slider::before,
.partner-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partner-slider::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.partner-slider::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, transparent);
}

.partner-track {
    display: flex;
    align-items: center;
    gap: 65px;
    width: max-content;
    animation: partnerSlide 28s linear infinite;
    will-change: transform;
}

.partner-track:hover {
    animation-play-state: paused;
}

.partner-item {
    flex: 0 0 auto;
    width: 170px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item img {
    max-width: 170px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(80%);
    opacity: 0.80;
    transition: 0.25s ease;
}

.partner-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes partnerSlide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .partner-section {
        padding: 55px 0 75px;
    }

    .partner-title {
        font-size: 28px;
    }

    .partner-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .partner-track {
        gap: 55px;
        animation-duration: 22s;
    }

    .partner-item {
        width: 135px;
        height: 60px;
    }

    .partner-item img {
        max-width: 135px;
        max-height: 84px;
    }

    .partner-slider::before,
    .partner-slider::after {
        width: 45px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .feature-card {
        padding: 10px 6px;
    }

    .feature-icon img {
        width: 36px;
        height: 36px;
    }

    .feature-title {
        font-size: 12px;
    }

    .feature-desc {
        font-size: 10px;
        line-height: 1.3;
    }
}

.listing-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
}

.listing-slide-item {
    flex: 0 0 calc(25% - 18px);
    scroll-snap-align: start;
}

.listing-slider::-webkit-scrollbar {
    height: 6px;
}

.listing-slider::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .listing-slide-item {
        flex: 0 0 calc(50% - 12px);
    }
}

.site-footer {
    background-color: #284e44; /* warna hijau gelap screenshot */
    color: #FFFFFFA6;
    font-family: sans-serif;
}

.footer-top {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
}

.footer-col h5 {
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-social {
    margin-top: 12px;
}

.footer-social a {
    color: #ffffff;
    margin-right: 12px;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #ffc107; /* highlight icon */
}

.footer-logo img {
    width: 140px;
    margin-bottom: 30px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #c1c1c1;
}

.footer-logo .brand-logo {
    filter: brightness(0) invert(1); /* ubah semua warna jadi putih */
    width: 140px; /* sesuaikan ukuran */
    transition: filter 0.3s ease;
}

/* Hover optional, tetap putih */
.footer-logo .brand-logo:hover {
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .footer-grid {
        gap: 24px;
    }
    .footer-logo img {
        width: 120px;
    }
}


/* Container slider */
.listing-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 8px;
}

/* Hide scrollbar */
.listing-slider::-webkit-scrollbar {
    display: none;
}
.listing-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Item listing */
.listing-item {
    flex: 0 0 auto;
    width: 100%; /* mobile full width */
}

@media(min-width: 576px) {
    .listing-item { width: calc(50% - 8px); } /* 2 per row on small */
}

@media(min-width: 992px) {
    .listing-item { width: calc(25% - 12px); } /* 4 per row on large */
}

/* Slider tombol */
.slider-buttons {
    display: flex;
}
.slider-btn {
    background: #0d6efd;
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}
.slider-btn:hover { background: #0b5ed7; }



/* Override warna global btn-primary */
.btn-primary {
  --bs-btn-color: #ffffff;           /* Warna teks */
  --bs-btn-bg: #284e44;              /* Warna background utama */
  --bs-btn-border-color: #284e44;    /* Warna border */

  --bs-btn-hover-color: #ffffff;     
  --bs-btn-hover-bg:  #284e44;        /* Hover */
  --bs-btn-hover-border-color: #e64900;

  --bs-btn-focus-shadow-rgb: 255, 81, 0;

  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #cc4100;       /* Active / click */
  --bs-btn-active-border-color: #cc4100;

  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: #ff5100;
  --bs-btn-disabled-border-color: #ff5100;
}

/* SLIDER FULL-WIDTH KARTU */
.hero-slider {
    width: 100%;
    max-width: 600px; /* optional: agar tidak terlalu lebar di desktop */
    margin-bottom: 0 auto;
    padding: 40px 0; 
}

.swiper-container {
    width: 100%;
}

.swiper-slide {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.swiper-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Navigation & Pagination */
.swiper-button-next,
.swiper-button-prev {
    color: #333;
}
.swiper-pagination-bullet-active {
    background: #333;
}

/* Peeking slide effect */
.swiper-wrapper {
    padding-left: 10px;
}
.swiper-slide {
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .swiper-slide img {
        height: 200px;
    }
}

