/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )
-----------------------------------------*/
:root {
    --white-color: #ffffff;
    --primary-color: #C40000;
    --secondary-color: #5a6f80;
    --section-bg-color: #f0f8ff;
    --site-footer-bg-color: #44525d;
    --custom-btn-bg-color: #597081;
    --custom-btn-bg-hover-color: #bd2529;
    --dark-color: #000000;
    /* --p-color: #717275; */
    --p-color: #000000;
    --border-color: #e9eaeb;

    --grey: #888;
}


html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

.bg-color-galaxy {
    background-color: var(--primary-color);
}

/*---------------------------------------
  SITE HEADER
-----------------------------------------*/
.site-header {
    background: var(--primary-color);
    padding-top: 15px;
    padding-bottom: 10px;
}

.site-header p,
.site-header p a,
.site-header .social-icon-link {
    color: var(--white-color);
    font-size: var(--copyright-font-size);
}

.site-header .social-icon {
    text-align: right;
}

.site-header .social-icon-link {
    background: transparent;
    width: inherit;
    height: inherit;
    line-height: inherit;
    margin-right: 15px;
}

.fs-7 {
    font-size: 14px;
}

/*---------------------------------------
  NAVIGATION
-----------------------------------------*/
.navbar {
    background: var(--white-color);
    z-index: 9;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand {
    color: var(--primary-color);
    font-size: var(--h6-font-size);
    font-weight: var(--font-weight-bold);
    max-width: 30%;
}

.navbar-brand span {
    display: inline-block;
    vertical-align: middle;
}

.navbar-brand small {
    color: var(--secondary-color);
    display: block;
    font-size: 10px;
    line-height: normal;
    text-transform: uppercase;
}

.logo {
    width: 80px;
    height: auto;
}

.navbar-expand-lg .navbar-nav .nav-link {
    margin-right: 0;
    margin-left: 0;
    padding: 20px 10px;
}

.navbar-nav .nav-link {
    display: inline-block;
    color: var(--p-color);
    font-size: var(--p-font-size);
    /* font-weight: var(--font-weight-medium); */
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
    font-variation-settings: "wght" var(--font-weight-medium);
    transition: text-shadow 0.3s ease, color 0.3s ease;
}

.navbar-nav .nav-link.active:not(.login-btn),
.navbar-nav .nav-link:not(.login-btn):hover {
    text-shadow: 0 0 0.8px currentColor, 0 0 0.8px currentColor;
    color: var(--primary-color);
}

.navbar-nav .nav-link:not(.login-btn)::before {
    content: "";
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.5s ease;
}

.navbar-nav .nav-link.active:not(.login-btn)::before,
.navbar-nav .nav-link:hover:not(.login-btn)::before {
    width: 40%;
}

.navbar-nav .login-btn {
    background: var(--primary-color);
    font-weight: normal;
    color: white;
}

.dropdown-menu {
    background: var(--white-color);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    border: 0;
    /* max-width: 50px; */
    padding: 0;
    margin-top: 20px;
}

.dropdown-item {
    display: inline-block;
    color: var(--p-bg-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-medium);
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
    background: transparent;
    color: var(--primary-color);
}

.dropdown-toggle::after {
    content: "\f282";
    display: inline-block;
    font-family: bootstrap-icons !important;
    /* font-size: var(--copyright-font-size); */
    font-size: 12px;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    left: 2px;
    border: 0;
}

.nav-menu {
    margin-inline: auto;
}

@media(max-width: 991px) {
    .nav-menu {
        margin-inline: 0.5rem;
    }
}

@media screen and (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.navbar-toggler {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0;
    width: 30px;
    height: 35px;
    outline: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease,
        -webkit-transform 300ms 350ms ease;
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
    background: var(--dark-color);
    transition: background 10ms 300ms ease;
    display: block;
    width: 30px;
    height: 2px;
    position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
    transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease,
        -webkit-transform 300ms 50ms ease;
    position: absolute;
    right: 0;
    left: 0;
    background: var(--dark-color);
    width: 30px;
    height: 2px;
    content: "";
}

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

.navbar-toggler .navbar-toggler-icon::after {
    top: 8px;
}

.offcanvas-body {
    align-items: center;
}

@media(max-width: 991px) {
    .navbar-nav div {
        flex-direction: column;
        align-items: start;
    }

    .nav-item {
        width: 100%;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 0;
        padding-bottom: 15px;
        font-size: 16px;
    }

    .offcanvas-body {
        align-items: start;
    }

    .offcanvas {
        padding-inline: 10px;
    }
}

/*---------------------------------------
  SOCIAL ICON
-----------------------------------------*/
.social-icon {
    margin: 0;
    padding: 0;
}

.social-icon-item {
    list-style: none;
    display: inline-block;
    vertical-align: top;
}

.social-icon-link {
    background: var(--site-footer-bg-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--copyright-font-size);
    display: block;
    margin-right: 5px;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 38px;
}

.social-icon-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
}


.link-color-galaxy-light {
    color: var(--white-color);
}

.link-color-galaxy-light:hover {
    color: var(--primary-color);
}

/*---------------------------------------
  GENERAL STYLING
-----------------------------------------*/
.p-25 {
    padding: 0.7rem;
}

.title-section {
    z-index: 1;
}

.title-section p {
    font-size: 16px;
    position: relative;
    margin-left: 40px;
    margin-bottom: 0;
    width: fit-content;
}

.title-section p::before {
    content: "";
    position: absolute;
    /* biar bottom & left jalan */
    height: 3px;
    width: 30px;
    background: var(--primary-color);
    /* ganti color -> background */
    bottom: 50%;
    left: -40px;
}

.red-line-before {
    position: relative;
    margin-left: 40px;
}

.red-line-before::before {
    content: "";
    position: absolute;
    /* biar bottom & left jalan */
    height: 3px;
    width: 30px;
    background: var(--primary-color);
    /* ganti color -> background */
    bottom: 50%;
    left: -40px;
}

.custom-scroll {
    overflow-x: auto;
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: var(--primary-color) #f0f0f0;
    /* Firefox */
}

/* Chrome, Safari, Edge */
.custom-scroll::-webkit-scrollbar {
    height: 8px;
    /* horizontal scrollbar height */
}

.custom-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}


