/* ✅ home.css — version typography refined / mobile professional */
:root{
  --hs-primary:#0b2c8a;
  --hs-primary-2:#1237a6;
  --hs-accent:#2fc3cf;
  --hs-accent-2:#1cb8c7;
  --hs-warm:#f37438;

  --hs-ink:#1a2e4f;
  --hs-ink-soft:#30445f;
  --hs-muted:#5f6f86;

  --hs-bg:#f6f7fb;
  --hs-surface:#ffffff;
  --hs-surface-2:#f1f3f7;

  --hs-border:rgba(10,20,40,.10);
  --hs-shadow:0 12px 35px rgba(12,24,64,.12);
  --hs-shadow-soft:0 10px 25px rgba(12,24,64,.08);

  --hs-radius:18px;
  --hs-radius-sm:14px;

  --hs-container:1200px;
}

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

body{
  font-family:"Inter","Segoe UI",Roboto,Arial,sans-serif;
  font-size:15px;
  line-height:1.65;
  color:var(--hs-ink);
  background:var(--hs-bg);
}

.hs-home{
  background:var(--hs-bg);
  color:var(--hs-ink);
}

.hs-home .main{
  overflow:hidden;
}

.hs-home .section{
  padding:64px 0;
}

.hs-home .container{
  max-width:var(--hs-container);
}

.hs-home h1,
.hs-home h2,
.hs-home h3,
.hs-home h4,
.hs-home h5,
.hs-home h6{
  margin-top:0;
  color:var(--hs-ink);
  line-height:1.2;
}

.hs-home p{
  font-size:15px;
  line-height:1.75;
  color:var(--hs-muted);
}

.hs-home .section-title{
  margin-bottom:34px;
  text-align:center;
}

.hs-home .section-title h2{
  font-size:clamp(1.9rem, 2.7vw, 2.7rem);
  font-weight:800;
  letter-spacing:-0.02em;
  margin-bottom:10px;
}

.hs-home .section-title p{
  max-width:760px;
  margin:0 auto;
  color:var(--hs-muted);
  font-size:1rem;
  line-height:1.75;
}

.hs-accent{
  color:var(--hs-accent);
}

/* cards */
.hs-card{
  background:var(--hs-surface);
  border:1px solid var(--hs-border);
  border-radius:var(--hs-radius);
  box-shadow:var(--hs-shadow-soft);
  overflow:hidden;
}

.hs-hover{
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.hs-hover:hover{
  transform:translateY(-4px);
  box-shadow:var(--hs-shadow);
  border-color:rgba(11,44,138,.20);
}

/* HERO FIXED — premium compact */
#hero.hs-hero-fixed{
  position: relative;
  padding: 0;
  min-height: 620px;
  height: 66vh;
  max-height: 760px;
  background: #0b1638;
  overflow: hidden;
}

#hero.hs-hero-fixed .hs-hero-media{
  position: absolute;
  inset: 0;
  z-index: 1;
}

#hero.hs-hero-fixed .hs-hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

#hero.hs-hero-fixed .hs-hero-overlay{
  position: absolute;
  inset: 0;
  background:
          linear-gradient(90deg, rgba(8,16,38,.72) 0%, rgba(8,16,38,.46) 42%, rgba(8,16,38,.14) 100%),
          linear-gradient(180deg, rgba(6,12,28,.08) 0%, rgba(6,12,28,.24) 100%);
}

#hero.hs-hero-fixed .hs-hero-content{
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
}

#hero.hs-hero-fixed .hs-hero-wrap{
  width: 100%;
  max-width: var(--hs-container);
  margin: 0 auto;
  padding: 88px 18px 54px;
}

#hero.hs-hero-fixed .hs-hero-box{
  max-width: 620px;
  color: #fff;
}

#hero.hs-hero-fixed .hs-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: #ffffff;
  font-size: .84rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  margin-bottom: 14px;
}

#hero.hs-hero-fixed .hs-badge i{
  color: #dffcff;
}

