/* ============================================
   SOUND HEALING PAGE — All Styles
   ============================================ */

/* --- Global overflow fix --- */
html, body {
  overflow-x: hidden;
}

/* ============================================
   HERO SECTION
   ============================================ */
.sound-hero {
  min-height: 85vh;
  background-color: #fffaf7;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  overflow: visible;
  color: #3a3a3a;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  padding: 100px 10px 80px;
}

/* Hero background image removed for performance */

/* --- Sound Wave Rings (expanding from center) --- */
.sound-wave {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
  width: 10px;
  height: 10px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
}

.sound-wave--1 { animation: sound-wave-a 14s ease-out 0s infinite; }
.sound-wave--2 { animation: sound-wave-b 18s ease-out 3s infinite; }
.sound-wave--3 { animation: sound-wave-c 16s ease-out 7s infinite; }
.sound-wave--4 { animation: sound-wave-a 20s ease-out 11s infinite; }
.sound-wave--5 { animation: sound-wave-b 15s ease-out 14s infinite; }

@keyframes sound-wave-a {
  0% { width: 10px; height: 10px; opacity: 0; border: 2px solid rgba(180, 103, 70, 0.25); }
  5% { opacity: 0.5; }
  40% { opacity: 0.2; }
  100% { width: 900px; height: 900px; opacity: 0; border: 1px solid rgba(180, 103, 70, 0.02); }
}

@keyframes sound-wave-b {
  0% { width: 10px; height: 10px; opacity: 0; border: 1.5px solid rgba(202, 157, 117, 0.2); }
  6% { opacity: 0.35; }
  50% { opacity: 0.12; }
  100% { width: 700px; height: 700px; opacity: 0; border: 1px solid rgba(202, 157, 117, 0.01); }
}

@keyframes sound-wave-c {
  0% { width: 10px; height: 10px; opacity: 0; border: 2.5px solid rgba(180, 103, 70, 0.3); }
  4% { opacity: 0.6; }
  30% { opacity: 0.15; }
  100% { width: 1100px; height: 1100px; opacity: 0; border: 1px solid rgba(180, 103, 70, 0.01); }
}

