/* Property Highlights */
.property-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.highlight-item {
  text-align: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
  font-size: 1.8rem;
  color: #1a5276;
  margin-bottom: 10px;
}

.highlight-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 5px;
}

.highlight-label {
  font-size: 0.9rem;
  color: #666;
}

/* Property Description */
.property-description {
  margin-bottom: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.property-description h2 {
  color: #1a5276;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
}

.property-description h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 60px;
  height: 2px;
  background: #1a5276;
}

.description-content {
  line-height: 1.8;
  color: #444;
}

/* Amenities */
.property-amenities-section {
  margin-bottom: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.amenities-column {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities-column li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  color: #444;
}

.amenities-column i {
  color: #25D366;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

/* Property Location */
.property-location {
  margin-bottom: 40px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.location-header {
  padding: 25px 30px;
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
}

.location-header h2 {
  color: #1a5276;
  margin: 0 0 10px 0;
  font-size: 1.6rem;
}

.location-header p {
  margin: 0;
  color: #555;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-header i {
  color: #e74c3c;
}

.property-map {
  width: 100%;
  height: 400px;
  border: none;
  border-bottom: 1px solid #eee;
}

.map-actions {
  display: flex;
  gap: 15px;
  padding: 20px 30px;
  background: #fff;
  flex-wrap: wrap;
}

.map-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.map-actions .btn-map {
  background-color: #1a5276;
  color: white;
  border: 2px solid #1a5276;
}

.map-actions .btn-map:hover {
  background-color: #154360;
  border-color: #154360;
}

.map-actions .btn-directions {
  background-color: white;
  color: #1a5276;
  border: 2px solid #1a5276;
}

.map-actions .btn-directions:hover {
  background-color: #f8f9fa;
}

.map-actions i {
  font-size: 0.9em;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .property-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
  }
  
  .highlight-item {
    padding: 12px;
  }
  
  .highlight-value {
    font-size: 1.3rem;
  }
  
  .property-description,
  .property-amenities-section,
  .property-location {
    padding: 20px;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .property-highlights {
    grid-template-columns: 1fr 1fr;
  }
  
  .highlight-icon {
    font-size: 1.5rem;
  }
  
  .highlight-value {
    font-size: 1.2rem;
  }
}
