/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: #0a0a0d;
  color: #f5f5f7;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --accent: #ff3b30;
  --accent-2: #ffb800;
  --dark: #0a0a0d;
  --dark-2: #111116;
  --dark-3: #17171e;
  --gray: #9a9aa5;
  --wa: #25D366;
  --wa-dark: #1ebe5b;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  line-height: 1.1;
}

/* ===== Loader ===== */
.loader {
  position: fixed; inset: 0; background: var(--dark);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.loader-bar {
  width: 60px; height: 60px; border: 3px solid #222; border-top-color: var(--accent);
  border-radius: 50%; animation: spin .8s linear infinite;
}
.loader.hide { opacity: 0; visibility: hidden; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; transition: all .3s ease; border: 2px solid transparent;
  cursor: pointer; white-space: nowrap;
}
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-whatsapp {
  background: var(--wa); color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,211,102,0.45); }
.btn-outline {
  border-color: rgba(255,255,255,0.3); color: #fff;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.wa-icon { width: 22px; height: 22px; flex-shrink: 0; }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 22px 0;
}
.navbar.scrolled {
  background: rgba(10,10,13,0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 2px; color: #fff; flex-shrink: 0;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; flex: 1; justify-content: center; }
.nav-links a {
  color: #e5e5ea; font-weight: 500; font-size: 0.95rem; position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--accent); transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { flex-shrink: 0; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  transform: scale(1.08);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,13,0.75) 0%, rgba(10,10,13,0.55) 40%, rgba(10,10,13,0.95) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.eyebrow {
  color: var(--accent-2); font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  font-size: 0.85rem; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem); color: #fff; margin-bottom: 22px;
}
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  color: #d3d3d8; font-size: 1.1rem; max-width: 560px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2;
}
.scroll-cue span {
  display: block; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.5); border-radius: 20px; position: relative;
}
.scroll-cue span::before {
  content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: #fff; border-radius: 2px;
  animation: scrollDot 1.6s ease infinite;
}
@keyframes scrollDot { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 22px; } }

