/* WhatsApp Contact Section */
.whatsapp-contact-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.whatsapp-contact-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  max-width: 1000px;
  margin: 0 auto;
}

.whatsapp-content h2 {
  color: #1a5276;
  margin: 0 0 10px 0;
  font-size: 1.8rem;
}

.whatsapp-content p {
  color: #666;
  margin: 0;
  font-size: 1.1rem;
}

/* Property Sidebar */
.property-sidebar {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  margin-top: 2rem;
  position: sticky;
  top: 20px;
  transition: all 0.3s ease;
}

.whatsapp-contact {
  text-align: center;
  padding: 20px 0;
}

.whatsapp-contact h3 {
  color: #1a5276;
  margin: 0 0 15px 0;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 15px;
}

.whatsapp-contact h3:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #1a5276;
  transform: translateX(-50%);
}

.whatsapp-contact p {
  color: #666;
  margin-bottom: 25px;
  font-size: 0.95rem;
  line-height: 1.5;
}



/* Responsive Styles */
@media (max-width: 991px) {
  .property-sidebar,
  .whatsapp-contact-box {
    margin-top: 40px;
  }
  
  .whatsapp-contact-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .whatsapp-content {
    margin-bottom: 20px;
  }
  
  .whatsapp-content h2 {
    font-size: 1.5rem;
  }
  
  .whatsapp-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .property-sidebar {
    position: static;
    margin-top: 40px;
  }
  
  .btn-whatsapp-section {
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100%;
  }
  
  .btn-whatsapp i {
    font-size: 1.2rem;
  }
  
  .whatsapp-contact-section {
    padding: 40px 0;
  }
}
