:root {
  --spa-bg: #021c2b;
  --spa-bg-alt: #06293c;
  --spa-accent: #f5c542;
  --spa-text-light: #f7f7f7;
  --spa-muted: #bbbbbb;
  --radius-lg: 18px;
}

/* GENERAL */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #f4f5f7;
  color: #222;
}

/* NAVBAR */
.spa-navbar {
  background: linear-gradient(90deg, #011119, #05314a);
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.spa-navbar .navbar-toggler {
  border: none;
}

.spa-navbar .navbar-toggler-icon {
  filter: invert(1);
}

.logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
}

.brand-text {
  font-weight: 600;
  color: var(--spa-text-light);
}

.nav-link {
  color: var(--spa-muted);
  font-weight: 500;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--spa-accent) !important;
}

.btn-call {
  background: var(--spa-accent);
  color: #1b1b1b;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.45rem 1.2rem;
  text-decoration: none;
}

.btn-call:hover {
  background: #ffd55b;
  color: #000;
}

/* HERO */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--spa-text-light);
  background: radial-gradient(circle at top left, #084d6e, #021018);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('spa-bg.jpg') center/cover no-repeat;
  opacity: 0.3;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 1.4rem;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-cta .btn-outline-light {
  border-radius: 999px;
}

/* SECTIONS */
.section {
  padding: 3rem 0;
}

.section-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.section-subtitle {
  color: #666;
  margin-bottom: 1.5rem;
}

/* CARD STYLE */
.spa-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

/* ABOUT TEXT */
.about-text p {
  margin-bottom: 0.85rem;
  line-height: 1.7;
}

/* SERVICES LIST */
.services-list ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.services-list li {
  background: #fffdf4;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #ffe9a9;
}

.services-list li::before {
  content: "★";
  color: var(--spa-accent);
  font-size: 0.9rem;
}

/* GALLERY – KEEP SAME SIZE */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 210px;       /* same height for all */
  object-fit: cover;   /* crop nicely */
  border-radius: 14px;
  display: block;
}

/* CONTACT */
.contact-info p {
  margin-bottom: 0.4rem;
}

.badge-pill {
  border-radius: 999px;
}

/* FOOTER */
.spa-footer {
  background: #020913;
  color: #96a0b5;
  padding: 1rem 0;
  font-size: 0.85rem;
}

/* PAGE BANNER */
.page-banner {
  padding: 2.5rem 0 1.5rem;
  background: linear-gradient(120deg, #051926, #0b3047);
  color: var(--spa-text-light);
  text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .spa-card {
    padding: 1.1rem;
  }
}
