﻿
:root{
  --primary:#135D66;
  --primary-dark:#0A3F47;
  --secondary:#E9F4F0;
  --secondary-dark:#D8ECE6;
  --accent:#F39F5A;
  --accent-dark:#D97D3A;
  --background:#F8FBFA;
  --surface:#FFFFFF;
  --text-primary:#1F2937;
  --text-light:#5B667A;
  --border-light:#E5E7EB;
}

.reveal-init{
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
  filter: saturate(0.95);
}

.reveal-init.reveal-slide-left{
  transform: translate3d(-38px, 0, 0);
}

.reveal-init.reveal-slide-right{
  transform: translate3d(38px, 0, 0);
}

.reveal-init.reveal-pop{
  transform: translate3d(0, 26px, 0) scale(0.97);
}

.reveal-init.reveal-visible{
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: saturate(1);
}

@media (prefers-reduced-motion: reduce){
  .reveal-init{
    opacity: 1;
    transform: none;
    transition: none;
    filter: none;
  }
}

html,body{ background: var(--background); color: var(--text-primary); }
body{ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

a{ color: var(--primary); transition: color 180ms ease, opacity 180ms ease; }
a:hover, a:focus{ color: var(--accent); text-decoration: none; }


.navbar-default{ background: transparent; border: 0; }
.navbar-default.small{ background: rgba(10, 63, 71, 0.9); }

.navbar-default .navbar-nav>li>a{
  color: rgba(255,255,255,0.92) !important;
  letter-spacing: .4px;
  transition: color 180ms ease, opacity 180ms ease;
}
.navbar-default.small .navbar-nav>li>a{ color: rgba(255,255,255,0.96) !important; }
.navbar-default .navbar-nav>li>a:hover{ color: var(--accent) !important; }


.navbar-default .navbar-nav > li > a.active::before,
.navbar-default .navbar-nav > li > .nav-link.active::before{
  background: var(--accent) !important;
}


.site-title h3 span{ color: var(--accent) !important; }


.btn-5{
  background: var(--primary) !important;
  border-color: transparent !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 24px rgba(19,93,102,0.18);
}
.btn-5:hover, .btn-5:focus{
  background: var(--primary-dark) !important;
}

.nav-cta a{
  background: var(--accent) !important;
  color: #ffffff !important;
  border-radius: 6px;
  margin-left: 8px;
}

.home-content-main{
  background: radial-gradient(circle at top right, rgba(243,159,90,0.15), transparent 45%),
              radial-gradient(circle at bottom left, rgba(19,93,102,0.18), transparent 42%);
}

.serviceBox{
  border: 1px solid var(--border-light);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(17,24,39,0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.serviceBox:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(17,24,39,0.1);
}

.work-counter{
  background: linear-gradient(135deg, rgba(10,63,71,0.95), rgba(19,93,102,0.95));
}


.service-box, .single-team, .pricing-table, .single-testimonial, .contact-box{
  background: var(--surface) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(17,24,39,0.06);
}


input, textarea, select{
  border-color: var(--border-light) !important;
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(46, 74, 107, 0.65) !important;
  box-shadow: 0 0 0 4px rgba(46, 74, 107, 0.14) !important;
  outline: none !important;
}


footer, .footer, #footer{
  background: var(--primary-dark) !important;
  color: rgba(255,255,255,0.92) !important;
}
footer a, .footer a, #footer a{ color: rgba(255,255,255,0.92) !important; }
footer a:hover, .footer a:hover, #footer a:hover{ color: var(--accent) !important; }


.therapist-cta-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.therapist-cta-row.team-actions{
  justify-content: center;
  gap: 12px;
}

.therapist-cta-row.team-actions .btn-5.whitebutton{
  margin: 0 !important;
  flex: 0 0 auto;
}

.therapist-row{
  margin-top: 20px;
}

.therapist-card{
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(17,24,39,0.06);
  overflow: hidden;
  margin-bottom: 24px;
}

.therapist-image-wrap{
  background: #eef2f7;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.therapist-image{
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
}

.therapist-card-body{
  padding: 24px;
}

.therapist-card-body h4{
  margin: 0 0 6px;
  color: var(--primary-dark);
  font-weight: 700;
}

.therapist-role{
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.therapist-card-body p{
  color: var(--text-primary);
}

@media (max-width: 767px){
  .therapist-image-wrap{
    min-height: 240px;
    padding: 12px;
  }
  .therapist-image{
    max-height: 300px;
  }
}

.main-page-content{
  display: flex;
  flex-direction: column;
}

#home{ order: 1; }
#home-intro{ order: 2; }
#service{ order: 3; }
#about{ order: 4; }
#profile{ order: 5; }
#self-esteem{ order: 6; }
#healing-flow{ order: 7; }
#contact{ order: 8; }

#service .service-grid{
  background: linear-gradient(180deg, #f4faf8 0%, #e8f3ef 100%);
}

#service .main-title h3{
  color: #0f4650;
}

#service .main-title p{
  color: #45646d;
}

