html, body {
  /* Menggunakan warna yang sedikit lebih gelap (Warm Soft Gray) agar lebih adem dan mewah */
  background: #f5f2eb; 
  
  font-family: "Mukta Mahee", arial, sans-serif;
  font-weight: 300; /* Sedikit lebih tebal dari 200 agar lebih mudah dibaca */
  font-size: 16px;
  line-height: 1.8;
  
  /* Warna teks dibuat sedikit lebih pekat agar kontrasnya tetap terjaga di BG baru */
  color: #2d2d2d; 
  
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased; /* Agar font terlihat lebih smooth */
}
html {
  scroll-behavior: smooth;
}

/* Tambahkan padding top jika kamu pakai navbar fixed, 
agar judul section tidak tertutup menu */
section {
  scroll-margin-top: 80px; 
}
/* Warna seleksi teks tetap menggunakan identitas brand */
::selection {
  color: #fff;
  background: #e61c5d;
}

/* Tambahan tips: Berikan warna sedikit berbeda untuk heading */
h1, h2, h3, h4, h5, h6 {
  color: #1a1a1a; /* Hitam pekat untuk judul agar tegas */
  font-family: "Cormorant Garamond", serif; /* Sangat cocok untuk kesan Villa/Hotel */
}
a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1, h2, h3 {
  color: #000;
  font-family: "Playfair+Display", times, serif;
}

.container-fluid {
  max-width: 1600px;
}

.btn {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 50px;
}

.btn.uppercase {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .2em;
}

.btn, .form-control {
  outline: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn:focus, .btn:active, .form-control:focus, .form-control:active {
  outline: none;
}

.form-control {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  height: 50px;
  border-width: 2px;
}

textarea.form-control {
  height: inherit;
}

.site-header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 60px 0;
  z-index: 2;
}

.menu-open .site-header {
  position: fixed;
}

.site-logo a {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  font-family: "Playfair+Display", times, serif;
}

.site-navbar {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  min-height: 300px;
  overflow-y: scroll;
}

.site-navbar nav {
  text-align: left;
}

.site-navbar nav .menu {
  font-family: "Playfair+Display", times, serif;
}

.site-navbar nav .menu li a {
  color: #000;
  font-size: 40px;
  padding: 5px 10px;
  position: relative;
}

.site-navbar nav .menu li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 50%;
  width: 0%;
  z-index: -1;
  background: #e61c5d;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.site-navbar nav .menu li a:hover:before {
  width: 100%;
}

.site-navbar nav .menu li.active a:before {
  width: 100%;
}

.site-navbar .extra-info a {
  color: #000;
}

.site-navbar .extra-info ul li a {
  color: #000;
}

.site-navbar .extra-info h3 {
  font-family: "Mukta Mahee", arial, sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .2em;
  color: #adb5bd;
  margin-bottom: 30px;
}

.site-navbar .extra-info p {
  color: #212529;
}

.full-height {
  height: 100vh;
  min-height: 700px;
}

.site-hero {
  background-size: cover;
  height: 100vh;
  min-height: 700px;
  width: 100%;
}

.site-hero .scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #fff;
}

.site-hero.overlay:before {
  background: rgba(0, 0, 0, 0.45);
  content: "";
  position: absolute;
  height: 100vh;
  min-height: 700px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.site-hero-inner {
  height: 100vh;
  min-height: 700px;
}

.site-hero-inner .heading {
  font-size: 80px;
  font-family: "Playfair+Display", times, serif;
  color: #fff;
  line-height: 1;
  font-weight: bold;
}

@media (max-width: 991.98px) {
  .site-hero-inner .heading {
    font-size: 40px;
  }
}

.site-hero-inner .sub-heading {
  font-size: 30px;
  font-weight: 200;
  color: #fff;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .site-hero-inner .sub-heading {
    font-size: 18px;
  }
}

.page-inside .site-hero-inner, .page-inside {
  height: 70vh;
  min-height: 500px;
}

.page-inside.overlay:before {
  height: 70vh;
  min-height: 500px;
}

.menu-open .site-menu-toggle span {
  background: #000;
}