/* ===== Stats ===== */
.stats {
  background: linear-gradient(90deg, #17171e, #1c1c24);
  padding: 48px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--accent);
  display: block;
}
.stat-label { color: var(--gray); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* ===== Section Helpers ===== */
.section-tag {
  color: var(--accent); font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  font-size: 0.85rem; margin-bottom: 14px;
}
.section-title { font-size: clamp(2.2rem, 5vw, 3.2rem); color: #fff; margin-bottom: 16px; }
.section-desc { color: var(--gray); max-width: 560px; font-size: 1.05rem; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ===== About ===== */
.about { padding: 110px 0; background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-visual { position: relative; }
.about-visual-inner {
  border-radius: 20px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
.about-visual-inner img { transition: transform .6s ease; }
.about-visual:hover .about-visual-inner img { transform: scale(1.06); }
.about-badge {
  position: absolute; bottom: -20px; left: -20px; background: var(--accent); color: #fff;
  padding: 16px 22px; border-radius: 14px; font-weight: 700; font-size: 0.9rem; max-width: 220px;
  box-shadow: 0 15px 30px rgba(255,59,48,0.4);
}
.about-text h2 { margin-bottom: 22px; }
.about-text p { color: #c7c7cf; margin-bottom: 18px; }
.about-checks { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-checks li { color: #e5e5ea; font-weight: 500; padding-left: 26px; position: relative; }
.about-checks li::before {
  content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 800;
}

/* ===== Facilities ===== */
.facilities { padding: 110px 0; background: var(--dark-2); }
.facility-grid {
  margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.facility-card {
  background: linear-gradient(160deg, var(--dark-3), #14141a);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px; padding: 34px 26px; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.facility-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,59,48,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.facility-icon { font-size: 2.4rem; margin-bottom: 18px; }
.facility-card h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.15rem; color: #fff; margin-bottom: 10px; letter-spacing: 0; }
.facility-card p { color: var(--gray); font-size: 0.92rem; }

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 90px 0;
  background: linear-gradient(120deg, #1a0f0d, #2a1210 50%, #1a0f0d);
  position: relative;
  text-align: center;
}
.cta-inner h2 { font-size: clamp(2rem, 4.5vw, 3rem); color: #fff; margin-bottom: 16px; }
.cta-inner p { color: var(--gray); margin-bottom: 32px; font-size: 1.05rem; }

/* ===== Hours & Contact ===== */
.hours { padding: 110px 0 0; background: var(--dark); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.hours-card h2, .contact-card h2 { margin-bottom: 28px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,0.08); color: #d3d3d8; font-size: 1rem;
}
.hours-table td:first-child { font-weight: 600; color: #fff; }
.hours-table td:last-child { text-align: right; color: var(--gray); }
.today-row td { color: var(--accent) !important; font-weight: 700; }

.contact-card { background: var(--dark-3); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 40px; }
.contact-item { display: flex; gap: 18px; margin-bottom: 26px; }
.contact-icon { font-size: 1.6rem; }
.contact-item strong { display: block; color: #fff; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--gray); }
.contact-item a:hover { color: var(--accent); }
.directions-link {
  display: inline-block; margin-top: 8px; color: var(--accent) !important;
  font-weight: 600; font-size: 0.9rem;
}
.directions-link:hover { text-decoration: underline; }
.contact-btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.btn-outline-map {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px;
  border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.25); color: #fff; transition: all .3s ease;
}
.btn-outline-map:hover { border-color: var(--accent); color: var(--accent); }

.map-wrap { margin-top: 60px; filter: grayscale(0.3) contrast(1.1); }
.map-wrap iframe { display: block; }

/* ===== Footer ===== */
.footer { background: var(--dark-2); padding: 50px 0; margin-top: 60px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { text-align: center; }
.footer-logo { justify-content: center; margin-bottom: 14px; }
.footer p { color: var(--gray); font-size: 0.9rem; margin-top: 4px; }

/* ===== Floating Action Buttons ===== */
.fab-stack {
  position: fixed; bottom: 26px; right: 26px; z-index: 900;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.fab {
  position: relative; width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease;
}
.fab svg { width: 30px; height: 30px; color: #fff; z-index: 2; }
.fab:hover { transform: scale(1.1); }
.fab-whatsapp { background: var(--wa); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
.fab-directions {
  width: 50px; height: 50px; background: #fff; color: #1a1a1a;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
}
.fab-directions svg { width: 24px; height: 24px; color: var(--accent); }
.fab-pulse {
  position: absolute; inset: 0; border-radius: 50%; background: var(--wa);
  animation: pulse 2s ease-out infinite; z-index: 1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}
.fab-tooltip {
  position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%) translateX(6px);
  background: #1c1c24; color: #fff; padding: 8px 14px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 500; white-space: nowrap;
  opacity: 0; visibility: hidden; transition: opacity .25s ease, transform .25s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
.fab:hover .fab-tooltip { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }
@media (max-width: 560px) {
  .fab-tooltip { display: none; }
}

/* ===== Reveal Animation ===== */
[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .navbar.open .nav-links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    background: rgba(10,10,13,0.97); padding: 24px; gap: 20px; text-align: center;
    backdrop-filter: blur(14px);
  }
  .navbar.open .nav-cta {
    display: inline-flex; position: absolute; top: calc(100% + 220px); left: 24px; right: 24px; justify-content: center;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .hours-grid { grid-template-columns: 1fr; }
  .about-visual { margin-bottom: 40px; }
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .facility-grid { grid-template-columns: 1fr; }
  .about-checks { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .fab-stack { bottom: 18px; right: 18px; gap: 12px; }
  .fab-whatsapp { width: 54px; height: 54px; }
  .fab-whatsapp svg { width: 27px; height: 27px; }
  .fab-directions { width: 44px; height: 44px; }
  .fab-directions svg { width: 20px; height: 20px; }
}