#hero.hs-hero-fixed .hs-hero-box h1{
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 10px 26px rgba(0,0,0,.22);
}

#hero.hs-hero-fixed .hs-hero-box p{
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.88);
  max-width: 560px;
}

#hero.hs-hero-fixed .hs-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

#hero.hs-hero-fixed .hs-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 700;
  transition: all .25s ease;
  border: 1px solid transparent;
}

#hero.hs-hero-fixed .hs-btn-primary{
  background: linear-gradient(135deg, var(--hs-warm), #ff9a62);
  color: #0b1220;
  box-shadow: 0 16px 34px rgba(243,116,56,.24);
}

#hero.hs-hero-fixed .hs-btn-primary:hover{
  transform: translateY(-2px);
  filter: brightness(.98);
}

#hero.hs-hero-fixed .hs-btn-ghost{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.20);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

#hero.hs-hero-fixed .hs-btn-ghost:hover{
  background: rgba(255,255,255,.14);
  transform: translateY(-2px);
}

#hero.hs-hero-fixed .hs-btn-video{
  background: rgba(47,195,207,.16);
  border-color: rgba(47,195,207,.24);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

#hero.hs-hero-fixed .hs-btn-video:hover{
  background: rgba(47,195,207,.22);
  color: #ffffff;
  transform: translateY(-2px);
}

#hero.hs-hero-fixed .hs-hero-trust{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#hero.hs-hero-fixed .hs-trust-item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  font-size: .82rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

#hero.hs-hero-fixed .hs-trust-item i{
  color: #ffffff;
  font-size: .9rem;
}

#hero.hs-hero-fixed .hs-hero-scroll{
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 4;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  transition: all .25s ease;
}

#hero.hs-hero-fixed .hs-hero-scroll:hover{
  transform: translateX(-50%) translateY(2px);
  background: rgba(255,255,255,.18);
  color: #fff;
}

/* Large desktop */
@media (min-width: 1600px){
  #hero.hs-hero-fixed{
    min-height: 600px;
    height: 68vh;
    max-height: 700px;
  }
}

/* Tablet */
@media (max-width: 992px){
  #hero.hs-hero-fixed{
    min-height: 520px;
    height: 64vh;
    max-height: 620px;
  }

  #hero.hs-hero-fixed .hs-hero-wrap{
    padding: 84px 18px 52px;
  }

  #hero.hs-hero-fixed .hs-hero-box{
    max-width: 92%;
  }

  #hero.hs-hero-fixed .hs-hero-box h1{
    font-size: 2.3rem;
  }
}

/* Mobile */
@media (max-width: 576px){
  #hero.hs-hero-fixed{
    min-height: 430px;
    height: 52vh;
    max-height: 500px;
  }

  #hero.hs-hero-fixed .hs-hero-overlay{
    background:
            linear-gradient(180deg, rgba(8,16,38,.16) 0%, rgba(8,16,38,.50) 38%, rgba(8,16,38,.82) 100%);
  }

  #hero.hs-hero-fixed .hs-hero-content{
    align-items: flex-end;
  }

  #hero.hs-hero-fixed .hs-hero-wrap{
    padding: 84px 14px 56px;
  }

  #hero.hs-hero-fixed .hs-badge{
    font-size: .72rem;
    padding: 6px 10px;
    margin-bottom: 8px;
  }

  #hero.hs-hero-fixed .hs-hero-box h1{
    font-size: 1.7rem;
    line-height: 1.06;
    margin-bottom: 8px;
  }

  #hero.hs-hero-fixed .hs-hero-box p{
    font-size: .88rem;
    line-height: 1.55;
    margin-bottom: 12px;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  #hero.hs-hero-fixed .hs-hero-actions{
    gap: 8px;
    margin-bottom: 10px;
  }

  #hero.hs-hero-fixed .hs-btn{
    min-height: 38px;
    padding: 8px 11px;
    font-size: .80rem;
  }

  #hero.hs-hero-fixed .hs-hero-trust{
    gap: 7px;
  }

  #hero.hs-hero-fixed .hs-trust-item{
    font-size: .70rem;
    padding: 6px 8px;
  }

  #hero.hs-hero-fixed .hs-hero-scroll{
    width: 34px;
    height: 34px;
    bottom: 12px;
  }
}