.title-section h1 {
    position: relative;
    font-weight: lighter;
    font-size: 56px;
}

.title-section h1 span {
    font-weight: bold;
}

.clamped {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#select2-select2-location-container {
    margin: 0;
}

.select2-dropdown {
    z-index: 9999 !important;
    border: 1px solid #ccc !important;
    background-color: white !important;
}

.select2-container--default .select2-results__option {
    color: #000 !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    color: #fff !important;
    background: var(--primary-color) !important;
}

.select2-container--default.select2-container--focus .select2-selection {
    border-color: var(--primary-color) !important;
}

/* Ensure dropdown appears */
.select2-container--open .select2-dropdown {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.select2-container .select2-selection--single {
    height: 100% !important;
}

#select2-location+.select2-container--default .select2-selection {
    border: none !important;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

#select2-location-2+.select2-container {
    width: 100% !important;
}

#select2-location-2+.select2-container--default .select2-selection {

    border-radius: 0.5rem;
    padding: 0.15rem 0;
    width: 100%;
}

#select2-location-2+.select2-container--default .select2-selection--single textarea {
    margin: 0;
    margin-bottom: 5px;
}

.select2-container--default .select2-selection--single.select2-selection--clearable {
    padding: 0 !important;
}

/* Multiple select box */
#select2-search-property-container .select2-selection--multiple {
    padding: 6px 10px;
    border: 2px solid var(--primary-color);
    border-radius: 0.75rem;
}

/* Single select box (if ever needed) */
.select2-container--default .select2-selection--single {
    /* border: 2px solid var(--primary-color) !important; */
    border-radius: 0.5rem !important;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-bottom: 0.5rem;
}

/* sembunyikan scrollbar & tombol clear default */
#select2-location .select2-selection--multiple::-webkit-scrollbar {
    display: none !important;
}

/* sembunyikan scrollbar & tombol clear default */
.select2-container--default .select2-selection__clear,
.select2-container--default .select2-selection--multiple::-webkit-scrollbar {
    display: none !important;
}

.selected-pill {
    border: none !important;
    border-radius: 16px !important;
    padding-inline: 15px !important;
    background-color: var(--primary-color) !important;
    color: white;
    font-size: 12px;
    width: fit-content;
    height: fit-content;
}

#select2-location-2+.select2-container--default .select2-selection--multiple .select2-selection__choice {
    display: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    border: none !important;
    border-radius: 16px !important;
    padding-right: 20px !important;
    padding-left: 28px !important;
    background-color: var(--primary-color) !important;
    color: white;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    font-size: 12px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border: none !important;
    color: white !important;
    margin-left: 8px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10% !important;
}

/* Untuk Chrome, Edge, Safari */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Untuk Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.modal-body::-webkit-scrollbar {
    width: 0px;
    /* Chrome, Safari, Edge */
    background: transparent;
}

.modal-body {
    -ms-overflow-style: none;
    /* IE 10+ */
    scrollbar-width: none;
    /* Firefox */
}

.primary-button {
    border: none;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    height: fit-content;
}

.secondary-button {
    border: 1px var(--primary-color) solid;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    height: fit-content;
    transition: 200ms;
}

.secondary-button:hover {
    background: var(--primary-color);
    color: white;
}

.radio-group {
    display: flex;
    gap: 1rem;
}

.radio-group input[type="radio"] {
    display: none;
}

.radio-group label {
    cursor: pointer;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.radio-group input[type="radio"]:checked+label {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    font-weight: 600;
}

.dark-gradient-overlay {
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 75%);
}

.light-transparent-overlay {
    background: rgba(255, 255, 255, 0.3);
}

.red-gradient-header {
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 48vh;
    clip-path: polygon(0 0, 100% 0%, 100% 70%, 0% 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.red-gradient-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    background: linear-gradient(90deg, rgba(196, 0, 0, 0.1) 10%, rgba(196, 0, 0, 0.9) 100%);
    z-index: 1;
}

/* make sure content is above overlay */
.red-gradient-header>* {
    position: relative;
    z-index: 2;
}

.red-gradient-header .title-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 7.5%;
}

.red-gradient-header .title-section p {
    font-size: 24px;
}

.red-gradient-header .title-section h1 {
    font-size: 64px;
}

.red-gradient-header .title-section p::before {
    background: white;
    height: 2px;
}

.stepper {
    position: relative;
}

.step {
    position: relative;
    padding-bottom: 40px;
    border-left: 3px solid var(--primary-color);
}

.circle-active {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    /* red circle */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
    left: -15px;
    top: 0;
}