/* Hero centered layout */
.sound-hero-center {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.sound-hero-title {
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 16px;
  color: #8b4f4f;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.25;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
}

.sound-hero-subtitle {
  font-size: clamp(18px, 2.2vw, 20px);
  color: #b46746;
  font-weight: 400;
  margin: 0;
  font-style: italic;
}

.sound-hero-subtitle--mobile {
  display: none;
}

@media (max-width: 900px) {
  .sound-hero-subtitle--desktop {
    display: none;
  }
  .sound-hero-subtitle--mobile {
    display: block;
    font-size: 20px;
    line-height: 1.6;
    max-width: 380px;
    margin: 0 auto;
  }
}

/* Scroll hint at bottom of hero */
.sound-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sound-scroll-hint span {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #b46746;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.6;
}

.sound-scroll-arrow {
  animation: sound-scroll-bounce 2s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes sound-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================
   SCROLL REVEAL TEXT SECTION
   ============================================ */
.sound-scroll-section {
  padding: 120px 20px 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.sound-scroll-text {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.sound-scroll-text p {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.6;
  color: #d0c4ba;
  margin: 0;
}

.sound-scroll-text .scroll-word {
  display: inline;
  color: #d0c4ba;
  transition: color 0.2s ease;
}

.sound-scroll-text .scroll-word.revealed {
  color: #5a4a40;
}

/* ============================================
   SHARED SECTION & CONTAINER
   ============================================ */
.sound-section {
  padding: 30px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.sound-section-title {
  font-size: 30px;
  color: #8b4f4f;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-weight: 600;
  margin: 0 0 20px;
}

.sound-section-intro {
  text-align: center;
  font-size: 17px;
  color: #5a4a40;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* ============================================
   BUTTONS
   ============================================ */
.sound-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 50px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.sound-btn--primary {
  background: linear-gradient(135deg, #d4a574, #b46746, #c27d60);
  color: white;
  box-shadow: 0 8px 25px rgba(180, 103, 70, 0.3);
}

.sound-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(180, 103, 70, 0.4);
  color: white;
}

.sound-btn--outline {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  color: #8b4f4f;
  border: 1.5px solid rgba(180, 103, 70, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sound-btn--outline:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 103, 70, 0.6);
  box-shadow: 0 8px 25px rgba(180, 103, 70, 0.15);
  color: #8b4f4f;
}

/* ============================================
   SERVICE CARDS — 4-col grid
   ============================================ */
.sound-service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sound-service-card {
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s ease;
}

.sound-service-card:hover {
  transform: translateY(-6px);
}

.sound-service-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(180, 103, 70, 0.12);
  margin-bottom: 14px;
}

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

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

.sound-service-label {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: #8b4f4f;
  line-height: 1.3;
}

/* ============================================
   OFFERING CARDS — full-width with image
   ============================================ */
.sound-offering-card {
  display: flex;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f0ddd0;
  box-shadow: 0 10px 30px rgba(180, 103, 70, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}

.sound-offering-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(180, 103, 70, 0.15);
}

.sound-offering-image {
  width: 30%;
  min-height: 320px;
  overflow: hidden;
  flex-shrink: 0;
}

.sound-offering-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sound-offering-card:hover .sound-offering-image img {
  transform: scale(1.05);
}

.sound-offering-content {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sound-offering-content h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  color: #8b4f4f;
  margin: 0 0 12px;
}

.sound-offering-desc {
  font-size: 16px;
  color: #5a4a40;
  line-height: 1.7;
  margin: 0 0 18px;
}

.sound-offering-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.sound-offering-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #5a4a40;
  padding: 6px 0;
  border-bottom: 1px solid rgba(240, 221, 208, 0.4);
}

.sound-offering-highlights li:last-child {
  border-bottom: none;
}

.sound-offering-highlights li svg {
  flex-shrink: 0;
}

.sound-offering-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  padding: 32px 32px 28px 28px;
  min-width: 200px;
  border-left: 1px solid rgba(180, 103, 70, 0.12);
}

.sound-offering-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.sound-offering-amount {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: #b46746;
}

.sound-offering-duration {
  font-size: 14px;
  color: #8b4f4f;
  font-weight: 500;
}

.sound-offering-pricing .sound-btn {
  margin-top: 0;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  box-shadow: none;
  background: transparent;
  color: #b46746;
  border: 1px solid rgba(180, 103, 70, 0.3);
  animation: none;
}

.sound-offering-pricing .sound-btn:hover {
  background: #b46746;
  color: white;
  border-color: #b46746;
  box-shadow: 0 4px 12px rgba(180, 103, 70, 0.2);
  transform: translateY(-2px);
}

.sound-offering-pricing .sound-btn span::after {
  content: ' →';
  margin-left: 4px;
  transition: margin-left 0.3s;
}

.sound-offering-pricing .sound-btn:hover span::after {
  margin-left: 8px;
}

/* Button hover only — pulse animation removed for performance */


/* ============================================
   INSTRUMENTS SECTION
   ============================================ */
.sound-instruments-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.sound-instruments-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #5a4a40;
  padding: 6px 0;
  line-height: 1.6;
}

.sound-instruments-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

/* ============================================
   BENEFITS / DISCOVER CARDS — 2-col grid
   ============================================ */
.sound-benefits-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.sound-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.sound-discover-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(180, 103, 70, 0.09);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #f0ddd0;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

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

.sound-discover-icon {
  margin: 0 auto 20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(180, 103, 70, 0.15);
}

.sound-discover-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sound-discover-card h3 {
  color: #8b4f4f;
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 600;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
}

.sound-discover-sub {
  font-size: 14px;
  color: #b46746;
  font-style: italic;
  margin: 0 0 14px;
}

.sound-discover-card > p {
  color: #5a4a40;
  margin: 0 0 16px;
  line-height: 1.7;
  font-size: 15px;
  font-weight: 400;
  text-align: left;
}

.sound-discover-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.sound-discover-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #5a4a40;
  padding: 5px 0;
}

.sound-discover-list li svg {
  flex-shrink: 0;
}

.sound-newbie-note {
  text-align: center;
  font-size: 16px;
  color: #8b4f4f;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background: linear-gradient(to left, #FEF4EF, #FFFAF8);
  border-radius: 12px;
}

/* ============================================
   TESTIMONIALS SLIDER
   ============================================ */
.sound-testimonials {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(to left, #FEF4EF, #FFFAF8);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(180, 103, 70, 0.07);
}

.sound-testimonial-wrap {
  position: relative;
  overflow: hidden;
}

.sound-testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.sound-testimonial-slide {
  min-width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.sound-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.sound-testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(180, 103, 70, 0.09);
  border: 1px solid #f0ddd0;
  position: relative;
}

.sound-testimonial-quote {
  font-size: 50px;
  color: #f0ddd0;
  position: absolute;
  top: 10px;
  left: 15px;
  line-height: 1;
  font-family: Georgia, serif;
}

.sound-testimonial-card p {
  color: #5a4a40;
  line-height: 1.7;
  font-size: 15px;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.sound-testimonial-author {
  display: block;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #b46746;
  margin-top: 15px;
  text-align: right;
}

.sound-testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #b27d6a;
  color: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(180, 103, 70, 0.3);
  transition: background 0.3s;
}

.sound-testimonial-arrow:hover {
  background: #8b4f4f;
}

.sound-testimonial-prev { left: 5px; }
.sound-testimonial-next { right: 5px; }

/* ============================================
   CTA SECTION — split layout
   ============================================ */
.sound-cta-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.sound-cta-split {
  display: flex;
  gap: 50px;
  align-items: center;
}

.sound-cta-text {
  flex: 1;
}

.sound-cta-text h2 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  color: #8b4f4f;
  margin: 0 0 16px;
}

.sound-cta-text p {
  font-size: 16px;
  color: #5a4a40;
  line-height: 1.7;
  margin: 0 0 24px;
}

.sound-cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sound-cta-image {
  flex: 0 0 400px;
  max-width: 400px;
}

.sound-cta-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(180, 103, 70, 0.12);
}