.site-menu-toggle {
  float: right;
  width: 40px;
  height: 45px;
  position: relative;
  margin: 0px auto;
  z-index: 200;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.site-menu-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.site-menu-toggle span:nth-child(1) {
  top: 0px;
}

.site-menu-toggle span:nth-child(2) {
  top: 10px;
}

.site-menu-toggle span:nth-child(3) {
  top: 20px;
}

.site-menu-toggle.open span:nth-child(1) {
  top: 13px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.site-menu-toggle.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.site-menu-toggle.open span:nth-child(3) {
  top: 13px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.section {
  padding: 7em 0;
}

@media (max-width: 991.98px) {
  .section {
    padding: 3em 0;
  }
}

@media (max-width: 991.98px) {
  .lead {
    font-size: 16px;
  }
}

.visit-section .heading {
  font-size: 15px;
  text-transform: uppercase;
  font-family: "Mukta Mahee", arial, sans-serif;
  color: #b3b3b3;
  letter-spacing: .2em;
  margin-bottom: 30px;
}

.visit-section .visit a {
  color: #000;
}

.visit-section .visit a:hover {
  color: #e61c5d;
}

.visit-section .visit img {
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
}

.visit-section .visit h3 {
  font-size: 20px;
  margin-bottom: 0;
}

.visit-section .reviews-star span {
  font-size: 18px;
  color: #e61c5d;
}

.visit-section .reviews-count {
  color: #adb5bd;
  font-style: italic;
}

 .testimonial-section .heading, .slider-section .heading, .blog-post-entry .heading {
  font-size: 80px;
  font-family: "Playfair+Display", times, serif;
}

@media (max-width: 991.98px) {
   .testimonial-section .heading, .slider-section .heading, .blog-post-entry .heading {
    font-size: 40px;
  }
}

.bg-pattern {
  background: #e9ecef url("../img/round.png");
}

.slider-section {
  position: relative;
}

.blog-post-entry {
  position: relative;
  margin-top: -500px;
  padding-top: 500px;
}

@media (max-width: 991.98px) {
  .blog-post-entry {
    margin-top: -300px;
    padding-top: 300px;
  }
}

.half .image, .half .text {
  width: 50%;
}

@media (max-width: 991.98px) {
  .half .image, .half .text {
    width: 100%;
  }
}

.half .image {
  background-size: cover;
  background-position: center center;
}

@media (max-width: 991.98px) {
  .half .image {
    height: 300px;
  }
}

.half .text {
  padding: 100px 7%;
}

@media (max-width: 991.98px) {
  .half .text {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.half .text h2 {
  font-size: 70px;
}

@media (max-width: 991.98px) {
  .half .text h2 {
    font-size: 40px;
  }
}

.testimonial blockquote {
  padding: 0;
}

.testimonial blockquote p {
  line-height: 1.5;
  font-family: "Playfair+Display", times, serif;
  font-size: 20px;
  color: #000;
  font-style: italic;
}

.testimonial .author-image img {
  width: 70px;
}

.post .media-custom {
  background: #fff;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
}

.post .media-custom:hover, .post .media-custom:focus {
  -webkit-box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.post .media-custom a {
  color: #000;
}

.post .media-custom a:hover {
  color: #e61c5d;
}

.post .media-custom .media-body {
  padding: 10px 30px;
}

.post .media-custom h2 {
  font-size: 26px;
}

.media-custom .meta-post {
  color: #ced4da;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.owl-carousel .owl-item {
  opacity: .4;
}

.owl-carousel .owl-item.active {
  opacity: 1;
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: -10px;
}

.owl-carousel .owl-nav .owl-prev:hover, .owl-carousel .owl-nav .owl-prev:focus, .owl-carousel .owl-nav .owl-prev:active,
.owl-carousel .owl-nav .owl-next:hover,
.owl-carousel .owl-nav .owl-next:focus,
.owl-carousel .owl-nav .owl-next:active {
  outline: none;
}

.owl-carousel .owl-nav .owl-prev span:before,
.owl-carousel .owl-nav .owl-next span:before {
  font-size: 40px;
}

.owl-carousel .owl-nav .owl-prev {
  left: 30px !important;
}

.owl-carousel .owl-nav .owl-next {
  right: 30px !important;
}

.owl-carousel .owl-dots {
  text-align: center;
}

.owl-carousel .owl-dots .owl-dot {
  border-width: 2px !important;
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
}

.owl-carousel.home-slider {
  z-index: 1;
  position: relative;
}

.owl-carousel.home-slider .owl-nav {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.owl-carousel.home-slider .owl-nav button {
  color: #fff;
}

.owl-carousel.home-slider:focus .owl-nav, .owl-carousel.home-slider:hover .owl-nav {
  opacity: 1;
  visibility: visible;
}

.owl-carousel.home-slider .slider-item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: calc(100vh - 117px);
  min-height: 700px;
  position: relative;
}

.owl-carousel.home-slider .owl-dots {
  position: absolute;
  bottom: 100px;
  width: 100%;
}

.owl-carousel.home-slider .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: none !important;
  position: relative;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  background: #fff;
}

.owl-carousel.home-slider .owl-dots .owl-dot.active {
  border: 2px solid white;
  background: none;
}

.owl-carousel.major-caousel {
  -webkit-box-shadow: 0 10px 70px -10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 70px -10px rgba(0, 0, 0, 0.2);
}

.owl-carousel.major-caousel .owl-stage-outer {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.owl-carousel.major-caousel .owl-stage-outer {
  padding-top: 30px;
  padding-bottom: 30px;
}

.owl-carousel.major-caousel .slider-item {
  height: inherit;
  min-height: inherit;
}

.owl-carousel.major-caousel .slider-item img {
  margin-bottom: 0;
}

.owl-carousel.major-caousel .owl-nav {
  opacity: 1;
  visibility: visible;
}

.owl-carousel.major-caousel .owl-nav .owl-prev, .owl-carousel.major-caousel .owl-nav .owl-next {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: #495057;
}

.owl-carousel.major-caousel .owl-nav .owl-prev:hover, .owl-carousel.major-caousel .owl-nav .owl-prev:focus, .owl-carousel.major-caousel .owl-nav .owl-next:hover, .owl-carousel.major-caousel .owl-nav .owl-next:focus {
  color: #6c757d;
  outline: none;
}

.owl-carousel.major-caousel .owl-nav .owl-prev.disabled, .owl-carousel.major-caousel .owl-nav .owl-next.disabled {
  color: #dee2e6;
}

.owl-carousel.major-caousel .owl-nav .owl-prev {
  left: -60px !important;
}

.owl-carousel.major-caousel .owl-nav .owl-next {
  right: -60px !important;
}

.owl-carousel.major-caousel .owl-dots {
  bottom: 50px !important;
}

@media (max-width: 991.98px) {
  .owl-carousel.major-caousel .owl-dots {
    bottom: 10px !important;
  }
}

.footer-section {
  background: #1a1a1a;
  color: #fff;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-section a:hover {
  color: #fff;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.5);
}

.footer-section .bordertop {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer-section .contact-info span.d-block {
  font-style: italic;
  color: #fff;
}

.footer-section .social a {
  font-size: 18px;
  padding: 10px;
}

.footer-section .link li {
  margin-bottom: 10px;
}

.footer-newsletter .form-group {
  position: relative;
}

.footer-newsletter .form-control {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: #fff;
}

.footer-newsletter .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.2);
  font-style: italic;
}

.footer-newsletter .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.2);
  font-style: italic;
}

.footer-newsletter .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(255, 255, 255, 0.2);
  font-style: italic;
}

.footer-newsletter .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(255, 255, 255, 0.2);
  font-style: italic;
}

.footer-newsletter .form-control:active, .footer-newsletter .form-control:focus {
  border-bottom: 1px solid white;
}

.footer-newsletter button[type="submit"] {
  background: none;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}

.side-box, .sidebar-search {
  padding: 30px;
  background: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.side-box .heading, .sidebar-search .heading {
  font-size: 18px;
  margin-bottom: 30px;
  font-family: "Mukta Mahee", arial, sans-serif;
}

.post-list li {
  margin-bottom: 20px;
}

.post-list li a > div {
  margin-top: -10px;
}

.post-list li a .meta {
  font-size: 13px;
  color: #adb5bd;
}

.post-list li a .image {
  width: 150px;
}

.post-list li a h3 {
  font-size: 16px;
}

.post-list li:last-child {
  margin-bottom: 0;
}

.sidebar-search .form-group {
  position: relative;
  margin-bottom: 0;
}

.sidebar-search .icon-search {
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sidebar-search .search-input {
  border-color: #dee2e6;
  padding-left: 40px;
  border-radius: 0px;
}

.sidebar-search .search-input:focus, .sidebar-search .search-input:active {
  border-color: #343a40;
}

.contact-section .contact-info p {
  color: white;
  font-family: "Playfair+Display", times, serif;
  font-size: 30px;
  margin-bottom: 30px;
}

.contact-section .contact-info p .d-block {
  font-size: 14px;
  letter-spacing: .2em;
  font-family: "Mukta Mahee", arial, sans-serif;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.post-categories li {
  display: block;
}

.post-categories li a {
  display: block;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e9ecef;
}

.post-categories li a .count {
  position: absolute;
  top: 0;
  right: 0;
  color: #6c757d;
}

.custom-pagination .page-item .page-link {
  text-align: center;
  border: none;
  background: none;
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  padding: 0;
  line-height: 50px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.custom-pagination .page-item.active .page-link {
  background: #dc3545;
  -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.2);
}

.gallery-container {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 2.5rem;
    color: #333;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Ganti nama dari .overlay menjadi .gallery-overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Pastikan hover-nya juga mengarah ke nama baru */
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* Responsive untuk Mobile */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* Styling Ikon Spesifikasi */
.icon-wrap {
    width: 40px;
    height: 40px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.text-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Dekorasi Gambar */
.image-stack {
    position: relative;
    padding: 20px;
}

.image-stack-item img {
    position: relative;
    z-index: 2;
}

.image-stack-deco {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 10px solid #e61c5d; /* Sesuaikan warna pink brand kamu */
    z-index: 1;
    border-radius: 8px;
}

/* Responsif */
@media (max-width: 768px) {
    .image-stack-deco {
        display: none;
    }
    .heading {
        font-size: 2rem !important;
    }
}

.siteplan-wrapper {
    transition: transform 0.3s ease;
    background: #fff;
}

.siteplan-wrapper:hover {
    transform: translateY(-5px);
}

.siteplan-legend {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.legend-item {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 15px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    display: inline-block;
}

/* Warna sesuai standar ketersediaan properti */
.dot.sold { background-color: #dc3545; }      /* Merah */
.dot.available { background-color: #28a745; } /* Hijau */
.dot.booked { background-color: #ffc107; }    /* Kuning */

/* Efek tombol WhatsApp agar berdenyut */
.btn-primary.shadow-lg {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0px rgba(230, 28, 93, 0.4); }
    100% { box-shadow: 0 0 0 20px rgba(230, 28, 93, 0); }
}

.icon-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.custom-spec-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
    color: #666;
    font-size: 15px;
}

.custom-spec-list li:last-child {
    border-bottom: none;
}

.custom-spec-list li strong {
    color: #000;
    display: inline-block;
    width: 120px; /* Meratakan posisi teks sebelah kanan */
}

/* Hover Effect pada Card */
.card.shadow-sm {
    transition: all 0.3s ease;
}

.card.shadow-sm:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* Styling Box Spesifikasi */
.spec-box {
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease-in-out;
}

.spec-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
    border-color: #e61c5d; /* Warna brand */
}

.icon-wrap-large {
    width: 70px;
    height: 70px;
    background: rgba(230, 28, 93, 0.05); /* Warna pink transparan */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.icon-wrap-large i {
    font-size: 35px;
}

.spec-box h3 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Class tambahan saat di-scroll */
.site-header.scrolled {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0; /* Padding jadi lebih ramping saat melayang */
    background: rgba(255, 255, 255, 0.95); /* Background putih transparan */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Kasih bayangan tipis */
    transition: all 0.3s ease-in-out;
}

/* Ubah warna logo dan toggle menu saat di-scroll agar tetap terlihat di bg putih */
.site-header.scrolled .site-logo a {
    color: #000;
}

.site-header.scrolled .site-menu-toggle span {
    background: #000;
}

/* Custom PK Tabs */
.pk-nav-custom {
    border: 1px solid #eee;
}

.pk-nav-custom .nav-link {
    color: #666;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.pk-nav-custom .nav-link.active {
    background-color: #e61c5d !important; /* Warna brand */
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(230, 28, 93, 0.3);
}

/* Hover Effect pada Box */
.shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05) !important;
    border-color: #e61c5d !important;
}

.bg-warning-light {
    background-color: rgba(255, 193, 7, 0.1);
}

.transition-all {
    transition: all 0.3s ease;
}

/* Responsive Font */
@media (max-width: 768px) {
    .pk-nav-custom .nav-link {
        font-size: 12px;
        padding: 8px 10px;
    }
}

/* Pastikan timeline line berada di tengah */
.pk-timeline-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.pk-timeline-wrapper::before {
    content: "";
    position: absolute;
    top: 48px; /* Sesuaikan dengan posisi dot */
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

/* Dot Styling */
.bep-dot {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 4px solid #dee2e6;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.bep-dot.active {
    background: #e61c5d;
    border-color: #fff;
    box-shadow: 0 0 0 5px rgba(230, 28, 93, 0.2);
    transform: scale(1.4);
}

/* Custom badge for BEP */
.badge-primary {
    background: linear-gradient(45deg, #e61c5d, #ff4d8d);
    border: none;
}

/* Center utility */
.italic {
    font-style: italic;
}

/* Container Navigasi Tab Mobile */
@media (max-width: 768px) {
    .pk-tabs {
        display: flex !important;
        flex-wrap: nowrap !important; /* Paksa tetap satu baris */
        overflow-x: auto !important; /* Bisa di-scroll ke samping */
        -webkit-overflow-scrolling: touch; /* Scroll halus di iPhone */
        padding-bottom: 10px;
        justify-content: flex-start !important; /* Rata kiri saat scroll */
        gap: 10px !important;
        scrollbar-width: none; /* Hilangkan scrollbar di Firefox */
    }

    .pk-tabs::-webkit-scrollbar {
        display: none; /* Hilangkan scrollbar di Chrome/Safari */
    }

    .pk-tab {
        flex: 0 0 auto; /* Ukuran tombol mengikuti isi teks, tidak mengecil */
        white-space: nowrap; /* Teks tidak turun ke bawah */
        font-size: 13px; /* Ukuran font lebih kecil sedikit di mobile */
        padding: 8px 16px !important;
    }
    
    /* Penyesuaian Tabel Simulasi agar Fit */
    .pk-simulasi-table, .table {
        font-size: 12px; /* Perkecil font tabel di mobile */
    }
    
    .table td, .table th {
        padding: 8px 4px !important;
    }
}
@media (max-width: 768px) {
    .pk-panel {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    /* Agar teks rata kiri-kanan (justify) di HP supaya lebih rapi */
    .pk-profil-text {
        text-align: justify;
        text-justify: inter-word;
    }
}

/* Container pembungkus utama */
.pk-bep-scroll-container {
    width: 100%;
    position: relative;
    overflow: hidden; /* Pastikan tidak ada scroll vertikal liar */
}

.pk-bep-wrapper {
    overflow-x: auto !important;
    display: block;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x; /* Sangat penting untuk device mobile baru */
    padding-bottom: 15px;
}

.pk-bep-wrapper::-webkit-scrollbar {
    display: none;
}

/* Pasang lebar minimal tabel agar meluber keluar layar HP */
.pk-bep-table {
    min-width: 700px !important; /* Paksa lebar agar bisa digeser */
    margin-bottom: 0;
    table-layout: fixed; /* Menjaga ukuran kolom tetap stabil */
}

/* Garis Timeline tetap menggunakan trik tabel */
.pk-dot-row td {
    position: relative;
    padding: 25px 0 !important;
}

.pk-dot-row td::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
    transform: translateY(-50%);
}

.pk-dot-row td:first-child::before { left: 50%; }
.pk-dot-row td:last-child::before { right: 50%; }

/* Dot & Badge */
.bep-dot {
    width: 22px;
    height: 22px;
    background: #fff;
    border: 4px solid #dee2e6;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.bep-dot.active {
    background: #e61c5d;
    border-color: #fff;
    box-shadow: 0 0 0 5px rgba(230, 28, 93, 0.2);
    transform: scale(1.3);
}

.badge-primary {
    background: linear-gradient(45deg, #e61c5d, #ff4d8d);
    border: none;
}

.site-hero.page-inside {
    background-size: cover;      /* Gambar menutupi seluruh area section */
    background-position: center;  /* Gambar tetap di tengah walau layar di-resize */
    background-repeat: no-repeat; /* Gambar tidak mengulang (tile) */
    min-height: 500px;           /* Sesuaikan tinggi section agar siteplan terlihat jelas */
}

.section-legalitas {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdfdfd 0%, #f4f4f4 100%);
}
.legal-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.legal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}
.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}
.icon-circle i {
    font-size: 35px;
    color: #d4af37;
}
.legal-card h4 {
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #222;
}
.legal-text-highlight {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    margin-top: 10px;
}
.shm-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: #28a745;
    color: #fff;
    padding: 5px 15px;
    font-size: 10px;
    font-weight: bold;
    border-bottom-left-radius: 10px;
    text-transform: uppercase;
}
.testi-slider {
    padding-bottom: 50px !important;
}
.testi-link {
    text-decoration: none !important;
    color: inherit;
    display: block;
}
.testi-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}
.testi-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}
.stars {
    color: #f1c40f;
    margin-bottom: 15px;
}
.testi-card p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}
.user-info {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}
.user-info strong {
    display: block;
    color: #333;
    font-size: 18px;
}
.user-info span {
    font-size: 13px;
    color: #999;
}
.swiper-pagination-bullet-active {
    background: #d4af37 !important;
}

.footer-section {
    background: #1a1a1a; /* Hitam elegan */
    color: #999;
    padding-top: 80px;
    padding-bottom: 40px;
    font-size: 15px;
}
.footer-heading {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-section a {
    color: #ccc;
    transition: 0.3s;
}
.footer-section a:hover {
    color: #d4af37; /* Gold */
    text-decoration: none;
}
.text-gold {
    color: #d4af37;
    margin-right: 5px;
}
.footer-newsletter .form-group {
    position: relative;
}
.footer-newsletter .form-control {
    background: #222;
    border: 1px solid #333;
    color: #fff;
    border-radius: 30px;
    padding-left: 20px;
    height: 50px;
}
.btn-gold {
    background: #d4af37;
    color: #000;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    border: none;
    transition: 0.3s;
}
.btn-gold:hover {
    background: #fff;
}
.bordertop {
    border-top: 1px solid #333;
}
.social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #222;
    border-radius: 50%;
    text-align: center;
    margin-left: 10px;
    font-size: 18px;
}
.social a:hover {
    background: #d4af37;
    color: #000 !important;
}
.copyright {
    font-size: 14px;
}

.footer-link {
    color: #00d2ff; /* Warna biru cerah agar terlihat seperti link */
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #fff; /* Berubah jadi putih saat di-hover */
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.8); /* Efek cahaya (glow) */
    transform: scale(1.05); /* Sedikit membesar */
    text-decoration: underline; /* Muncul garis bawah */
}

.testi-link {
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.testi-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%;
}

/* Badge Google di Atas */
.google-badge {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #666;
    border: 1px solid #eee;
}

.stars i {
    color: #ffc107;
    font-size: 14px;
    margin-right: 2px;
}

.testi-card p {
    font-style: italic;
    color: #444;
    line-height: 1.6;
    margin: 20px 0;
    font-size: 15px;
}

.user-info strong {
    display: block;
    font-size: 16px;
    color: #222;
}

.user-info span {
    font-size: 13px;
    color: #888;
}

/* Tombol Intruksi yang muncul saat Hover */
.view-on-maps {
    margin-top: 20px;
    font-size: 13px;
    color: #007bff;
    font-weight: 700;
    opacity: 0.6;
    transition: 0.3s;
}

/* EFEK HOVER MAUT */
.testi-link:hover .testi-card {
    transform: translateY(-12px);
    border-color: #ffc107;
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.15);
}

.testi-link:hover .view-on-maps {
    opacity: 1;
    text-decoration: underline;
}

/* Menyesuaikan Swiper agar tidak terpotong saat kartu naik */
.testi-slider {
    padding: 30px 10px !important;
}
/* Container Utama Slider */
/* Container Utama Slider */
.image-stack-slider {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* Rasio gambar 4:3 */
  
  /* Tambahkan ini untuk mengunci urutan tumpukan 3D layer */
  transform-style: preserve-3d; 
}

/* Wrapper Gambar */
.image-stack-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /* Maksimalkan z-index wrapper gambar agar mutlak di depan bingkai */
  z-index: 10; 
}

