/*
Theme Name: Theme Serra
Theme URI: http://www.gravis-design.com/ 
Author: Gravis
Author URI: http://www.gravis-design.com/
Description: Theme for RL Serra
Version: 1.0
License: Commercial
License URI: http://www.gravis-design.com/ 
Tags: brown, green
Text Domain: remodeling

/* Reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s,
samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
	/* background: #fff; */
}
:focus { outline: 0; }
body { background: #fff; line-height: 1; }
ol, ul { list-style: none; }
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { font-weight: normal; text-align: left; }
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }
a img { border: 0; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
audio, canvas, video { display: inline-block; }
audio:not([controls]) { display: none; }
del { color: #333; }
ins { background: #fff9c0; text-decoration: none; }
hr { background-color: #ccc; border: 0; height: 1px; margin: 24px; margin-bottom: 1.714285714rem; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }
small { font-size: smaller; }
img { border: 0; -ms-interpolation-mode: bicubic; }
/* fontawesome */
.custom-icon:before {
    content: "\f015"; /* Kode Font Awesome untuk ikon rumah */
    font-family: FontAwesome;
}
/* GENERAL */
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #363636;
	background: #ffffff;
}
a { text-decoration: none; }
a:hover { text-decoration: underline; /*color: #000;*/ }
sup { font-size: 60%; }
strong { font-weight: bold; }
em { font-style: italic; }
.clear { clear: both; }
small { font-size: 12px; }

/* h1 { font-size: 30px; color: blue;} */
/* Header */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden; 
}
/* Style umum untuk header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background-color: #ffffff;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1); 
    border-bottom: 1px solid #ddd;
    position: relative; 
    z-index: 10; 
}

/* Style dasar untuk navbar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #ddd;
    padding: 0.8rem 1rem; 
    z-index: 1030;
}

.navbar-brand {
    margin-right: 28rem !important; 
}

/* Logo di navbar */
.navbar-brand img {
    max-height: 58px;
    width: auto;
    display: inline-block;
    margin: -28px auto 10px 16px;
    position: absolute;
}

/* Tombol toggler untuk layar kecil */
.navbar-toggler {
    border: none; 
    background-color: transparent; 
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-size: cover;
}

/* Offcanvas styling untuk menu di layar kecil */
.offcanvas {
    background-color: #ffffff;
    padding: 1rem;
}

.offcanvas-header {
    border-bottom: 1px solid #ddd;
}

.offcanvas-title img {
    max-height: 40px;
    width: auto;
}


.nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
/* Navigasi menu */
.nav ul {
    list-style: none; 
    padding: 0;
    margin: 0;
    display: flex; 
    gap: 9px; 
    margin-left: auto;
    justify-content: flex-end;
}

.nav ul li a {
    text-decoration: none;
    color: #004AAD;
    font-size: 15px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
    margin-right: auto;
}

.nav ul li a:hover {
    transform: scale(4.0);
    color: #007bff; 
}

/* Responsivitas untuk layar kecil */
@media (max-width: 992px) {
    .nav {
        justify-content: flex-start; 
    }

    .navbar-brand {
        margin-left: 0; 
    }

    .nav ul {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .nav ul li {
        width: 100%; 
    }

    .nav ul li a {
        text-align: left;
        padding: 0.75rem 1rem;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        padding: 10px 15px;
    }

    .navbar-brand img {
        margin-left: 10px;
        width: 11%;
        margin-top: -24px;
    }

    .nav ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        align-items: flex-start;
        padding: 0;
        font-size: 30px;
        margin-top: 10px;
    }

    .nav ul li {
        width: 100%;
        list-style: none;
    }
}
@media (max-width: 500px) {
    /* Pastikan navbar menggunakan flexbox */
    .navbar {
        display: flex;
        justify-content: space-between; /* Pisahkan ikon menu dan logo */
        align-items: center;
        padding: 10px 15px;
        width: 100%;
        position: relative;
    }

    /* Pastikan logo tetap sejajar */
    .navbar-brand {
        display: flex;
        align-items: center;
        margin-left: auto; /* Dorong logo ke kanan */
    }

    .navbar-brand img {
        width: auto;
        height: 40px; /* Sesuaikan tinggi logo */
        max-width: 100px;
        object-fit: contain;
        margin-top: 60px;
    }
    .navbar-toggler {
        margin-left: auto;
    }
}



@media (max-width: 320px) {
    .nav {
        display: flex;
        justify-content: space-between; /* Logo di kiri, menu di kanan */
        align-items: center;
        padding: 8px 12px;
    }

    /* Logo lebih kecil dan tetap di kiri */
    .navbar-brand img {
        width: 25%;
    }

    /* Tombol menu di kanan */
    .menu-button {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }
    .navbar-toggler {
        margin-left: auto;
    }

}


/* Clearfix untuk elemen floating */
.clear {
    clear: both;
}

/* Background */
.wrapper-content {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.wrap-content-head {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Latar Belakang Responsif */
.bg {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 75vh;
}

.bg img {
    object-fit: cover;
    width: 100%;
    height: 75vh;
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    position: absolute;
    text-align: left;
    z-index: 1;
}

.hero-text {
    color: #ffffff;
    position: relative;
    z-index: 2;
    margin: 83px 20px; 
}

.hero-textdesc{
    font-size: clamp(16px, 3vw, 20px) !important;
    margin-bottom: 15px;
    font-weight: normal;
}

.hero-text h2 {
    font-size: clamp(24px, 5vw, 28px) !important;
    font-size: 38px;
    font-weight: bold;
    max-width: 400px;
    margin-bottom: 15px;
}

.hero-texthome {
    position: absolute;
    font-size: clamp(14px, 1.5vw, 22px) !important; 
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-text .btn {
    position: absolute;
    padding: 8px 15px;
    display: inline-block;
    margin: 130px 0px;
    font-size: 14px;
    background-color: white;
    color: #004AAD;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease; 
}
.hero-text .btn:hover {
    transform: scale(1.05);
    color: #fbfdff;
    background-color: #044182;
}
/* Container utama */
.container {
    position: relative;
    display: block;
    max-width: 1065px !important;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    padding: 0;
    margin: 0 auto;
}

/* Kotak pencarian */
.boxsearch {
    position: absolute;
    top: -35px;
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 20px;
    right: 0px;
}

.boxsearch a{
    text-decoration: none;
}

/* Teks pencarian */
.textsearch {
    font-size: 18px;
    font-weight: bold;
    color: #004AAD;
    text-decoration: none;
}

/* Baris utama */
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px;
    max-width: 94%;
}

/* Kolom properti */
.col {
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: space-between;
    background-color: #E7F1FF;
    border-radius: 15px;
    padding: 10px 12px;
    text-align: left;
    width: 180px;
    height: 70px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Gambar ikon */
.col img {
    width: 22px;
    height: 22px;
    margin-right: 8px;
}

/* Teks dalam kolom */
.col .text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Teks properti */
.col p {
    font-size: 10px;
    color: #1A1A1A;
    margin: 0;
    text-align: left;
}

/* Teks bold */
.bold {
    font-weight: 600;
    color: #001E62;
}

/* Ikon dropdown */
.dropdown-icon {
    font-size: 16px;
    color: #004AAD;
    cursor: pointer;
    margin-left: auto;
}

/* Kotak pencarian */
.search-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #007bff;
    border-radius: 23%;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
}

.search-icon-box i {
    font-size: 22px;
}

/* Hover effect */
.search-icon-box:hover {
    background-color: #0056b3;
    transform: translateY(-50%) scale(1.1);
}
/* ✅ Ukuran tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero-text .btn{
        margin: 85px auto;
    }
    .container {
        max-width: 95% !important; 
        padding: 0 10px; 
    }
    .row {
        gap: 20px;
        justify-content: center;
        max-width: 286%;
        width: 94%;
    }
    .col {
        width: 90px !important; 
        height: 60px !important; 
        padding: 8px; 
        font-size: 12px; 
        flex: 0 0 auto;
    }

    .search-icon-box {
        right: 13px;
        width: 60px;
        height: 60px;
    }

    .search-icon-box i {
        font-size: 20px; 
    }
}

@media screen and (max-width: 768px) and (min-width: 551px) {
    .row {
        display: flex;
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 10px;
    }

    .col {
        flex: 1 1 45%; 
        max-width: 180px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

@media screen and (max-width: 550px) {
    .row {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between;
        gap: 11px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch; 
        position: relative;
        clip-path: inset(0 0 0 0 round 20px);
    }
    /* Scrollbar styling */
    .row::-webkit-scrollbar {
        height: 8px;
    }

    .row::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }

    .col {
        flex: 1 1 auto !important;
        max-width: 27% !important;
        min-width: 131px;
        height: 46px !important;
        display: flex;
        z-index: 2;
        align-items: center;
        justify-content: space-between;
        background-color: #E7F1FF;
        border-radius: 15px;
        padding: 5px 8px;
        text-align: left;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        white-space: nowrap;
    }

    /* Ikon pencarian tetap di kanan */
    .search-icon-box {
        position: absolute;
        top: 50%;
        right: 6px;
        transform: translateY(-50%);
        width: 38px;
        height: 45px;
        background-color: #007bff;
        border-radius: 27%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        cursor: pointer;
        transition: background-color 0.3sease, transform 0.2sease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .search-icon-box i {
        font-size: 16px; /* Ukuran ikon lebih kecil agar proporsional */
    }
    
}


/* ABOUT */
/* ✅ Section About */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 166px;
    width: 100%;
    height: auto;
    background-position: center;
    background-size: cover;
    flex-wrap: wrap;
    padding: 20px;
}

/* ✅ Atur Gambar */
.about img {
    position: relative;
    right: -323px;
    width: 25%;
    height: auto;
    object-fit: cover;
    margin: -141px auto 0px auto;
}

/* ✅ Kontainer Utama */
.wrapper-content2 {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 9px !important;
    gap: 33px;
    max-width: 1082px;
    margin: 10px auto;
    position: relative;
    /* background: antiquewhite; */
    width: 100%;
    height: 71vh !important;
    overflow: hidden;
    flex-wrap: wrap;
}

/* ✅ Text About */
.textabout {
    position: relative;
    flex: 1;
    max-width: 60%;
    text-align: left;
    margin: 20px 0;
    padding-left: 20px;
}

.about-text {
    position: absolute;
    font-size: 14px;
    line-height: 1.8;
    color: #004AAD;
    margin: -123px 0;
    width: 70%;
    padding-left: 77px;
}

/* ✅ Pastikan teks tidak terlalu lebar di layar kecil */
.serra {
    position: absolute;
    font-size: 17px;
    font-weight: bold;
    color: #004AAD;
    margin: -155px auto 0px 75px;
    max-width: 104%;
}

/* ✅ Tombol Responsif */
.contact-btn {
    position: absolute;
    display: inline-block;
    padding: 6px 7px;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    background-color: #004AAD;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 34px;
    margin-left: 79px;
}

.contact-btn:hover {
    background-color: #007bff;
    text-decoration: none !important;
    transform: scale(1.05);
}

/* ✅ Media Queries untuk Responsivitas */
@media (max-width: 1024px) {
    .about {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 166px;
        width: 100%;
        height: auto;
        background-position: center;
        background-size: cover;
    }
    .about img {
        position: relative;
        right: -286px;
        width: 25%;
        height: auto;
        object-fit: cover;
        margin: -159px auto 0px auto;
    }
    .wrapper-content2 {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 9px !important;
        gap: 33px;
        /* background: antiquewhite; */
        max-width: 1582px;
        margin: 10px auto;
        position: relative;
        width: 100%;
        height: 71vh !important;
        overflow: hidden;
    }
    .textabout {
        position: relative;
        flex: 1;
        max-width: 60%;
        text-align: left;
        margin: 20px 0;
        padding-left: 20px;
    }
    .about-text {
        position: absolute;
        font-size: 14px;
        line-height: 1.6;
        color: #004AAD;
        margin: -100px 0;
        width: 100%;
        padding-left: 60px;
    }
    .serra {
        position: absolute;
        font-size: 16px;
        font-weight: bold;
        color: #004AAD;
        margin: -130px auto 0px 60px;
        max-width: 100%;
    }
    .contact-btn {
        position: absolute;
        display: inline-block;
        padding: 5px 6px;
        font-size: 12px;
        font-weight: bold;
        color: #fff;
        background-color: #004AAD;
        border: none;
        border-radius: 5px;
        text-decoration: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
        margin-top: 0px;
        margin-left: 60px;
    }
}

@media (max-width: 768px) {
    .about {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin: -120px auto 0 -42px;
    }
    .about img {
        width: 30%;
        margin: 0 auto;
    }
    .wrapper-content2 {
        flex-direction: row;
        height: auto;
        text-align: left;
        justify-content: center;
        margin: -38px auto;
    }
    .textabout {
        max-width: 55%;
        text-align: left;
        padding-left: 0;
    }
    .about-text {
        font-size: 12px;
        margin: -80px 0;
        padding-left: 40px;
    }
    .serra {
        font-size: 14px;
        margin: -110px auto 0px 40px;
    }
    .contact-btn {
        font-size: 11px;
        padding: 4px 5px;
        margin-top: 25px;
        background-color: #004AAD;
        margin-left: 40px;
    }
}

@media (max-width: 500px) {
    .about {
        display: flex;
        flex-direction: column; /* Susun ke bawah */
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
        gap: 15px;
        padding: 0 5%;
    }

    .about img {
        width: 45%; /* Sesuaikan ukuran gambar */
        max-width: 280px;
        margin-bottom: 10px;
        left: 33%;
    }

    .wrapper-content2 {
        flex-direction: column;
        height: auto;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
        padding: 0 5%;
    }

    .textabout {
        width: 100%;
        max-width: 83%;
        text-align: justify;
        padding: 0 10px;
        font-size: 15px;
        line-height: 1.6;
        left: -32px;
    }

    .about-text {
        font-size: 10px;
        margin: 30px auto;
        padding: 0px;
        line-height: 1.5;
        text-align: justify;
        max-width: 51%;
    }

    .serra {
        font-size: 10px;
        font-weight: bold;
        margin: 10px auto;
        text-align: center;
    }

    .contact-btn {
        font-size: 10px;
        padding: 6px 14px;
        margin-top: 230px;
        background-color: #004AAD;
        border-radius: 5px;
        display: inline-block;
        left: -30px;
    }
}

@media (max-width: 320px) {
    .about {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Gambar About */
    .about img {
        width: 40%; /* Sesuaikan ukuran gambar */
        margin-bottom: 10px;
        margin-left: 103px;
    }

    .wrapper-content2 {
        flex-direction: column;
        height: 49vh !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /* Teks About */
    .textabout {
        width: 100%;
        max-width: 95%;
        text-align: center;
        padding: 0 10px;
    }

    .about-text {
        font-size: 9px;
        margin: 30px 0 0 20px;
        padding: 1px;
        max-width: 161px;
        text-align: justify;
    }

    .serra {
        margin: 15px auto 0px 18px;
        white-space: normal;
        font-size: 10px;
        text-align: center;
    }

    /* Tombol */
    .contact-btn {
        font-size: 9px;
        padding: 6px 12px;
        margin-top: 157px;
        background-color: #004AAD;
        border-radius: 5px;
        margin-left: 61px;
    }
}

/* TEXT ABOUT END */
/* PENAWARAN */
.wrapper-content3 {
    /* background: antiquewhite;  */
    max-width: 1082px;
    position: relative;
    margin: 100px auto; 
    padding: 9px; 
    text-align: center;
    overflow: hidden;
}

.penawaran {
    font-size: 20px; 
    font-weight: bold; 
    color: #000000; 
    margin-bottom: 0; 
    white-space: nowrap;
    margin-left: 40px;
    margin-top: 37px; 
}

.properti2 {
    font-size: 40px;
    font-weight: normal;
    color: #004AAD;
    margin-bottom: 0;
    white-space: nowrap;
    margin-left: 40px;
    margin-top: -13px;
    position: absolute;
    left: 35%;
}
.multiple-items3 {
    width: 95%;
    margin-left: 10px;
    row-gap: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px !important; 
}
/* Styling untuk box "For Sale" */
.box-for-sale {
    position: absolute;
    top: 10px;
    left: 7px;
    background-color: white;
    color: #00357B;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 20px;
    border-radius: 5px;
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


/* Kartu individu */
.div-post3 {
    margin-bottom: 90px;
    position: relative;
    margin-left: 62px !important;
    margin-top: 50px !important;
    width: 100%;
    max-width: 262px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 auto; 
}

/* Hover efek pada card (jika ada) */
.div-post3:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); 
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Gambar di dalam kartu */
.div-img3 {
    width: 100%;
    height: 400%;
    overflow: hidden;
}

.div-img3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Konten dalam kartu */
.div-content3 h3 {
    font-size: 20px;
    text-align: left;
    font-weight: bold;
    margin: 10px 0 10px 20px;
    color: #003366;
}
/* Wrapper untuk ikon-ikon */
.info-icons-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 5px;
}

/* Setiap elemen info-icon (ikon + teks) */
.info-icon {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100px;
}

/* Ikon */
.icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Teks ukuran rumah */
.info-text {
    display: block;
    font-size: 12px;
    font-weight: bold;
    color: #003366;
}

.info-label-harga {
    font-size: 14px; 
    font-weight: bold;
    color: #00357B;
    white-space: nowrap;
    margin-left: 20px;
}
.harga{
    font-size: 14px; 
    font-weight: bold;
    color: #00357B;
    white-space: nowrap;
}

/* Properti unggulan */
.linkpost4 {
    margin-bottom: 30px;
    margin-top: 28px;
    background-color: #004AAD;
    color: #fff;
    padding: 3px 46px;
    border: none;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.linkpost4:hover {
    background-color: #0056b3;
}
.unggulan {
    text-align: left !important;
    margin-left: 84px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-top: 2% ;
    color: #004AAD;
}

.nav1 {
    display: flex; 
    gap: 20px; 
    justify-content: center; 
}

.nav-link2{
    position: absolute;
    text-decoration: none; 
    font-weight: bold;
    font-size: 15px; 
    color: #007bff; 
    padding: 10px 15px; 
    border-radius: 5px; 
    transition: background-color 0.3s ease, color 0.3s ease; 
    margin-right: -59%;
    margin-top: -51px;
}
.nav-link3 {
    position: absolute;
    font-weight: bold;
    text-decoration: none; 
    font-size: 15px; 
    color: #4f5154; 
    padding: 10px 15px; 
    border-radius: 5px; 
    transition: background-color 0.3s ease, color 0.3s ease; 
    margin-right: -78%;
    margin-top: -51px;
}

/* Gaya untuk dots (pagination kecil) */
.slick-dots {
    position: absolute;
    bottom: 10px; /* Sesuaikan posisi */
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 5px; /* Jarak antar titik */
    width: auto !important;
    max-width: 100%;
}

.slick-dots li {
    list-style: none;
    display: inline-block;
    margin: 0 3px;
}

.slick-dots li button {
    width: 8px; /* Ukuran lebih kecil */
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
    background-color: #004AAD; /* Warna biru untuk aktif */
    transform: scale(1.3);
}

.slick-dots li::before {
    content: ""; 
    position: absolute;
    top: 50% ;
    left: 50% ;
    transform: translate(-50%, -50%) ;
    width: 32px ; 
    height: 32px ;
    border: 2px solid #004AAD; 
    border-radius: 50%; 
    z-index: 1; 
}

.slick-dots li button::before {
    display: none !important;
}
@media (max-width: 1024px) {
    .wrapper-content3 {
        max-width: 95%;
        margin: -71px auto;
        padding: 10px;
    }

    .penawaran {
        font-size: 18px; /* Ukuran tetap proporsional */
        margin-left: 30px;
    }

    .properti2 {
        font-size: 36px;
        left: 32%;
    }

    .multiple-items3 {
        width: 100%;
        justify-content: center;
        gap: 50px !important;
    }

    .div-post3 {
        max-width: 240px;
        margin-left: 40px !important;
        margin-top: 40px !important;
    }

    .div-img3 {
        height: auto;
    }

    .div-content3 h3 {
        font-size: 18px;
    }

    .info-label-harga,
    .harga {
        font-size: 13px;
    }

    .linkpost4 {
        font-size: 14px;
        padding: 5px 40px;
    }

    .unggulan {
        font-size: 18px;
        margin-left: 70px;
    }

    .nav-link2 {
        font-size: 14px;
        margin-right: -55%;
        margin-top: -45px;
    }

    .nav-link3 {
        font-size: 14px;
        margin-right: -75%;
        margin-top: -45px;
    }

    .slick-dots li button {
        width: 18px;
        height: 18px;
    }

    .slick-dots li::before {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 768px) {
    .wrapper-content3 {
        max-width: 90%;
        margin: -50px auto;
        padding: 10px;
    }

    .penawaran {
        font-size: 16px; /* Sedikit lebih kecil */
        margin-left: 20px;
    }

    .properti2 {
        font-size: 32px;
        left: 28%;
    }

    .multiple-items3 {
        width: 100%;
        justify-content: center;
        gap: 40px !important;
    }

    .div-post3 {
        max-width: 220px;
        margin-left: 20px !important;
        margin-top: 40px !important;
    }

    .div-img3 {
        height: auto;
    }

    .div-content3 h3 {
        font-size: 16px;
    }

    .slick-dots li button {
        width: 16px;
        height: 16px;
    }

    .slick-dots li::before {
        width: 32px;
        height: 32px;
    }
}
@media (max-width: 500px) {
    .wrapper-content3 {
        max-width: 95%;
        margin: 34  px auto;
        padding: 8px;
    }

    .penawaran {
        font-size: 14px;
        text-align: center;
        margin: 0 auto;
    }

    .properti2 {
        font-size: 28px;
        text-align: center;
        margin: 0 auto;
        display: block;
    }
    .multiple-items3 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px !important;
    }

    .div-post3 {
        width: calc(66% - 10px) !important;
        max-width: 245px;
        margin-left: 12px !important;
        margin-top: 43px !important;
        text-align: center;
    }

    .div-img3 {
        height: auto;
    }

    .div-content3 h3 {
        font-size: 14px;
    }

    .info-label-harga,
    .harga {
        font-size: 11px;
    }

    .linkpost4 {
        font-size: 12px;
        padding: 4px 25px;
    }

    .unggulan {
        font-size: 14px;
        margin-left: 30px;
    }

    .nav-link2 {
        font-size: 12px;
        margin-right: -28%;
        margin-top: -29px;
    }

    .nav-link3 {
        font-size: 12px;
        margin-right: -65%;
        margin-top: -29px;
    }

    .slick-dots {
        justify-content: center;
        align-items: center;
        margin: 50px auto !important;
    }
    
    .slick-dots li {
        position: relative;
        margin: 0 5px;
        width: 20px;
        height: 20px;
    }
    
    .slick-dots li::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }
    
    .slick-dots li button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        background: blue; /* Warna default */
        border: none;
        cursor: pointer;
        z-index: 2;
    }
    
    /* Warna khusus untuk tombol aktif */
    .slick-dots li.slick-active button {
        transform: translate(-50%, -50%) scale(1.1);
        width: 22px !important;
        height: 22px !important;
    }        
    
}
@media (max-width: 320px) {
    .wrapper-content3 {
        max-width: 98%;
        margin: 40px auto;
        padding: 6px;
    }

    .penawaran {
        font-size: 12px;
        text-align: center;
        margin: 0 auto;
    }

    .properti2 {
        font-size: 22px;
        text-align: center;
        margin: 0 auto;
        display: block;
    }

    .multiple-items3 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px !important;
    }

    .div-post3 {
        width: 90% !important; 
        max-width: 220px;
        margin: 38px auto !important;
        text-align: center;
    }

    .div-img3 {
        height: auto;
    }

    .div-content3 h3 {
        font-size: 12px !important;
        text-align: center !important;
    }

    .info-label-harga,
    .harga {
        font-size: 10px;
    }

    .linkpost4 {
        font-size: 12px;
        padding: 4px 20px;
    }

    .slick-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 30px auto !important;
    }
    
    .slick-dots li {
        position: relative;
        margin: 0 4px;
        width: 20px;
        height: 20px;
    }
    
    .slick-dots li::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-72%, -50%);
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }
    
    .slick-dots li button {
        position: absolute;
        top: 50%;
        left: 17%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        border: none;
        cursor: pointer;
        z-index: 2;
    }
    
    /* Warna khusus untuk tombol aktif */
    .slick-dots li.slick-active button {
        transform: translate(-50%, -50%) scale(1.1);
    }        
}



