/* ==========================================================================
   Dr. Simple's Therapy-X Soulful Healing
   Design System & Custom Styles
   Elevated for Luxury, Dignity, Privacy, Calmness & High Trust
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Color Palette - Luxury Therapeutic & Calming */
  --tx-teal-deep: #133331;
  --tx-teal: #1E4F4C;
  --tx-teal-light: #2D6E6A;
  --tx-sage: #4E7C73;
  --tx-sage-pale: #EDF4F1;
  --tx-sage-subtle: #F5F8F6;
  --tx-gold: #C59868;
  --tx-gold-light: #EADBCB;
  --tx-warm-sand: #DDB892;
  --tx-terracotta: #B9664D;
  --tx-bg: #FCFAF7;
  --tx-surface: #FFFFFF;
  --tx-border: #E8E3DA;
  --tx-border-subtle: #F0ECE4;
  --tx-text-main: #1F2A29;
  --tx-text-muted: #536462;
  --tx-text-light: #7A8C8A;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Outfit', system-ui, -apple-system, sans-serif;

  /* Premium Micro-Shadows */
  --shadow-subtle: 0 2px 12px rgba(19, 51, 49, 0.04);
  --shadow-card: 0 6px 24px rgba(19, 51, 49, 0.06);
  --shadow-hover: 0 16px 38px rgba(19, 51, 49, 0.1);
  --shadow-elevated: 0 24px 60px rgba(19, 51, 49, 0.12);

  /* Border Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* Base Reset & Smooth Rendering */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--tx-bg);
  color: var(--tx-text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 75px;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

h1, h2, h3, .font-serif {
  font-family: var(--font-serif);
  color: var(--tx-teal-deep);
  letter-spacing: -0.015em;
  font-weight: 600;
}

h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--tx-teal-deep);
  font-weight: 600;
  letter-spacing: -0.01em;
}

