/* Drift animation for organic background shapes */
@keyframes drift {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(25px, -35px) rotate(180deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

/* Slide up entrance animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  background-color: var(--color-brown-dark);
  overflow: hidden;
}

/* Full-bleed hero background image */
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  z-index: 1;
  transition: transform 12s ease-out;
}

.hero-section:hover .hero-bg-image {
  transform: scale(1.04);
}

/* Cinematic dark gradient overlay for text readability */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      to bottom,
      rgba(20, 13, 9, 0.45) 0%,
      rgba(20, 13, 9, 0.20) 35%,
      rgba(20, 13, 9, 0.45) 100%
    ),
    linear-gradient(
      105deg,
      rgba(20, 13, 9, 0.92) 0%,
      rgba(20, 13, 9, 0.80) 42%,
      rgba(20, 13, 9, 0.45) 72%,
      rgba(20, 13, 9, 0.20) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width-text);
}

@media(min-width: 1024px) {
  .hero-content {
    max-width: 55%;
    padding-right: 4rem;
  }
}

.hero-pretitle {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-rose-gold);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
  margin-bottom: 2rem;
  color: var(--color-warm-white);
  text-shadow: 0 2px 18px rgba(20, 13, 9, 0.55);
}

.hero-desc {
  font-size: var(--fs-md);
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 10px rgba(20, 13, 9, 0.5);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width-text);
  animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@media(min-width: 1024px) {
  .hero-content {
    max-width: 55%;
    padding-right: 4rem;
  }
}

.hero-pretitle {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-rose-gold);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
  margin-bottom: 2rem;
  color: var(--color-warm-white);
  text-shadow: 0 2px 18px rgba(20, 13, 9, 0.55);
}

.hero-desc {
  font-size: var(--fs-md);
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 10px rgba(20, 13, 9, 0.5);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Organic Shapes in Background */
.organic-shape {
  position: absolute;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(197, 168, 128, 0.12) 0%, rgba(243, 236, 227, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.shape-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -200px;
  animation: drift 16s infinite alternate ease-in-out;
}

.shape-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -100px;
  animation: drift 22s infinite alternate-reverse ease-in-out;
}

/* Featured Services Home Section */
.section-title-wrap {
  text-align: center;
  max-width: var(--max-width-text);
  margin: 0 auto 4rem auto;
}

.section-pretitle {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-rose-gold-dark);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: var(--fs-2xl);
}

.service-card {
  background-color: var(--color-warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px) rotate(0.5deg);
  box-shadow: 0 24px 48px rgba(197, 168, 128, 0.22);
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

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

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

.service-card-title {
  font-size: var(--fs-lg);
  margin-bottom: 0.75rem;
}

.service-card-desc {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-beige-dark);
  padding-top: 1.25rem;
  margin-top: auto;
}

.service-price {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--color-brown-muted);
}

.service-link {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-rose-gold-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}