.circle {
    width: 30px;
    height: 30px;
    background: white;
    /* red circle */
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
    left: -15px;
    top: 0;
}

.step:last-child {
    padding-bottom: 0;
    border: none;
}

.responsive-mt-5 {
    margin-top: 3rem;
}

.card p {
    font-size: 14px;
}

.center-cropped {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.filter-trigger {
    border: 1px var(--primary-color) solid;
}

.form-select,
.labeled-input {
    appearance: none;
    -webkit-appearance: none;
    border: 1px #dee2e6 solid;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.form-select:focus,
.labeled-input:focus-within {
    appearance: none;
    -webkit-appearance: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0;
    /* box-shadow: 0 0 0 0.2rem rgba(189, 37, 41, 0.25); */
}

input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid var(--primary-color);
    /* border luar */
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    position: relative;
}

input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    /* ukuran titik dalam */
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.custom-number-input {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: fit-content;
    border: 1px var(--primary-color) solid;
}

.custom-number-input input {
    text-align: center;
    width: 60px;
    font-size: 16px;
    padding: 5px;
    outline: none;
    border-radius: 0;
}

.labeled-input span {
    background: white;
    color: var(--grey);
    border: none;
}

.labeled-input:focus-within span {
    color: var(--primary-color);
}

.labeled-input input {
    border-right: 0.5px var(--grey) solid;
    border-left: 0.5px var(--grey) solid;
}

.dropdown-toggle::after {
    color: var(--primary-color) !important;
    font-weight: bold;
}

.without-arrow .dropdown-toggle::after {
    display: none;
}

.primary-color {
    color: var(--primary-color);
}

.primary-bg {
    background: var(--primary-color);
}

input[type=checkbox] {
    appearance: none;
    -webkit-appearance: none;
    accent-color: var(--primary-color);
    border: 1px var(--primary-color) solid;
    aspect-ratio: 1;
    height: 20px;
    border-radius: 4px;
    cursor: pointer;
}

input[type=checkbox]:checked {
    background: var(--primary-color);
    position: relative;
}

input[type=checkbox]:checked::after {
    content: "✓";
    color: white;
    font-size: 16px;
    line-height: 16px;
    position: absolute;
    top: 1px;
    left: 4px;
    border: 1px var(--primary-color) solid;
}

.without-arrow .dropdown-toggle::after {
    display: none;
}

.primary-color {
    color: var(--primary-color);
}

@media(max-width:991px) {
    .title-section h1 {
        font-size: 48px;
    }

    .primary-button,
    .secondary-button {
        font-size: 14px;
    }

    .card p {
        font-size: 12px;
    }
}

@media(max-width:576px) {
    .title-section p {
        font-size: 16px;
    }

    .title-section p::before {
        height: 1px;
    }

    .title-section h1 {
        font-size: 36px;
    }

    .card p {
        font-size: 10px;
    }

    .card h5 {
        font-size: 16px;
    }

    .card h4 {
        font-size: 18px;
    }

    .responsive-mt-5 {
        margin-top: 1.5rem;
    }
}

/*---------------------------------------
  HOME HERO SEARCH CONTAINER
-----------------------------------------*/

.hero-search-container {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    aspect-ratio: 2;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
    border-radius: 2rem;
    padding: 3rem;
}

.hero-search-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 41, 41, 0.186);
    border-radius: inherit;
    z-index: 0;
}

.hero-search-searchbox {
    position: relative;
    z-index: 1;

}

.hero-search-searchbox .radio-btn-box {
    background: rgba(255, 255, 255, 0.35);
    width: fit-content;
    border-radius: 1.5rem 1.5rem 0 0;
    padding-inline: 1rem;
    gap: 1rem;
}

/* Hilangkan radio button default */
.radio-tabs input[type="radio"] {
    display: none;
}

/* Style teks */
.radio-tabs label {
    cursor: pointer;
    position: relative;
    padding: 10px 20px;
    font-weight: normal;
    transition: all 0.3s ease;
}

/* Garis bawah (underline) */
.radio-tabs label::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

/* Saat dipilih */
.radio-tabs input[type="radio"]:checked+label {
    font-weight: bold;
}

.radio-tabs input[type="radio"]:checked+label::before {
    width: 60%;
}

.hero-search-searchbox .text-input-box {
    position: relative;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 0 1.5rem 1.5rem 1.5rem;
    padding: 1.5rem;
}

.hero-search-searchbox .text-input-box input {
    border: none;
}

.hero-search-searchbox .text-input-box button {
    margin-left: 16px;
}

@media(max-width: 992px) {
    .hero-search-container {
        border-radius: 0;
        padding: 6rem 1rem;
        margin-top: 1rem;
    }

    .hero-search-container .title-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: -20px;
    }

    .hero-search-searchbox .text-input-box {
        padding: 1rem;
    }

    .hero-search-searchbox .text-input-box input {
        padding-inline: 0;
    }

    .hero-search-searchbox .text-input-box {
        border-radius: 0 1rem 1rem 1rem;
    }

    .hero-search-searchbox .radio-btn-box {
        border-radius: 1rem 1rem 0 0;
    }

    .hero-search-searchbox {
        margin-top: 2rem;
    }
}