a {
  color: var(--tx-teal);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

a:hover {
  color: var(--tx-teal-deep);
}

/* Top Reassurance Trust Bar */
.trust-topbar {
  background-color: var(--tx-teal-deep);
  color: #D3E4E0;
  font-size: 0.83rem;
  letter-spacing: 0.025em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-topbar a {
  color: #E6F0ED;
  font-weight: 500;
}
.trust-topbar a:hover {
  color: #FFFFFF;
}

/* Navbar - Streamlined, Luxury & Floating Glassmorphism */
.navbar-therapyx {
  background-color: rgba(252, 250, 247, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--tx-border);
  padding: 12px 0;
  transition: all 0.3s ease;
}

.navbar-therapyx.sticky-top {
  box-shadow: 0 4px 25px rgba(19, 51, 49, 0.04);
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--tx-teal-deep), var(--tx-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(19, 51, 49, 0.2);
  flex-shrink: 0;
}

.brand-text-main {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--tx-teal-deep);
  line-height: 1.1;
  display: block;
}

.brand-text-sub {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--tx-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

/* Nav links */
.nav-link-tx {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--tx-text-main);
  padding: 8px 12px !important;
  border-radius: var(--radius-xs);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
}

.nav-link-tx:hover,
.nav-link-tx.active {
  color: var(--tx-teal-deep);
  background-color: var(--tx-sage-pale);
}

/* Luxury Dropdown Menu Styling */
.dropdown-menu-tx {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--tx-border) !important;
  border-radius: var(--radius-md);
  padding: 8px 0;
  box-shadow: 0 14px 40px rgba(19, 51, 49, 0.12) !important;
  min-width: 250px;
  animation: dropdownFadeIn 0.2s ease-out;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-menu-tx .dropdown-item {
  padding: 9px 18px;
  color: var(--tx-text-main);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.dropdown-menu-tx .dropdown-item:hover {
  background-color: var(--tx-sage-pale);
  color: var(--tx-teal-deep);
  padding-left: 22px;
}

/* Streamlined Compact CTA Nav Button */
.btn-cta-nav {
  background: linear-gradient(135deg, var(--tx-teal-deep), var(--tx-teal));
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(19, 51, 49, 0.22);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.btn-cta-nav:hover {
  background: linear-gradient(135deg, var(--tx-teal), var(--tx-teal-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(19, 51, 49, 0.3);
}

/* Hero Section & Glowing Ambiance */
.hero-section {
  position: relative;
  background: 
    radial-gradient(circle at 85% 18%, rgba(213, 233, 226, 0.75) 0%, rgba(252, 250, 247, 0) 55%),
    radial-gradient(circle at 10% 70%, rgba(221, 184, 146, 0.18) 0%, rgba(252, 250, 247, 0) 45%),
    var(--tx-bg);
  padding: 85px 0 65px;
  overflow: hidden;
}

.hero-ambient-glow {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(78, 124, 115, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
}

.badge-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FFFFFF;
  color: var(--tx-teal-deep);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
  border: 1px solid var(--tx-border);
  box-shadow: 0 4px 14px rgba(19, 51, 49, 0.04);
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2D9D78;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(45, 157, 120, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(45, 157, 120, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(45, 157, 120, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(45, 157, 120, 0); }
}

.highlight-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--tx-teal);
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--tx-teal-deep);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.15rem;
  }
}

.hero-subtitle {
  font-size: 1.14rem;
  color: var(--tx-text-muted);
  max-width: 590px;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.75;
}

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

/* Metric mini-box */
.metric-icon-mini {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--tx-sage-pale);
  color: var(--tx-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Hero Photographic Showcase & Floating Cards */
.hero-image-composition {
  position: relative;
  padding: 15px;
}

.main-hero-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(19, 51, 49, 0.15);
  border: 3px solid #FFFFFF;
}

.hero-main-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.main-hero-card:hover .hero-main-img {
  transform: scale(1.03);
}

.floating-badge-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 12px 18px;
  z-index: 5;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.badge-card-top {
  top: -10px;
  right: -10px;
  animation: floatTop 4s ease-in-out infinite alternate;
}

.badge-card-bottom {
  bottom: -15px;
  left: -10px;
  animation: floatBottom 4.5s ease-in-out infinite alternate;
}

@keyframes floatTop {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

@keyframes floatBottom {
  0% { transform: translateY(0px); }
  100% { transform: translateY(8px); }
}

.floating-badge-card:hover {
  transform: translateY(-4px) scale(1.02);
  background: #FFFFFF;
}

.badge-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-avatar-wrap img {
  border: 2px solid var(--tx-teal);
}

/* About Photo Composition */
.photo-frame-curved {
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid #FFFFFF;
  position: relative;
}

.photo-quote-pill {
  position: absolute;
  bottom: -14px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid var(--tx-border);
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--tx-teal-deep);
  text-align: center;
}

.pillar-micro-card {
  background: var(--tx-surface);
  border: 1px solid var(--tx-border);
  border-radius: var(--radius-sm);
  padding: 14px;
  height: 100%;
  transition: all 0.25s ease;
}

.pillar-micro-card:hover {
  border-color: var(--tx-teal);
  box-shadow: var(--shadow-subtle);
  transform: translateY(-2px);
}

/* Luxury Gold & Button Styles */
.btn-gold-tx {
  background: linear-gradient(135deg, #DFB794, #C59868);
  color: #1A3F3D !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 16px rgba(197, 152, 104, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gold-tx:hover {
  background: linear-gradient(135deg, #EADBCB, #DFB794);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(197, 152, 104, 0.45);
}

/* Doctor Photo Card */
.doctor-photo-card {
  border: 4px solid #FFFFFF;
}

.doctor-portrait-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.doctor-photo-card:hover .doctor-portrait-img {
  transform: scale(1.03);
}

.doctor-photo-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(19, 51, 49, 0.92) 0%, rgba(19, 51, 49, 0) 100%);
  padding: 30px 24px 20px;
}

.doctor-photo-badge .badge-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #DFB794;
  font-weight: 700;
  display: block;
}

/* Concern Pill Card Enhancements */
.dot-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--tx-gold);
  flex-shrink: 0;
}

.btn-primary-tx {
  background: linear-gradient(135deg, var(--tx-teal-deep), var(--tx-teal));
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.96rem;
  padding: 12px 26px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 20px rgba(19, 51, 49, 0.22);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-tx:hover {
  background: linear-gradient(135deg, var(--tx-teal), var(--tx-teal-light));
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(19, 51, 49, 0.3);
}

.btn-outline-tx {
  background-color: #FFFFFF;
  color: var(--tx-teal-deep);
  border: 1.5px solid var(--tx-border);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.btn-outline-tx:hover {
  background-color: var(--tx-sage-pale);
  border-color: var(--tx-sage);
  color: var(--tx-teal-deep);
  transform: translateY(-1px);
}

/* Trust Statement Banner */
.trust-strip {
  background-color: var(--tx-surface);
  border-top: 1px solid var(--tx-border);
  border-bottom: 1px solid var(--tx-border);
  padding: 24px 0;
}

.trust-pillar {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--tx-sage-pale);
  color: var(--tx-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Section Header Styles */
.section-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tx-teal);
  display: inline-block;
  margin-bottom: 10px;
  background-color: var(--tx-sage-pale);
  padding: 4px 12px;
  border-radius: 20px;
}

.section-heading {
  font-size: 2.35rem;
  margin-bottom: 14px;
  line-height: 1.25;
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 1.85rem;
  }
}

