.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    z-index: -2;
    object-fit: cover;
    background-image: url("../../images/develope/villa1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.jumbotron {
    position: relative;
    z-index: 2;
    height: 30vh;
    display: flex;
    align-items: center;
}

.sectionheading {
    position: relative;
}

.sectionheading::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--color-white); /* fallback warna */
    margin: 5px auto 0 auto;
    border-radius: 2px;
    position: absolute;
    left: 0;
}

.content {
    z-index: 2;
}

#about-us p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #444;
}

.parallax {
    background-image: url("../../images/develope/villa1.jpg"); /* ganti dengan gambar kamu */
    min-height: 30vh; /* full layar */
    background-attachment: fixed; /* efek parallax */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* overlay biar teks jelas */
}

.parallax .container {
    position: relative; /* supaya teks di atas overlay */
    z-index: 2;
}

#about-us p { 
}

/* Batasi jadi 3 baris */
.clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Tambahan biar rapi */
.read-more {
  font-size: 0.9rem;
  color: var(--color-first);
  text-decoration: none;
}
.read-more:hover {
  text-decoration: underline;
}

.whyuswrapper-nowrap::-webkit-scrollbar {
  height: 5px;
}

.whyuswrapper-nowrap::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.whyuswrapper-nowrap{
    flex-wrap: nowrap;
}

.inputcontact{
    border: 1px solid #44444E;
}

@media (max-width: 991px) {
    .hero-bg {
        height: 40vh;
    }

    .overlay {
        height: 40vh;
    }

    .jumbotron {
        height: 30vh;
    }
}

@media (max-width: 768px) {
    .jumbotron {
        text-align: center;
    }

    .sectionheading::after {
        position: relative;
        margin: 5px auto 0 auto; /* auto -> selalu center */
    }

    .whyuswrapper-nowrap{
        flex-wrap: wrap !important;
    }

    .getintouch{
        text-align: center;
    }
}