@media(max-width: 767px) {
    .hero-search-container {
        margin-top: 0;
        height: 95vh;
        padding: 16rem 1rem;
    }

    .hero-search-container .title-section {
        margin-bottom: 0rem;
        margin-top: 0rem;
    }

    .hero-search-searchbox .text-input-box {
        flex-direction: column;
    }

    .hero-search-searchbox .text-input-box button {
        margin-left: 0;
        margin-top: 16px;
        width: 100%;
    }

    .hero-search-searchbox .radio-btn-box {
        padding-inline: 0;
        gap: 0.5rem;
    }

    .hero-search-container .title-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: -200px;
    }
}

/*---------------------------------------
  HOME POPULAR PROPERTIES CONTAINER
-----------------------------------------*/

.disc-label {
    background: var(--primary-color);
    width: fit-content;
    font-size: 14px;
}

.old-price {
    color: var(--grey);
}

.property-type {
    background: var(--primary-color);
    width: fit-content;
    font-size: 14px;
}

.transaction-label {
    background: var(--primary-color);
    border-radius: 0 0.5rem 0.5rem 0;
    height: fit-content;
}

.fav-icon {
    margin-right: 1rem;
    border-radius: 50%;
    color: var(--grey);
    background: white;
    width: 42px;
}

.fav-icon i {
    font-size: 20.5px;
    transition: color 300ms;
}

.fav-icon i:hover {
    color: var(--primary-color);
}

.owl-stage {
    padding-left: 0px !important;
}

/* Dots styling */
.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot span {
    width: 10px;
    height: 10px;
    background: var(--grey);
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    transition: background 0.3s ease;
}

.owl-dot.active span {
    background: var(--primary-color) !important;
}


/* Nav styling */
.owl-prev,
.owl-next {
    background: none;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
}

.owl-prev i,
.owl-next i {
    font-size: 32px;
    color: var(--grey);
    transition: color 0.3s;
}

#pop-desktop .owl-prev:hover i,
#pop-desktop .owl-next:hover i,
#pop-mobile .owl-prev:hover i,
#pop-mobile .owl-next:hover i {
    color: var(--primary-color);
}

.card {
    border: none;
}

.card-img {
    aspect-ratio: 3/2;
}

.view-all-btn {
    padding: 0.6rem 1rem;
}

@media(max-width:767px) {
    .pop-header {
        flex-direction: column;
    }

    .pop-header div {
        width: 100%;
    }

    .view-all-btn {
        width: 100%;
    }
}

/*---------------------------------------
  HOME HOT PROPERTIES CONTAINER
-----------------------------------------*/

.hot-properties-container {
    /* margin-top: 88px; */
    background: #f7f7f7;
}

.hot-properties-container .hot-property-item {
    height: fit-content;
    width: 75%;
    padding: 1rem;
    aspect-ratio: 3;
}

.hot-properties-container .hot-property-item .hot-property-content {
    padding: 1.5rem 0;
}

.hot-properties-container .hot-property-item .fav-icon i {
    padding: 0.5rem;
}

@media (max-width:991px) {
    .hot-properties-container .hot-property-item {
        aspect-ratio: auto;
        /* aspect-ratio: 1; */
    }

    .hot-properties-container .hot-property-item .hot-property-content {
        padding: 0;
    }
}

@media (max-width:576px) {
    .hot-properties-container .hot-property-item {
        padding: 1rem;
        width: 85%;
    }

    .hot-properties-container .hot-property-item p {
        font-size: 14px;
    }

    .hot-properties-container .hot-property-item .fav-icon {
        width: 30px;
    }

    .hot-properties-container .hot-property-item .fav-icon i {
        padding: 0.2rem;
        font-size: 18px
    }
}

@media (max-width:576px) {

    /* .hot-properties-container .hot-property-item {
        aspect-ratio: 4/6;
    } */
    #nav-container-2 button {
        width: 30px;
        height: 30px;
    }

    #nav-container-2 .nav-arrow {
        width: 30px !important;
        height: 30px !important;
    }

    .hot-properties-container .hot-property-item b {
        font-size: 18px;
    }

    .hot-properties-container .hot-property-item p {
        font-size: 12px;
    }
}

/*---------------------------------------
  HOME PRIMARY PROPERTIES CONTAINER
-----------------------------------------*/

.primary-content {
    height: fit-content;
}

.primary-content .left {
    width: 46.75%
}

.primary-content .right {
    width: 53.25%
}

@media(max-width: 767px) {

    .primary-content .left,
    .primary-content .right {
        width: 100%
    }
}

.primary-content .content div {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.primary-product .icon-bar p {
    font-size: 12px;
}

.without-arrow .dropdown-toggle::after {
    display: none;
}

.primary-color {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .primary-content {
        height: fit-content;
    }

    .primary-product .icon-bar p {
        font-size: 10px;
    }
}

/*---------------------------------------
  HOME NEW BUYER CONTAINER
-----------------------------------------*/

.new-buyer-section {
    background-image: url('https://i.pinimg.com/1200x/1a/eb/28/1aeb289eda33f7aea6cf514a85fca8d7.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    aspect-ratio: 2;
    max-width: 100vw;
}

.new-buyer-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 30, 0.6);
    border-radius: inherit;
    z-index: 0;
}

.new-buyer-content {
    width: 70%
}

.new-buyer-section .step-filter {
    position: relative;
    color: white;
    transition: color 200ms;
    font-weight: normal;
    padding: 1rem;
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
    border-radius: 1rem 0 0 1rem;
}

.new-buyer-section .step-filter::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 1rem 0 0 1rem;
    width: 0;
    transition: width 200ms ease;
    z-index: -1;
}

.new-buyer-section .step-filter.active {
    color: var(--primary-color);
    font-weight: bold;
}

