* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: #f4f4f7;
  color: #222;
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
}

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

header {
  background: #111;
  color: #fff;
  padding: 1rem 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
}

.logo {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 800;
  color: #f5c24a;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 0.8rem;
  width: auto;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 2vw, 1rem);
  transition: color 0.2s ease;
  white-space: nowrap;
}

nav a:hover {
  color: #f5c24a;
}

.hero {
  min-height: 60vh;
  padding: 3rem 4% 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("") center/cover no-repeat;
  background-attachment: fixed;
  width: 100%;
}

.overlay {
  width: 100%;
  max-width: 980px;
  background: rgba(0, 0, 0, 0.7);
  padding: clamp(1.2rem, 5vw, 2.5rem);
  border-radius: 16px;
  color: #fff;
}

.hero h1 {
  font-size: clamp(1.15rem, 5vw, 2.4rem);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
  word-wrap: break-word;
  white-space: nowrap;
}

.tagline {
  margin: 0 auto;
  max-width: 100%;
  font-size: clamp(0.95rem, 3vw, 1.2rem);
  color: #f0f0f0;
  padding: 0 0.5rem;
}

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  background: #f5c24a;
  color: #111;
  padding: 0.875rem 1.75rem;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 1rem);
  transition: transform 0.2s ease, opacity 0.2s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(90deg, #f5c24a, #e9b33c);
  color: #111;
}

.therapists {
  padding: clamp(2rem, 8vw, 5rem) 4%;
  background: #f9f9f9;
  width: 100%;
}

.therapists h2 {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  color: #111;
}

