:root {
    --primary-color: #007bff;
    --purple: rgb(232, 121, 249);
    --blue: rgb(96, 165, 250);
    --green: rgb(94, 234, 212);
}
html, body {
  overflow-x: hidden;
  width: 100%;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #2c3e50;
                display: flex;
            flex-direction: column;
            min-height: 100vh;
            padding-top: 50px; 
    }
        main {
            flex: 1 0 auto; /* isi ruang sisa supaya footer di bawah */
        }
        footer {
            flex-shrink: 0; /* jangan menyusut */
        }
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.text-primary {
    color: var(--primary-color) !important;
}

/* ==== NAVBAR ==== */
.navbar {
  font-family: 'Poppins', sans-serif;
  padding: 0.75rem 1rem;
  z-index: 1030;
  transition: all 0.3s ease-in-out;
}

.navbar-brand img {
  transition: transform 0.3s ease-in-out;
}
.navbar-brand img:hover {
  transform: scale(1.05);
}

/* Menu Styling */
.menu-link {
  position: relative;
  color: #333 !important;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

.menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 0%;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
  border-radius: 1px;
}

/* Hover Effects */
.menu-link:hover,
.menu-link:focus {
  color: var(--primary-color) !important;
  transform: scale(1.05);
}

.menu-link:hover::after {
  width: 60%;
}

.menu-link.active {
  color: var(--primary-color) !important;
  font-weight: 600;
}
.menu-link.active::after {
  width: 60%;
}

.whatsapp-btn {
    background-color: #25D366;
    border-color: #25D366;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    transition: all 0.2s ease-in-out;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

/* Hover effect */
.whatsapp-btn:hover {
    background-color: #1ebe5d;
    border-color: #1ebe5d;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}


/* ==== HERO ==== */
    .hero .hero-content {
      z-index: 2;
      text-align: center;
    }

        .hero .form-control,
    .hero .select2-container .select2-selection {
      border-radius: 0.75rem;
      padding: 0.6rem 1rem;
      font-size: 1rem;
    }

    .search-container {
      background: rgba(255, 255, 255, 0.95);
      padding: 1.5rem;
      border-radius: 1rem;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }

    .select2-container--default .select2-selection--single {
      height: 48px;
      display: flex;
      align-items: center;
    }
.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}
.hero-content h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.container-fluid.px-lg-5 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
}

/* ==== PROPERTY CARD ==== */
.property-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.property-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.property-img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* ==== KONTEN CARD ==== */
.card-body-fixed {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    min-height: 180px; /* pastikan semua konten bawah sejajar */
}

/* Bagian atas card (judul + lokasi) */
.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0;
}

/* Bagian bawah card (harga + WA) */
.text-primary.fw-bold {
    font-size: 1.2rem;
    font-weight: 700;
    white-space: nowrap;
}


.wa-inline-icon {
    position:relative;
    top:3px;
    font-size: 1.4rem;
    color: #25D366;
    margin-left: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.wa-inline-icon:hover {
    transform: scale(1.1);
    color: #1ebe5d;
}


/* ==== OPSIONAL: WA MENGAMBANG UNTUK FLOATING ==== */
.wa-float-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: #25D366;
    color: #fff;
    font-size: 1.6rem;
    padding: 0.75rem;
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.wa-float-icon:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
}


/* Mobile Horizontal Scroll */
.horizontal-scroll {
    overflow-x: auto;
    gap: 1rem;
    padding: 0.5rem 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.horizontal-scroll::-webkit-scrollbar {
    display: none;
}
.property-card-sm {
    flex: 0 0 auto;
    width: 240px;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    scroll-snap-align: start;
}
.property-card-sm img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 3px 6px rgba(0,0,0,0.08);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.property-card-sm img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.horizontal-scroll-desktop {
    display: flex;
    flex-wrap: nowrap;           /* ❗ penting: jangan wrap */
    overflow-x: auto;            /* scroll horizontal */
    scroll-behavior: auto;       /* ❗ JANGAN pakai smooth DI SINI */
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0.5rem 1rem;
}

.horizontal-scroll-desktop::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.horizontal-scroll-desktop::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}