.new-buyer-section .step-filter.active::before {
    width: 100%;
}

.new-buyer-section .step-filter-2 {
    position: relative;
    color: white;
    transition: color 200ms;
    font-weight: normal;
    padding: 1rem 3rem;
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
}

.new-buyer-section .step-filter-2::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    /* Anchor to the bottom */
    background: white;
    border-radius: 1rem 1rem 0 0;
    height: 0;
    /* Start with zero height */
    transition: height 200ms ease;
    z-index: -1;
}

.new-buyer-section .step-filter-2.active {
    color: var(--primary-color);
    font-weight: bold;
}

.new-buyer-section .radio-option {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    text-align: center;
    user-select: none;
    transition: all 0.2s ease;
}

.new-buyer-section .radio-option.checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}


.new-buyer-section .step-filter-2.active::before {
    height: 100%;
    /* Expand to full height */
}

.new-buyer-section .modal-dialog {
    max-width: 55vw;
}

.new-buyer-modal-image {
    padding-left: 3rem;
}

@media(max-width:1200px) {
    .new-buyer-modal-image {
        padding-top: 3rem;
    }
}

@media(max-width:991px) {
    .new-buyer-section .modal-dialog {
        max-width: 90vw;
    }

    .new-buyer-modal-image {
        padding-left: 2rem;
    }
}

@media(max-width:767px) {
    .new-buyer-section {
        height: 80vh;
    }

    .new-buyer-content {
        width: 80%
    }

    .new-buyer-modal-image {
        padding-left: 1.5rem;
    }

    .new-buyer-section .step-filter-2 {
        padding: 1rem 2rem;
    }
}

/*---------------------------------------
  HOME PARTNERSHIP CONTAINER
-----------------------------------------*/

.carousel-container {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}

.carousel-track {
    display: flex;
    animation: scroll 20s linear infinite;
    animation-timing-function: linear;
}

.carousel-track2 {
    display: flex;
    animation: scroll2 20s linear infinite;
    animation-timing-function: linear;
}

.carousel-track img,
.carousel-track2 img {
    max-height: 100px;
    /* contoh batas tinggi */
    width: auto;
    /* biar lebar ikut rasio */
    height: auto;
    /* penting supaya ratio asli terjaga */
    object-fit: contain;
    /* tidak akan crop, tetap penuh */
}

@media (max-width: 767px) {

    .carousel-track img,
    .carousel-track2 img {
        max-height: 100px;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scroll2 {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Tulisan di galaxy app */
@media (max-width: 767px) {
    .galaxy-app .title-section {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

}

/* Button View All Properties */
.primary-properties {
    display: flex;
    align-items: center;
}

.primary-properties .primary-button {
    border: 2px solid var(--primary-color);
    background: none;
    color: var(--primary-color);
    height: fit-content;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.primary-properties .primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 2px rgba(196, 30, 58, 0.3);
    background: var(--primary-color);
    color: white !important;
}

.primary-button,
.navbar-nav .login-btn {
    transition: all 0.3s ease;
    text-decoration: none;
}

.primary-button:hover,
.navbar-nav .login-btn:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    box-shadow: 0 1px 1px rgba(196, 30, 58, 0.3);
}


/* Bagian gambar detail properties */
.thumbnail-image:hover {
    transform: scale(1.03);
    transition: transform 0.2s ease-in-out;
}

.property-image-container {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thumbnail-carousel input[type="radio"],
.thumbnail-carousel-2 input[type="radio"] {
    display: none;
}

.thumbnail-carousel input[type="radio"]+label,
.thumbnail-carousel-2 input[type="radio"]+label {
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 2px;
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
}


.thumbnail-carousel input[type="radio"]+label::after,
.thumbnail-carousel-2 input[type="radio"]+label::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    margin: 2px;
    border-radius: inherit;
}

.thumbnail-carousel input[type="radio"]:checked+label,
.thumbnail-carousel-2 input[type="radio"]:checked+label {
    border-color: var(--primary-color);
}

.thumbnail-carousel input[type="radio"]:checked+label::after,
.thumbnail-carousel-2 input[type="radio"]:checked+label::after {
    background: transparent;
}

/* bagian card property info (harga, detail pc) */
.property-info-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

    top: 100px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    background-color: var(--white-color);
    margin-bottom: 20px;
}

.property-info-wrapper {
    position: sticky;
    top: 100px;
}

/* detail properti konsultan */
.badge {
    border-radius: 16px;
    font-size: 12px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.property-price {
    color: var(--primary-color);
    font-size: 2rem;
}

.property-consultant-title {
    color: var(--dark-color);
}

.consultant-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.consultant-name {
    color: var(--dark-color);
    font-size: 16px;
}

.consultant-company {
    color: var(--grey);
    font-size: 14px;
}

.btn-call {
    border-radius: 16px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    background-color: transparent;
}


.btn-whatsapp {
    border-radius: 16px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 500;
    border: none;
}

.btn-whatsapp:hover {
    background-color: var(--custom-btn-bg-hover-color);
    color: var(--white-color);
    transform: translateY(-2px);
    transition: all 0.2s ease-in-out;
}

.property-report-card {
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 15px;

}

.property-last-updated {
    color: var(--grey);
    font-size: 12px;
    font-weight: 400;
}

.report-icon {
    color: var(--grey);
}

.report-text {
    color: var(--grey);
    font-size: 14px;
}

.report-link {
    color: var(--primary-color);
}

.report-link:hover {
    color: var(--custom-btn-bg-hover-color);
    text-decoration: underline !important;
}

/* Tambahan Garis buat judul di detail properti */
.title-section .title-with-line {
    position: relative;
    margin-left: 40px;
    font-weight: 600;
}

.title-section .title-with-line::before {
    content: "";
    position: absolute;
    height: 3px;
    width: 30px;
    background: var(--primary-color);
    bottom: 50%;
    left: -40px;
}

.nav-arrow {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    border: 2px solid #e0e0e0;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.nav-arrow:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.nav-arrow i {
    font-size: 14px;
}

.nav-arrow:hover i {
    color: white !important;
}

#detail-mobile .owl-dots {
    position: absolute;
    display: flex;
    gap: 0.5rem;
    margin-top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

#detail-mobile .owl-stage-outer,
#detail-mobile .owl-stage {
    width: 100%;
    aspect-ratio: 16/9;
}

.description-container p {
    font-size: 16px;
}

.qr-box {
    margin-top: 0;
}

@media(max-width:767px) {
    .description-container p {
        font-size: 14px;
    }

    .qr-box,
    .qr-box .secondary-button {
        margin-top: 2rem;
    }
}

/*---------------------------------------
  SECONDARY FILTER
-----------------------------------------*/
.search-box-bg {
    height: 40vh;
}

.secondary-filter {
    bottom: -15%;
}

.secondary-filter h1 {
    font-size: 13vw
}

.secondary-filter .search-box {
    border-radius: 1rem 1rem 0 0;
}

.secondary-filter .input-text-container {
    border: none;
}

#ModalFilter .modal-content {
    max-height: 75vh;
}

.transactionRadio {
    margin-top: 6rem;
}

.transactionRadio .radio-group {
    justify-content: center;
    gap: 4.5rem;
}

@media(min-width: 1200px) {
    .secondary-filter h1 {
        font-size: 10vw
    }
}

.custom-padding {
    padding: 0.75rem;
}

@media(max-width: 991px) {
    .search-box-bg {
        height: 30vh;
    }

    .secondary-filter {
        bottom: 20%;
    }

    .secondary-filter .search-box {
        border-radius: 1.5rem;
    }

    .secondary-filter .input-text-container {
        border: 1px var(--grey) solid;
    }

    .secondary-filter h1 {
        font-size: 14vw
    }

    #ModalFilter .modal-dialog {
        margin-inline: 0;
    }

    #ModalFilter .modal-content {
        max-height: 100vh;
        min-width: 100vw;
    }

    .transactionRadio {
        margin-top: 3rem;
        text-align: center;
        padding-inline: 1rem;
    }

    .transactionRadio .radio-group {
        gap: 3rem;
        align-items: center;
    }
}

