/* =========================
    PAGE HERO
========================= */
.page-hero {
  position: relative;
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.fixer-hero {
  background: url('../images/fix2.jpg') center/cover no-repeat;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 150, 190, 0.2); /* Your specific 0.2 overlay */
  z-index: 1;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.page-hero h1 {
  font-size: 46px;
  margin-bottom: 15px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.page-hero p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
}

/* =========================
    PROPERTY CARDS
========================= */
.treatment-cards {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.treatment-cards .container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.treatment-card {
  background-color: #ebf4f9; /* Your specific light color */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.treatment-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.treatment-text {
  padding: 30px 20px;
  text-align: center;
}

.treatment-text h3 {
  font-size: 28px;
  color: rgb(37, 150, 190);
  margin-bottom: 15px;
}

.treatment-text p {
  font-size: 18px;
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 150, 190, 0.2);
}



/* Responsive */
@media (max-width: 900px) {
  .page-hero { height: 45vh; }
  .treatment-card img { height: 300px; }
}