/* ============================================
   FTS LOCATIONS PAGE
   Dark Elite + Neon Green System
============================================ */


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

.loc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  overflow: hidden;
  background: #071c12;
    background-size: cover;
  background-position: center top;
}

.loc-hero-img {
  z-index: 0;
   object-fit: fill !important;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(#0000000f, #02140da3 90%);
  z-index: 1;
}

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

.loc-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0,255,133,0.12);
  border: 1px solid #00ff85;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #00ff85;
  text-transform: uppercase;
}

.loc-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.loc-hero p {
  color: white;
  line-height: 1.8;
  margin-bottom: 24px;
}

.loc-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  font-size: 14px;
  color: white;
  flex-wrap: wrap;
}


/* ===============================
   AMENITIES
================================ */

.loc-amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.loc-amenity-card {
  background: #0e2a1c;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(0,255,133,0.15);
  transition: 0.3s;
}

.loc-amenity-card:hover {
  border-color: #00ff85;
  transform: translateY(-5px);
}

.loc-amenity-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

.loc-amenity-card h4 {
  margin-bottom: 8px;
  font-weight: 700;
}

.loc-amenity-card p {
  font-size: 14px;
  color: #9fb3a6;
}


/* MAP BOX */

.loc-map-box {
  background: #0e2a1c;
  border-radius: 18px;
  border: 1px solid rgba(0,255,133,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loc-map-placeholder {
  text-align: center;
  padding: 40px;
}

.loc-map-placeholder span {
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
  color: #00ff85;
}


/* ===============================
   TOUR + HOURS
================================ */

.loc-tour-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.loc-hours {
  background: #0e2a1c;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(0,255,133,0.15);
}

.loc-hours h3 {
  margin-bottom: 20px;
}

.loc-hours-list p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
  color: #9fb3a6;
}

.loc-hours-list b {
  color: #00ff85;
}


/* TOUR FORM */

.loc-tour-form {
  background: #0e2a1c;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(0,255,133,0.15);
}

.loc-tour-form h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.loc-tour-form p {
  margin-bottom: 24px;
  color: #9fb3a6;
}

.loc-tour-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.loc-tour-form input {
  background: #071c12;
  border: 1px solid rgba(0,255,133,0.2);
  padding: 12px 16px;
  border-radius: 12px;
  color: white;
  font-size: 14px;
}

.loc-tour-form input:focus {
  outline: none;
  border-color: #00ff85;
}

.loc-form-row {
  display: flex;
  gap: 16px;
}


/* ===============================
   GALLERY
================================ */

.loc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.loc-gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,255,133,0.15);
}

.loc-gallery-item span {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0,0,0,0.6);
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 12px;
}


/* ===============================
   EXPANDING SECTION
================================ */

.loc-expanding-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.loc-expanding-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,255,133,0.15);
}

.loc-expanding-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.loc-expanding-overlay h4 {
  margin-bottom: 6px;
}

.loc-expanding-overlay span {
  font-size: 12px;
  color: #00ff85;
  font-weight: 700;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {

  .loc-amenities-grid {
    grid-template-columns: 1fr;
  }

  .loc-tour-grid {
    grid-template-columns: 1fr;
  }

  .loc-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .loc-expanding-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .loc-hero {
    padding: 0 4%;
  }

  .loc-gallery-grid,
  .loc-expanding-grid {
    grid-template-columns: 1fr;
  }

  .loc-form-row {
    flex-direction: column;
  }

}