@media(max-width: 767px) {
    .search-box-bg {
        height: 25vh;
    }

    .transactionRadio {
        font-size: 15px;
        text-align: center;
        padding-inline: 0.5rem;
    }

    .transactionRadio .radio-group {
        gap: 1rem;
        justify-content: space-around;
    }
}

.copy-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    padding: 4px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

.copy-btn:active {
    transform: scale(0.95);
}

/*---------------------------------------
  PRIMARY FILTER
-----------------------------------------*/

.search-box-bg-primary {
    height: 40vh;
}

.search-box-bg-primary .search-box {
    padding: 1rem;
}

.primary-filter h1 {
    font-size: 12vw
}

.primary-filter .search-box {
    border-radius: 1rem 1rem 0 0;
}

.primary-filter .input-text-container {
    border: none;
}

@media(max-width: 991px) {
    .search-box-bg-primary {
        height: 30vh;
    }
}

@media(max-width: 767px) {
    .primary-filter h1 {
        font-size: 15vw
    }

    .search-box-bg-primary .search-box {
        padding: 0.5rem 1rem;
    }

    .search-box-bg-primary .input-text-container {
        border: 1px solid var(--grey);
    }
}

/*---------------------------------------
  DETAIL PROPERTY
-----------------------------------------*/

.detail-property {
    margin-top: 100px;
}

.detail-property .facility-section i {
    color: var(--primary-color);
    font-size: 24px;
}

.detail-property .facility-section p {
    margin: 0;
    font-size: 16px;
}

.detail-property .facility-section b {
    font-size: 14px;
}

@media(max-width: 767px) {
    .detail-property .facility-section i {
        color: var(--primary-color);
        font-size: 16px;
    }

    .detail-property .facility-section p,
    .detail-property .facility-section b {
        margin: 0;
        font-size: 12px;
    }
}

/*---------------------------------------
  OFFICE LIST
-----------------------------------------*/
.list-office .header-desc,
.list-office .input-text-container {
    width: 50%;
}

@media(max-width: 767px) {

    .list-office .header-desc,
    .list-office .input-text-container {
        width: 100%;
    }
}

/*---------------------------------------
  OFFICE CARD
-----------------------------------------*/
.ratio-box {
    aspect-ratio: 1;
    /* jaga selalu 1x1 */
    width: 150px;
    /* kasih lebar tetap (bisa diubah sesuai kebutuhan) */
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    /* jangan dipaksa mengecil */
}

@media(max-width: 767px) {

    .office-card p,
    .office-card i {
        font-size: 12px;
    }
}

/*---------------------------------------
  OFFICE DETAIL
-----------------------------------------*/