#service .serviceBox{
  overflow: hidden;
  background: linear-gradient(165deg, rgba(8,45,52,0.92), rgba(19,93,102,0.84) 55%, rgba(24,115,104,0.76));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 22px 38px rgba(8,32,36,0.25);
  height: 100%;
  display: flex;
  flex-direction: column;
}

#service .serviceBox:before{
  background: linear-gradient(45deg, #f3a25f 49%, transparent 50%);
}

#service .serviceBox .service-count{
  color: #fff8ef;
  background: linear-gradient(140deg, #f3a25f 0%, #e48c49 45%, #d97d3a 100%);
}

#service .serviceBox .service-icon{
  color: rgba(255,232,204,0.5);
}

#service .serviceBox .title{
  color: #ffffff;
}

#service .service-art{
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 18px rgba(7,28,32,0.28);
}

#service .serviceBox .description{
  color: rgba(232,244,240,0.92);
  min-height: 0;
}

#service .service-grid > .container > .row:last-child{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

#service .service-grid > .container > .row:last-child > [class*="col-"]{
  float: none;
  display: flex;
  flex: 0 0 31%;
  max-width: 31%;
}

#service .serviceBox .service-content{
  flex: 1;
  display: flex;
  flex-direction: column;
}

#service #counter{
  margin-top: 40px;
  background-image: radial-gradient(circle at 85% 20%, rgba(243,159,90,0.22), transparent 42%),
                    linear-gradient(140deg, rgba(8,45,52,0.95), rgba(19,93,102,0.92) 52%, rgba(24,115,104,0.9));
}

#service #counter:after{
  background-color: rgba(4,28,32,0.36);
}

#service .coutitle::before{
  background: rgba(10,62,70,0.72);
}

#service .coutitle h3,
#service .coutitle p{
  color: #f6fdfa;
}

#service .work-statistics{
  margin-top: 16px;
  padding: 28px 14px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 16px 28px rgba(8,32,36,0.2);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

#service .work-statistics h3{
  color: #f6fdfa;
}

/* Keep the first finance label from visually touching the card edge. */
#service #fees .col-lg-7 > .col-lg-4:first-child .work-statistics h3{
  padding-right: 8px;
}

#service .stat-icon{
  color: #fff9f2;
  background: linear-gradient(140deg, #f3a25f 0%, #e48c49 100%);
}

#service .work-statistics .stat-icon::after{
  border-color: rgba(243,159,90,0.7);
}

#service .white-title h3::after,
#service .white-title h3 span::after{
  background-color: #f3a25f;
}

@media (max-width: 991px){
  #service .service-grid > .container > .row:last-child > [class*="col-"]{
    flex: 0 0 47%;
    max-width: 47%;
  }

  #service #counter{
    margin-top: 24px;
  }

  #service .coutitle{
    margin: 0 18px;
    padding: 0 18px;
  }
}

@media (max-width: 767px){
  #service .service-grid > .container > .row:last-child > [class*="col-"]{
    flex: 0 0 100%;
    max-width: 100%;
  }

  #service .service-grid{
    padding-top: 76px;
  }

  #service .work-statistics{
    margin-bottom: 20px;
  }

  #service .stat-icon{
    position: static;
    margin: 0 auto 12px;
  }

  #service .work-statistics h3{
    margin-top: 8px;
  }
}

#insurance{
  position: relative;
  background-image:
    linear-gradient(150deg, rgba(8,45,52,0.9), rgba(19,93,102,0.86) 55%, rgba(24,115,104,0.84)),
    url("../img/message.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#insurance .container{
  position: relative;
  z-index: 2;
}

#insurance .message-details h3{
  color: #f6fdfa;
  text-shadow: 0 6px 18px rgba(6,29,33,0.34);
}

#insurance .message-details .divider-white{
  background-color: var(--accent);
}

#insurance .insurance-list ul li{
  color: #f6fdfa;
  border-left: 3px solid var(--accent);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  background-color: rgba(8,45,52,0.5);
  box-shadow: 0 8px 16px rgba(5,24,27,0.16);
  border-radius: 6px;
}