/* PEMAWARAN END */
/* Properti unggulan */
.wrapper-content4 {
    /* background: antiquewhite;  */
    max-width: 1082px; 
    position: relative;
    margin: 100px auto;
    padding: 9px; 
    text-align: center;
    overflow: hidden;
}
.multiple-items4 {
    width: 95%;
    margin-left: 10px;
    row-gap: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px !important; 
}
/* properti unggulan end */
/* blog dan berita */
.wrapper-content5 {
    /* background: antiquewhite; Pastikan background sama */
    max-width: 1082px; 
    position: relative; 
    margin: 100px auto; 
    padding: 9px; 
    text-align: center;
    overflow: hidden;
}
.div-content3 h3 {
    font-size: 14px;
    font-weight: bold;
    color: #003366;
    text-align: left;
    margin-bottom: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.post-categories-container {
    display: flex; /* Membuat semua elemen sejajar */
    align-items: center; /* Menyelaraskan secara vertikal */
    gap: 10px; /* Jarak antar elemen */
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    color: #0047AB;
}
.post-categories {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap; /* Tetap dalam satu baris */
    overflow-x: auto; /* Jika kategori banyak, bisa di-scroll ke samping */
    white-space: nowrap; /* Mencegah tombol pindah ke baris baru */
}

.category-btn-blog {
    background-color: #F0F5FF;
    border: none;
    padding: 6px 6px;
    border-radius: 10px;
    font-size: 12px;
    cursor: pointer;
    color: #0047AB;
    font-weight: bold;
    flex-shrink: 0; /* Mencegah tombol mengecil */
}

.category-btn-blog:hover {
    background-color: #d9e4ff;
}
@media (max-width: 1024px) {
    .post-categories-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .post-categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
    }

    .category-btn-blog {
        font-size: 12px;
        padding: 6px 8px;
    }

    .icon-btn {
        padding: 5px;
        color: #004AAD;
    }
}