.scroll-left-btn,
.scroll-right-btn {
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.7); /* semi-transparent black */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-left-btn:hover,
.scroll-right-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.property-card .card-body-fixed {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    min-height: 160px;
    transition: transform 0.3s ease;
}

.property-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.property-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(1.4em * 3); /* line-height 1.4 x 3 baris */
}

/* Pastikan bagian atas (judul + lokasi) seragam tinggi */
.card-body-fixed > .mb-3 {
    min-height: 110px; /* bisa disesuaikan, disarankan min 100px - 120px */
}

.horizontal-scroll-desktop {
    scroll-behavior: smooth;
    overflow-x: auto;
}

.property-card {
    scroll-snap-align: start;
}

.pagination {
    justify-content: center;
    flex-wrap: wrap;
}

.page-link {
    font-size: 0.875rem; /* lebih kecil */
    padding: 0.375rem 0.75rem;
}

.page-item.active .page-link {
    background-color: #0d6efd; /* Bootstrap primary */
    border-color: #0d6efd;
    color: white;
}
h4 {
    font-size: 1.25rem;
    font-weight: 600;
}
button.scroll-left-btn,
button.scroll-right-btn {
    border-radius: 0.375rem;
}

.scroll-wrapper {
    overflow-x: auto;
    padding-bottom: 8px; /* supaya ada ruang buat scrollbar */
}

.horizontal-scroll-desktop {
    width: max-content;
    min-width: 100%;
}

/* Scrollbar style (Chrome, Edge) */
.scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}

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

.scroll-wrapper::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px;
}

/* Scrollbar Firefox */
.scroll-wrapper {
    scrollbar-color: #bbb #eee;
    scrollbar-width: thin;
}

#modalSemuaFoto .btn.btn-icon-big {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Hilangkan efek hover/focus/active */
#modalSemuaFoto .btn.btn-icon-big:hover,
#modalSemuaFoto .btn.btn-icon-big:focus,
#modalSemuaFoto .btn.btn-icon-big:active,
#modalSemuaFoto .btn.btn-icon-big:focus:active {
    background-color: transparent !important;
    color: inherit !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Target khusus ikon agar tidak ganti warna saat hover/focus */
#modalSemuaFoto .btn.btn-icon-big i {
    color: #111 !important; /* atau warna lain sesuai keinginan */
}

#modalSemuaFoto .btn.btn-icon-big:hover i,
#modalSemuaFoto .btn.btn-icon-big:focus i,
#modalSemuaFoto .btn.btn-icon-big:active i {
    color: #111 !important;
}

#copyToast {
    border-radius: 12px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    
    .wa-float-icon {
        font-size: 1rem;   /* lebih kecil di mobile */
        padding: 0.6rem;     /* padding lebih kecil */
        bottom: 0.1rem;
        right: 0.75rem;
    }
.main-swiper {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
}

