

.feature-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  /* space between buttons */
  flex-wrap: nowrap;
  /* side-by-side always */
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
  margin-left: 10px;
}

/* Button colors */
.tel-btn {
  background: #12c002;
  color: #fff;
}

.wa-btn {
  background: #12c002;
  color: #fff;
}

/* Optional: Slightly shrink text/icons on smaller screens */
@media (max-width: 700px) {
  .cta img {
    width: 20px;
  }
}


/* ================== IMAGE CARD ================== */
.listing {
  margin: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  position: relative;
  cursor: pointer;
}

.card-img-top {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.listing:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.listing:hover .card-img-top {
  transform: scale(1.05);
}

/* Overlay text on image */
.overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.listing:hover .overlay-text {
  opacity: 1;
}

/* ================== LISTING TEXT ================== */
.listing-text-container {
  padding: 20px;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 600px;
  margin: 20px auto;
}

.listing-text-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
}

.listing-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.listing-title a {
  text-decoration: none;
  color: #f0f0f0;
  transition: color 0.3s ease;
}

.listing-title a:hover {
  color: #12c002;
}

.listing-text {
  font-size: 16px;
  color: #ccc;
  line-height: 1.7;
  margin: 0;
  max-height: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ================== MOBILE PROPORTIONAL SCALING ================== */
@media (max-width: 768px) {

  /* Scale down the image card */
  .listing {
    transform: scale(0.7);
    transform-origin: top center;
    margin: 20px auto;
  }

  /* Scale down text container */
  .listing-text-container {
    transform: scale(0.7);
    transform-origin: top center;
    margin: 20px auto;
  }

  /* Scale down CTA buttons */
  .feature-cta {
    transform: scale(0.7);
    transform-origin: top center;
    margin: 15px auto;
  }
}

/* Optional: very small phones */
@media (max-width: 480px) {

  .listing,
  .listing-text-container,
  .feature-cta {
    transform: scale(0.6);
  }
}

.city-container {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		padding: 20px;
		justify-content: center;
	}

/* Buttons */
.city-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, #1e90ff, #00c6ff);
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.3s ease;
    white-space: nowrap; /* prevents breaking text */
}

/* Hover */
.city-btn:hover {
    background: linear-gradient(135deg, #00c6ff, #1e90ff);
    box-shadow: 0 6px 14px rgba(0,198,255,0.4);
    transform: translateY(-2px);
}

/* Active */
.city-btn:active {
    transform: scale(0.96);
}

/* Mobile – NO forced width */
@media (max-width: 480px) {
    .city-btn {
        font-size: 14px;
        padding: 8px 10px;
    }
}