.office-detail-header {
    position: relative;
    overflow: hidden;
    aspect-ratio: 5/2;
}

.office-detail-header::after {
    content: "";
    position: absolute;
    /* take out of normal flow */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 25%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}

/* make sure content is above overlay */
.office-detail-header>* {
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .office-detail-header {
        height: 100vh;
    }

    .office-detail-header .col-md-8 {
        margin-top: 1.5rem;
    }

    .office-detail-header .title-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 0.5rem;
    }

    .office-detail-header .title-section {
        text-align: center;
    }
}

/*---------------------------------------
  AGENT LIST
-----------------------------------------*/
.list-agent .input-text-container {
    width: 50%;
}

@media(max-width: 767px) {
    .list-agent .input-text-container {
        width: 100%;
    }
}

/*---------------------------------------
  AGENT CARD
-----------------------------------------*/
.agent-card-content {
    width: 85%;
    height: 36%;
}

.agent-card-content h5 {
    font-size: 16px;
}

.agent-card-content p {
    font-size: 12px;
}

@media(max-width: 767px) {
    .agent-card-content {
        width: 80%;
        height: 45%;
    }

    .agent-card-content h5 {
        font-size: 24px;
    }

    .agent-card-content p {
        font-size: 16px;
    }
}

.help-center-container {
    padding: 20px 0;
}

/* Help Center Title */
.help-center-title {
    color: black;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;

}

/* Rectangle box */
.contact-rectangle {
    background-color: rgba(248, 248, 248, 0.867);
}

/* Subtitle text lebih soft */
.contact-rectangle p {
    color: rgba(255, 255, 255, 0.7);
    width: 100% !important;
}

.contact-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    text-decoration: none;
    border: none;
    display: inline-block;
}

@media (max-width: 992px) {
    .contact-rectangle {
        max-width: none;
        margin: 0 20px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        width: 100% !important;
        order: 2;
    }

    .help-center-title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .accordion {
        order: 1;
    }

}

.w-100.text-center.text-lg-start {
    margin-top: 30px;
}

@media (max-width: 991px) {
    .faq-text {
        text-align: center;
    }

    .w-100.text-center.text-lg-start {
        margin-top: -10px;
    }
}

.faq-subtitle {
    text-align: left;
    /* default: kiri */
}

.simple-accordion-button {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #dddddd;
    border-radius: 0 !important;
    font-size: 16px;
    font-weight: 500;
    color: #303030;
    padding: 20px 0;
    box-shadow: none;
    transition: all 0.3s ease;
}

.simple-accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--primary-color);
    border-bottom-color: #c5c5c5;
    box-shadow: none;
}

.simple-accordion-button:focus {
    border-bottom-color: #c5c5c5;
    box-shadow: none;
}

/* Override Bootstrap default arrow - PENTING! */
.simple-accordion-button::after {
    background-image: none !important;
    background-size: 0 !important;
    content: '+' !important;
    font-size: 16px;
    font-weight: normal;
    color: #666;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(93, 92, 92, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    transform: none !important;
}

/* Arrow ketika expanded */
.simple-accordion-button:not(.collapsed)::after {
    content: '-' !important;
    color: var(--primary-color);
    transform: none !important;
}

.accordion-item {
    border: none !important;
    margin-bottom: 0;
}

.simple-accordion-body {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #dddddd;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    padding: 0 0 20px 0;
    margin-bottom: 20px;
}

/* Border merah pindah ke bawah jawaban ketika expanded */
.simple-accordion-button:not(.collapsed) {
    border-bottom: none;
}

.simple-accordion-button:not(.collapsed)+.accordion-collapse .simple-accordion-body {
    border-bottom-color: #c5c5c5;
}

/* Hover effects */
.simple-accordion-button:hover {
    color: var(--primary-color);
    border-bottom-color: #c5c5c5;
}

.simple-accordion-button:hover::after {
    color: var(--primary-color);
}

/* Questions & Answer Title */
/*.qa-title {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

.faq-rectangle {
    background: transparent;
    border: 1px solid #FBFBFB;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(184, 178, 178, 0.08);
}

*/

/* Navigation Tabs */
.faq-tabs-container {
    margin-bottom: 30px;
}

.faq-nav-tabs {
    border: none !important;
    justify-content: center;
    flex-wrap: nowrap;
}

.faq-nav-tabs .nav-link {
    border: none !important;
    background: none !important;
    color: #7E7676;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 25px;
    margin: 0 10px;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
}

.faq-nav-tabs .nav-link:hover {
    color: var(--primary-color);
    border: none !important;
}

.faq-nav-tabs .nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
    border: none !important;
    background: none !important;
}

.faq-nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 5px;
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
    background-color: #FAFAFA;
    border: 1px solid #ffffff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: none;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background-color: #FAFAFA;
    border: none;
    color: rgb(67, 67, 67);
    font-size: 16px;
    font-weight: 500;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #FAFAFA;
    color: rgb(45, 45, 45);
    box-shadow: none;
}

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

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23666'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 20px;
    height: 20px;
}

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