.section-desc {
  color: var(--tx-text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  line-height: 1.7;
}

/* Elevated Cards */
.card-therapyx {
  background-color: var(--tx-surface);
  border: 1px solid var(--tx-border);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-therapyx:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--tx-sage);
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--tx-sage-pale), #E4ECE8);
  color: var(--tx-teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
}

.concern-pill-card {
  background: var(--tx-surface);
  border: 1px solid var(--tx-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.25s ease;
  height: 100%;
}

.concern-pill-card:hover {
  border-color: var(--tx-teal);
  box-shadow: var(--shadow-subtle);
  transform: translateY(-3px);
}

/* Specialist Highlight Banner */
.specialist-highlight-box {
  background: linear-gradient(135deg, #0D3533 0%, #154542 50%, #1C5450 100%);
  border-radius: var(--radius-xl);
  color: #FFFFFF;
  padding: 60px 52px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(13, 53, 51, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.highlight-ambient-pattern {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 183, 148, 0.22) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.specialist-box-image-wrap {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.services-showcase-section {
  background: linear-gradient(180deg, rgba(237, 244, 241, 0.5) 0%, #FFFFFF 100%);
  border-top: 1px solid var(--tx-border);
  border-bottom: 1px solid var(--tx-border);
}

@media (max-width: 768px) {
  .specialist-highlight-box {
    padding: 34px 22px;
  }
}

/* Treatment Journey Process Steps */
.process-step-card {
  background-color: var(--tx-surface);
  border: 1px solid var(--tx-border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  position: relative;
  height: 100%;
  transition: all 0.25s ease;
}

.process-step-card:hover {
  border-color: var(--tx-sage);
  transform: translateY(-3px);
  box-shadow: var(--shadow-subtle);
}

.process-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tx-teal-deep), var(--tx-teal));
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* Native Accessible FAQ Accordion */
.faq-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--tx-surface);
  border: 1px solid var(--tx-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item[open] {
  border-color: var(--tx-teal);
  box-shadow: var(--shadow-subtle);
}

.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--tx-teal-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--tx-teal);
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 24px 22px;
  color: var(--tx-text-muted);
  font-size: 0.98rem;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  padding-top: 14px;
  line-height: 1.7;
}

/* Privacy Alert Box */
.privacy-notice-box {
  background-color: #FAF5EE;
  border-left: 4px solid var(--tx-gold);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.92rem;
  color: #554432;
  margin-bottom: 24px;
}

/* Doctor Profile Cards */
.doctor-portrait-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 4px solid #FFFFFF;
  background-color: var(--tx-sage-pale);
}

.doctor-portrait-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Discreet Appointment Form */
.form-card-therapyx {
  background: var(--tx-surface);
  border: 1px solid var(--tx-border);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-card);
}

@media (max-width: 768px) {
  .form-card-therapyx {
    padding: 24px 18px;
  }
}

.form-label-tx {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--tx-teal-deep);
  margin-bottom: 6px;
}

.form-control-tx, .form-select-tx {
  border: 1.5px solid var(--tx-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.96rem;
  color: var(--tx-text-main);
  background-color: #FFFFFF;
  transition: all 0.2s ease;
}

.form-control-tx:focus, .form-select-tx:focus {
  border-color: var(--tx-teal);
  box-shadow: 0 0 0 4px rgba(30, 79, 76, 0.12);
  outline: none;
}

/* Mobile Floating Bottom Bar */
.mobile-floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--tx-border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
  z-index: 1040;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

@media (min-width: 992px) {
  .mobile-floating-bar {
    display: none !important;
  }
}

.floating-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}

.btn-float-call {
  background-color: var(--tx-sage-pale);
  color: var(--tx-teal);
  border: 1px solid rgba(80, 124, 116, 0.2);
}

.btn-float-whatsapp {
  background-color: #E8F5E9;
  color: #1E7E34;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.btn-float-book {
  background-color: var(--tx-teal);
  color: #FFFFFF;
}

/* Footer */
.footer-therapyx {
  background-color: var(--tx-teal-deep);
  color: #D5E2E0;
  padding: 70px 0 30px;
  font-size: 0.94rem;
}

.footer-therapyx h4, .footer-therapyx h5 {
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 1.06rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-therapyx a {
  color: #D5E2E0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-therapyx a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer-disclaimer-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.86rem;
  color: #B4C7C4;
  margin-top: 40px;
}

/* Subtle SVG & Illustration styling */
.illustration-svg {
  max-width: 100%;
  height: auto;
}
