/* HERO */
.hero-physio {
  background: url('/images/Expert-care/Physiotherapy/physio-hero.webp') center/cover no-repeat;
  height: 75vh;
  display: flex;
  align-items: center;
  padding-right: 5%;
  color: #fff;
  position: relative;
  justify-content: flex-end;
}

.hero-physio::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 90, 0.45);
}

.hero-content {
  position: relative;
  max-width: 550px;
}

.btn-primary {
  background: #e91e63;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
}


/* WHY PHYSIO */
/* Physiotherapy Features Section */
.physio-features {
  padding: 60px 20px;
  background: #f7faff; /* light clean bg (matches TruHands style) */
  text-align: center;
}

.physio-features h2 {
  font-size: 28px;
  color: #003366; /* TruHands blue */
  margin-bottom: 40px;
  font-weight: 700;
}

/* Flex layout for card alignment */
.features-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* keeps them responsive */
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual cards */
.feature-card {
  background: #ffffff;
  width: 300px;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 6px 16px rgba(0,0,0,0.12);
}

/* Icons */
.feature-icon {
  font-size: 40px;
  color: #0056b3; /* TruHands primary blue */
  margin-bottom: 15px;
}

/* Text inside card */
.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #003366;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}




/* SERVICES */
.physio-services {
  padding: 20px 0;
  background: #f8fafc;
  text-align: center;
}

.physio-services .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 10px;
}

.physio-services .section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.physio-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.physio-services .service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto;
}

.physio-services .service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.physio-services .service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 16px 0 8px;
  color: #004aad;
}

.physio-services .service-card p {
  font-size: 15px;
  color: #444;
  padding: 0 16px 20px;
}

.physio-services .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}



/* FAQ */
.faq {
  padding: 20px 5%;
  max-width: 900px;
  margin: auto;
}

.faq-item {
  margin-bottom: 25px;
  border-left: 4px solid #0056d6;
  padding-left: 20px;
}

.faq-item h3 {
  margin-bottom: 8px;
}