/* Featured services */
#featured-services{
  background:var(--hs-surface-2) !important;
}

.hs-treatment{
  border-radius:var(--hs-radius-sm);
  overflow:hidden;
  background:var(--hs-surface);
  border:1px solid var(--hs-border);
  box-shadow:var(--hs-shadow-soft);
}

.hs-treatment .member-img img{
  width:100%;
  height:160px;
  object-fit:cover;
  transition:transform .35s ease, filter .35s ease;
}

.hs-treatment:hover .member-img img{
  transform:scale(1.04);
  filter:saturate(1.05);
}

.hs-treatment .member-info{
  padding:12px;
  text-align:center;
}

.hs-treatment .member-info span{
  display:block;
  font-size:.92rem;
  font-weight:700;
  line-height:1.45;
  color:var(--hs-ink);
}

/* CTA */
#call-to-action{
  position:relative;
  background:
          radial-gradient(900px 500px at 20% 30%, rgba(243,116,56,.22), transparent 55%),
          linear-gradient(135deg, #0b2c8a, #091a45);
  color:#fff;
  overflow:hidden;
}

#call-to-action h3{
  font-size:clamp(1.5rem, 2.5vw, 2.3rem);
  font-weight:800;
  letter-spacing:-.02em;
  color:#fff;
}

#call-to-action p{
  color:rgba(255,255,255,.88);
  max-width:900px;
  margin:10px auto;
  font-size:1rem;
}

#call-to-action .cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 22px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--hs-warm), #ff9a62);
  color:#0b1220;
  font-weight:700;
  font-size:.95rem;
  text-decoration:none;
  box-shadow:0 18px 40px rgba(243,116,56,.24);
  transition:.25s ease;
}

#call-to-action .cta-btn:hover{
  transform:translateY(-2px);
  filter:brightness(.98);
}

/* About */
#about{
  background:var(--hs-surface-2) !important;
}

#about .content h2{
  font-size:clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight:800;
  letter-spacing:-.02em;
}

#about .content .fst-italic{
  color:var(--hs-muted);
  font-size:15px;
  line-height:1.8;
}

#about .content ul{
  list-style:none;
  padding-left:0;
  margin:18px 0 0;
  display:grid;
  gap:10px;
}

#about .content ul li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:12px;
  border:1px solid var(--hs-border);
  border-radius:14px;
  background:rgba(255,255,255,.6);
  font-size:14.5px;
  line-height:1.7;
}

#about .content ul li i{
  color:var(--hs-warm);
  margin-top:2px;
}

#about .position-relative .glightbox.pulsating-play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:76px;
  height:76px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(0,0,0,.18);
  backdrop-filter:blur(10px);
}

#about .position-relative .glightbox.pulsating-play-btn::before{
  content:"";
  width:0;
  height:0;
  border-left:16px solid #fff;
  border-top:11px solid transparent;
  border-bottom:11px solid transparent;
  margin-left:4px;
}

#about .position-relative .glightbox.pulsating-play-btn::after{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.28);
  animation:hsPulse 1.8s infinite;
}

/* Stats */
#stats{
  background:var(--hs-surface);
}

#stats .stats-item{
  border-radius:var(--hs-radius-sm);
  border:1px solid var(--hs-border);
  background:#fff;
  box-shadow:var(--hs-shadow-soft);
  padding:18px 16px;
  gap:14px;
  transition:.25s ease;
}

#stats .stats-item:hover{
  transform:translateY(-3px);
  box-shadow:var(--hs-shadow);
}

