/* ============================================================
   FACILITIES PAGE SPECIFIC STYLES
   ============================================================ */

/* Page Title Section */
.page-title-section {
  background: linear-gradient(135deg, var(--primary) 0%, #2a5fa8 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-title-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.page-title-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.page-title-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.breadcrumb-item a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb-item a:hover {
  color: var(--white);
}

.breadcrumb-item.active {
  color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.5);
  content: "›";
  font-size: 1.2rem;
}

/* Facility Image Wrapper */
.facility-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.facility-img-wrapper img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.facility-img-wrapper:hover img {
  transform: scale(1.05);
}

/* Facility Content */
.facility-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.facility-content p:first-child {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #a82020 100%);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--accent);
  padding: 14px 35px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}

.btn-cta:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-3px);
  gap: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-title-section {
    padding: 60px 0 40px;
  }
  
  .page-title-section h1 {
    font-size: 2.5rem;
  }
  
  .facility-img-wrapper img {
    height: 300px;
  }
  
  .section-head.text-start {
    text-align: center !important;
  }
  
  .divider.mx-0 {
    margin: 14px auto !important;
  }
}

@media (max-width: 768px) {
  .page-title-section h1 {
    font-size: 2rem;
  }
  
  .breadcrumb-item {
    font-size: 0.9rem;
  }
  
  .facility-img-wrapper img {
    height: 250px;
  }
  
  .cta-section {
    padding: 50px 0;
  }
  
  .cta-section h2 {
    font-size: 1.6rem;
  }
  
  .btn-cta {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .page-title-section {
    padding: 50px 0 30px;
  }
  
  .page-title-section h1 {
    font-size: 1.8rem;
  }
  
  .facility-img-wrapper img {
    height: 200px;
  }
  
  .facility-content p {
    font-size: 0.85rem;
  }
  
  .cta-section h2 {
    font-size: 1.4rem;
  }
}
