:root {
  --primary: #1B2E28; /* Deep Green */
  --secondary: #D4AF37; /* Gold */
  --background: #F9F9F7; /* Off-white */
  --foreground: #333333; /* Dark Text */
  --white: #FFFFFF;
  --muted: #888888;
  --light-border: rgba(255, 255, 255, 0.1);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }
.font-bold { font-weight: 700; }
.font-light { font-weight: 300; }

/* Utilities (Replacing Tailwind) */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.pt-4 { padding-top: 1rem; }
.pb-2 { padding-bottom: 0.5rem; }
.p-8 { padding: 2rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.max-w-md { max-width: 28rem; }
.max-w-3xl { max-width: 48rem; }

.opacity-50 { opacity: 0.5; }
.opacity-80 { opacity: 0.8; }

.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

.inline-flex { display: inline-flex; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-16 { gap: 4rem; }

.hidden { display: none; }

.border-t { border-top: 1px solid; }
.border-y { border-top: 1px solid; border-bottom: 1px solid; }
.border-stone-200 { border-color: #e7e5e4; }
.border-secondary\/20 { border-color: rgba(212, 175, 55, 0.2); }

@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  .md\:inline { display: inline; }
  .md\:block { display: block; }
  .md\:grid-5 { grid-template-columns: repeat(5, 1fr); }
  .hidden.md\:block { display: block; }
  .hidden.md\:inline { display: inline; }
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}

.grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
  .section { padding: 6rem 0; }
}

/* Components */

/* Urgency Bar */
.urgency-bar {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.urgency-bar .highlight {
  color: var(--secondary);
  font-weight: bold;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--primary);
  color: var(--white);
  border-bottom: 1px solid var(--light-border);
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  background-color: rgba(27, 46, 40, 0.95);
  backdrop-filter: blur(8px);
}

.header-content {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--secondary);
  text-align: center;
  line-height: 1;
}

.logo span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  color: var(--white);
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--white);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background-color: rgba(27, 46, 40, 0.5);
  border-color: var(--secondary);
}

/* Mobile Actions */
.mobile-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .mobile-actions { display: none; }
}

/* Mobile Menu */
#mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  border-top: 1px solid var(--light-border);
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
}

#mobile-menu.active {
  display: flex;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-link {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
}

/* Hero Section */
.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.hero-small {
  height: 60vh;
  min-height: 500px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(27, 46, 40, 0.4);
  mix-blend-mode: multiply;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 46, 40, 0.2), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 1rem;
}

.hero-badge {
  display: inline-block;
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 0.25rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(4px);
  color: var(--secondary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title { font-size: 4rem; }
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 1rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.5rem; }
}

.hero-text {
  font-style: italic;
  opacity: 0.8;
  margin-bottom: 2.5rem;
}

/* Info Bar */
.info-bar {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-item svg {
  color: var(--secondary);
  width: 16px;
  height: 16px;
}

/* Content Sections */
.bg-white { background-color: var(--white); }
.bg-stone { background-color: #fafaf9; }
.bg-primary { background-color: var(--primary); }
.bg-background { background-color: var(--background); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--muted); }
.text-white { color: var(--white); }
.text-primary\/80 { color: rgba(27, 46, 40, 0.8); }
.text-white\/20 { color: rgba(255, 255, 255, 0.2); }

.feature-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

.feature-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 0.5rem;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.feature-image:hover img {
  transform: scale(1.05);
}

.border-frame {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  pointer-events: none;
}

/* Tabs */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn:hover {
  background: rgba(255,255,255,0.2);
}

.tab-btn.active {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Service Card (New) */
.service-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  height: 100%;
}

.service-card:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-img-container {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-meta {
  margin-bottom: 1.5rem;
}

.service-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

/* Therapist Card */
.therapist-card {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.3s;
}

.therapist-card:hover {
  transform: translateY(-5px);
}

.therapist-img {
  aspect-ratio: 3/4;
  width: 100%;
  object-fit: cover;
}

.therapist-info {
  padding: 1.5rem;
}

.therapist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.therapist-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.exp-badge {
  background: #f5f5f4;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  color: var(--muted);
}

.tag-container {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.5rem 0;
}

.tag {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(27, 46, 40, 0.2);
  color: rgba(27, 46, 40, 0.7);
}

.btn-block {
  display: block;
  width: 100%;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.3s;
}

.btn-block:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* Lists & Prose */
.list-check {
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.list-check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background-color: var(--secondary);
  border-radius: 50%;
}

.border-b-light {
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Footer */
/* =========================
   Luxury Footer
========================= */

.lux-footer {
  background: linear-gradient(
    to top,
    rgba(27,46,40,0.06),
    rgba(27,46,40,0.02)
  );
  padding: 5rem 0 3rem;
  border-top: 1px solid rgba(27,46,40,0.1);
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

/* Brand */
.footer-logo {
  font-size: 2rem;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Columns */
.footer-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  position: relative;
}

.footer-title::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--secondary);
  margin-top: 0.5rem;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.75rem;
}

.footer-list a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: var(--primary);
}

/* CTA */
.footer-cta .footer-desc {
  margin-bottom: 1.5rem;
}

.footer-btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background: var(--primary);
  color: var(--secondary);
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(27,46,40,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-divider {
  width: 30px;
  height: 1px;
  background: var(--secondary);
  opacity: 0.6;
}

/*therapist tabs*/


.hidden {
  display: none !important;
}

.tab-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  padding: 0.75rem 1.5rem;
  margin: 0 0.5rem;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 500;
}

.tab-btn.active {
  background: white;
  color: var(--primary);
}

/* =====================
   Premium Offer Cards
===================== */

.offer-card {
  background: var(--white);
  border: 1px solid rgba(27,46,40,0.08);
  padding: 3.5rem 2.5rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all 0.4s ease;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--secondary);
  transition: width 0.4s ease;
}