#stats .stats-item i{
  font-size:30px;
  color:var(--hs-primary);
  background:rgba(11,44,138,.08);
  border:1px solid rgba(11,44,138,.15);
  width:54px;
  height:54px;
  border-radius:16px;
  display:grid;
  place-items:center;
}

#stats .stats-item span{
  font-weight:800;
  font-size:1.35rem;
  color:var(--hs-ink);
}

#stats .stats-item p{
  margin:0;
  color:var(--hs-muted);
  font-weight:600;
  font-size:.93rem;
}

/* Services */
#services{
  background:var(--hs-surface-2) !important;
}

#services .service-item{
  border-radius:var(--hs-radius);
  border:1px solid var(--hs-border);
  background:#fff;
  padding:22px 20px;
  box-shadow:var(--hs-shadow-soft);
  transition:.25s ease;
  height:100%;
}

#services .service-item:hover{
  transform:translateY(-4px);
  box-shadow:var(--hs-shadow);
}

#services .service-item .icon{
  width:58px;
  height:58px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:rgba(243,116,56,.12);
  border:1px solid rgba(243,116,56,.22);
  margin-bottom:14px;
}

#services .service-item .icon i{
  font-size:24px;
  color:var(--hs-warm);
}

#services .service-item h3{
  font-weight:750;
  letter-spacing:-.01em;
  font-size:1.06rem;
  margin-bottom:10px;
}

#services .service-item p{
  color:var(--hs-muted);
  margin:0;
  font-size:.95rem;
  line-height:1.75;
}

/* Tabs */
#tabs{
  background:var(--hs-surface);
}

#tabs .nav-tabs{
  border:0;
  gap:10px;
}

#tabs .nav-tabs .nav-link{
  border:1px solid var(--hs-border);
  border-radius:14px;
  padding:11px 14px;
  font-weight:700;
  font-size:.95rem;
  color:var(--hs-ink);
  background:rgba(255,255,255,.8);
  transition:.2s ease;
}

#tabs .nav-tabs .nav-link:hover{
  transform:translateY(-2px);
  box-shadow:var(--hs-shadow-soft);
}

#tabs .nav-tabs .nav-link.active{
  background:linear-gradient(135deg, rgba(11,44,138,.12), rgba(243,116,56,.10));
  border-color:rgba(11,44,138,.18);
  color:var(--hs-primary);
}

#tabs .tab-content{
  border-radius:var(--hs-radius);
  border:1px solid var(--hs-border);
  background:#fff;
  box-shadow:var(--hs-shadow-soft);
  padding:22px 20px;
}

#tabs .details h3{
  font-size:1.35rem;
  font-weight:800;
  letter-spacing:-.01em;
}

#tabs .details p{
  color:var(--hs-muted);
  font-size:.96rem;
  line-height:1.8;
}

#tabs img{
  border-radius:16px;
  border:1px solid var(--hs-border);
  box-shadow:var(--hs-shadow-soft);
}

/* Testimonials */
.hs-testimonials-soft{
  background:var(--hs-surface-2) !important;
}

.hs-swiper-card .swiper-slide{
  border-radius:var(--hs-radius);
  overflow:hidden;
  border:1px solid var(--hs-border);
  box-shadow:var(--hs-shadow-soft);
  background:#fff;
  transition:.25s ease;
}

.hs-swiper-card .swiper-slide:hover{
  transform:translateY(-4px);
  box-shadow:var(--hs-shadow);
}

.hs-swiper-card .testimonial-item{
  position:relative;
  padding:18px;
}

.hs-swiper-card .testimonial-item p{
  color:var(--hs-muted);
  margin:12px 0 0;
  font-size:.95rem;
  line-height:1.75;
}

.hs-testi-play{
  position:absolute;
  top:86px;
  left:50%;
  transform:translate(-50%, -50%);
  width:52px;
  height:52px;
  border-radius:999px;
  background:rgba(0,0,0,.38);
  border:1px solid rgba(255,255,255,.28);
  backdrop-filter:blur(8px);
  z-index:3;
}

