/* Complete futuristic redesign with proper color scheme and block designs */
/* Facilities Page Styles - Futuristic Block Design */

.page-header {
  background: linear-gradient(135deg, #511f06 0%, #300404 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(81, 31, 6, 0.8) 0%, rgba(48, 4, 4, 0.9) 100%);
  z-index: 2;
}

.page-header-content {
  position: relative;
  z-index: 3;
}

.page-header h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  font-family: "Playfair Display", serif;
}

.page-header p {
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.breadcrumb {
  background: transparent;
  justify-content: center;
  margin: 0;
}

.breadcrumb-item a {
  color: #d8cfc9;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: white;
}


.facilities-grid {
  padding: 5rem 0;
  background: linear-gradient(135deg, #d8cfc9 0%, white 100%);
  position: relative;
}


.facility-showcase {
  background: white;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 4rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(48, 4, 4, 0.1);
}

.facility-showcase:last-child {
  margin-bottom: 0;
}

.facility-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #511f06, #ac8c7c);
  z-index: 2;
}

.facility-showcase:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(48, 4, 4, 0.2);
}

.facility-showcase:hover::before {
  width: 8px;
  background: linear-gradient(to bottom, #300404, #511f06);
}

.facility-image {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.facility-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(48, 4, 4, 0.3), rgba(81, 31, 6, 0.2));
  opacity: 0;
  transition: all 0.4s ease;
}

.facility-showcase:hover .facility-image::after {
  opacity: 1;
}

.facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.facility-showcase:hover .facility-image img {
  transform: scale(1.1) rotate(1deg);
}

.facility-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.4s ease;
}

.facility-showcase:hover .facility-overlay {
  opacity: 1;
}

.facility-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  color: #511f06;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
}

.facility-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #511f06, #ac8c7c);
  z-index: -1;
}

.facility-content {
  padding: 3rem;
  background: white;
  position: relative;
}

.facility-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #511f06, #ac8c7c, #511f06);
}

.facility-content h3 {
  color: #300404;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
}

.facility-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: #ac8c7c;
}

.facility-content p {
  color: #511f06;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.facility-features {
  list-style: none;
  padding: 0;
  background: #d8cfc9;
  padding: 1.5rem;
  margin: 0 -3rem -3rem -3rem;
}

.facility-features li {
  color: #300404;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(81, 31, 6, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.facility-features li:hover {
  padding-left: 1rem;
  color: #511f06;
}

.facility-features li:last-child {
  border-bottom: none;
}

.facility-features li i {
  color: #511f06;
  width: 20px;
  font-size: 1.1rem;
}

.additional-amenities {
  padding: 6rem 0;
  background: #300404;
  position: relative;
}


.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.amenity-card {
  background: white;
  padding: 3rem 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

.amenity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(172, 140, 124, 0.1), transparent);
  transition: all 0.6s ease;
}

.amenity-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #511f06, #ac8c7c, #511f06);
  transform: scaleX(0);
  transition: all 0.4s ease;
}

.amenity-card:hover::before {
  left: 100%;
}

.amenity-card:hover::after {
  transform: scaleX(1);
}

.amenity-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 50px rgba(48, 4, 4, 0.2);
}

.amenity-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #511f06, #ac8c7c);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  position: relative;
  transition: all 0.4s ease;
}

.amenity-icon::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #300404, #511f06);
  z-index: -1;
  opacity: 0;
  transition: all 0.4s ease;
}

.amenity-card:hover .amenity-icon::before {
  opacity: 1;
}

.amenity-card:hover .amenity-icon {
  transform: rotateY(180deg);
}

.amenity-card h4 {
  color: #300404;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.amenity-card p {
  color: #511f06;
  font-size: 1rem;
  line-height: 1.6;
}

.booking-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #511f06, #300404);
  color: white;
  position: relative;
}

.booking-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="90" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: white;
  color: #511f06;
  padding: 1rem 2.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(172, 140, 124, 0.3), transparent);
  transition: all 0.6s ease;
}

.btn-primary-custom:hover::before {
  left: 100%;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: #300404;
}

.btn-outline-custom {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 1rem 2.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-outline-custom:hover {
  background: white;
  color: #511f06;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .breadcrumb-title {
    font-size: 2rem;
  }

  .breadcrumb-nav {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .facility-showcase {
    margin-bottom: 3rem;
  }

  .facility-content {
    padding: 2rem;
  }

  .facility-features {
    margin: 0 -2rem -2rem -2rem;
  }

  .amenity-card {
    padding: 2rem 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .amenities-grid {
    gap: 1.5rem;
  }

  .facility-showcase {
    margin-bottom: 2rem;
  }
}

