/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
}

/* CSS Variables - Design System */
:root {
  /* Colors */
  --color-primary: #1a1a1a;
  --color-primary-foreground: #ffffff;
  --color-secondary: #f5f5f5;
  --color-secondary-foreground: #1a1a1a;
  --color-accent: #d4af37;
  --color-accent-foreground: #1a1a1a;
  --color-muted: #f5f5f5;
  --color-muted-foreground: #737373;
  --color-border: #e5e5e5;
  --color-background: #ffffff;
  --color-foreground: #1a1a1a;

  /* Elegant System */
  --color-elegant-dark: #1a1a1a;
  --color-elegant-light: #ffffff;
  --color-elegant-gray: #737373;
  --color-elegant-gray-light: #f5f5f5;
  --color-warm-accent: #BD8026;

  /* Shadows */
  --shadow-elegant: 0 20px 40px -10px rgba(26, 26, 26, 0.2);
  --shadow-soft: 0 4px 20px rgba(26, 26, 26, 0.1);

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease-out;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;

  /* Container */
  --container-max-width: 1200px;
  --container-padding: 1rem;

  /* Header */
  --header-height: 80px;
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-elegant-dark);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.section-description {
  font-size: 1.125rem;
  color: var(--color-elegant-gray);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: var(--spacing-2xl);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border: none;
  border-top-left-radius: 0px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 30px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  transform: translateY(0);
  width: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background-color: var(--color-elegant-dark);
  color: var(--color-elegant-light);
}

.btn-primary:hover {
  background-color: rgba(26, 26, 26, 0.9);
  box-shadow: var(--shadow-elegant);
}

.btn-accent {
  background-color: #BD8026;
  color: #ffffff;
  font-size: 1.125rem;
  padding: 1rem 2rem;
}

.btn-accent:hover {
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: var(--shadow-elegant);
}

.btn-outline {
  border: 2px solid var(--color-elegant-light);
  color: var(--color-elegant-light);
  background-color: transparent;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  backdrop-filter: blur(25px);
}

.btn-outline:hover {
  background-color: var(--color-elegant-light);
  color: var(--color-elegant-dark);
}

.btn-outline-accent {
  border: 2px solid white;
  color: white;
  background-color: #BD8026;
  margin-top: var(--spacing-xl);
  font-size: 1.125rem;
}

.btn-outline-accent:hover {
  background-color: black;
  color: white;
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo-img {
  height: 3rem;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.nav-link {
  color: var(--color-foreground);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-warm-accent);
}

.header-cta {
  display: block;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--color-background);
  border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.nav-mobile-content {
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.nav-link-mobile {
  color: var(--color-foreground);
  text-decoration: none;
  font-weight: 500;
  padding: var(--spacing-sm) 0;
  transition: var(--transition-fast);
}

.nav-link-mobile:hover {
  color: var(--color-warm-accent);
}

.mobile-cta {
  margin-top: var(--spacing-md);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(26 26 26 / 83%) 0%, rgb(0 0 0 / 74%) 50%, #000000e6 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-text {
  width: 100%;
  display: flex;
  animation: fadeInUp 1s ease-out;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  backdrop-filter: blur(3px);
  padding: 50px 0;
  border-top-left-radius: 0px;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 80px;
  background: #00000036;
  box-shadow: 0 0 20px #00000073;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 2.5rem);
  font-weight: 300;
  color: var(--color-elegant-light);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.hero-subtitle {
  display: block;
  font-weight: 200;
  font-style: italic;
  color: var(--color-warm-accent);
}

.hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
  width: 70%;
  text-align: center;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  width: 65%;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-indicator-box {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-indicator-dot {
  width: 0.25rem;
  height: 0.75rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 0.125rem;
  animation: bounce 2s infinite;
}

/* Services Section */
.services {
  padding: var(--spacing-4xl) 0;
  background-color: var(--color-elegant-gray-light);
}

.services-grid {
  display: grid;
  gap: var(--spacing-xl);
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  background-color: var(--color-background);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  opacity: 1;
  transform: translateY(0);
  border-top-left-radius: 0px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 30px;
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  box-shadow: var(--shadow-elegant);
}

.service-image {
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.4) 50%, transparent 100%);
}

.service-content {
  position: absolute;
  bottom: 0px;
  backdrop-filter: blur(8px);
  width: fit-content;
  padding: 25px;
  background: #00000091;
  border-top-left-radius: 0px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 30px;
  box-shadow: 0 0 20px 0px black;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-elegant-light);
  margin-bottom: 0.75rem;
}

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

.service-list li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
}