.hs-testi-play::before{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-40%, -50%);
  width:0;
  height:0;
  border-left:14px solid #fff;
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
}

/* Clinics */
#clinics{
  background:#fff !important;
}

#clinics .team-member{
  border-radius:var(--hs-radius);
  overflow:hidden;
  border:1px solid var(--hs-border);
  box-shadow:var(--hs-shadow-soft);
  background:#fff;
  transition:.25s ease;
  height:100%;
}

#clinics .team-member:hover{
  transform:translateY(-4px);
  box-shadow:var(--hs-shadow);
}

#clinics .member-img img{
  width:100%;
  height:160px;
  object-fit:cover;
}

#clinics .member-info h4{
  font-weight:750;
  font-size:1rem;
  line-height:1.45;
  margin:0;
}

/* Client testimonials */
#testimonials-clients{
  background:var(--hs-surface-2) !important;
}

#testimonials-clients .testimonial-item{
  border-radius:var(--hs-radius);
  border:1px solid var(--hs-border);
  box-shadow:var(--hs-shadow-soft);
  background:#fff;
  padding:18px;
  height:100%;
}

#testimonials-clients .testimonial-item h3{
  font-weight:750;
  font-size:1.05rem;
  letter-spacing:-.01em;
  margin:6px 0 12px;
  color:var(--hs-ink);
}

#testimonials-clients .testimonial-item p{
  color:var(--hs-muted);
  margin:0;
  font-size:.95rem;
  line-height:1.8;
}

/* Gallery */
#gallery{
  background:var(--hs-surface);
}

#gallery .swiper-slide img{
  border-radius:16px;
  border:1px solid var(--hs-border);
  box-shadow:var(--hs-shadow-soft);
  transition:.25s ease;
}

#gallery .swiper-slide:hover img{
  transform:translateY(-3px);
  box-shadow:var(--hs-shadow);
}

/* Old FAQ neutralized if still present */
#faq{
  background:var(--hs-surface-2) !important;
}

#faq .faq-container{
  border-radius:var(--hs-radius);
  border:1px solid var(--hs-border);
  background:#fff;
  box-shadow:var(--hs-shadow-soft);
  overflow:hidden;
}

#faq .faq-item{
  padding:18px;
  border-bottom:1px solid var(--hs-border);
  cursor:pointer;
  user-select:none;
}

#faq .faq-item:last-child{
  border-bottom:0;
}

#faq .faq-item h3{
  font-weight:700;
  font-size:1rem;
  margin:0;
}

#faq .faq-content{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}

#faq .faq-content p{
  color:var(--hs-muted);
  margin:12px 0 0;
  font-size:.95rem;
}

#faq .faq-toggle{
  color:var(--hs-primary);
  transition:transform .25s ease;
}

#faq .faq-item.hs-open .faq-toggle{
  transform:rotate(90deg);
}

/* FAQ CUSTOM */
#hs-faq{
  background:var(--hs-surface-2);
}

#hs-faq .section-title h2{
  color:var(--hs-ink);
  font-weight:800;
  letter-spacing:-0.02em;
}

#hs-faq .section-title p{
  color:var(--hs-muted);
  font-size:1rem;
  line-height:1.75;
  max-width:760px;
  margin:12px auto 0;
}

#hs-faq .hs-faq-box{
  display:flex;
  flex-direction:column;
  gap:14px;
}

#hs-faq .hs-faq-card{
  background:#ffffff;
  border:1px solid rgba(11,44,138,0.08);
  border-radius:18px;
  box-shadow:0 10px 30px rgba(12,24,64,0.08);
  overflow:hidden;
  transition:all 0.25s ease;
}

#hs-faq .hs-faq-card:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(12,24,64,0.12);
  border-color:rgba(47,195,207,0.22);
}

#hs-faq .hs-faq-question{
  width:100%;
  border:0;
  outline:none;
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px 22px;
  text-align:left;
  cursor:pointer;
  transition:background 0.2s ease;
}

