/* =========================================
   FACILITY HERO
========================================= */

.facility-hero {
  background: var(--navy);
  color: var(--white);

  padding: 6rem 2rem 5rem;

  position: relative;
  overflow: hidden;
}

.facility-hero::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  border: 90px solid rgba(245, 166, 35, 0.06);

  top: -220px;
  right: -180px;
}

.facility-hero::after {
  content: "";

  position: absolute;

  width: 380px;
  height: 380px;

  border-radius: 50%;

  border: 70px solid rgba(11, 122, 99, 0.08);

  bottom: -180px;
  left: -140px;
}

.facility-hero-inner {
  max-width: 1100px;

  margin: 0 auto;

  position: relative;
  z-index: 2;
}

.facility-badge {
  display: inline-block;

  background: rgba(245, 166, 35, 0.12);

  border: 1px solid rgba(245, 166, 35, 0.3);

  color: var(--gold);

  padding: 0.45rem 1rem;

  border-radius: 999px;

  font-size: 0.75rem;
  font-weight: 700;

  letter-spacing: 1px;

  margin-bottom: 1.5rem;

  text-transform: uppercase;
}

.facility-hero h1 {
  font-family: "Lora", serif;

  font-size: 4rem;
  line-height: 1.1;

  max-width: 820px;

  margin-bottom: 1rem;
}

.facility-hero h1 em {
  color: var(--gold);
}

.facility-hero p {
  max-width: 700px;

  color: rgba(255, 255, 255, 0.72);

  line-height: 1.8;

  font-size: 1.05rem;

  margin-bottom: 2rem;
}

.facility-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================================
   STATS
========================================= */

.facility-stats {
  background: var(--white);

  padding: 2rem;

  border-bottom: 1px solid var(--border);
}

.facility-stats-inner {
  max-width: 1100px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 1rem;
}

.facility-stat {
  text-align: center;
}

.facility-stat h3 {
  font-size: 2rem;

  color: var(--navy);

  font-weight: 800;
}

.facility-stat p {
  color: var(--text-muted);

  margin-top: 0.35rem;
}

/* =========================================
   HIGHLIGHT
========================================= */

.facility-highlight {
  background: var(--cream);

  padding: 6rem 2rem;
}

.facility-highlight-inner {
  max-width: 1100px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr;

  gap: 3rem;

  align-items: center;
}

.facility-highlight-image img {
  width: 100%;
  height: 100%;

  min-height: 520px;

  object-fit: cover;

  border-radius: 24px;
}

.facility-highlight-content h2 {
  font-family: "Lora", serif;

  font-size: 2.5rem;

  color: var(--navy);

  margin-bottom: 1rem;
}

.facility-highlight-content p {
  color: var(--text-muted);

  line-height: 1.8;
}

.facility-points {
  display: flex;
  flex-direction: column;

  gap: 1rem;

  margin-top: 2rem;
}

.facility-point {
  display: flex;
  gap: 0.85rem;
}

.facility-point span {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: var(--teal);

  margin-top: 0.45rem;

  flex-shrink: 0;
}

/* =========================================
   FACILITY GRID
========================================= */

.facilities-section {
  background: var(--white);

  padding: 6rem 2rem;
}

.facilities-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1.5rem;
}

.facility-card {
  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 18px;

  overflow: hidden;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.facility-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.facility-image img {
  width: 100%;
  height: 260px;

  object-fit: cover;
}

.facility-content {
  padding: 1.5rem;
}

.facility-category {
  display: inline-block;

  background: var(--teal-light);

  color: var(--teal);

  padding: 0.35rem 0.8rem;

  border-radius: 999px;

  font-size: 0.72rem;
  font-weight: 700;

  margin-bottom: 1rem;
}

.facility-content h3 {
  color: var(--navy);

  margin-bottom: 0.7rem;

  font-size: 1.1rem;
}

.facility-content p {
  color: var(--text-muted);

  line-height: 1.7;
}

/* =========================================
   CTA
========================================= */

.facility-cta {
  background: var(--navy);

  padding: 6rem 2rem;
}

.facility-cta-box {
  max-width: 800px;

  margin: 0 auto;

  text-align: center;
}

.facility-cta-box h2 {
  font-family: "Lora", serif;

  font-size: 2.7rem;

  color: var(--white);

  margin-bottom: 1rem;
}

.facility-cta-box p {
  color: rgba(255, 255, 255, 0.7);

  line-height: 1.8;

  margin-bottom: 2rem;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .facility-hero h1 {
    font-size: 2.6rem;
  }

  .facility-highlight-inner,
  .facilities-grid,
  .facility-stats-inner {
    grid-template-columns: 1fr;
  }
}