/* ============================================
   FAQ SECTION — gradient background items
   ============================================ */
.sound-faq-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.sound-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.sound-faq-item {
  background-color: #fff;
  border: 1px solid #f0ddd0;
  border-radius: 10px;
  overflow: hidden;
}

.sound-faq-question {
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1.05rem;
  color: #8b4f4f;
  gap: 15px;
}

.sound-faq-toggle {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.sound-faq-toggle::before,
.sound-faq-toggle::after {
  content: '';
  position: absolute;
  background-color: #8b4f4f;
}

.sound-faq-toggle::before {
  width: 12px;
  height: 2px;
  top: 9px;
  left: 4px;
}

.sound-faq-toggle::after {
  width: 2px;
  height: 12px;
  top: 4px;
  left: 9px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sound-faq-item.active .sound-faq-toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

.sound-faq-answer {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #5a4a40;
  font-size: 15px;
  line-height: 1.7;
}

.sound-faq-item.active .sound-faq-answer {
  padding: 0 28px 22px;
  max-height: 500px;
}

/* ============================================
   TERMS TABLE
   ============================================ */
.sound-terms-section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.sound-terms-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 15px;
}

.sound-terms-table th {
  text-align: left;
  padding: 14px 18px;
  background: linear-gradient(to left, #FEF4EF, #FFFAF8);
  color: #8b4f4f;
  font-weight: 600;
  border-bottom: 2px solid #f0ddd0;
}

.sound-terms-table td {
  padding: 14px 18px;
  color: #5a4a40;
  border-bottom: 1px solid #f0ddd0;
  line-height: 1.6;
}

.sound-terms-table tr:last-child td {
  border-bottom: none;
}

/* ============================================
   MEET TYAS SECTION
   ============================================ */
.tyas-hero-unique {
  width: 100%;
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
}

.tyas-bg-unique {
  background: linear-gradient(to left, #FEF4EF 0%, #FFFAF8 100%);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(180, 103, 70, 0.1);
  position: relative;
  overflow: hidden;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.tyas-content-unique {
  display: flex;
  min-height: 500px;
  width: 100%;
}

.tyas-text-unique {
  width: 50%;
  padding: 60px;
  position: relative;
  z-index: 5;
}

.tyas-media-unique {
  width: 50%;
  position: relative;
  overflow: visible;
}

.tyas-video-wrap-unique {
  position: absolute;
  top: -50px;
  bottom: -50px;
  right: -20px;
  width: 350px;
  height: calc(100% + 100px);
  border-top-left-radius: 200px;
  overflow: hidden;
  box-shadow: -10px 10px 40px rgba(180, 103, 70, 0.15);
}

.tyas-video-unique {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.tyas-overlay-unique {
  position: absolute;
  top: -50px;
  bottom: -50px;
  left: 0;
  right: -20px;
  background: linear-gradient(to right, rgba(255,255,255,0.2), transparent);
  z-index: 2;
  border-top-left-radius: 200px;
}

.tyas-label-unique {
  display: inline-block;
  background-color: rgba(180, 103, 70, 0.1);
  color: #b46746;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tyas-heading-unique {
  font-size: 54px;
  font-weight: 600;
  color: #8b4f4f;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
}

.tyas-paragraph-unique {
  font-size: 17px;
  color: #4a2d25;
  margin-bottom: 30px;
  line-height: 1.8;
}

.tyas-deco-unique {
  position: absolute;
  background-color: rgba(194, 125, 96, 0.15);
  border-radius: 50%;
  z-index: 1;
}

.tyas-deco-1-unique { top: -30px; left: 10%; width: 140px; height: 140px; }
.tyas-deco-2-unique { bottom: -40px; left: 35%; width: 80px; height: 80px; background-color: rgba(139, 79, 79, 0.1); }
.tyas-deco-3-unique { top: 20%; right: 40%; width: 60px; height: 60px; background-color: rgba(139, 79, 79, 0.1); }

.tyas-quote-unique {
  max-width: 800px;
  margin: 60px auto 40px;
  text-align: center;
  position: relative;
  padding: 0 40px;
}

.tyas-quote-mark-unique {
  font-size: 120px;
  line-height: 0;
  position: absolute;
  top: 20px;
  left: 0;
  color: rgba(180, 103, 70, 0.1);
  font-family: Georgia, serif;
}

.tyas-quote-text-unique {
  font-size: 20px;
  line-height: 1.8;
  color: #8b4f4f;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.tyas-quote-author-unique {
  margin-top: 20px;
  font-weight: 600;
  color: #b46746;
  font-size: 16px;
}

.tyas-heart-indicator-unique {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  animation: tyas-bounce-unique 2s infinite;
}

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

.tyas-heart-indicator-unique svg {
  width: 40px;
  height: 40px;
  fill: #b46746;
  opacity: 0.6;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-showcase {
  position: relative;
  height: 100%;
  min-height: 900px;
  overflow: hidden;
  color: #8c5c5c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-showcase .yoga-bg-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.location-showcase #loc-shape1 {
  width: 300px; height: 300px;
  border-radius: 31% 69% 20% 80% / 60% 31% 69% 40%;
  background: rgba(230, 213, 203, 0.6);
  top: 10%; left: 5%; opacity: 0.5;
  animation: sound-loc-float1 15s infinite alternate ease-in-out;
  max-width: 40%;
}

.location-showcase #loc-shape2 {
  width: 400px; height: 400px;
  border-radius: 69% 31% 54% 46% / 28% 50% 50% 72%;
  background: rgba(230, 213, 203, 0.3);
  bottom: 2%; right: 5%; opacity: 0.5;
  animation: sound-loc-float2 12s infinite alternate-reverse ease-in-out;
  max-width: 50%;
}

.location-showcase #loc-circle1 {
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(230, 213, 203, 0.3);
  top: -250px; left: -100px;
  animation: sound-loc-pulse1 8s infinite alternate ease-in-out;
  max-width: 60%;
}

@keyframes sound-loc-float1 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, 20px) rotate(5deg); }
  100% { transform: translate(-20px, -10px) rotate(-5deg); }
}

@keyframes sound-loc-float2 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-15px, 10px) rotate(-3deg); }
  100% { transform: translate(15px, -15px) rotate(3deg); }
}