#hs-faq .hs-faq-question:hover{
  background:#fcfdff;
}

#hs-faq .hs-faq-question span{
  font-size:1rem;
  font-weight:700;
  color:var(--hs-ink);
  line-height:1.55;
  transition:color 0.25s ease;
}

#hs-faq .hs-faq-icon{
  flex:0 0 auto;
  font-size:16px;
  color:var(--hs-primary);
  transition:transform 0.3s ease, color 0.25s ease;
}

#hs-faq .hs-faq-answer{
  display:none;
  padding:0 22px 20px 22px;
}

#hs-faq .hs-faq-answer-inner{
  border-top:1px solid rgba(10,20,40,0.08);
  padding-top:16px;
}

#hs-faq .hs-faq-answer p{
  margin:0;
  color:var(--hs-muted);
  line-height:1.85;
  font-size:.96rem;
  font-weight:400;
}

#hs-faq .hs-faq-card.is-open{
  border-color:rgba(47,195,207,0.28);
  box-shadow:0 16px 38px rgba(12,24,64,0.12);
}

#hs-faq .hs-faq-card.is-open .hs-faq-question{
  background:linear-gradient(180deg, #ffffff 0%, #fbfeff 100%);
}

#hs-faq .hs-faq-card.is-open .hs-faq-question span{
  color:var(--hs-accent-2);
}

#hs-faq .hs-faq-card.is-open .hs-faq-answer{
  display:block;
}

#hs-faq .hs-faq-card.is-open .hs-faq-icon{
  transform:rotate(180deg);
  color:var(--hs-accent-2);
}

/* Contact */
#contact{
  background:var(--hs-surface);
}

#contact .hs-contact-wrap{
  background:var(--hs-surface-2);
  border-radius:var(--hs-radius);
  border:1px solid var(--hs-border);
  box-shadow:var(--hs-shadow-soft);
  padding:22px;
}

#contact .info-item{
  border-radius:var(--hs-radius);
  background:#fff;
  border:1px solid var(--hs-border);
  box-shadow:var(--hs-shadow-soft);
  padding:18px 14px;
  transition:.25s ease;
}

#contact .info-item:hover{
  transform:translateY(-3px);
  box-shadow:var(--hs-shadow);
}

#contact .info-item i{
  color:var(--hs-warm);
  font-size:24px;
  background:rgba(243,116,56,.12);
  border:1px solid rgba(243,116,56,.22);
  width:54px;
  height:54px;
  border-radius:16px;
  display:grid;
  place-items:center;
  margin-bottom:10px;
}

#contact .info-item h3{
  font-weight:750;
  font-size:1.02rem;
  margin:0 0 8px;
}

#contact .info-item p{
  margin:0;
  color:var(--hs-muted);
  font-weight:600;
  font-size:.95rem;
  line-height:1.7;
}

#contact .php-email-form{
  background:#fff;
  border-radius:var(--hs-radius);
  border:1px solid var(--hs-border);
  box-shadow:var(--hs-shadow-soft);
  padding:18px;
}

#contact .php-email-form .form-control{
  border-radius:14px;
  border:1px solid rgba(10,20,40,.14);
  padding:12px 14px;
  font-size:.95rem;
  box-shadow:none;
}

#contact .php-email-form .form-control:focus{
  border-color:rgba(11,44,138,.35);
  box-shadow:0 0 0 4px rgba(11,44,138,.10);
}

#contact .php-email-form button{
  border:0;
  border-radius:999px;
  padding:11px 18px;
  font-weight:700;
  font-size:.95rem;
  background:linear-gradient(135deg, var(--hs-primary), var(--hs-primary-2));
  color:#fff;
  transition:.25s ease;
}

#contact .php-email-form button:hover{
  transform:translateY(-2px);
  filter:brightness(.98);
}