.main-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-swiper .landscape-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
  .thumb-swiper {
    margin-top: 0.75rem;
  }

  .navbar-collapse {
    background-color: #fff;
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-in-out;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .menu-link {
    padding: 0.75rem 1rem;
    text-align: left;
    transform: none !important;
  }

  .menu-link::after {
    display: none;
  }

  .btn-primary,
  .whatsapp-btn {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-btn {
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
  }

  .btn-icon-big {
    font-size: 1.5rem;
    padding: 0.4rem;
  }

  .modal-img {
    max-height: 90vh;
    max-width: 90vw;
  }

  .modal-header-custom {
    padding: 0.5rem 0.75rem;
  }

  #swiperModal {
    height: calc(100vh - 56px);
  }

       .row.align-items-center,
    .row.align-items-center.flex-md-row-reverse {
        flex-direction: column !important;
        gap: 1.5rem;
    }

    .col-md-6 {
        width: 100%;
        max-width: 100%;
    }

    .intro-inline {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .intro-inline img {
        width: 40%;
        max-height: 180px;
        object-fit: cover;
        border-radius: 0.75rem;
    }

    .intro-text {
        width: 60%;
        font-size: 0.95rem;
    }

    .content-group-hover {
        padding: 0.5rem;
    }

    .content-group-hover p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .content-group-hover h2,
    .content-group-hover h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    section.py-5 {
        padding: 2rem 1rem;
    }

    /* WhatsApp Button */
    .btn.btn-success.btn-lg {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
        gap: 0.5rem;
    }

    .btn.btn-success.btn-lg i {
        font-size: 1rem;
    }

 .container-fluid.px-lg-5 {
        padding-left: 7px !important;
        padding-right: 0 !important;
    }

    .horizontal-scroll {
        display: flex;
        overflow-x: auto;
        gap: 0;
        padding: 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin: 0;
    }

        .property-card-sm {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        min-height: 260px; /* atau sesuaikan lebih tinggi jika perlu */
        }
    .property-card-sm img {
        width: 100%;
        height: 120px;
        object-fit: cover; /* paksa landscape */
        object-position: center;
        border-radius: 0;
        border: none;
    }

    .property-card-sm .p-2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }

    .property-card-sm h6 {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    display: block;
    min-height: 2.8em;
    }

.property-card-sm h6 {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  display: block;
  min-height: 2.5em; /* untuk menjaga agar 2 baris tetap proporsional */
}

    .property-card-sm small {
        font-size: 0.75rem;
        display: block;
        color: #777;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .property-card-sm .text-primary {
        font-size: 0.85rem;
        font-weight: 600;
        margin-top: 0.25rem;
    }

    .property-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #fff;
    }


        
    .property-card .property-img {
    height: 160px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    }
.property-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.75rem;
}

.property-card .card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  min-height: 3.2rem; /* cukup untuk 2 baris agar rata */
  line-height: 1.4;
}
.property-card .card-text {
  font-size: 0.75rem;
  color: #777;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.property-card .text-primary {
  font-size: 0.9rem;
  font-weight: 600;
  color: #007bff;
}

    .row.g-4 > [class*="col-"] {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .container-fluid.px-lg-5 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .horizontal-scroll {
        display: flex;
        overflow-x: auto;
        gap: 0.5rem;
        padding: 0.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin: 0;
    }

    .property-card-sm {
        width: 45vw;
        flex-shrink: 0;
        scroll-snap-align: start;
        background-color: #fff;
        border-radius: 0.75rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        overflow: hidden;
    }

    .property-card-sm img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        object-position: center;
    }

    .property-card-sm .p-2 {
        padding: 0.5rem;
    }

    .property-card-sm h6 {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .property-card-sm small {
        font-size: 0.75rem;
        color: #777;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .property-card-sm .text-primary {
        font-size: 0.85rem;
        font-weight: 600;
        margin-top: 0.25rem;
    }

      #zoomControls button {
        font-size: 0.75rem;
        padding: 4px 6px;
        }
        #zoomControls .small {
            font-size: 0.7rem;
        }

        .text-nowrap {
            white-space: nowrap;
        }
        .text-truncate {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .harga-properti {
            white-space: nowrap;
            display: inline-block;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
        }

            .pagination {
        font-size: 0.75rem;
    }

    .page-link {
        padding: 0.3rem 0.5rem;
    }

    .wa-inline-icon{
    position: relative;
    top:1px;
    }
}

.zoom-container {
  width: 100%;
  height: 100%;
  overflow: auto;
  touch-action: none;
  cursor: grab;
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* IE/Edge */
}

.zoom-container::-webkit-scrollbar {
  display: none;               /* Chrome, Safari */
}


@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.whatsapp-icon {
    font-size: 1.8rem;
    color: #25D366;
    padding: 0.5rem;
    transition: transform 0.2s ease;
}

.whatsapp-icon:hover {
    transform: scale(1.2);
    color: #1ebe5d;
}