@keyframes sound-loc-pulse1 {
  0% { transform: scale(0.9); opacity: 0.2; }
  100% { transform: scale(1.1); opacity: 0.4; }
}

.location-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 90%;
  text-align: center;
  padding: 60px 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(140, 92, 92, 0.2);
  border: 1px solid rgba(178, 125, 106, 0.3);
}

.location-eyebrow {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 26px;
  display: block;
  margin-bottom: 15px;
  color: #b27d6a;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.location-content > p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  max-width: 900px;
  margin: 0 auto 20px;
}

.location-title {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  margin-top: 20px;
  color: #8c5c5c;
  position: relative;
  display: inline-block;
}

.location-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #b27d6a;
}

.location-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.location-feature {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 30px 20px;
  background: rgba(230, 213, 203, 0.3);
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 25px rgba(140, 92, 92, 0.1);
  border: 1px solid rgba(178, 125, 106, 0.2);
  text-align: center;
}

.location-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(140, 92, 92, 0.15);
  background: rgba(230, 213, 203, 0.5);
}

.feature-image-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(140, 92, 92, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

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

.location-feature:hover .feature-image-container {
  box-shadow: 0 15px 30px rgba(140, 92, 92, 0.3);
}

.location-feature:hover .feature-image {
  transform: scale(1.15);
}

.location-feature h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #8c5c5c;
}