/* Responsive */
@media (max-width: 992px){
  .hs-home .section{
    padding:56px 0;
  }

  #hero .carousel-item,
  #hero .carousel-item img{
    height:72vh;
  }

  #hero .hs-hero-box{
    max-width:92%;
  }

  #hero .hs-hero-box h1{
    font-size:2.25rem;
  }

  .hs-home .section-title h2{
    font-size:2rem;
  }
}

@media (max-width: 768px){
  html{
    font-size:15px;
  }

  .hs-home .section{
    padding:48px 0;
  }

  .hs-home .section-title{
    margin-bottom:28px;
  }

  .hs-home .section-title h2{
    font-size:1.75rem;
    line-height:1.2;
  }

  .hs-home .section-title p{
    font-size:.95rem;
    line-height:1.7;
  }

  #hero .hs-hero-box h1{
    font-size:2rem;
  }

  #hero .hs-hero-box p{
    font-size:.96rem;
  }

  #call-to-action h3{
    font-size:1.6rem;
  }

  #tabs .details h3,
  #about .content h2{
    font-size:1.35rem;
  }

  #hs-faq .hs-faq-question{
    padding:18px 18px;
    gap:12px;
  }

  #hs-faq .hs-faq-answer{
    padding:0 18px 18px 18px;
  }

  #hs-faq .hs-faq-question span{
    font-size:.96rem;
  }

  #hs-faq .hs-faq-answer p{
    font-size:.92rem;
    line-height:1.8;
  }
}

@media (max-width: 576px){
  html{
    font-size:14px;
  }

  .hs-home .section{
    padding:42px 0;
  }

  .hs-home .section-title h2{
    font-size:1.55rem;
    letter-spacing:-0.015em;
  }

  .hs-home .section-title p{
    font-size:.92rem;
    line-height:1.65;
    max-width:94%;
  }

  #hero .carousel-item,
  #hero .carousel-item img{
    height:62vh;
  }

  #hero .hs-hero-wrap{
    padding:0 16px;
  }

  #hero .hs-hero-box{
    max-width:100%;
  }

  #hero .hs-hero-box h1{
    font-size:1.72rem;
    line-height:1.12;
    margin:12px 0;
  }

  #hero .hs-hero-box p{
    font-size:.92rem;
    line-height:1.65;
    margin-bottom:18px;
  }

  .hs-badge{
    font-size:.76rem;
    padding:6px 10px;
  }

  #hero .hs-btn{
    padding:10px 14px;
    font-size:.88rem;
  }

  #hero .hs-trust-item{
    font-size:.76rem;
    padding:7px 10px;
  }

  #hero .glightbox.pulsating-play-btn{
    width:68px;
    height:68px;
  }

  #services .service-item,
  #testimonials-clients .testimonial-item,
  #contact .php-email-form,
  #contact .hs-contact-wrap{
    padding:16px;
  }

  #services .service-item h3{
    font-size:1rem;
  }

  #services .service-item p,
  #testimonials-clients .testimonial-item p,
  #contact .info-item p,
  #tabs .details p,
  #about .content .fst-italic,
  .hs-home p{
    font-size:.9rem;
    line-height:1.7;
  }

  #stats .stats-item span{
    font-size:1.2rem;
  }

  #stats .stats-item p{
    font-size:.85rem;
  }

  #clinics .member-info h4,
  #testimonials-clients .testimonial-item h3,
  #contact .info-item h3{
    font-size:.96rem;
  }

  #hs-faq .hs-faq-box{
    gap:12px;
  }

  #hs-faq .hs-faq-card{
    border-radius:16px;
  }

  #hs-faq .hs-faq-question{
    padding:16px 16px;
  }

  #hs-faq .hs-faq-question span{
    font-size:.92rem;
    line-height:1.5;
  }

  #hs-faq .hs-faq-icon{
    font-size:15px;
  }

  #hs-faq .hs-faq-answer{
    padding:0 16px 16px 16px;
  }

  #hs-faq .hs-faq-answer-inner{
    padding-top:14px;
  }

  #hs-faq .hs-faq-answer p{
    font-size:.88rem;
    line-height:1.75;
  }
}