.therapist-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.therapist-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.therapist-card img {
  width: 100%;
  height: clamp(280px, 44vw, 420px);
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.therapist-card .therapist-content {
  padding: clamp(1rem, 3vw, 1.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.therapist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.therapist-card h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  color: #111;
}

.specialty {
  color: #f5c24a;
  font-weight: 700;
  margin: 0 0 0.75rem;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.therapist-age {
  color: #555;
  font-weight: 600;
  margin: 0 0 0.75rem;
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}

.bio {
  color: #666;
  padding: 0;
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

.photo-container {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

.zoom-hint {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.8rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.photo-container:hover .zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

.spa-info {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.spa-info .info-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
  border-radius: 16px;
  color: #fff;
  width: min(100%, 260px);
  text-align: left;
  transform: translateY(18px);
  opacity: 0;
  transition: all 420ms ease;
}

.spa-info .info-item.enter {
  transform: translateY(0);
  opacity: 1;
}

.spa-info .info-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.spa-info .info-item p {
  margin: 0;
  font-size: 0.94rem;
  color: #f0f0f0;
}

footer {
  background: #111;
  color: #fff;
  padding: clamp(2rem, 6vw, 3rem) 4%;
  text-align: center;
  width: 100%;
}

footer h3 {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  margin-bottom: 1rem;
  color: #f5c24a;
}

footer p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  margin-bottom: 1rem;
}

footer p a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer p a:hover {
  color: #f5c24a;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
  width: 100%;
}

.whatsapp-btn,
.whatsapp-call-btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 10px;
  font-weight: 700;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.whatsapp-btn:hover,
.whatsapp-call-btn:hover {
  background: #1da857;
  transform: translateY(-2px);
}

footer .social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  width: 100%;
}

footer .social-links h4 {
  color: #f5c24a;
  margin-bottom: 1rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  width: 100%;
}

.social-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  padding: clamp(0.7rem, 1.5vw, 0.9rem) clamp(1rem, 2vw, 1.3rem);
  border-radius: 10px;
  font-weight: 700;
  font-size: clamp(0.8rem, 1.8vw, 0.95rem);
  transition: background 0.3s ease, transform 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.social-btn:hover {
  transform: translateY(-2px);
}

.social-btn.facebook:hover {
  background: #4267b2;
}

.social-btn.instagram:hover {
  background: #e4405f;
}

.social-btn.twitter:hover {
  background: #1da1f2;
}

.social-btn.youtube:hover {
  background: #ff0000;
}

.spa-details {
  padding: clamp(2rem, 8vw, 5rem) 4%;
  background: #fff;
  width: 100%;
}

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

.detail-flow {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2rem);
  width: 100%;
}

.detail-block {
  background: #f9f9f9;
  padding: clamp(1.2rem, 4vw, 2rem);
  border-radius: 16px;
  border-left: 5px solid #f5c24a;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-block:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.detail-block p {
  color: #555;
  line-height: 1.8;
  margin: 0;
  font-size: clamp(0.9rem, 2vw, 0.95rem);
  text-align: left;
}

@media (max-width: 1024px) {
  header {
    padding: 1rem 3%;
  }

  .therapists,
  .spa-details,
  footer {
    padding-left: 3%;
    padding-right: 3%;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0.875rem 3%;
    gap: 0.75rem;
  }

  .logo {
    order: 1;
  }

  nav {
    order: 2;
    width: auto;
    justify-content: flex-end;
    gap: 0.6rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .hero {
    min-height: 50vh;
    padding: 2rem 3% 2.5rem;
  }

  .overlay {
    padding: clamp(1rem, 4vw, 2rem);
  }

  .therapist-card {
    grid-template-columns: 1fr;
  }

  .therapist-card img {
    height: clamp(280px, 58vw, 380px);
  }

  .contact-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .whatsapp-btn,
  .whatsapp-call-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }

  footer .social-links {
    align-items: center;
  }

  .social-btn {
    flex: 1 1 auto;
    min-width: 120px;
  }
}

@media (max-width: 600px) {
  header {
    padding: 0.75rem 3%;
    flex-direction: row;
    text-align: left;
  }

  .logo {
    font-size: 1rem;
    order: 1;
    width: auto;
  }

  nav {
    order: 2;
    width: auto;
    justify-content: flex-end;
    gap: 0.35rem;
  }

  nav a {
    font-size: 0.72rem;
    padding: 0.25rem 0.2rem;
  }

  .hero {
    min-height: 45vh;
    padding: 1.5rem 3% 2rem;
  }

  .overlay {
    padding: clamp(1rem, 3.5vw, 1.5rem);
  }

  .hero h1 {
    font-size: clamp(0.95rem, 4.8vw, 1.6rem);
    margin-bottom: 0.8rem;
  }

  .tagline {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    padding: 0 0.3rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 250px;
  }

  .therapists {
    padding: 1.5rem 3%;
  }

  .therapists h2 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 1.5rem;
  }

  .therapist-cards {
    gap: 1.2rem;
  }

  .therapist-card {
    border-radius: 14px;
  }

  .therapist-card img {
    height: clamp(300px, 88vw, 420px);
  }

  .therapist-card .therapist-content {
    padding: clamp(0.9rem, 2.5vw, 1.2rem);
  }

  .therapist-card h3 {
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    margin-bottom: 0.4rem;
  }

  .specialty {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .therapist-age {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .bio {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .spa-info {
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .spa-info .info-item {
    min-width: 100%;
    max-width: 100%;
    padding: clamp(0.9rem, 2.5vw, 1.1rem);
  }

  .spa-info .info-item h3 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }

  .spa-info .info-item p {
    font-size: 0.85rem;
  }

  .spa-details {
    padding: 1.5rem 3%;
  }

  .detail-flow {
    gap: 1.2rem;
  }

  .detail-block {
    padding: 1rem 1.2rem;
    border-radius: 12px;
  }

  .detail-block p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  footer {
    padding: 1.5rem 3%;
  }

  footer h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }

  footer p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .contact-buttons {
    gap: 0.75rem;
    margin-top: 0.75rem;
  }

  .whatsapp-btn,
  .whatsapp-call-btn {
    width: 100%;
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
  }

  footer .social-links {
    margin-top: 1rem;
    padding-top: 1rem;
    gap: 0.5rem;
  }

  footer .social-links h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .social-btn {
    flex: 1 1 45%;
    min-width: 100px;
    padding: clamp(0.6rem, 1.5vw, 0.8rem) clamp(0.8rem, 1.8vw, 1rem);
    font-size: 0.8rem;
  }
}

/* Final mobile responsiveness fixes */
@media (max-width: 600px) {
  header {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 0.75rem;
  }

  .logo {
    font-size: clamp(0.9rem, 4vw, 1rem);
    letter-spacing: 0.01em;
  }

  nav {
    justify-content: flex-end;
    gap: 0.45rem;
    min-width: 0;
  }

  nav a {
    font-size: clamp(0.68rem, 3vw, 0.78rem);
    padding: 0.2rem 0;
  }

  .hero {
    min-height: auto;
    padding: 1.2rem 0.75rem 1.4rem;
    background-attachment: scroll;
  }

  .overlay {
    padding: 1rem;
    border-radius: 14px;
  }

  .hero h1 {
    font-size: clamp(0.94rem, 4.6vw, 1.25rem);
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .tagline {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .spa-info {
    gap: 0.65rem;
  }

  .spa-info .info-item {
    padding: 0.9rem;
    border-radius: 12px;
  }

  .btn {
    max-width: 100%;
    white-space: normal;
  }

  .therapists {
    padding: 1.4rem 0.75rem;
  }

  .therapists h2 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
    line-height: 1.15;
  }

  .therapist-cards {
    gap: 1rem;
  }

  .therapist-card {
    border-radius: 12px;
  }

  .therapist-card img,
  .therapist-photo {
    width: 100%;
    height: clamp(250px, 78vw, 330px);
    object-fit: cover;
    object-position: center 24%;
  }

  .therapist-card .therapist-content {
    padding: 1rem;
  }

  .bio {
    text-align: left;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .spa-details,
  footer {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

@media (max-width: 360px) {
  header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  nav {
    justify-content: center;
  }

  .hero h1 {
    font-size: 0.9rem;
  }

  .therapist-card img,
  .therapist-photo {
    height: 250px;
  }
}

/* Compact service section and square hero information cards */
.overlay {
  max-width: 1050px;
  background: transparent;
  padding: clamp(1rem, 3vw, 1.6rem);
  border-radius: 0;
}

.spa-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 14px;
  max-width: 720px;
  margin: 22px auto 0;
}

.spa-info .info-item {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
}

.spa-info .info-item h3 {
  font-size: 0.94rem;
  line-height: 1.2;
}

.spa-info .info-item p {
  font-size: 0.8rem;
  line-height: 1.35;
}

.therapists {
  padding-top: clamp(1.5rem, 5vw, 3rem);
}

.therapists h2 {
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}

.therapist-cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1120px;
}

.therapist-card {
  border-radius: 10px;
}

.therapist-card img,
.therapist-photo {
  height: 220px;
  object-fit: cover;
  object-position: center 24%;
}

.therapist-card .therapist-content {
  padding: 14px;
}

.therapist-card h3 {
  font-size: 1.05rem;
}

.specialty,
.therapist-age {
  font-size: 0.78rem;
  margin-bottom: 0.45rem;
}

.bio {
  font-size: 0.76rem;
  line-height: 1.42;
}

@media (max-width: 600px) {
  .overlay {
    padding: 0;
  }

  .spa-info {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 18px;
  }

  .spa-info .info-item {
    min-width: 0;
    padding: 8px;
    border-radius: 8px;
  }

  .spa-info .info-item .icon {
    font-size: 1rem;
  }

  .spa-info .info-item h3 {
    font-size: 0.7rem;
  }

  .spa-info .info-item p {
    font-size: 0.58rem;
    line-height: 1.25;
  }

  .therapists {
    padding-top: 1.25rem;
  }

  .therapist-cards {
    gap: 0.9rem;
  }

  .therapist-card img,
  .therapist-photo {
    height: clamp(190px, 58vw, 250px);
  }

  .therapist-card .therapist-content {
    padding: 0.85rem;
  }

  .bio {
    font-size: 0.74rem;
  }
}