.service-link svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* Why Choose Us & About Section Elements */
.about-grid {
  align-items: center;
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.about-img-main {
  grid-column: 1 / span 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img-sub {
  grid-column: 7 / span 6;
  grid-row: 1;
  margin-top: 30%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 8px solid var(--color-cream);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: var(--color-rose-gold-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-box svg {
  width: 24px;
  height: 24px;
  color: var(--color-rose-gold-dark);
}

.feature-item-content h4 {
  margin-bottom: 0.25rem;
}

.feature-item-content p {
  margin-bottom: 0;
  font-size: var(--fs-sm);
}

/* Gallery Grid & Filter System */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background-color: var(--color-warm-white);
  border: 1px solid var(--color-beige-dark);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--color-brown-muted);
  color: var(--color-cream);
  border-color: var(--color-brown-muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media(min-width: 500px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(47, 37, 32, 0.6) 0%, rgba(47, 37, 32, 0) 60%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--color-warm-white);
  z-index: 2;
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover .gallery-item-title {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox Modal Specifics */
.lightbox-modal {
  background: rgba(26, 20, 17, 0.95);
}

.lightbox-content {
  max-width: 800px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.lightbox-img {
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  color: var(--color-beige);
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
}

/* Packages Grid & Cards */
.package-card {
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-beige-dark);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.package-card.featured {
  border: 2px solid var(--color-rose-gold);
  transform: scale(1.02);
}

.package-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-rose-gold);
  color: var(--color-warm-white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-title {
  font-size: var(--fs-xl);
  margin-bottom: 0.5rem;
}

.package-duration {
  font-size: var(--fs-sm);
  color: var(--color-rose-gold-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.package-price {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  text-align: left;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.package-features li svg {
  width: 16px;
  height: 16px;
  color: var(--color-sage);
  flex-shrink: 0;
}

.package-card .btn {
  margin-top: auto;
  width: 100%;
}

/* Pricing List layout */
.pricing-section {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-category {
  margin-bottom: 4rem;
}

.pricing-category-title {
  font-size: var(--fs-xl);
  color: var(--color-brown-muted);
  border-bottom: 1px solid var(--color-beige-dark);
  padding-bottom: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.pricing-item-name {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  font-weight: 600;
}

.pricing-item-line {
  border-bottom: 1px dashed var(--color-beige-dark);
  width: 100%;
}

.pricing-item-price-wrap {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.pricing-item-dur {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.pricing-item-val {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--color-brown-muted);
}

.pricing-item-desc {
  grid-column: 1 / -1;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-top: -0.5rem;
}

/* Therapists Profiles Section */
.therapist-card {
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-smooth);
}

.therapist-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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

.therapist-info {
  padding: 1.5rem;
}

.therapist-name {
  font-size: var(--fs-lg);
  margin-bottom: 0.25rem;
}

.therapist-title {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-rose-gold-dark);
  font-weight: 600;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: var(--max-width-text);
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-warm-white);
  border: 1px solid var(--color-beige-dark);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-header {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--text-primary);
  padding-right: 1.5rem;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  stroke: var(--color-brown-muted);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

/* Testimonials Carousel Elements */
.testimonial-card {
  background: var(--color-warm-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-rose-gold);
}

.rating-stars {
  display: flex;
  gap: 4px;
  color: var(--color-rose-gold);
  margin-bottom: 1.25rem;
}

.rating-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  font-size: var(--fs-sm);
}

.author-title {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* Contact Details Page Cards */
.contact-info-grid {
  display: grid;
  gap: 2rem;
}

@media(min-width: 768px) {
  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-rose-gold-light);
  color: var(--color-rose-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

/* Interactive Map & Booking Forms */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media(min-width: 1024px) {
  .contact-main-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Blog Cards */
.blog-card {
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.blog-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-size: var(--fs-lg);
  margin-bottom: 1rem;
}

.blog-card-desc {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Single Service Template / Detailed Page layout */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media(min-width: 1024px) {
  .service-detail-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

.service-detail-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-sidebar {
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-beige-dark);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.service-sidebar h3 {
  margin-bottom: 1.5rem;
}

.service-meta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.service-meta-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-beige-dark);
  padding-bottom: 0.75rem;
}

.service-meta-label {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--text-primary);
}

.service-meta-val {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

/* Service Detail Bottom Gallery */
.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .service-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.service-gallery-grid .gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.service-gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-gallery-grid .gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-gallery-grid .gallery-item:hover img {
  transform: scale(1.06);
}

.service-gallery-grid .gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(47, 37, 32, 0.4) 0%, rgba(47, 37, 32, 0) 50%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-gallery-grid .gallery-item:hover::after {
  opacity: 1;
}

.service-gallery-grid .gallery-item-title {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: var(--color-warm-white);
  z-index: 2;
  font-family: var(--font-serif);
  font-size: var(--fs-xs);
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition-smooth);
}

.service-gallery-grid .gallery-item:hover .gallery-item-title {
  opacity: 1;
  transform: translateY(0);
}

