/* ===================== HERO (light, mint/teal, decluttered) ===================== */
.hero-section {
  padding: 10.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
  background-color: var(--color-mint-bg);
}

.hero-content h1 { text-wrap: balance; }
.hero-content .text-accent { color: var(--color-teal-dark); }
.hero-content .lead { font-size: 1.1rem; color: var(--color-text-muted); max-width: 90%; margin-top: 0.9rem; }

.hero-actions { margin: 1.9rem 0 0; display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-actions .btn small { display: block; font-size: 0.68rem; font-weight: 400; opacity: 0.85; }

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
/* Clean offset panel behind the portrait — a framed, editorial look (no blob) */
/* Clean offset panel behind the portrait — a framed, editorial look (no blob) */
.hero-shape {
  position: absolute;
  width: 320px;
  height: 400px;
  background: linear-gradient(150deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
  border-radius: 32px;
  transform: translate(24px, 24px);
  z-index: 1;
}
.hero-photo {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 400px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 991px) {
  .hero-section { padding: 8.5rem 0 3.5rem; }
  .hero-image-wrap { min-height: 300px; margin: 0 0 2rem; }
  .hero-shape { width: 250px; height: 250px; }
  .hero-photo { width: 210px; height: 270px; }
}

@media (max-width: 420px) {
  .hero-image-wrap { min-height: 260px; }
  .hero-shape { width: 210px; height: 210px; }
  .hero-photo { width: 185px; height: 235px; }
}

/* ===================== STATS ===================== */
.stats-section { background-color: var(--color-mint-bg); padding: 3.5rem 0; border-bottom: 1px solid var(--color-mint-border); }
.stat-card { text-align: center; }
.stat-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--color-teal-dark);
  display: grid;
  place-items: center;
  margin: 0 auto 0.9rem;
  box-shadow: var(--shadow-sm);
}
.stat-card .stat-value { font-family: var(--font-heading); font-optical-sizing: auto; font-size: 2.3rem; font-weight: 700; letter-spacing: -0.01em; color: var(--color-navy); }
.stat-card .stat-label { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 0.15rem; }
.stat-card .stat-label-np { display: block; font-size: 0.78rem; color: var(--color-text-muted); opacity: 0.8; }

@media (min-width: 768px) {
  .stat-col:not(:last-child) { border-right: 1px solid var(--color-mint-border); }
}

/* ===================== EXPERTISE CARD GRID ===================== */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.expertise-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-mint-border);
}
.expertise-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background-color: var(--color-navy-deep);
  background-size: cover;
  background-position: center;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.expertise-card-icon {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  display: grid; place-items: center;
}
.expertise-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.15;
}
.expertise-card-body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.expertise-card-body p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.expertise-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-teal-dark);
}
.expertise-card-link .icon { transition: var(--transition-smooth); }
.expertise-card:hover .expertise-card-link { color: var(--color-cta-dark); }
.expertise-card:hover .expertise-card-link .icon { transform: translateX(3px); }

@media (max-width: 1199px) { .expertise-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .expertise-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 479px)  { .expertise-grid { grid-template-columns: 1fr; } }

/* ===================== SERVICE / CONDITION CARDS ===================== */
/* ===================== WHY CHOOSE (numbered list) ===================== */
.why-choose-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lg);
}
.why-choose-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(1, 168, 186, 0.25) 100%);
}
.why-choose-photo img { width: 100%; height: 100%; object-fit: cover; }
.why-choose-item {
  display: flex;
  gap: 1.1rem;
  padding: 1.25rem 1.4rem;
  margin-bottom: 1rem;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}
.why-choose-item:last-child { margin-bottom: 0; }
.why-choose-item:hover {
  border-color: var(--color-teal);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.why-choose-number {
  flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 12px;
  background-color: rgba(1, 168, 186, 0.1);
  color: var(--color-teal-dark);
  display: grid; place-items: center;
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 1.15rem;
}
.why-choose-item h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.why-choose-item p { color: var(--color-text-muted); font-size: 0.9rem; margin: 0; }

@media (max-width: 767px) {
  .why-choose-item { padding: 1.1rem 1.2rem; }
}