/* Galeri Utama */
.main-foto {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Navigasi Galeri */
.gallery-nav {
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: #2c3e50;
    border-radius: 50%;
    padding: 10px 12px;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.gallery-nav:hover {
    background: #fff;
}

/* Thumbnail */
.thumb-foto {
    transition: transform 0.2s;
}

.thumb-foto:hover {
    transform: scale(1.05);
}

.thumb-foto.active {
    border: 3px solid #0d6efd;
}

/* Modal Upgrade */
.modal-content {
    background-color: #000;
    color: #fff;
    border-radius: 0;
}

.modal-header {
    border-bottom: 1px solid #444;
}

.modal-full-img {
    max-height: 85vh;
    width: auto;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.2);
}
/* Kontak Agen */
.card-agent {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.card-agent img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.card-agent .btn-success {
    background-color: #248b4d;
    border: none;
    transition: 0.3s;
}

.card-agent .btn-success:hover {
    background-color: #21c964;
}
.main-swiper img {
    height: auto;
    max-height: 450px;
    width: 100%;
    object-fit: contain; /* sebelumnya 'cover' */
    background-color: #f8f9fa; /* latar belakang terang jika gambar tidak full */
    border-radius: 10px;
}
    .main-swiper img {
        height: 450px;
        object-fit: cover;
        width: 100%;
    }
/* Thumbnail diperjelas */
.thumb-swiper .swiper-slide {
    width: 100px;
    height: 75px; /* sedikit lebih pendek untuk proporsi landscape */
    overflow: hidden !important;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-swiper .swiper-slide img {
    object-fit: cover;
    height: 70px;
    width: 100px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.thumb-swiper .swiper-slide img.active {
    border-color: #0d6efd;
    transform: scale(1.05);
}
.main-swiper img,
.modal-fullscreen-custom img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}
    .thumb-swiper .swiper-slide-thumb-active {
        border-color: #0d6efd;
    }

    .modal-fullscreen-custom {
        padding: 0;
        background-color: rgba(0,0,0,0.95);
    }

    .modal-fullscreen-custom img {
        max-height: 90vh;
        width: auto;
        object-fit: contain;
        margin: auto;
        display: block;
    }

    .modal-header-custom {
        border: none;
        padding: 1rem 2rem;
        background: transparent;
        color: white;
        justify-content: space-between;
    }

    .properti-title {
        font-size: 2rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .section-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1rem;
        border-bottom: 1px solid #ddd;
        padding-bottom: 0.5rem;
        color: #34495e;
    }

.preview-video-card {
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.preview-video-card:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
.preview-video-card .section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}
.preview-video-card iframe {
    border: none;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* --- Custom Hover Effects for Violla Construction Page --- */

/* Scale effect for images */
.hover-scale-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale-img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.modal-fullscreen-custom {
  background-color: rgba(0, 0, 0, 0.97);
  padding: 0;
  margin: 0;
  border: none;
  height: 100vh;
  overflow: hidden;
}

.modal-header-custom {
  background: transparent;
  border: none;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  z-index: 10;
  position: relative;
}

.btn-icon-big {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.8rem;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#swiperModal {
  height: calc(100vh - 64px); /* kurangi header */
  width: 100%;
}

#swiperModal .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
  background-color: #000;
}

.modal-img {
  max-height: 95vh;
  max-width: 95vw;
  object-fit: contain;
  display: block;
  margin: auto;
  width: auto;
  height: auto;
}

.swiper-button-prev,
.swiper-button-next {
  color: white;
}

.watermark-wrapper {
    position: relative;
    display: inline-block;
    background-color: transparent;
}


.watermark-wrapper img.property-foto,
.watermark-wrapper img.thumb-foto,
.watermark-wrapper img.modal-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.watermark-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 2;
}
.watermark-overlay img {
    width: 80px; /* kecilkan supaya tidak menutupi foto */
    opacity: 0.3;
    mix-blend-mode: multiply; /* agar menyatu di background gelap/terang */
}