/* ============== SPA CARE & WELLNESS - Custom CSS ============== */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2C352D;
  background: #FBF9F6;
}

.font-serif {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
}

/* ============== BUTTONS ============== */
.btn-call,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Manrope', sans-serif;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-lg { padding: 1rem 1.75rem; font-size: 0.9rem; }
.btn-sm { padding: 0.7rem 1.25rem; font-size: 0.78rem; border-radius: 9999px; display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

.btn-call {
  background: #2C352D;
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(44, 53, 45, 0.45);
}
.btn-call:hover {
  background: #1A201B;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(44, 53, 45, 0.55);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(37, 211, 102, 0.55);
}
.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6);
}

/* ============== TICKER ============== */
.ticker-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}
.ticker-line::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #25D366;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-track {
  animation: tickerScroll 40s linear infinite;
  width: max-content;
}

.ticker-track:hover { animation-play-state: paused; }

/* ============== ANIMATIONS ============== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.8s ease-out both;
}

@keyframes softPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}
.soft-pulse {
  animation: softPulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes ripple {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  100% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
}
.fab-ripple {
  animation: ripple 2s infinite;
}

/* ============== IMAGE HOVER ============== */
.zoom-on-hover img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}
.zoom-on-hover:hover img {
  transform: scale(1.06);
}

/* ============== SERVICE CARD HOVER ============== */
.service-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(226, 220, 208, 0.6);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(44, 53, 45, 0.18);
}

/* ============== FAQ ============== */
.faq-item {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(226, 220, 208, 0.7);
  overflow: hidden;
}
.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-toggle:hover { background: #FBF9F6; }
.faq-toggle .faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: #2C352D;
}
.faq-toggle .faq-chevron {
  transition: transform 0.3s;
  color: #C27866;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}
.faq-item.open .faq-body {
  max-height: 500px;
  opacity: 1;
}
.faq-body p {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: #59655A;
  line-height: 1.65;
  margin: 0;
}

/* ============== UTILITY ============== */
.h-18 { height: 4.5rem; }

/* Tighten image rendering on retina */
img { -webkit-user-drag: none; user-select: none; }

/* Hide scrollbar on ticker for clean look */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Print-friendly */
@media print {
  .fab, header, .mobile-sticky { display: none !important; }
}