.location-feature p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.location-contact {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: rgba(230, 213, 203, 0.3);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(178, 125, 106, 0.2);
}

.address-column, .map-column {
  flex: 1;
  min-width: 300px;
}

.address-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.address-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f4f1;
  color: #8c5c5c;
  font-size: 35px;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(140, 92, 92, 0.1);
}

.address-column h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #8c5c5c;
}

.address-column address {
  font-style: normal;
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 16px;
  color: #666;
}

.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #b27d6a;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 5px 15px rgba(178, 125, 106, 0.2);
}

.directions-link:hover {
  background: #8c5c5c;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(140, 92, 92, 0.3);
  color: white;
}

.map-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(140, 92, 92, 0.15);
  border: 5px solid rgba(230, 213, 203, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(140, 92, 92, 0.2);
}

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

/* ============================================
   WHATSAPP WIDGET
   ============================================ */
.whatsapp-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: white;
  padding: 10px 18px 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-widget:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  color: white;
}

.whatsapp-label {
  display: inline;
}

.whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE — 900px
   ============================================ */
@media (max-width: 900px) {
  .sound-wave {
    opacity: 0.5;
  }

  .sound-service-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .sound-offering-card {
    flex-direction: column;
  }

  .sound-offering-image {
    width: 100%;
    height: auto;
    min-height: unset;
    max-height: 350px;
  }

  .sound-offering-image img {
    object-fit: contain;
    object-position: center;
    height: auto;
  }

  .sound-offering-pricing {
    padding: 0 32px 28px;
    align-items: flex-start;
    min-width: auto;
  }

  .sound-benefits-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .sound-cta-split {
    flex-direction: column;
    gap: 30px;
  }

  .sound-cta-image {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .sound-cta-text {
    text-align: center;
  }

  .sound-cta-buttons {
    justify-content: center;
  }

  .tyas-content-unique {
    flex-direction: column;
  }

  .tyas-text-unique {
    width: 100%;
    padding: 40px;
    text-align: center;
  }

  .tyas-media-unique {
    width: 100%;
    height: 400px;
  }

  .tyas-video-wrap-unique {
    position: relative;
    top: 0; bottom: 0; right: 0;
    width: 100%; height: 100%;
    border-radius: 0;
  }

  .tyas-overlay-unique {
    top: 0; bottom: 0; right: 0;
    border-radius: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
  }

  .location-features {
    flex-direction: column;
    align-items: center;
  }

  .location-feature {
    max-width: 100%;
    width: 100%;
  }

  .location-content {
    padding: 40px 20px;
  }

  .address-column, .map-column {
    flex: 100%;
  }
}

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
  .sound-wave {
    opacity: 0.3;
  }

  .sound-hero {
    min-height: 75vh;
    padding: 50px 15px 50px;
  }

  .sound-hero-title {
    font-size: 34px;
    line-height: 1.2;
  }

  .sound-scroll-section {
    padding: 50px 20px 60px;
    min-height: auto;
  }

  .sound-section-title {
    font-size: 24px;
  }

  .sound-testimonial-slider {
    padding: 35px 25px;
  }

  .sound-testimonial-text {
    font-size: 19px;
  }

  .location-eyebrow {
    font-size: 18px;
  }

  .location-contact {
    padding: 20px;
  }

  .map-container {
    height: 250px;
  }

  .tyas-heading-unique {
    font-size: 36px;
  }

  .tyas-text-unique {
    padding: 30px 20px;
  }

  .tyas-media-unique {
    height: 300px;
  }

  .tyas-quote-unique {
    padding: 0 20px;
  }

  .tyas-quote-text-unique {
    font-size: 18px;
  }
}