/* About Section */
.about {
  padding: var(--spacing-4xl) 0;
  background-color: var(--color-background);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.about-content {
  opacity: 1;
  transform: translateX(0);
  transition: var(--transition-smooth);
}

.about-content.animate {
  opacity: 1;
  transform: translateX(0);
}

.about-text {
  color: var(--color-elegant-gray);
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
}

.about-text p {
  margin-bottom: var(--spacing-lg);
}

.about-image {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  transition: var(--transition-smooth);
}

.about-image.animate {
  opacity: 1;
  transform: translateX(0);
}

.about-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  box-shadow: var(--shadow-elegant);
  border-top-left-radius: 0px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 20px;
}

.about-image-container img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  border-top-left-radius: 0px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 20px;
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.2) 0%, transparent 100%);
}

.decorative-element-1 {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.decorative-element-2 {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 8rem;
  height: 8rem;
  border: 2px solid rgba(115, 115, 115, 0.2);
}

/* Spa Section - Layout Corrigido */
.spa {
  padding: var(--spacing-4xl) 0;
  background-color: var(--color-elegant-gray-light);
}

.spa-content {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: center;
  margin-top: var(--spacing-2xl);
  flex-direction: column;
}

.spa-image {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  box-shadow: -1px -10px 20px #00000026;
  border-top-left-radius: 0px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 20px;
}

.spa-image img {
  width: 100%;
  height: 32rem;
  object-fit: cover;
  border-top-left-radius: 0px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 20px;
}

.spa-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.3) 0%, transparent 100%);
  border-top-left-radius: 0px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 20px;
}

/* Cards em grid 3x1 ÃƒÆ’Ã‚Â  direita */
.spa-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--spacing-lg);
  margin-top: -112px;
  z-index: 2;
}

.spa-service-card {
  background-color: var(--color-background);
  padding: var(--spacing-xl);
  border-radius: 0px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  text-align: center;
  border-top-left-radius: 0px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 20px;
}

.spa-service-card:hover {
  box-shadow: var(--shadow-elegant);
  transform: translateY(-4px);
}

.spa-service-icon {
  background-color: black;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md) auto;
  flex-shrink: 0;
  color: white !important;
}

.spa-service-icon i {
  color: var(--color-elegant-dark);
  width: 2rem;
  height: 2rem;
}

.spa-service-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
  color: var(--color-elegant-dark);
}

.spa-service-card p {
  color: var(--color-elegant-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
  padding: var(--spacing-4xl) 0;
  background-color: var(--color-background);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.testimonials-mobile {
  display: none;
  margin-bottom: var(--spacing-xl);
}

.testimonial-card {
  background-color: var(--color-background);
  padding: var(--spacing-xl);
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  opacity: 1;
  transform: translateY(0);
  border: 1px solid var(--color-border);
}

.testimonial-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-elegant);
  transform: translateY(-4px);
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: var(--spacing-md);
}

.star {
  color: var(--color-warm-accent);
  width: 1.25rem;
  height: 1.25rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--color-elegant-gray);
  font-style: italic;
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
  min-height: 4rem;
}

.testimonial-author {
  font-weight: 500;
  color: var(--color-elegant-dark);
  font-size: 0.95rem;
}

.testimonial-source {
  font-size: 0.8rem;
  color: var(--color-warm-accent);
  margin-top: 0.25rem;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
}

.testimonial-nav-btn {
  background: none;
  border: 1px solid var(--color-elegant-gray);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-nav-btn:hover {
  background-color: var(--color-elegant-gray);
  color: var(--color-background);
}

.testimonials-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: rgba(115, 115, 115, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-dot.active {
  background-color: var(--color-warm-accent);
}

/* Contact Section */
.contact {
  position: relative;
  padding: var(--spacing-4xl) 0;
  color: var(--color-elegant-light);
  overflow: hidden;
  background: #1b1b1b;
}

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

.contact-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.contact .container {
  position: relative;
  z-index: 10;
}

.contact-cta {
  text-align: center;
  background: linear-gradient(rgb(0 0 0 / 75%), rgb(0 0 0 / 88%)), url(../images/banner.jpg);
  background-size: cover;
  background-position: center;
  padding: 40px 100px 40px 100px;
  width: 100%;
}

.contact-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  margin-bottom: var(--spacing-md);
  color: var(--color-elegant-light);
}

.contact-subtitle {
  font-size: 1.4rem;
  color: white;
  margin-bottom: var(--spacing-sm);
  text-decoration: underline;
}

.contact-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colunas iguais */
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-4xl);
}
.contact-grid > *:nth-child(4) {
  grid-column: 1 / -1;
}
.contact-card {
  color: var(--color-elegant-dark);
  padding: var(--spacing-xl);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-soft);
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition-smooth);
  height: fit-content;
  background: white;
  border-top-left-radius: 0px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 20px;
  box-shadow: 0 0 20px #00000082;
}