.offer-card:hover::before {
  width: 100%;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* Icon */
.offer-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-icon svg {
  width: 28px;
  height: 28px;
}

/* Icon Variants */
.offer-icon.gold {
  background: rgba(212,175,55,0.25);
  color: var(--secondary);
}

.offer-icon.gold-soft {
  background: rgba(212,175,55,0.15);
  color: var(--secondary);
}

.offer-icon.dark {
  background: rgba(255,255,255,0.15);
  color: var(--secondary);
}

/* Text */
.offer-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.offer-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.offer-divider {
  width: 40px;
  height: 1px;
  background: var(--secondary);
  margin: 1.5rem auto;
  opacity: 0.6;
}

.offer-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(27,46,40,0.2);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

/* CTA */
.offer-cta {
  display: block;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
}

.offer-card:hover .offer-cta {
  color: var(--secondary);
}

/* Highlight Card */
.offer-card.highlight {
  background: var(--primary);
  color: var(--white);
}

.offer-card.highlight .offer-title,
.offer-card.highlight .offer-desc {
  color: var(--white);
}

.offer-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--secondary);
  margin: 1rem 0;
}

.gold-text {
  color: var(--secondary);
}



/* =========================
   Floating Call & WhatsApp
========================= */

.floating-actions {
  position: fixed;
  bottom: 4rem;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 999;
}

/* Shared Button Style */
.float-btn {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;

  padding: 1rem 1.75rem;   /* 👈 bigger tap area */
  font-size: 0.9rem;      /* 👈 more presence */
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 0.12em;

  border-radius: 999px;   /* 👈 pill shape = luxury */
  pointer-events: auto;

  box-shadow: 0 14px 35px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
}

/* Left: Call */
.call-btn {
  left: 1.5rem;
  background: rgba(27,46,40,0.95);
  color: #fff;
}

/* Right: WhatsApp */
.whatsapp-btn {
  right: 1.5rem;
  background: #25D366;
  color: #fff;
}

/* Icon size */
.float-btn svg {
  width: 16px;
  height: 16px;
}

/* Hover Effect */
.float-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Mobile: Icons only */
@media (max-width: 768px) {
  .float-btn span {
    display: none;
  }

  .float-btn {
    padding: 1.35rem;
    border-radius: 50%;
  }
}



/*services*/

.spa-therapies {
  background: linear-gradient(to bottom, #0f1f1b, rgba(15,31,27,0.95));
  padding: 6rem 0;
  color: #fff;
}

.spa-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.spa-pill {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 999px;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.spa-header h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-family: serif;
}

.spa-header p {
  opacity: 0.85;
}

.spa-tabs {
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  margin: 2rem auto 3rem;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.spa-tab {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.spa-tab.active {
  background: linear-gradient(135deg, var(--gold), #f5d77a);
  color: #000;
  font-weight: 600;
}

@media (max-width: 768px) {
  .spa-tabs {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0.75rem;
  }

  .spa-tabs::-webkit-scrollbar {
    display: none;
  }

  .spa-tab {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}




.spa-grid {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.spa-grid.active {
  display: grid;
}

.spa-card {
  background: rgba(255,255,255,0.04);
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
}

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

.spa-card-body {
  padding: 1.5rem;
}

.spa-card-body h3 {
  font-family: serif;
  margin-bottom: 0.5rem;
}

.duration {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), #f5d77a);
  color: #000;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary.large {
  padding: 1rem 2.5rem;
}

.spa-cta {
  margin-top: 4rem;
  text-align: center;
  padding: 3rem;
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.3);
}

.spa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.spa-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.spa-card-body p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

.duration {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-bottom: 1rem;
}


/* Privacy / Terms Page Styling */

.policy-block {
  margin-bottom: 3rem;
}

.policy-block h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.policy-block h3 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--primary);
}

.policy-block p {
  font-size: 0.95rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.policy-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--secondary),
    transparent
  );
  margin: 4rem 0;
  opacity: 0.5;
}