#insurance .insurance-list ul li:hover{
  background-color: rgba(243,159,90,0.22);
}

@media (max-width: 991px){
  #insurance{
    background-attachment: scroll;
  }
}

#contact .no-padding-col{
  padding: 78px 52px 78px 36px;
}

#contact .no-padding-col-info.colors{
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(8,45,52,0.92), rgba(19,93,102,0.88) 42%, rgba(24,115,104,0.8));
}

#contact .no-padding-col-info.colors::before{
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -130px;
  background: radial-gradient(circle, rgba(243,159,90,0.34) 0%, rgba(243,159,90,0) 70%);
  pointer-events: none;
}

#contact .contact-top h3{
  color: #ffffff;
}

#contact .contact-top p{
  color: rgba(233,244,240,0.9);
}

#contact .contact-col-grid{
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(8,32,36,0.22);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

#contact .contact-col-grid h3{
  color: #f7fdfb;
}

#contact .contact-col-grid p{
  color: rgba(233,244,240,0.9);
}

#contact .contact-col-grid a{
  color: #F3B678 !important;
}

#contact .contact-col-grid a:hover,
#contact .contact-col-grid a:focus{
  color: #ffd1a4 !important;
}

#contact .contact-icon{
  color: #f6c38d;
}

.contact-form-panel{
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 34px 30px 28px;
  background: linear-gradient(150deg, rgba(8,45,52,0.9), rgba(19,93,102,0.86) 42%, rgba(24,115,104,0.78));
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 34px 58px rgba(8,32,36,0.38);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  isolation: isolate;
}

.contact-form-panel::before{
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -130px;
  right: -90px;
  background: radial-gradient(circle, rgba(243,159,90,0.5) 0%, rgba(243,159,90,0) 70%);
  pointer-events: none;
  animation: contactGlow 7s ease-in-out infinite alternate;
}

@keyframes contactGlow{
  0%{ transform: translate3d(0,0,0) scale(1); opacity: 0.8; }
  100%{ transform: translate3d(-18px,18px,0) scale(1.12); opacity: 1; }
}

.contact-form-header{
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.contact-form-header h3{
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
}

.contact-form-header p{
  margin: 0;
  color: rgba(233,244,240,0.88);
  font-size: 15px;
  line-height: 1.75;
}

.contact-modern-form{
  position: relative;
  z-index: 1;
}

.contact-field-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-field{
  margin-bottom: 14px;
}

.contact-field label{
  display: block;
  margin-bottom: 6px;
  color: #f6fdfa;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2px;
}

.contact-field input,
.contact-field textarea{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.34) !important;
  background: rgba(255,255,255,0.14);
  color: #ffffff !important;
  padding: 12px 14px;
  font-size: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-field textarea{
  min-height: 140px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder{
  color: rgba(241,250,246,0.65);
}

.contact-field input:focus,
.contact-field textarea:focus{
  background: rgba(255,255,255,0.2);
  border-color: rgba(243,159,90,0.95) !important;
  box-shadow: 0 0 0 4px rgba(243,159,90,0.16) !important;
  transform: translateY(-1px);
}

.contact-submit-btn{
  margin-top: 6px !important;
  border-radius: 10px !important;
  background: linear-gradient(90deg, #F39F5A 0%, #E98B45 100%) !important;
  box-shadow: 0 16px 30px rgba(243,159,90,0.28);
}

.contact-submit-btn:hover,
.contact-submit-btn:focus{
  background: linear-gradient(90deg, #E98B45 0%, #D97D3A 100%) !important;
}

@media (max-width: 1199px){
  #contact .no-padding-col{
    padding: 64px 36px 70px 30px;
  }
}

@media (max-width: 991px){
  #contact .no-padding-col{
    padding: 30px 24px 54px;
  }

  .contact-form-panel{
    padding: 28px 22px 24px;
  }

  .contact-form-header h3{
    font-size: 26px;
  }
}

@media (max-width: 767px){
  #contact .no-padding-col{
    padding: 18px 16px 34px;
  }

  .contact-form-panel{
    border-radius: 18px;
    padding: 24px 16px 20px;
  }

  .contact-form-header h3{
    font-size: 23px;
  }

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

#profile{
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#profile-ripples{
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/about.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  pointer-events: none;
}

#profile-ripples > canvas{
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.45;
}

.profile-ripple-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247,251,250,0.76), rgba(237,245,242,0.8));
  z-index: 1;
  pointer-events: none;
}

#profile .profile-content-wrap{
  position: relative;
  z-index: 3;
  padding: 86px 0 70px;
}

