/* ═══════════════════════════════════════════
   FACILITIES PAGE
   ═══════════════════════════════════════════ */

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  min-height: 220px;
  background: linear-gradient(135deg, var(--ice), var(--frost));
  transition: all 0.35s ease;
}
.gallery-item:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-featured {
  grid-column: span 2;
  min-height: 320px;
}
.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  color: var(--gray-400);
  font-size: 0.85rem;
}

/* Equipment Grid */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.equipment-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s ease;
}
.equipment-card:hover {
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.equipment-card .equip-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(41, 98, 255, 0.08));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.equipment-card .equip-icon svg {
  width: 28px;
  height: 28px;
  color: var(--blue-bright);
}
.equipment-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.equipment-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Tour CTA */
.tour-cta {
  padding: 80px 0;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 100%);
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tour-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.tour-cta .section-container {
  position: relative;
  z-index: 1;
}
.tour-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.tour-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .equipment-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-featured {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .tour-cta .btn {
    width: 100%;
    justify-content: center;
  }
}