.contact-card:hover {
  box-shadow: var(--shadow-elegant);
  transform: translateY(-2px);
}

.contact-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.contact-icon {
  color: var(--color-warm-accent);
  width: 1.5rem;
  height: 1.5rem;
}

.contact-card-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 300;
  color: var(--color-elegant-dark);
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid rgba(115, 115, 115, 0.2);
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-day {
  font-weight: 500;
}

.schedule-time {
  color: var(--color-elegant-gray);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
}

.contact-info-item h4 {
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
}

.contact-info-item p {
  color: var(--color-elegant-gray);
  line-height: 1.6;
}

.social-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.instagram-container {
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: var(--color-elegant-gray-light);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-container iframe {
  border-radius: 0.5rem;
}

.social-buttons {
  display: flex;
  gap: var(--spacing-md);
}

.social-btn {
  background: none;
  border: 1px solid var(--color-elegant-gray);
  border-radius: 0.375rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  color: var(--color-elegant-gray);
}

.social-btn:hover {
  background-color: var(--color-elegant-gray);
  color: var(--color-background);
}

.map-section {
  width: 100%;
}

.map-container {
  width: 100%;
  padding: 0px;
  border: 0px;
  margin: 0px;
}


/* Footer */
.footer {
  background-color: black;
  color: var(--color-elegant-light);
  padding: var(--spacing-3xl) 0 var(--spacing-xl) 0;
  margin-top: -6px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-main {
  max-width: 400px;
}

.footer-logo {
  height: 175px;
  width: auto;
  margin-bottom: var(--spacing-md);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: var(--spacing-md);
}

.footer-social-link {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-fast);
  text-decoration: none;
}

.footer-social-link:hover {
  color: var(--color-warm-accent);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: var(--spacing-md);
  color: white !important;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.footer-icon {
  color: white;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item div {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--spacing-xl);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
  }
  40% {
      transform: translateY(-10px);
  }
  60% {
      transform: translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
      --container-padding: 1rem;
      --spacing-4xl: 3rem;
      --spacing-3xl: 2rem;
      --spacing-2xl: 1.5rem;
  }

  /* Header */
  .nav-desktop,
  .header-cta {
      display: none;
  }

  .mobile-menu-btn {
      display: block;
  }

  .nav-mobile.active {
      display: block;
  }

  /* Hero */
  .hero-buttons {
      flex-direction: column;
  }

  .hero-buttons .btn {
      width: 100%;
  }

  /* About */
  .about-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-2xl);
  }

  .about-image {
      order: -1;
  }

  /* Spa */
  .spa-content {
      grid-template-columns: 1fr;
      gap: var(--spacing-2xl);
  }

  .spa-image {
      order: -1;
  }

  .spa-image img {
      height: 20rem;
  }

  .spa-service-card {
      text-align: left;
      padding: var(--spacing-lg);
  }

  .spa-service-icon {
      margin: 0 0 var(--spacing-md) 0;
  }

  /* Testimonials */
  .testimonials-grid {
      display: none;
  }

  .testimonials-mobile {
      display: block;
  }

  /* Footer */
  .footer-content {
      grid-template-columns: 1fr;
      gap: var(--spacing-2xl);
  }
}

@media (max-width: 480px) {
  .hero-buttons {
      gap: var(--spacing-lg);
  }

  .services-grid {
      grid-template-columns: 1fr;
  }

  .contact-grid {
      grid-template-columns: 1fr;
  }

  .spa-service-card {
      padding: var(--spacing-md);
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .spa-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: -112px;
    z-index: 2;
}
  
}

.banner-logo{
  width: 250px;
  height: 100%;
  object-fit: contain;
  margin-bottom: 20px;
}

.bt-50{
  width: 50%;
}

.service-card-2 {
  background-color: var(--color-background);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  opacity: 1;
  transform: translateY(0);
  border-top-left-radius: 30px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 0;
}
.service-list-2 {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  color: white;
}

.service-content-2 {
  position: absolute;
  bottom: 0px;
  backdrop-filter: blur(8px);
  width: fit-content;
  padding: 25px;
  background: #00000091;
  box-shadow: 0 0 20px 0px black;
  border-top-left-radius: 30px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 0;
}