#profile .service-grid{
  background: transparent !important;
  z-index: 3 !important;
}

#profile .main-title{
  margin-bottom: 22px;
}

#profile .therapist-row{
  margin-top: 0;
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(10,63,71,0.14);
  border-radius: 18px;
  box-shadow: 0 22px 42px rgba(10, 43, 52, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 18px 14px;
}

#profile .therapist-image-wrap{
  min-height: 320px;
  height: 100%;
  border-radius: 14px;
  background: linear-gradient(180deg, #f4f8f7 0%, #eaf2ef 100%);
  overflow: hidden;
  padding: 0;
  box-shadow: inset 0 0 0 1px rgba(10,63,71,0.08);
}

#profile .therapist-image{
  width: 95%;
  height: 95%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}

#profile .therapist-card-body{
  height: 100%;
  padding: 26px 24px;
  border-radius: 14px;
}

#profile .therapist-card-body .btn-5.whitebutton{
  margin-top: 8px !important;
}

#home.home-water{
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #082b34;
}

#home.home-water #particles-js{
  position: absolute;
  inset: 0;
  background: url("../img/img1.webp") center center / cover no-repeat;
}

#home.home-water #particles-js > canvas{
  opacity: 0.62;
  mix-blend-mode: screen;
}

#hero-particles-canvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.water-hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(8, 29, 37, 0.66) 0%, rgba(12, 53, 61, 0.52) 60%, rgba(9, 45, 51, 0.72) 100%);
  z-index: 1;
  pointer-events: none;
}

.water-hero-content{
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.water-hero-text h2{
  color: #ffffff;
  font-size: 58px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 10px;
}

.water-hero-subline{
  color: rgba(255,255,255,0.95);
  font-size: 26px;
  line-height: 1.35;
  margin: 0 0 18px;
}

.water-hero-word{
  color: var(--accent);
  display: inline-block;
  min-width: 8ch;
  font-size: 1.18em;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: opacity 260ms ease, transform 260ms ease;
}

.water-hero-word.is-out{
  opacity: 0;
  transform: translateY(8px);
}

.water-hero-cta{
  justify-content: center;
}

#home-intro.home-reimagined{
  min-height: 88vh;
  height: auto;
  padding: 150px 0 80px;
  background:
    radial-gradient(circle at 80% 15%, rgba(243,159,90,0.3), transparent 36%),
    radial-gradient(circle at 18% 78%, rgba(19,93,102,0.22), transparent 32%),
    linear-gradient(165deg, #0b2732 0%, #11424b 48%, #1a5f65 100%);
  position: relative;
  overflow: hidden;
}

#home-intro.home-reimagined .home-content-main{
  display: block;
  height: auto;
  background: transparent;
  position: relative;
}

#home-intro.home-reimagined .split-hero-row{
  display: flex;
  align-items: stretch;
  gap: 24px;
  flex-wrap: nowrap;
}

#home-intro.home-reimagined .hero-left{
  text-align: left;
  padding: 8px 0;
}

#home-intro.home-reimagined .hero-kicker{
  color: rgba(255,255,255,0.84);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  margin: 0 0 14px;
  font-weight: 700;
}

#home-intro.home-reimagined .hero-left h2{
  color: #ffffff;
  font-size: 52px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 18px;
  max-width: 14ch;
}

#home-intro.home-reimagined .hero-subtext{
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  line-height: 1.8;
  max-width: 60ch;
  margin: 16px 0 0;
}

.hero-rotate-word{
  display: inline-block;
  min-width: 8ch;
  color: var(--accent-dark);
  transition: opacity 260ms ease, transform 260ms ease;
}

.hero-metric-row{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin: 8px 0 10px;
}

.hero-metric{
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-metric strong{
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-metric span{
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  letter-spacing: .4px;
}

.hero-rotate-word.is-out{
  opacity: 0;
  transform: translateY(10px);
}

.hero-cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
  align-items: center;
}

.hero-cta-row .btn-5.whitebutton{
  display: inline-block !important;
  width: auto !important;
  max-width: none !important;
  min-width: 170px;
  margin: 0 !important;
  flex: 0 0 auto;
  text-align: center;
}

.hero-ghost-btn{
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.55) !important;
  color: #ffffff !important;
}