/* Pengaturan Item Gambar */
.image-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: beautifulFade 12s infinite ease-in-out;
}

/* Memastikan gambar mengisi area dengan rapi dan diberi efek ROUND */
.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px; 
  transition: transform 0.5s ease;
}

/* Efek Hover Interaktif pada Gambar */
.image-stack-slider:hover .image-item img {
  transform: scale(1.03); 
}

/* --- Elemen Dekoratif Kotak (Bingkai DI BELAKANG) --- */
.image-stack-deco {
  position: absolute;
  top: 15px;       
  left: 15px;      
  width: 100%;
  height: 100%;
  
  /* Garis bingkai */
  border: 4px solid #c5a880; 
  border-radius: 16px; 
  
  /* Turunkan nilai z-index sekecil mungkin agar dipaksa ke belakang */
  z-index: 1; 
  
  pointer-events: none; 
  transition: all 0.5s ease; 
}

/* Efek pas di-hover: Bingkai ikut bergerak sedikit */
.image-stack-slider:hover .image-stack-deco {
  top: 20px;
  left: 20px;
}

/* --- Pengaturan Delay Animasi (Untuk 3 Gambar) --- */
.image-item:nth-child(1) {
  animation-delay: 0s;
}
.image-item:nth-child(2) {
  animation-delay: 4s;
}
.image-item:nth-child(3) {
  animation-delay: 8s;
}