/* Header CTA button */
#header .hs-header-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  margin-left: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #49c6cf 0%, #2fb8c4 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(47, 184, 196, 0.20);
  transition: all 0.25s ease;
}

#header .hs-header-cta:hover{
  background: linear-gradient(135deg, #3fc0ca 0%, #23aebb 100%);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(47, 184, 196, 0.26);
}

#header .hs-header-cta:focus{
  color: #ffffff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(47, 184, 196, 0.18);
}

/* Better header alignment */
#header .branding .container{
  min-height: 84px;
}

#header .logo img{
  max-height: 54px;
  width: auto;
}

#header .mobile-nav-toggle{
  font-size: 30px;
  margin-left: 14px;
  color: #3b4a63;
}

/* Desktop medium */
@media (max-width: 1199px){
  #header .hs-header-cta{
    margin-left: 12px;
    padding: 10px 16px;
    font-size: 0.92rem;
  }
}

/* Tablet */
@media (max-width: 768px){
  #header .branding .container{
    min-height: 78px;
    padding-left: 12px;
    padding-right: 12px;
  }

  #header .logo img{
    max-height: 46px;
  }

  #header .hs-header-cta{
    min-height: 40px;
    padding: 9px 14px;
    margin-left: 10px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
  }

  #header .mobile-nav-toggle{
    font-size: 28px;
    margin-left: 10px;
  }
}

/* Mobile */
@media (max-width: 576px){
  #header .branding .container{
    min-height: 74px;
    padding-left: 10px;
    padding-right: 10px;
  }

  #header .logo img{
    max-height: 42px;
  }

  #header .hs-header-cta{
    min-height: 38px;
    max-width: 96px;
    padding: 8px 10px;
    margin-left: 8px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }

  #header .mobile-nav-toggle{
    font-size: 26px;
    margin-left: 8px;
  }
}

/* ==============================
   MOBILE NAV — compact submenu
   ============================== */

@media (max-width: 1199px){

  #navmenu ul li a,
  #navmenu ul li a:focus{
    font-size: 0.98rem;
    line-height: 1.35;
    font-weight: 600;
    padding: 11px 14px;
  }

  #navmenu .dropdown > a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  #navmenu .dropdown ul{
    margin-top: 8px;
    margin-bottom: 6px;
    padding: 8px 0;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(10,20,40,.08);
    box-shadow: 0 8px 24px rgba(12,24,64,.08);
  }

  #navmenu .dropdown ul li{
    padding: 0;
  }

  #navmenu .dropdown ul a,
  #navmenu .dropdown ul a:focus{
    font-size: 0.92rem;
    line-height: 1.45;
    font-weight: 500;
    color: #30445f;
    padding: 9px 14px;
    white-space: normal;
    word-break: break-word;
  }

  #navmenu .dropdown ul a span{
    display: block;
    font-size: inherit;
    line-height: inherit;
  }

  #navmenu .dropdown ul a:hover,
  #navmenu .dropdown ul .active,
  #navmenu .dropdown ul .active:focus{
    color: #1cb8c7;
    background: rgba(47,195,207,.06);
  }

  #navmenu .toggle-dropdown{
    font-size: 0.95rem;
    flex: 0 0 auto;
  }
}

/* ==============================
   MOBILE SMALL — extra compact
   ============================== */

@media (max-width: 576px){

  #navmenu ul li a,
  #navmenu ul li a:focus{
    font-size: 0.95rem;
    line-height: 1.3;
    padding: 10px 12px;
  }

  #navmenu .dropdown ul{
    padding: 6px 0;
    border-radius: 10px;
  }

  #navmenu .dropdown ul a,
  #navmenu .dropdown ul a:focus{
    font-size: 0.86rem;
    line-height: 1.35;
    padding: 8px 12px;
  }

  #navmenu .toggle-dropdown{
    font-size: 0.9rem;
  }
}