/* Property Types Grid Section Styles */
.property-type-section {
  width: 100%;
  background: #fff; 
  padding: 24px 0 32px 0;
}
.property-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 800px; /* Adjust as needed */
  margin: 0 auto;
  justify-content: center; /* Ensures centering */
}
.property-type-item {
  display: flex;
  align-items: center;
  background: #eaf3fb; /* #3B82F6 with opacity for white text */
  border-radius: 18px;
  padding: 24px 18px;
  box-shadow: 0 2px 12px 0 rgba(59,130,246,0.08);
  min-height: 110px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.property-type-item:hover {
  box-shadow: 0 6px 24px 0 rgba(59,130,246,0.18);
  transform: translateY(-2px) scale(1.03);
}
.property-type-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  box-shadow: 0 2px 8px 0 rgba(59,130,246,0.10);
}
.property-type-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 50%;
}
.property-type-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.property-type-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}
.property-type-subtitle {
  font-size: 0.98rem;
  color: #646161;
  font-weight: 400;
}
@media (max-width: 900px) {
  .property-type-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .property-type-section {
    padding: 32px 0 20px 0;
  }
}

@media (max-width: 600px) {
  .property-type-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .property-type-item {
    all: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .property-type-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px 0 rgba(59,130,246,0.10);
    margin-bottom: 6px;
  }

  .property-type-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .property-type-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: #222;
    margin: 0;
    text-align: center;
  }

  .property-type-subtitle {
    display: none;
  }
}