/* --- Elemen Dekoratif Kotak (Menyesuaikan Kode Aslimu) --- */
.image-stack-deco {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 70%;
  height: 70%;
  border: 4px solid var(--accent-color, #c5a880); /* Gunakan warna tema villamu */
  border-radius: 8px;
  z-index: 1; /* Di belakang gambar */
  pointer-events: none;
}

/* --- KEYFRAMES FADE IN / FADE OUT LOGIC ---
   Total 100% waktu dibagi rata agar transisinya super smooth
*/
@keyframes beautifulFade {
  0% {
    opacity: 0;
    transform: scale(1.02); /* Sedikit efek menyusut perlahan saat muncul */
  }
  8% {
    opacity: 1;
    transform: scale(1);
  }
  33% {
    opacity: 1; /* Gambar diam tampil penuh */
  }
  41% {
    opacity: 0; /* Mulai memudar keluar */
  }
  100% {
    opacity: 0;
  }
}
/* --- Elemen Dekoratif Kotak (Bingkai yang Pas Menutupi Gambar) --- */
.image-stack-deco {
  position: absolute;
  /* Geser posisi bingkai sedikit ke arah luar gambar (efek bayangan/layering) */
  top: 15px;       /* Geser 15px ke bawah dari top gambar */
  left: 15px;      /* Geser 15px ke kanan dari left gambar */
  
  /* Paksa ukuran bingkai sama persis 100% dengan ukuran gambar slider */
  width: 100%;
  height: 100%;
  
  /* Garis bingkai */
  border: 4px solid #c5a880; /* Sesuaikan dengan warna brand villa kamu */
  border-radius: 8px;
  
  z-index: 1; /* Tetap berada di belakang gambar utama */
  pointer-events: none; /* Biar tidak mengganggu klik atau hover pada gambar */
  
  /* Tambahkan transisi agar ikut bergerak smooth jika gambar di-hover */
  transition: all 0.5s ease; 
}

/* Efek opsional: Saat container di-hover, bingkai ikut merapat/merenggang sedikit */
.image-stack-slider:hover .image-stack-deco {
  top: 20px;
  left: 20px;
}