.property-card {
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    background: #fff;
    transition: transform 0.2s ease-in-out;
  }
  
  .property-card:hover {
    transform: translateY(-4px);
  }
  
  .property-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  
  .property-content {
    padding: 15px 20px;
  }
  
  .property-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
  }
  
  .property-price {
    color: #007b5e;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .property-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
  }
  
  .property-info i {
    color: #007b5e;
    margin-right: 6px;
  }
  
  .agent-info {
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 10px;
  }
  
  .agent-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
  }
  
  .agent-details {
    flex: 1;
  }
  
  .agent-name {
    font-weight: 600;
    display: block;
    color: #333;
  }
  
  .btn-whatsapp {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: 4px;
  }
  
  .btn-whatsapp:hover {
    background: #1ebe5d;
    text-decoration: none;
  }
  
  .property-detail img:hover {
      opacity: 0.9;
      cursor: pointer;
  }

  .property-gallery img {
      transition: transform 0.2s ease-in-out;
  }

  .property-gallery img:hover {
      transform: scale(1.05);
  }
  .hero-text .carousel-item {
      transition: opacity 1s ease-in-out;
  }

  .hero-text h1 span {
      color: #ff9800;
  }
  

  
/* Bagian ini adalah style kustom Anda untuk H1 span */
.hero-text h1 span {
  color: #ff9800;
}
/* --- START OPTIMASI SEO: MENYAMAKAN GAYA H2 DENGAN H1 DI CAROUSEL --- */

/* Selector ini sangat spesifik, hanya menargetkan H1 dan H2 dengan kelas seo-h1/h1-display 
YANG BERADA DI DALAM CAROUSEL (#heroTextSlider), 
sehingga tidak akan crash dengan H2 listing properti di bawah.
*/
#heroTextSlider h1.seo-h1,
#heroTextSlider h2.h1-display {
/* Aturan agar H2 tampil sebesar H1 */
font-size: 3.5rem; 
font-weight: 700;
line-height: 1.2;
color: #333; /* Warna teks utama */
margin-top: 0;
margin-bottom: 0;
}

/* Pastikan SPAN di H2 juga mendapatkan warna kustom yang sama (#ff9800), 
menggunakan selector yang sangat spesifik.
*/
#heroTextSlider h1.seo-h1 span,
#heroTextSlider h2.h1-display span {
color: #ff9800; /* Warna kustom span H1 Anda */
}

/* --- END OPTIMASI SEO --- */