/* ============================================
   RESPONSIVE — 600px
   ============================================ */
@media (max-width: 600px) {
  .sound-wave {
    opacity: 0.1;
  }

  .sound-service-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .sound-service-label {
    font-size: 15px;
  }

  .sound-offering-image {
    min-height: unset;
    max-height: 300px;
  }

  .sound-offering-content {
    padding: 22px;
  }

  .sound-offering-content h3 {
    font-size: 22px;
  }

  .sound-offering-amount {
    font-size: 24px;
  }

  .sound-offering-pricing {
    padding: 0 22px 22px;
  }

  .sound-cta-text h2 {
    font-size: 24px;
  }

  .sound-cta-text p {
    font-size: 15px;
  }

  .sound-faq-question {
    padding: 18px 22px;
    font-size: 0.95rem;
  }

  .sound-faq-item.active .sound-faq-answer {
    padding: 0 22px 18px;
  }
}

/* ============================================
   RESPONSIVE — 480px
   ============================================ */
@media (max-width: 480px) {
  .sound-wave {
    display: none;
  }

  .sound-hero {
    padding: 40px 10px 20px;
  }

  .sound-hero-title {
    font-size: clamp(20px, 5vw, 26px);
  }

  .sound-hero-subtitle {
    font-size: 18px;
  }

  .sound-section-title {
    font-size: 22px;
  }

  .sound-btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  .sound-discover-card {
    padding: 25px 20px;
  }

  .sound-discover-icon {
    width: 80px;
    height: 80px;
  }

  .sound-terms-table th,
  .sound-terms-table td {
    padding: 10px 14px;
    font-size: 14px;
  }

  .location-showcase {
    min-height: auto;
  }

  .whatsapp-widget {
    bottom: 15px;
    right: 15px;
    padding: 8px 14px 8px 16px;
    font-size: 13px;
  }

  .whatsapp-label {
    display: none;
  }

  .whatsapp-icon {
    width: 44px;
    height: 44px;
  }
}