.hero-pill-row{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.hero-pill{
  display: inline-block;
  color: #f4f7f8;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
}

.hero-panel{
  height: 100%;
  background: rgba(243,159,90,0.17);
  border: 1px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 22px 40px rgba(4,24,29,0.2);
}

.hero-panel h3{
  margin: 0 0 12px;
  color: #ffffff;
  font-weight: 700;
}

.hero-panel-list{
  margin: 0 0 14px 18px;
  padding: 0;
}

.hero-panel-list li{
  margin-bottom: 8px;
  color: rgba(255,255,255,0.93);
  line-height: 1.6;
}

.hero-contact-mini p{
  margin: 0 0 8px;
  color: rgba(255,255,255,0.92);
}

.hero-contact-mini a{
  color: #ffffff;
  font-weight: 600;
}

.hero-support-wrap{
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.3);
}

.hero-support-title{
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  letter-spacing: 1.1px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-ambient{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-ambient .orb{
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.75;
}

.hero-ambient .orb-1{
  width: 220px;
  height: 220px;
  right: 7%;
  top: 16%;
  background: radial-gradient(circle, rgba(243,159,90,0.45), rgba(243,159,90,0.04));
  animation: heroOrbA 10s ease-in-out infinite;
}

.hero-ambient .orb-2{
  width: 300px;
  height: 300px;
  left: -70px;
  top: 42%;
  background: radial-gradient(circle, rgba(19,93,102,0.28), rgba(19,93,102,0.02));
  animation: heroOrbB 12s ease-in-out infinite;
}

.hero-ambient .orb-3{
  width: 130px;
  height: 130px;
  right: 36%;
  top: 12%;
  background: radial-gradient(circle, rgba(86,182,194,0.34), rgba(86,182,194,0.02));
  animation: heroOrbC 8s ease-in-out infinite;
}

@keyframes heroOrbA{
  0%{ transform: translate3d(0,0,0); }
  50%{ transform: translate3d(-10px,12px,0); }
  100%{ transform: translate3d(0,0,0); }
}

@keyframes heroOrbB{
  0%{ transform: translate3d(0,0,0); }
  50%{ transform: translate3d(12px,-14px,0); }
  100%{ transform: translate3d(0,0,0); }
}

@keyframes heroOrbC{
  0%{ transform: scale(1); }
  50%{ transform: scale(1.12); }
  100%{ transform: scale(1); }
}

#home-intro.home-reimagined .container{
  position: relative;
  z-index: 1;
}

#healing-flow{
  padding: 70px 0 85px;
  background: linear-gradient(180deg, #f8fbfa 0%, #edf5f2 100%);
}

#healing-ripples{
  position: relative;
  width: 100%;
  min-height: 720px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(17,24,39,0.15);
  background-image: url("../img/slogan.webp");
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

#healing-ripples canvas{
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

@media (max-width: 991px){
  .water-hero-text h2{
    font-size: 46px;
  }

  .water-hero-subline{
    font-size: 22px;
  }

  #home-intro.home-reimagined{
    padding: 125px 0 55px;
  }

  #home-intro.home-reimagined .hero-left h2{
    font-size: 38px;
    max-width: none;
  }

  .hero-metric-row{
    grid-template-columns: 1fr 1fr;
  }

  .hero-panel{
    margin-top: 24px;
  }
}

@media (max-width: 767px){
  .water-hero-content{
    min-height: 92vh;
    padding-top: 95px;
    padding-bottom: 40px;
  }

  .water-hero-text h2{
    font-size: 34px;
  }

  .water-hero-subline{
    font-size: 19px;
  }

  .water-hero-cta{
    justify-content: flex-start;
  }

  #home-intro.home-reimagined .split-hero-row{
    display: block;
  }

  #home-intro.home-reimagined .split-hero-row > [class*="col-"]{
    width: 100%;
    float: none;
  }

  #home-intro.home-reimagined{
    padding: 108px 0 46px;
  }

  #home-intro.home-reimagined .hero-left{
    padding: 0;
  }

  .hero-panel{
    width: 100%;
    max-width: none;
    padding: 22px 18px;
    margin-top: 16px;
  }

  .hero-contact-mini a{
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-cta-row .btn-5.whitebutton{
    min-width: 0;
    width: 100% !important;
  }

  #profile .profile-content-wrap{
    padding: 62px 0 48px;
  }

  #profile .therapist-row{
    display: block;
    padding: 12px;
  }

  #profile .therapist-image-wrap{
    min-height: 420px;
    margin-bottom: 12px;
  }

  #home-intro.home-reimagined .hero-left h2{
    font-size: 30px;
  }

  .hero-metric-row{
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  #healing-flow{
    padding: 55px 0 65px;
  }

  #healing-ripples{
    min-height: 300px;
  }
}