.faq-accordion .accordion-body {
    padding: 20px 25px;
    background-color: #FAFAFA;
    color: #737373;
    font-size: 15px;
    line-height: 1.6;
    border-top: 1px solid #eae9e9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .faq-tabs-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .faq-tabs-container::-webkit-scrollbar {
        display: none;
    }

    .faq-nav-tabs {
        justify-content: flex-start !important;
        min-width: max-content;
        padding: 0 15px;
    }

    .faq-nav-tabs .nav-link {
        font-size: 14px;
        padding: 8px 15px;
        margin: 0 5px;
        min-width: max-content;
    }

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

    .faq-rectangle {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .faq-nav-tabs .nav-link {
        font-size: 14px;
        padding: 8px 15px;
        margin: 0 5px;
    }

    .faq-accordion .accordion-button {
        font-size: 15px;
        padding: 15px 20px;
    }

    .faq-accordion .accordion-body {
        padding: 15px 20px;
        font-size: 14px;
    }
}



/* Feedback Form Styles */
.feedback-container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-container {
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.feedback-contact-section {
    margin-top: 0;
    /* Contact info tetap di posisi normal */
}

.feedback-left {
    flex: 1;
    max-width: 500px;
    margin-bottom: 40px;
}

.feedback-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feedback-subtitle {
    font-size: 16px;
    color: #000;
    margin-bottom: 40px;
    line-height: 1.5;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(142, 142, 142, 0.1);
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary-color);
    font-size: 18px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 16px;
    color: #000;
    line-height: 1.4;
}

.feedback-right {
    flex: 1;
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
    margin-top: -135px;
    z-index: 3;
}

@media (max-width:767px) {
    .feedback-right {
        margin-top: -10%;
    }
}

.feedback-form-container {
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    width: 100%;
}

.form-select {
    border: 1px solid #dcdada;
    height: 38px;
    color: #656565;
    line-height: 1.2;
}

.form-input {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.3s ease;
    color: #282828;
}

.form-input::placeholder {
    color: #828080;
    font-size: 16px;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-color), 0.1);
}


.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-color), 0.1);
}

.select2-search-property:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-color), 0.1);
}


.submit-btn {
    background: var(--primary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 32px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    min-width: auto;
}

.submit-btn:hover {
    background: color-mix(in srgb, var(--primary-color) 90%, black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


/* Responsive */
@media (max-width: 768px) {
    .feedback-container {
        flex-direction: column;
        gap: 40px;
        /* margin-inline: auto; */
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .feedback-form-container {
        padding: 24px;
    }

    .feedback-left {
        margin-left: 20px;

    }

    .form-container {
        flex-direction: column;
        gap: 40px;
    }
}

.post-left {
    flex: 1;
    max-width: 500px;
    margin-bottom: 40px;
}

.post-container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.post-right {
    flex: 1;
    max-width: 600px;
}

.post-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.post-subtitle {
    font-size: 16px;
    color: #000;
    margin-bottom: 40px;
    line-height: 1.5;
}


@media (max-width: 768px) {
    .post-container {
        flex-direction: column;
        gap: 40px;
    }

    .post-form-container {
        padding: 24px;
    }

    .post-left,
    .post-right {
        margin-left: 20px;
        margin-bottom: -20px;
    }

    .top-section,
    .top-section.d-flex {
        flex-direction: column !important;
    }

    .horizontal-steps {
        flex-direction: column !important;
        margin-left: 0 !important;
        padding-left: 0;
        margin-right: 10px;
    }

    /* Sembunyikan garis horizontal desktop */
    .horizontal-steps>div[style*="position: absolute"] {
        display: none !important;
    }

    .horizontal-steps>div:last-child {
        display: none !important;
    }

    /* Setiap step container */
    .horizontal-steps>div:not([style*="position: absolute"]) {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        margin-right: 0 !important;
        margin-bottom: 40px !important;
        text-align: left !important;
        position: relative;
        padding-left: 65px;
        /* Ruang untuk angka bulatan */
    }

    /* Angka bulatan - posisi absolute di kiri */
    .horizontal-steps>div:not([style*="position: absolute"])>div:first-child {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        flex-shrink: 0;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
    }

    /* Judul - langsung di bawah container */
    .horizontal-steps>div:not([style*="position: absolute"])>h6 {
        margin-bottom: 8px !important;
        margin-top: 0 !important;
        width: 100%;
    }

    /* Deskripsi - di bawah judul */
    .horizontal-steps>div:not([style*="position: absolute"])>p {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        width: 100%;
    }

    /* Garis vertikal penghubung */
    .horizontal-steps::before {
        content: '';
        position: absolute;
        left: 25px;
        top: 50px;
        height: calc(100% - 130px);
        width: 2px;
        border-left: 2px dashed var(--primary-color);
        z-index: -1;
    }
}

.skeleton {
    animation: skeleton-loading 1s linear infinite alternate;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    border-radius: 4px;
}

.skeleton-img {
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.about-us-points {
    justify-content: center;
}

.about-us-point {
    flex: 1 1 calc(25% - 1rem);
    max-width: calc(25% - 1rem);
    text-align: center;
    background: #fff;
    overflow: visible;
    /* biar circle-nya boleh keluar */
}

.about-us-point p {
    margin-top: 3.5rem;
    /* beri ruang di bawah lingkaran */
}

/* Lingkaran di atas card */
.about-us-point .top-circle {
    width: 70px;
    height: 70px;
    top: -35px;
    /* setengah dari tinggi lingkaran */
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid #fff;
    /* opsional: biar ada garis pembatas */
}

/* Responsive: 2 item per baris */
@media (max-width: 991px) {
    .about-us-point {
        flex: 1 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

/* HP kecil: 1 item per baris */
@media (max-width: 575px) {
    .about-us-point {
        flex: 1 1 100%;
        max-width: 100%;
    }
}