* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==============================
   NAVIGATION BAR - SOLID STYLE
============================== */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  background: #f9f9f9;
  color: #333;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

/* Navbar container */
.navbar {
  background: lch(100% 0.01 296.81); /* Dark navy */
  width: 100%;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  position: relative;
  padding-bottom: -15px;
}

/* Add subtle line under navbar content */
.navbar .container::after {
  content: "";
  position: absolute;
  bottom: 0; /* stays inside the navbar */
  left: 4%; /* aligns with padding */
  width: 90%; /* same inner width */
  height: 0.5px;
  background-color: #2b2a2a76; /* gold line */
  border-radius: 2px;
   bottom: 10px;
}



/* Logo */
.logo a {
  color: #f30b23;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  margin-left: auto;
}

.nav-links li a {
  color: #000;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #f7c04a;
}

/* Booking button */
.booking-btn {
  padding: 10px 6px !important;
  background: #f7c04a;
  color: #000 !important;
  border-radius: 7px;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: none !important; /* force normal text */
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-btn:hover {
  background: #eab308;
}

/* Mobile menu icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  transition: transform 0.4s ease;
}

.menu-toggle span {
  width: 28px;
  height: 4.5px;
  background: #f7c04a;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
    transition: all 0.1s ease;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  /* ============================
   HAMBURGER TO X ANIMATION
============================ */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .menu-toggle span {
    transition: all 0.3s ease;
  }
}




/* =========================
   FACILITIES HERO SECTION
========================= */
.facilities-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url('../images/faci.jpg') center center / cover no-repeat fixed; /* Parallax */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.facilities-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 12, 36, 0.75); /* dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.facilities-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.facilities-hero h1 {
  font-size: 3rem;
  color: #f7c04a; /* gold accent */
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.facilities-hero p {
  font-size: 1.1rem;
  color: #eaeaea;
  margin-bottom: 30px;
  line-height: 1.6;
}

.facilities-hero .btn-cta {
  display: inline-block;
  background: #f7c04a;
  color: #030c24;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.facilities-hero .btn-cta:hover {
  background: #f63e3e;
  color: #fff;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .facilities-hero {
    height: 60vh;
    background-attachment: scroll; /* disable parallax on mobile for smoothness */
  }

  .facilities-hero h1 {
    font-size: 2.2rem;
  }

  .facilities-hero p {
    font-size: 1rem;
  }
}

/* Facilities Section */
.facilities-section {
  background: #f9f9f9;
  padding: 80px 5%;
  text-align: center;
}

.section-title {
  font-size: 2.3rem;
  color: #030c24;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #f7c04a;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Grid */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

/* Card */
.facility-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.facility-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.facility-info {
  padding: 20px;
  text-align: left;
}

.facility-info h3 {
  color: #f7c04a;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.facility-info p {
  color: #030c24;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .facility-card img {
    height: 180px;
  }
}


/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  flex-direction: column;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  transition: opacity 0.3s ease;
}

.close-btn {
  position: absolute;
  top: 25px;
  right: 40px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #f7c04a;
}

.lightbox-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
}

.lightbox-controls span:hover {
  color: #f7c04a;
}



/* Modern Footer */
.footer-modern {
  background: #111827;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h3 {
  font-size: 1.8rem;
  color: #f30b23;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-logo p {
  color: #9CA3AF;
  line-height: 1.6;
}

.footer-contact h4,
.footer-social h4 {
  font-size: 1.2rem;
  color: #f7c04a;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #D1D5DB;
}

.footer-contact i {
  color: #f7c04a;
  width: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: rgba(247, 192, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #f7c04a;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #9CA3AF;
  margin-bottom: 10px;
}

.footer-links a {
  color: #f7c04a;
  text-decoration: none;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero-modern {
    padding: 120px 0 80px;
    margin-top: 70px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .methods-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-container {
    padding: 30px;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-hero-modern {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .method-card {
    padding: 25px;
  }
  
  .form-container {
    padding: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
}