/* blog dan berita end */
/* Footer Styling */
.footer {
    min-height: auto;
    padding: 30px 20px;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

.artikel-text a{
    text-decoration: none;
    color: gray;
}
/* Footer Text */
.footer-text {
    color: gray;
}

/* Bold Text */
.footer-bold {
    font-weight: 900;
}

/* Logo Footer */
.footer-logo {
    width: 60%;
}

/* Sosial Media Icons */
.footer-icon {
    width: 100%;
    padding: 0px;
    margin: 0px;
}

/* Copyright Text */
.footer-copyright {
    color: #1e3a8a;
}
.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    color: gray;
    padding: 10px;
}
.footer .container {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 20px 0;
}

@media (max-width: 992px) {
    .footer-row {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .footer-row > div {
        flex: 1 1 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 5px 0;
    }

    .social-icons {
        justify-content: center;
        flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
    .footer-row > div {
        flex: 1 1 100%; 
    }
}


/* Wrapper utama */
.content-wrapper4-rumah {
    max-width: 1082px;
    position: relative;
    margin: 100px auto;
    padding: 9px;
    text-align: center;
    overflow: hidden;
    height: auto;
}

/* Kontainer Artikel */
.multiple-items4-rumah {
    width: 100%;
    margin-left: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Kartu Individu (disamakan dengan .div-post3) */
.div-post4-rumah {
    margin-bottom: 90px;
    position: relative;
    margin-left: 70px !important;
    margin-top: 50px !important;
    width: 100%;
    max-width: 268px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover efek pada card */
.div-post4-rumah:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Gambar dalam Card */
.div-img4-rumah {
    width: 100%;
    height: 175px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.div-img4-rumah img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Konten dalam Card */
.div-content4-rumah {
    padding: 15px;
}

.div-content4-rumah h3 {
    font-size: 15px;
    text-align: left;
    font-weight: bold;
    margin: 10px 0 10px 1px;
    color: #003366;
}

/* Informasi Properti */
.info-icons-wrapper-home {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 5px;
}

.info-icon-home {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100px;
}

.info-icon-home img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.info-text-home,
.info-label,
.info-text-harga {
    font-size: 14px;
    color: #003366;
    font-weight: bold;
    white-space: nowrap;
}

/* Tombol "Selengkapnya" (disamakan dengan .linkpost4) */
.linkpost4-rumah {
    margin-bottom: 30px;
    margin-top: 28px;
    background-color: #004AAD;
    color: #fff;
    padding: 3px 46px;
    border: none;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.linkpost4-rumah:hover {
    background-color: #0056b3;
}

/* Box "For Sale" */
.box-for-sale-rumah {
    position: absolute;
    top: 10px;
    left: 7px;
    background-color: white;
    color: #00357B;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 20px;
    border-radius: 5px;
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Properti Unggulan */
.unggulan {
    text-align: left !important;
    margin-left: 84px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-top: 2%;
    color: #004AAD;
}

@media (max-width: 1024px) {
    .content-wrapper4-rumah {
        max-width: 95%;
        margin: -17px auto;
        padding: 10px;
    }

    .multiple-items4-rumah {
        width: 100%;
        justify-content: center;
        gap: 50px !important;
    }

    .div-post4-rumah {
        max-width: 240px;
        margin-left: 40px !important;
        margin-top: 40px !important;
    }

    .div-img4-rumah {
        height: auto;
    }

    .div-content4-rumah h3 {
        font-size: 14px;
    }

    .info-text-home,
    .info-label,
    .info-text-harga {
        font-size: 12px;
    }

    .linkpost4-rumah {
        font-size: 12px;
        padding: 4px 20px;
    }

    .unggulan {
        font-size: 18px;
        margin-left: 70px;
    }
}

@media (max-width: 768px) {
    .content-wrapper4-rumah {
        max-width: 90%;
        margin: -50px auto;
        padding: 10px;
    }

    .unggulan {
        font-size: 16px; /* Sesuai dengan .penawaran */
        margin-left: 20px;
    }

    .multiple-items4-rumah {
        width: 100%;
        justify-content: center;
        gap: 119px !important;
    }

    .div-post4-rumah {
        max-width: 222px; /* Sama dengan .div-post3 */
        margin-left: 20px !important;
        margin-top: 40px !important;
    }

    .div-img4-rumah {
        height: auto;
    }

    .div-content4-rumah h3 {
        font-size: 16px; /* Sama dengan .div-content3 h3 */
    }
    .linkpost4-rumah {
        font-size: 12px;
        padding: 4px 20px;
    }

    .unggulan {
        font-size: 18px;
        margin-left: 70px;
    }

}

@media (max-width: 500px) {
    .content-wrapper4-rumah {
        max-width: 95%;
        margin: -40px auto;
        padding: 8px;
    }

    .unggulan {
        font-size: 14px;
        text-align: center;
        margin: 0 auto;
        display: block;
    }

    .multiple-items4-rumah {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px !important;
    }

    .div-post4-rumah {
        width: calc(100% - 10px) !important;
        max-width: 230px; /* Sedikit lebih kecil agar pas di semua layar kecil */
        margin-left: 10px !important;
        margin-top: 40px !important;
        text-align: center;
    }

    .div-img4-rumah {
        height: auto;
    }

    .div-content4-rumah h3 {
        font-size: 12px; /* Perkecil sedikit agar lebih responsif */
    }

    .info-label,
    .info-text-harga {
        font-size: 10px; /* Kurangi ukuran font agar lebih pas */
    }

    .linkpost4-rumah {
        font-size: 11px;
        padding: 4px 20px;
    }
}


@media (max-width: 320px) {
    .content-wrapper4-rumah {
        max-width: 98%;
        margin: -30px auto;
        padding: 6px;
    }

    .unggulan {
        font-size: 12px;
        text-align: center;
        margin: 0 auto;
        display: block;
    }

    .multiple-items4-rumah {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px !important;
    }

    .div-post4-rumah {
        width: calc(100% - 8px) !important;
        max-width: 210px; /* Lebih kecil agar pas di layar 320px */
        margin-left: 5px !important;
        margin-top: 30px !important;
        text-align: center;
    }

    .div-img4-rumah {
        height: auto;
    }

    .div-content4-rumah h3 {
        font-size: 11px; /* Perkecil lagi untuk layar kecil */
    }

    .info-label,
    .info-text-harga {
        font-size: 9px; /* Lebih kecil agar pas */
    }

    .linkpost4-rumah {
        font-size: 10px;
        padding: 3px 15px;
    }

    .nav-link2 {
        font-size: 10px;
        margin-right: -30%;
        margin-top: -25px;
    }

    .nav-link3 {
        font-size: 10px;
        margin-right: -50%;
        margin-top: -25px;
    }
}


/* Clearfix untuk layout */
.clear {
    clear: both;
}
.pagination {
    position: relative;
    width: 100%;
    top: 5px;
    display: flex;
    justify-content: center;
    gap: 10px; /* Kurangi jarak antar elemen */
    align-items: center;
}

/* Styling untuk tiap page item */
.pagination .page-item {
    list-style: none;
}

/* Styling untuk link pagination */
.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Lebih kecil */
    height: 40px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Styling tombol aktif (1, 2, 3) */
.pagination .page-item.active .page-link {
    background-color: #004AAD !important; /* Warna biru */
    color: #ffffff !important;
    border-color: #004AAD !important;
    border-radius: 50%;
    width: 45px; /* Sesuaikan ukuran */
    height: 45px;
    font-size: 18px;
}

/* Styling tombol yang tidak aktif */
.pagination .page-item .page-link {
    background-color: gray !important;
    color: white !important;
    border-color: gray !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 16px;
}

/* Hover efek untuk tombol yang tidak aktif */
.pagination .page-item .page-link:hover {
    background-color: #004AAD !important;
    color: white !important;
    border-color: #004AAD !important;
}

/* Styling tombol Previous dan Next */
.pagination .page-item .page-link[aria-label="Previous"],
.pagination .page-item .page-link[aria-label="Next"] {
    width: 45px; 
    height: 45px;
    background-color: #004AAD !important;
    border: 3px solid #004AAD !important;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
}

/* Lingkaran putih di dalam tombol Previous dan Next */
.pagination .page-item .page-link[aria-label="Previous"]::after,
.pagination .page-item .page-link[aria-label="Next"]::after {
    content: "";
    position: absolute;
    width: 32px; /* Ukuran lingkaran dalam */
    height: 32px;
    border: 3px solid white;
    border-radius: 50%;
}

/* Hover efek untuk tombol Previous dan Next */
.pagination .page-item .page-link[aria-label="Previous"]:hover,
.pagination .page-item .page-link[aria-label="Next"]:hover {
    background-color: white !important;
    color: #004AAD !important;
    border-color: white !important;
}

/* Ikon panah di tengah */
.pagination .page-item .page-link[aria-label="Previous"]::before {
    content: "❮"; /* Simbol panah kiri */
    position: relative;
    z-index: 2;
}

.pagination .page-item .page-link[aria-label="Next"]::before {
    content: "❯"; /* Simbol panah kanan */
    position: relative;
    z-index: 2;
}


@media screen and (max-width: 1024px) {
    .pagination {
        position: relative;
        top: 18px;
        gap: 10px; /* Kurangi jarak antar elemen */
    }

    .pagination .page-link {
        width: 50px !important; /* Sedikit lebih kecil */
        height: 50px !important;
        font-size: 20px !important;
    }

    .pagination .page-item.active .page-link {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .pagination .page-item .page-link[aria-label="Previous"],
    .pagination .page-item .page-link[aria-label="Next"] {
        width: 55px;
        height: 55px;
        border: 4px solid #004AAD;
    }

    .pagination .page-item .page-link[aria-label="Previous"]::after,
    .pagination .page-item .page-link[aria-label="Next"]::after {
        width: 35px;
        height: 35px;
        border: 4px solid white;
    }
}

@media screen and (max-width: 768px) {
    .pagination {
        position: relative;
        top: 10px; /* Sesuaikan agar naik */
        gap: 8px; /* Kurangi jarak antar elemen */
    }

    .pagination .page-link {
        width: 45px !important; /* Lebih kecil */
        height: 45px !important;
        font-size: 18px !important;
    }

    .pagination .page-item.active .page-link {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .pagination .page-item .page-link[aria-label="Previous"],
    .pagination .page-item .page-link[aria-label="Next"] {
        width: 50px;
        height: 50px;
        border: 3px solid #004AAD;
    }

    .pagination .page-item .page-link[aria-label="Previous"]::after,
    .pagination .page-item .page-link[aria-label="Next"]::after {
        width: 36px;
        height: 36px;
        border: 5px solid white;
    }
}

@media screen and (max-width: 500px) {
    .pagination {
        position: relative;
        top: -22px; /* Naikkan posisi */
        gap: 5px; /* Kurangi jarak antar elemen */
    }

    .pagination .page-link {
        width: 40px !important; /* Lebih kecil */
        height: 40px !important;
        font-size: 16px !important;
    }

    .pagination .page-item.active .page-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .pagination .page-item .page-link[aria-label="Previous"],
    .pagination .page-item .page-link[aria-label="Next"] {
        width: 45px;
        height: 45px;
        border: 3px solid #004AAD;
    }

    .pagination .page-item .page-link[aria-label="Previous"]::after,
    .pagination .page-item .page-link[aria-label="Next"]::after {
        width: 32px;
        height: 32px;
        border: 3px solid white;
    }
}

@media screen and (max-width: 320px) {
    .pagination {
        position: relative;
        top: -50px; /* Naikkan posisi */
        gap: 3px; /* Kurangi jarak antar elemen */
    }

    .pagination .page-link {
        width: 35px !important;
        height: 35px !important;
        font-size: 14px !important;
    }

    .pagination .page-item.active .page-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .pagination .page-item .page-link[aria-label="Previous"],
    .pagination .page-item .page-link[aria-label="Next"] {
        width: 40px;
        height: 40px;
        border: 2px solid #004AAD;
    }

    .pagination .page-item .page-link[aria-label="Previous"]::after,
    .pagination .page-item .page-link[aria-label="Next"]::after {
        width: 28px;
        height: 28px;
        border: 3px solid white;
    }
}


/* Wrapper Utama */
.content-wrapper6 {
    /* background: antiquewhite; */
    max-width: 1082px;
    position: relative;
    margin: 14px auto;
    padding: 9px;
    text-align: center;
    overflow: hidden;
    height: auto;
}
.kategori-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap; /* Pastikan tetap dalam satu baris */
    width: 100%; /* Pastikan memenuhi lebar */
}

.kategori-header p {
    margin: 10px 0 0 42px; /* Hilangkan auto agar tidak menggeser elemen */
    font-size: 20px;
    font-weight: bold;
    color: #555;
    white-space: nowrap; /* Cegah teks turun ke baris berikutnya */
}

.kategori-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; 
    margin-top: 20px;
    margin: 10px auto 0px 42px;
}


.kategori-buttons ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.kategori-buttons ul li {
    background-color: #004AAD;
    border-radius: 10px;
    padding: 11px 22px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease; 
}

.kategori-buttons ul li:hover {
    background-color: #001E62;
    transform: scale(1.1);
}

.kategori-buttons ul li a {
    text-decoration: none;
    /* font-weight: bold; */
    color: #E7F1FF;
    display: block;
    text-align: center; 
}

.kategori-buttons-blog ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 10px 0 0 40px;
    gap: 10px;
}
.kategori-buttons-blog ul li {
    background-color: #004AAD;
    border-radius: 10px;
    padding: 11px 22px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease; 
}

.kategori-buttons-blog ul li:hover {
    background-color: #001E62;
    transform: scale(1.1);
}

.kategori-buttons-blog ul li a {
    text-decoration: none;
    /* font-weight: bold; */
    color: #E7F1FF;
    display: block;
    text-align: center; 
}
.search-container {
    display: flex;
    justify-content: flex-end; /* Menggeser ke kanan */
    align-items: center;
    width: 100%;
    margin-top: 20px;
    padding-right: 20px; /* Beri jarak dari kanan */
}

/* Styling Form */
.search-form {
    display: flex;
    align-items: center;
    background-color: #F5F9FF;
    border: 1px solid #BCD4E6;
    border-radius: 20px;
    padding: 6px 15px;
    width: 100%;
    max-width: 348px;
    margin-top: -12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Input Search */
.search-input {
    border: none;
    outline: none;
    flex: 1;
    padding: 8px 12px;
    font-size: 14px;
    background: transparent;
    color: #555;
}

/* Placeholder Styling */
.search-input::placeholder {
    color: #A0A0A0;
}

/* Tombol Ikon Search */
.search-button {
    background: none;
    border: none;
    cursor: pointer;
    color: #004AAD;
    font-size: 18px;
    padding: 5px;
}
@media (max-width: 500px) {
    .kategori-header {
        gap: 54px; /* Kurangi jarak antar elemen */
    }

    .kategori-header p {
        font-size: 16px; /* Perkecil ukuran teks */
        margin-left: 20px; /* Sesuaikan margin agar tidak terlalu jauh */
    }

    .kategori-buttons ul {
        gap: 5px; /* Kurangi jarak antar tombol */
    }
    .kategori-buttons{
        gap: 5px; /* Kurangi jarak antar tombol */
    }
    .kategori-buttons ul li {
        padding: 8px 16px; /* Perkecil ukuran tombol */
        font-size: 12px; /* Sesuaikan ukuran font */
    }

    .search-container {
        padding-right: 10px; /* Kurangi jarak kanan */
        transform: scale(0.8)  translateX(-20px);
        margin-top: 19px;
    }

    .search-form {
        max-width: 300px; /* Perkecil ukuran kotak pencarian */
        padding: 6px 12px;
    }

    .search-input {
        font-size: 12px; /* Perkecil font input */
        padding: 6px 10px;
    }

    .search-button {
        font-size: 16px; /* Sesuaikan ukuran ikon */
        padding: 3px;
    }
}

@media (max-width: 320px) {
    .kategori-header {
        gap: 47px; /* Kurangi jarak antar elemen */
        flex-wrap: nowrap; /* Pastikan tetap dalam satu baris */
    }

    .kategori-header p {
        font-size: 14px; /* Perkecil ukuran teks */
        margin-left: 10px; /* Kurangi jarak kiri */
        white-space: nowrap; /* Cegah teks turun ke bawah */
    }

    .kategori-buttons ul {
        gap: 3px; 
    }

    .kategori-buttons ul li {
        padding: 6px 12px; 
        font-size: 10px; 
    }

    .search-container {
        padding-right: 11px; 
        margin-top: -4px; 
    }
    .search-form {
        max-width: 220px; 
        padding: 5px 8px; 
        margin: 4px auto;
    }

    .search-input {
        font-size: 10px; 
        padding: 5px 8px;
    }

    .search-button {
        font-size: 14px;
        padding: 6px;
    }
}

/* Blog Terbaru */
.berita-blog {
    margin-top: 40px;
}

.berita-blog .berita1 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #555;
}

/* Card Artikel */
.div-post1 {
    background-color: #fff;
    border: 1px solid #e0e0e0; 
    border-radius: 12px;
    width: 100%;
    max-width: 283px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}


.div-post1:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Thumbnail */
.div-img1 {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.div-img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Konten Artikel */
.div-content1 {
    padding: 10px;
    text-align: center;
}

.div-content1 h3 {
    font-size: 14px;
    font-weight: bold;
    color: #003366;
    text-align: left;
    margin-bottom: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
}

.linkpost1 {
    display: inline-block;
    background-color: #004AAD;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 69px;
    font-size: 12px;
    cursor: pointer;
    margin: 23px auto;
    transition: background-color 0.3s ease;
}

/* Grid Artikel */
.multiple-items1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    gap: 16px; /* Kurangi jarak antar kartu */
}

/* Responsif */
@media (max-width: 768px) {
    .multiple-items1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Menampilkan 2 card dalam satu baris */
        gap: 10px;
    }

    .div-post1 {
        width: 64%;
    }
}
@media (max-width: 500px) {
    .multiple-items1 {
        display: grid;
        grid-template-columns: 1fr; /* Hanya 1 kolom agar lebih responsif */
        gap: 10px; /* Beri jarak antar kartu */
        justify-content: center;
    }

    .div-post1 {
        width: 90%; /* Gunakan 90% agar tidak terlalu kecil */
        max-width: 230px; /* Batasi lebar maksimal */
        margin: 0 auto; /* Pusatkan setiap kartu */
    }
    .linkpost1 {
        display: block;
        width: 80%; /* Lebar fleksibel agar proporsional */
        padding: 10px 0; /* Menyesuaikan padding */
        font-size: 14px; /* Ukuran font yang pas */
        text-align: center;
        margin: 15px auto; /* Pusatkan tombol dan beri jarak */
        border-radius: 5px; /* Tetap bulat tapi tidak berlebihan */
        font-size: 13px;
    }
}


/* Single Post Content */
.wrap-content-single {
    margin: 40px auto;
    padding: 20px;
    max-width: 1082px;
    /* background-color: #fff; */
    border-radius: 10px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.title-single {
    font-size: 25px;
    font-weight: bold;
    color: #333;
    width: 90%;
}

.div-img-single img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 10px;
}

/* Categories */
.kategori-buttons1{
    padding: 10px;
}
.kategori-buttons1 ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.kategori-buttons1 ul li {
    background-color: #004AAD;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.kategori-buttons1 ul li:hover {
    background-color: #cad4de;
    text-decoration: none;
    transform: translateY(-5px); /* Efek melayang */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}

.kategori-buttons1 ul li a{
    text-decoration: none;
    color: #fff;
}

@media (max-width: 768px) {
    .search-container-small {
        padding-right: 8px;
        margin-top: -3px; /* Naikkan sedikit */
        transform: scale(0.9) translateX(-62%); /* Geser lebih ke kiri */
    }

    .search-container-small .search-form {
        max-width: 280px;
        padding: 6px 10px;
    }

    .search-container-small .search-input {
        font-size: 13px;
        padding: 5px 8px;
    }

    .search-container-small .search-button {
        font-size: 16px;
        padding: 4px;
    }
}

@media (max-width: 500px) {
    .search-container-small {
        padding-right: 5px;
        margin-top: -5px; /* Naikkan sedikit */
        transform: scale(0.85) translateX(-10%); /* Perkecil & geser ke kiri lebih dinamis */
        width: 100%; /* Pastikan tetap fleksibel */
        display: flex;
        justify-content: flex-start; /* Pastikan tetap ke kiri */
    }

    .search-container-small .search-form {
        max-width: 230px; /* Sesuaikan agar tetap proporsional */
        padding: 10px 6px;
    }

    .search-container-small .search-input {
        font-size: 15px;
        padding: 4px 6px;
    }

    .search-container-small .search-button {
        font-size: 14px;
        padding: 3px;
    }
    .kategori-buttons1 {
        padding: 5px; /* Kurangi padding agar lebih rapi */
    }

    .kategori-buttons1 ul {
        gap: 5px; /* Kurangi jarak antar tombol */
        justify-content: center; /* Pusatkan tombol */
    }

    .kategori-buttons1 ul li {
        padding: 8px 15px; /* Perkecil tombol */
        font-size: 12px; /* Sesuaikan ukuran font */
        border-radius: 8px; /* Kurangi border-radius */
    }

    .kategori-buttons1 ul li:hover {
        transform: translateY(-3px); /* Efek melayang lebih halus */
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    }

    .kategori-buttons1 ul li a {
        font-size: 11px; /* Sesuaikan ukuran teks */
    }
}

/* Sidebar */
/* Styling untuk wrapper utama */
.wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

/* Styling konten utama */
.wrapcontent-right {
    flex: 3;
    margin-right: 20px;
}

/* Styling sidebar */
.wrapsidebar {
    flex: 1;
    max-width: 300px;
    /* background-color: #f9f9f9; */
    padding: 14px;
    /* border: 1px solid #ddd;  */
    border-radius: 10px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);  */
}

/* Styling kategori artikel */
.sidebar-category {
    margin-bottom: 20px;
}

.kategori-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    text-decoration: none;
}

.kategori-list li {
    display: flex; 
    text-decoration: none;
}

.kategori-list a {
    display: inline-block;
    padding: 8px 12px; 
    background-color: #004AAD;
    font-weight: bold;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    text-align: center;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.kategori-list a:hover {
    background-color: #ddd; 
    color: #fff; 
    transform: scale(1.1);
    text-decoration: none;
}


/* Styling artikel lainnya */
.sidebar-relatedpost {
    margin-top: 20px;
}

.multiple-items-single {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.div-post-single {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.div-img-single img {
    width: 90%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

.div-content-single{
    font-size: 1rem;
    margin: 0 0 5px;
    width: 89%;
    color: #333;
    padding-bottom: 14px;
    width: 89%;
}

.linkpost {
    background-color: #004AAD;
    color: white;
    border: none;
    padding: 3px 46px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    display: inline-block;
    margin-top: 10px;
}

.linkpost:hover {
    background-color: #0056b3;
}

/* Clearfix untuk mencegah elemen melompat */
.clear {
    clear: both;
}

.sidebar-category p,
.sidebar-relatedpost p {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.sidebar-category ul {
    list-style: none;
    padding: 0;
}

.sidebar-category ul li {
    margin-bottom: 10px;
    color: #007bff;
    cursor: pointer;
}

.sidebar-category ul li:hover {
    text-decoration: none;
}


@media (max-width: 768px) {
    /* Wrapper tetap flex, tapi lebih fleksibel */
    .wrap {
        flex-direction: column;
        align-items: center;
    }

    /* Konten utama lebih luas */
    .wrapcontent-right {
        flex: 1;
        width: 95%;
        margin-right: 0;
    }

    /* Sidebar tetap ada, tapi lebih kecil */
    .wrapsidebar {
        flex: 1;
        max-width: 89%;
        padding: 10px;
        margin-top: 20px;
    }

    /* Kategori lebih kecil agar muat */
    .kategori-buttons1 ul {
        justify-content: left;
        gap: 8px;
        border-bottom: 2px solid #ccc;
        padding-bottom: 16px;
        width: 92%;

    }

    .kategori-buttons1 ul li {
        padding: 10px 15px;
        font-size: 14px;
    }

    /* Sidebar: artikel terkait dalam satu kolom */
    .multiple-items-single {
        flex-direction: column;
        gap: 15px;
        width: 40%; 
    }

    /* Kategori artikel tetap terlihat rapi */
    .kategori-list a {
        font-size: 13px;
        padding: 8px 12px;
    }

}

/* Related Posts */
.related-post {
    margin-bottom: 90px;
    margin-left: 0;
    margin-top: 20px; 
    width: 100%;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.related-post a {
    text-decoration: none;
}

/* Gambar di dalam kartu */
.related-post-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.related-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Konten di dalam kartu */
.related-post-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.related-post-content h3 {
    font-size: 14px;
    font-weight: bold;
    color: #003366;
    text-align: left;
    margin-bottom: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
}

.related-post-link {
    background-color: #004AAD;
    color: #fff;
    border: none;
    padding: 5px 66px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    text-decoration: none;
}

.related-post-link:hover {
    background-color: #0056b3;
}

@media (max-width: 500px) {
    .multiple-items-single {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 239px;
        margin: 0 auto;
    }

    /* Ukuran card seragam */
    .related-post-link {
        width: 100%; /* Penuhi container */
        max-width: 320px; /* Sesuai layar 320px */
        padding: 6px 12px;
        font-size: 12px;
        text-align: center;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
    }

    /* Gambar dalam card seragam */
    .related-post-img {
        height: 140px;
        width: 100%;
        max-width: 320px; /* Pastikan tidak melebar */
    }

    .related-post-img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    /* Konten dalam card seragam */
    .related-post-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .related-post-content h3 {
        font-size: 12px;
        margin-bottom: 6px;
        -webkit-line-clamp: 2;
    }
}


@media (max-width: 320px) {
    .multiple-items-single {
        flex-direction: column;
        gap: 10px;
        width: 95%; /* Lebih fleksibel di layar kecil */
        max-width: 300px; /* Batasi agar tidak terlalu lebar */
        margin: 0 auto;
    }

    /* Related Posts lebih kecil */
    .related-post-img {
        height: 120px; /* Kurangi tinggi gambar agar lebih pas */
        max-width: 100%;
    }

    .related-post-img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    /* Ukuran teks dan padding lebih kecil */
    .related-post-content h3 {
        font-size: 11px;
        margin-bottom: 5px;
        -webkit-line-clamp: 2;
    }

    /* Tombol lebih kecil */
    .related-post-link {
        font-size: 11px;
        margin-top: 8px;
        text-align: center;
        padding: 5px 57px;
    }
}



.wrapper-content-kontak {
    /* background: antiquewhite;  */
    max-width: 1082px;
    position: relative;
    margin: 10px auto; 
    padding: 20px; 
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
}

/* Styling untuk memperbesar ikon */
.besar-ikon {
    width: 50%;
    height: auto; 
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
/* Jarak untuk Heading */
.wrapper-content-kontak .row {
    display: flex; 
    justify-content: space-between; 
    gap: 50px; 
    flex-wrap: wrap;
    align-items: flex-start;
}

/* Kolom styling */
.wrapper-content-kontak .col-6 {
    flex: 1;
    min-width: 300px;
}

.text-kontak {
    margin-top: 30px;
    font-size: 24px;
    color: #FF0000;
    font-weight: bold;
    text-align: left;
}

.text-kantor {
    margin-top: 50px;
    margin-bottom: 20px;
    color: #00357B;
    font-size: 24px;
    font-weight: bold;
    text-align: left;
}

.konten-kanan {
    margin-top: 20px;
    font-size: 20px;
    color: #004AAD;
    text-align: left;
}
.info-kontak{
    font-size: 20px;
    color: #004AAD;
    text-align: left;
}
.icon {
    width: 20px;
    height: auto; 
    margin-right: 15px; 
    transition: transform 0.3s ease; 
    vertical-align: middle;
}

.kirim-pesan {
    margin-top: 50px;
    font-weight: bold;
    color: #00357B;
    font-size: 24px;
    text-align: left;
}

.pesan{
    width: 100%;
    max-width: 430px; /* Batasi ukuran maksimal */
    margin: 0 auto; /* Tengahkan */
    padding: 10px; /* Beri sedikit padding */
    box-sizing: border-box;
    text-align: left;
    font-size: 20px !important;
    color: #727272 !important;
}

.pesan input[type="text"],
.pesan input[type="email"],
.pesan textarea {
    padding: 10px; 
    font-size: 18px !important; 
    border-radius: 10px !important;
    margin-bottom: 15px;
    box-sizing: border-box; 
    background-color: #E8E8E8 !important; 
    border: 1px solid #ccc;
}

#wpforms-submit-306 {
    background-color: #00357B; 
    color: white; 
    border: none;
    padding: 5px 20px;
    font-size: 18px; 
    border-radius: 5px;
    cursor: pointer; 
    transition: background-color 0.3s; 
    display: inline-block; 
}

.maps {
    width: 100%; 
    height: 400px;
    border-radius: 10px !important; 
    margin-bottom: 20px;
    overflow: hidden;
}

.mapouter {
    position: relative;
    text-align: right;
    width: 100%; 
    height: 100%;
    border-radius: 10px; 
    overflow: hidden; 
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    width: 100%;
    height: 100%;
}

.gmap_iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
    border-radius: 10px;
}

@media screen and (max-width: 500px) {
    .wrapper-content-kontak {
        max-width: 100%;
        padding: 10px;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
    }

    .wrapper-content-kontak .row {
        flex-direction: column;
        gap: 20px;
        overflow-x: hidden;
    }

    .wrapper-content-kontak .col-6 {
        width: 100%;
        margin-right: 0;
    }

    .besar-ikon {
        width: 60%;
        margin: 0 auto 10px; 
    }
    .text-kontak{
        font-size: 20px;
        text-align: center;
    }
    .text-kantor,
    .konten-kanan,
    .info-kontak,
    .kirim-pesan,
    .pesan {
        text-align: left;
        font-size: 13px;
    }

    .pesan label {
        font-size: 11px !important; /* Ukuran label lebih kecil */
        font-weight: normal; /* Hindari ketebalan berlebihan */
    }
    #wpforms-submit-306 {
        font-size: 11px;
        padding: 4px 20px;
    }

    .maps {
        height: 250px;
        width: 94%;
    }
    .konten-kanan {
        white-space: normal;
        word-wrap: break-word;
        text-align: center;
        font-size: 15px;
        max-width: 262px;
    }
    
    .pesan{
        width: 100%;
        max-width: 318px;
        margin: 0 auto 0 -19px;
        padding: 16px;
        box-sizing: border-box;
        text-align: left;
        color: #727272 !important;
    }
}

/* Wrapper utama */
.wrap-content {
    padding: 20px;
    margin: 20px auto;
    max-width: 1082px;
    border-radius: 10px;
}

/* Wrapper dalam */
.wrap-single {
    display: flex;
    flex-direction: column;
}

/* Bagian kanan konten */
.wrapcontent-right {
    padding: 20px;
    border-radius: 10px;
}
/* Judul pencarian */
.title-pagearc {
    font-size: 24px;
    font-weight: bold;
    color: #00357B;
    margin: 0;
}

/* Container utama untuk daftar post */
.list-post {
    display: flex;
    flex-wrap: wrap;
    justify-content: left; /* Pastikan card tetap rata tengah */
    align-items: flex-start;
    padding: 20px;
    margin: 0 auto;
    gap: 20px; /* Tambahkan jarak antar card */
}

/* Card Artikel */
.div-post {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 264px;
    justify-content: center;
    align-items: center;
    margin: 10px; /* Beri jarak antar card */
}

.div-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}


/* Gambar Artikel */
.div-img {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.div-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* Konten Artikel */
.div-content {
    padding: 15px;
    text-align: center;
}

.div-content h3 {
    font-size: 16px;
    font-weight: bold;
    color: #003366;
    text-align: left;
    margin-bottom: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
}

@media (max-width: 1024px) {
    .list-post {
        justify-content: left; /* Pusatkan card */
    }

    .div-post {
        width: calc(31.33% - 20px); /* Bagi 3 dalam satu baris, dikurangi gap */
        max-width: 300px; /* Batasi ukuran maksimal */
        margin: 10px; /* Jarak antar card */
    }
}

@media (max-width: 768px) {
    .list-post {
        justify-content: center; /* Pusatkan card */
    }

    .div-post {
        width: calc(42% - 20px); /* Bagi 2 dalam satu baris, dikurangi gap */
        max-width: 320px; /* Batasi ukuran maksimal */
        margin: 10px; /* Jarak antar card */
    }
}

@media (max-width: 500px) {
    .list-post {
        justify-content: center; /* Pusatkan card */
    }

    .div-post {
        width: 90%; /* Gunakan lebar 90% agar fleksibel */
        max-width: 228px; /* Batasi ukuran maksimal */
        margin: 10px auto; /* Pusatkan dan beri jarak antar card */
    }
}

@media (max-width: 320px) {
    .list-post {
        justify-content: center; /* Pusatkan card */
    }

    .div-post {
        width: 95%;
        max-width: 200px;
        margin: 10px auto;
    }

    .div-content {
        padding: 10px; /* Kurangi padding agar lebih proporsional */
        text-align: center;
    }

    .div-content h3 {
        font-size: 14px; /* Perkecil ukuran teks judul */
        margin-bottom: 6px;
    }

    .div-content p {
        font-size: 12px; /* Perkecil ukuran teks konten */
        line-height: 1.4; /* Sesuaikan line-height agar lebih rapi */
    }
    .linkpost{
        font-size: 12px;
    }
}

    
/* Clearfix */
.clear {
    clear: both;
}

.search-container-tiny {
    transform: scale(0.85);
    margin-top: -5px;
}

.search-container-tiny .search-form {
    max-width: 292px;
    padding: 10px 6px;
    margin-top: -41px;
    margin-right: -158px;
}

.search-container-tiny .search-input {
    font-size: 15px;
    padding: 4px 6px;
}

.search-container-tiny .search-button {
    font-size: 14px;
    padding: 3px;
}

@media (max-width: 500px) {
    .search-container-tiny {
        transform: scale(0.85);
        margin-top: -5px;
        margin-left: 10px; /* Geser sedikit ke kanan */
    }

    .search-container-tiny .search-form {
        max-width: 212px;
        padding: 13px 7px;
        margin-top: -38px;
        margin-right: -97px;
        transform: scale(0.8);
    }
    .title-pagearc {
        font-size: 12px; /* Ukuran teks lebih kecil */
        text-align: left; /* Pusatkan teks */
        margin-bottom: 8px; /* Jarak bawah */
        font-weight: bold;
        margin-left: -25px;
    }
    .search-container-tiny .search-input {
        font-size: 13px;
        padding: 4px 6px;
    }

    .search-container-tiny .search-button {
        font-size: 14px;
        padding: 3px;
    }
}
@media (max-width: 320px) {
    .search-container-tiny {
        transform: scale(0.8); /* Perkecil sedikit */
        margin-top: -5px;
        margin-left: 5px; /* Sesuaikan posisi */
    }

    .search-container-tiny .search-form {
        max-width: 200px; /* Perkecil form pencarian */
        padding: 12px 6px;
        margin-top: -36px;
        margin-right: -80px;
        transform: scale(0.75);
    }

    .title-pagearc {
        font-size: 10px; /* Sesuaikan ukuran teks */
        text-align: left;
        margin-bottom: 6px;
        font-weight: bold;
        margin-left: -20px; /* Geser sedikit ke kiri */
    }

    .search-container-tiny .search-input {
        font-size: 12px;
        padding: 3px 5px;
    }

    .search-container-tiny .search-button {
        font-size: 13px;
        padding: 2px;
    }
}

/* Oops not found */
.oops {
    text-align: center;
    color: #FF0000;
    font-size: 20px;
    font-weight: bold;
}


/* About section */
.wrap-content-main-about {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 9px !important;
    gap: 33px;
    max-width: 1082px;
    margin: 10px auto;
    position: relative;
    /* background: antiquewhite; */
    flex-wrap: wrap;
}

.aboutus .row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.aboutus .col-6 {
    flex: 1;
    padding: 20px;
}

.aboutus .col-6 p {
    font-size: 16px;
    color: #555;
}
.aboutus-content {
    padding: 20px;

}

/* Box container */
.box-container-page {
    margin-top: 50px;
    padding: 0 20px; 
}

.box-container-page .row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.box-container-page .col-4 {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex; 
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.box-container-page .content-box {
    display: flex; 
    align-items: center; 
    justify-content: flex-start; 
}

.box-container-page .col-auto {
    margin-right: 15px; 
}

.box-container-page img {
    max-width: 60px;
    margin-bottom: 15px;
}

.box-container-page .h3 {
    font-size: 20px;
    font-weight: bold;
    color: #00357B;
    margin-bottom: 10px;
    white-space: nowrap;
    text-align: left;
}

.box-container-page .desc {
    font-size: 14px; 
    color: #555;
    width: 160%;
    text-align: left;
}
@media (max-width: 500px) {
    .wrap-content-main-about {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 10px;
    }

    .aboutus {
        display: block; /* Pastikan tetap muncul */
        width: 83%;
    }

    .aboutus .row {
        flex-direction: column;
        gap: 10px;
    }

    .aboutus .col-6 {
        width: 100%;
        padding: 10px;
    }
    .aboutus .col-6 h4{
        font-size: 16px;
        word-wrap: break-word;
        white-space: normal;
    }
    .aboutus .col-6 p{
        font-size: 12px;
        color: #555;
        word-wrap: break-word; /* Pecah kata panjang */
        white-space: normal; /* Izinkan teks turun ke bawah */
    }
    .box-container-page {
        width: 100%;
        padding: 10px;
    }
    .box-container-page .row {
        display: flex;
        flex-direction: column; /* Ubah jadi satu kolom */
        gap: 15px;
    }

    .box-container-page .col-4 {
        width: 100%; /* Biar memenuhi layar */
        max-width: none;
        text-align: center;
    }

    .box-container-page .content-box{
        width: 100%;
    }
    .box-container-page img {
        max-width: 60px; /* Ukuran gambar tetap */
        margin-bottom: 10px;
    }

    .box-container-page .h3 {
        font-size: 14px;
        text-align: left;
    }

    .box-container-page .desc {
        font-size: 10px;
        text-align: left;
        width: 100%;
        white-space: pre-line;
    }
}


/* Wrapper untuk konten */ 
.wrap-content-singlepost {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important; 
    padding: 9px !important;
    gap: 33px;
    max-width: 1082px;
    margin: 10px auto;
    position: relative;
    width: 100%;
}

/* Wrapper untuk pos */
.wrap-singlepost {
    max-width: 1200px;
    width: 100%;
    overflow: hidden;
}

/* Judul properti */
h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 20px 0;
    color: #00357B;
}
.galeri-text{
    background-color: #fff9c0;

}
/* Wrapper utama untuk slider-for dan slider-nav */
.slider-container {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
}

/* Slider utama (gambar besar) */
.slider-for {
    flex: 5;
    max-width: 100%;
    width: auto;
    aspect-ratio: 8/5;
    margin-right: auto;
    border-radius: 12px;
    overflow: hidden;
}

/* Styling untuk judul Galeri Properti */
/* Slider navigasi (thumbnail) */
.slider-nav {
    flex: 2; 
    max-width: 50%;
    display: flex;
    flex-direction: column; 
    gap: 12px;
    background-color: #ffffff; 
    align-items: center;
    padding: 10px 0;
    margin-top: 0; 
    margin-left: 0; 
    overflow-y: auto;
    scrollbar-width: thin;
}

/* Gambar slider utama */
.slider-for img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Thumbnail */
.slider-thumb img {
    width: 100%;
    max-width: 8rem;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    aspect-ratio: 4/3;
}


/* Efek hover */
.slider-thumb img:hover {
    border-color: #007bff; 
}

/* Informasi Harga */
.deskripsi-harga h2{
    margin: 10px auto;
    display: flex;
    font-size: 20px;
    flex-direction: column;
    gap: 10px; 
}
.single-harga {
    display: flex;
    align-items: center; 
    gap: 100px; 
}

.harga-deskripsi {
    font-size: 16px;
    color: #333; 
}

.harga-single {
    background-color: #007bff; 
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-direction: column; 
}

.harga-single:hover {
    background-color: #0056b3;
}
.single-harga h3 {
    font-size: 24px;
    /* color: #28a745; */
    margin: 0;
}

/* Lokasi */
.lokasi-single h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
}

.lokasi-single h4 {
    font-size: 16px;
    color: #555;
}

/* Spesifikasi */
.spesifikasi {
    margin: 20px 0;
}

.spesifikasi .detail {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start; /* Pastikan elemen dalam flex sejajar di kiri */
}

.spesifikasi .item {
    flex: 1 1 calc(25% - 20px);
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Menjaga teks dan ikon tetap rata kiri */
    gap: 5px;
}

.spesifikasi .label {
    font-weight: bold;
    color: #333;
    font-size: 14px;
    text-align: left; /* Pastikan label rata kiri */
    width: 100%; /* Agar label tidak sejajar dengan ikon */
}

.spesifikasi .icon-and-value {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%; /* Membantu agar sejajar dengan elemen lainnya */
}

.spesifikasi .icon {
    color: #007bff;
    font-size: 18px;
    display: inline-block; /* Hindari pergeseran posisi ikon */
}

.spesifikasi .value {
    color: #555;
    font-size: 14px;
    font-weight: normal;
    text-align: left; /* Pastikan teks tetap rata kiri */
}


/* Deskripsi Properti */
.deskripsi-rumah-single h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.deskripsi-rumah-single h4 {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Brosur */
.brosur h3 {
    font-size: 18px;
    margin: 20px 0 10px;
}

/* Informasi Kontak */
.image-single-post {
    width: 100%;
    max-width: 200%; 
    margin: 100px auto;
    text-align: center; 
    position: relative; 
    overflow: hidden;
    border-radius: 15px;
}

/* Overlay semi-transparan di atas gambar */
.image-single-post::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(92, 221, 116, 0.329); 
    pointer-events: none;
    z-index: 1;
}
.image-single-post img {
    width: 100%;
    height: 30vh; 
    object-fit: cover; 
    object-position: left;
    border-radius: 15px; 
}


/* Informasi kontak */
.contact-info-overlay {
    position: absolute;
    top: 25%;
    left: 30%;
    transform: translate(-50%, 0);
    color: #fff;
    text-align: left;
    padding: 10px 20px;
    z-index: 1;
}
.contact-info-overlay .property-name {
    font-size: 20px;
    font-weight: bold;
    display: block;
    z-index: 1;
}

.contact-info-overlay .phone-number {
    font-size: 14px;
    display: block;
    margin-top: 5px;
    z-index: 1;
}
.text-overlay {
    position: absolute;
    top: 20%;
    left: 22%;
    transform: translate(-50%, -50%);
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    text-align: left;
    z-index: 1;
}
.logo-overlay img {
    position: absolute; 
    top: 50%; 
    left: 14%;
    transform: translate(-50%, -50%); 
    width: 50px;
    height: auto;
    display: block;
    z-index: 1;
}
/* Tombol WhatsApp */
.whatsapp-box {
    position: absolute;
    top: 40%;
    right: 90px; 
    background-color: #25D366;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

.whatsapp-link {
    color: white;
    font-size: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    text-decoration: none !important;
}

.whatsapp-link i {
    font-size: 18px;
    margin-right: 10px;
}

/* Rekomendasi Artikel */
.pencarian-rekomen {
    margin: 20px 0;
}
.whatsapp-box:hover {
    background-color: #128C7E;
    border-radius: 25px;
    padding: 10px 20px;
}
.article-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
/* Gaya untuk artikel card */
.article-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    max-width: 227px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.article-card .article-image img {
    width: 100%;
    height: 175px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.article-content {
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}


.read-more-btn {
    background: #004AAD;
    color: #fff;
    padding: 6px 60px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 38px;
}

.read-more-btn:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .single-harga {
        display: flex;
        flex-direction: row; /* Agar harga dan tombol sejajar */
        align-items: center; /* Pusatkan secara vertikal */
        justify-content: space-between; /* Beri jarak antara harga dan tombol */
        gap: 15px;
        flex-wrap: wrap; /* Agar tetap responsif jika tidak cukup */
    }

    .read-more-btn {
        background-color: #004AAD;
        padding: 8px 16px;
        font-size: 14px;
        white-space: nowrap; /* Hindari button terpotong */
    }

    .article-list {
        display: flex;
        flex-wrap: wrap;
        gap: 63px;
        justify-content: flex-start;
        align-items: flex-start;
        margin: 10px auto 0 36px;
    }

    .article-card {
        width: 33%;
        max-width: none;
        margin: 0;
    }
}

@media screen and (max-width: 500px) {
    .slider-container {
        gap: 12px;
    }

    .slider-for {
        flex: 4;
        max-width: 90%;
        aspect-ratio: 4/3;
    }

    .slider-nav {
        flex: 1.5;
        max-width: 80%;
        overflow-x: auto;
        padding: 8px;
    }

    .slider-thumb img {
        max-width: 5rem;
    }

    .wrap-content-singlepost {
        padding: 6px;
        gap: 15px;
        max-width: 100%;
        margin-top: -61px;
    }

    .single-harga {
        display: flex;
        flex-direction: row; /* Samakan dengan 768px */
        align-items: center;
        justify-content: space-between; /* Agar harga & tombol sejajar */
        gap: 15px;
        flex-wrap: wrap; /* Agar tetap responsif */
    }

    .read-more-btn {
        background-color: #004AAD;
        padding: 8px 16px;
        font-size: 14px;
        white-space: nowrap;
    }

    .image-single-post {
        max-width: 90%;
        margin: 20px auto;
    }

    .logo-overlay img {
        margin: 0 auto 0 -43px;
    }

    .whatsapp-box {
        bottom: 15px;
        right: 15px;
        padding: 5px 7px;
        height: 34px;
    }

    .whatsapp-link {
        font-size: 9px;
    }

    .whatsapp-link i {
        font-size: 18px; /* Perkecil ikon */
        margin-right: 10px; /* Kurangi jarak ikon ke teks */
    }

    .article-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: left; /* Agar artikel berada di tengah */
        align-items: left;
        gap: 20px; /* Beri jarak antar artikel */
        padding: 10px 0;
    }

    .text-overlay {
        font-size: 15px;
        margin: 0px auto 0 29px;
    }

    .logo-overlay img {
        margin: 1px auto 0 -14px !important;
    }

    .contact-info-overlay {
        margin: 0 auto 0 58px;
    }
    .property-name{
        font-size: 15px !important;
    }
    .spesifikasi {
        text-align: left; /* Pastikan teks dalam .spesifikasi rata kiri */
    }

    .spesifikasi .detail {
        text-align: left; /* Pastikan semua detail tetap rata kiri */
    }

    .spesifikasi .item {
        text-align: left; /* Pastikan setiap item spesifikasi rata kiri */
    }

    .spesifikasi .label,
    .spesifikasi .icon-and-value,
    .spesifikasi .value {
        text-align: left; /* Pastikan semua elemen teks di dalam spesifikasi rata kiri */
    }

}

@media screen and (max-width: 320px) {
    .slider-container {
        gap: 8px; /* Kurangi jarak antar elemen */
    }

    .slider-for {
        flex: 4;
        max-width: 100%;
        aspect-ratio: 4/3;
    }

    .slider-nav {
        flex: 1.5;
        max-width: 90%;
        overflow-x: auto;
        padding: 6px;
    }

    .slider-thumb img {
        max-width: 4rem; /* Perkecil thumbnail */
    }

    .wrap-content-singlepost {
        padding: 4px;
        gap: 10px;
        max-width: 100%;
    }

    .single-harga {
        flex-direction: column; /* Stack harga dan tombol */
        align-items: center;
        gap: 10px;
    }

    .read-more-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .image-single-post {
        max-width: 95%;
        margin: 15px auto;
    }

    .logo-overlay img {
        margin: 0 auto 0 -30px;
    }

    .whatsapp-box {
        bottom: 10px;
        right: 10px;
        padding: 2px 8px;
        height: 45px; /* Sesuaikan tinggi */
    }

    .whatsapp-link {
        font-size: 12px; /* Perkecil teks */
    }

    .whatsapp-link i {
        font-size: 25px; /* Perkecil ikon */
        margin-right: 8px;
    }
}


.wrapper-content-rumah {
    /* background: antiquewhite;  */
    max-width: 1082px;
    position: relative;
    margin: 32px auto; 
    padding: 9px; 
    text-align: center;
    overflow: hidden;
}