/* PROPERTY DETAIL PAGE STYLES */
  .property-detail-hero {
    background-color: #F8EEEF;
    padding: 40px 0 20px;
    margin-top: 70px;
  }

  .property-breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #666;
  }

  .property-breadcrumb a {
    color: #862220;
    text-decoration: none;
  }

  .property-breadcrumb a:hover {
    text-decoration: underline;
  }

  .property-detail-hero h1 {
    font-family: 'Playfair Display', serif;
    color: #862220;
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

  .property-location-hero {
    color: #D7B263;
    font-size: 1.1rem;
    font-weight: 500;
  }

  .property-detail-content {
    padding: 50px 0;
    background-color: #fff;
  }

  .property-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
  }

  .property-main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .property-main-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .property-main-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .property-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #D7B263;
    color: #862220;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
  }

  .property-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .property-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    flex-shrink: 0;
  }

  .property-thumbnail.active,
  .property-thumbnail:hover {
    opacity: 1;
  }

  .property-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .property-description {
    background-color: #F8EEEF;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e8d8da;
  }

  .property-description h2 {
    color: #862220;
    margin-bottom: 20px;
    font-size: 1.8rem;
  }

  .property-description p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
  }

  .property-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .property-price-box {
    background-color: #F8EEEF;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e8d8da;
  }

  .property-price-box h3 {
    color: #862220;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .property-price-box p {
    color: #666;
    margin-bottom: 20px;
  }

  .property-inquire-btn,
  .property-call-btn {
    display: block;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
    transition: all 0.3s;
  }

  .property-inquire-btn {
    background-color: #25D366;
    color: white;
  }

  .property-inquire-btn:hover {
    background-color: #128C7E;
  }

  .property-call-btn {
    background-color: #862220;
    color: white;
  }

  .property-call-btn:hover {
    background-color: #6a1b19;
  }

  .property-features-box,
  .property-contact-box {
    background-color: #F8EEEF;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e8d8da;
  }

  .property-features-box h4,
  .property-contact-box h4 {
    color: #862220;
    margin-bottom: 15px;
    font-size: 1.3rem;
  }

  .property-features-list {
    list-style: none;
  }

  .property-features-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e8d8da;
    display: flex;
    align-items: center;
  }

  .property-features-list li:last-child {
    border-bottom: none;
  }

  .property-features-list i {
    margin-right: 10px;
    color: #D7B263;
    width: 20px;
  }

  .schedule-btn {
    display: block;
    text-align: center;
    background-color: #D7B263;
    color: #862220;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
  }

  .schedule-btn:hover {
    background-color: #c9a257;
  }

  .property-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  .property-details-card,
  .property-amenities-card,
  .property-location-card {
    background-color: #F8EEEF;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e8d8da;
  }

  .property-details-card h3,
  .property-amenities-card h3,
  .property-location-card h3 {
    color: #862220;
    margin-bottom: 20px;
    font-size: 1.5rem;
  }

  .details-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .detail-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8d8da;
  }

  .detail-item:last-child {
    border-bottom: none;
  }

  .detail-label {
    font-weight: 600;
    color: #862220;
  }

  .detail-value {
    color: #333;
  }

  .amenities-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .amenity-item {
    display: flex;
    align-items: center;
  }

  .amenity-item i {
    color: #D7B263;
    margin-right: 10px;
  }

  .property-location-card p {
    margin-bottom: 15px;
    color: #333;
  }

  .property-map {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
  }

  .location-features h4 {
    color: #862220;
    margin-bottom: 15px;
    font-size: 1.2rem;
  }

  .location-features ul {
    list-style: none;
  }

  .location-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
  }

  .location-features i {
    color: #D7B263;
    margin-right: 10px;
    width: 20px;
  }

  .property-cta {
    text-align: center;
    padding: 40px 20px;
    background-color: #862220;
    color: white;
    border-radius: 10px;
  }

  .property-cta h2 {
    color: white;
    margin-bottom: 15px;
  }

  .property-cta p {
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .property-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
    margin: 0 auto;
  }

  .cta-btn-whatsapp,
  .cta-btn-call,
  .cta-btn-email {
    padding: 15px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
  }

  .cta-btn-whatsapp {
    background-color: #25D366;
    color: white;
  }

  .cta-btn-whatsapp:hover {
    background-color: #128C7E;
  }

  .cta-btn-call {
    background-color: #D7B263;
    color: #862220;
  }

  .cta-btn-call:hover {
    background-color: #c9a257;
  }

  .cta-btn-email {
    background-color: white;
    color: #862220;
  }

  .cta-btn-email:hover {
    background-color: #f5f5f5;
  }

  /* Responsive Styles */
  @media (min-width: 768px) {
    .property-detail-grid {
      flex-direction: row;
    }

    .property-main-content {
      flex: 2;
    }

    .property-info-sidebar {
      flex: 1;
    }

    .property-details-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .property-location-card {
      grid-column: span 2;
    }

    .property-cta-buttons {
      flex-direction: row;
      max-width: 100%;
      justify-content: center;
    }

    .cta-btn-whatsapp,
    .cta-btn-call,
    .cta-btn-email {
      flex: 1;
      max-width: 200px;
    }
  }

  @media (min-width: 992px) {
    .property-detail-hero h1 {
      font-size: 2.8rem;
    }

    .property-details-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .property-location-card {
      grid-column: span 1;
    }

    .amenities-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }