
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');


/* ─── RESET & TOKENS ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink-light: #fdf0f0;
  --pink-mid:   #f5c6c6;
  --pink-dark:  #e8a0a0;
  --pink-rose:  #f3dde0;
  --pink-hero:  #feedef;
  --pink-card:  #e39aa6;
  --purple:     #502089;
  --purple-2:   #7b2ff7;
  --purple-3:   #c254b0;
  --grad:       linear-gradient(90deg, #5b2396 0%, #e79aaa 100%);
  --grad-h:     linear-gradient(90deg, #5b2396 0%, #e79aaa 100%);
  --gold:       #9b7458;
  --text:       #1a1a2e;
  --text-mid:   #5a5a6a;
  --text-light: #9a9aaa;
  --border:     #efb3ba;
  --radius-card: 20px;
  --radius-btn:  50px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--pink-hero);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── UTILITY ─── */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary-dk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  padding: 13px 28px;
  font-family: 'Manrope', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.btn-primary-dk:hover { opacity: .88; transform: translateX(3px); color: #fff; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--pink-hero);
  border-top: 4px solid #31472f;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Topbar */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  position: relative;
  flex-shrink: 0;
}

.social-area {
  display: flex;
  gap: 12px;
}
.social-area a {
  width: 40px; height: 40px;
  border: 1px solid #f4a4ac;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #f4a4ac;
  text-decoration: none;
  font-size: 15px;
  transition: .3s;
  flex-shrink: 0;
}
.social-area a:hover { background: #f4a4ac; color: #fff; }

.logo-area {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  text-align: center;

}
.logo-area img {     width: 120px;
     margin-top: 85px;
    margin-bottom: 10px;}
.logo-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}

.right-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-outline-dk {
  padding: 9px 20px;
  border-radius: var(--radius-btn);
  border: 1px solid #f4a4ac;
  background: transparent;
  color: #f4a4ac;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: .3s;
      text-decoration: none;
}
.btn-outline-dk:hover { background: #f4a4ac; color: #fff; }

.menu-btn {
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
  margin-left: 6px;
  line-height: 1;
  user-select: none;
}

/* Hero body */
.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 24px 120px;
}
.hero-eyebrow {
font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 28px;

}
.hero-title {
   font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 600;
  line-height: 1.02;
  color: var(--purple);
  max-width: 1000px;
}

/* Scroll mouse */
.scroll-wrap {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.circle-text {
  position: relative;
  width: 200px; height: 200px;
  display: flex; justify-content: center; align-items: center;
}
.text-circle {
  width: 200px; height: 200px;
  animation: rotateText 14s linear infinite;
  position: absolute;
}
.text-circle text { fill: #f4a4ac; font-size: 12px; font-weight: 600; letter-spacing: 2px; }
.mouse {
  width: 34px; height: 58px;
  border: 2px solid var(--purple);
  border-radius: 24px;
  display: flex; justify-content: center;
  padding-top: 8px;
}
.mouse::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--purple);
  border-radius: 50%;
  animation: scrollDot 1.5s infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(22px); opacity: 0; }
}
@keyframes rotateText { 100% { transform: rotate(360deg); } }

/* ══════════════════════════════
   FULLSCREEN MENU
══════════════════════════════ */
.fullscreen-menu {
  position: fixed; top: -125%; left: 0;
  width: 100%; height: 100vh;
  background: #070707;
  z-index: 9999;
  transition: top .9s cubic-bezier(.77,0,.175,1);
  padding: 36px 40px;
}
.fullscreen-menu.active { top: 0; }
.menu-top { display: flex; justify-content: flex-end; align-items: center; }
.close-btn { font-size: 40px; cursor: pointer; line-height: 1; color: #fff; }
.menu-links {
  display: flex; height: calc(100vh - 80px);
  align-items: center; justify-content: center; text-align: center;
}
.menu-links ul { list-style: none; padding-left:0;}
.menu-links li { margin: 14px 0; }
.menu-links a {
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 7vw, 40px);
  color: #fff;
  text-decoration: none;
  transition: padding .3s;
  display: inline-block;
}
.menu-links a:hover { padding-left: 18px; }
body.menu-open { overflow: hidden; }

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services-section {
  background: var(--pink-light);
  padding: 90px 60px;
}
.services-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 32px;
}
.services-list {
  list-style: none;
  margin-bottom: 36px;
}
.services-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
}
.services-list li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--text);
  border-radius: 50%;
  margin-right: 14px;
  flex-shrink: 0;
}

/* Carousel */
.cards-col { position: relative; }
.cards-track-wrapper { overflow: hidden; border-radius: var(--radius-card); }
.cards-track {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.service-card {
  flex: 0 0 calc(50% - 8px);
  min-width: calc(50% - 8px);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  height: 380px;
  box-shadow: 0 8px 32px rgba(0,0,0,.13);
  transition: height .5s cubic-bezier(.4,0,.2,1), opacity .5s, transform .5s;
  opacity: .72;
  transform: scale(.97);
}
.service-card.active { height: 430px; opacity: 1; transform: scale(1); }
.service-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.72) 60%, transparent);
  color: #fff;
}
.card-label .card-title-text {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem; font-weight: 500;
  margin-bottom: 3px;
}
.card-label .card-sub-text { font-size: .82rem; opacity: .8; font-weight: 400; }

.carousel-nav { display: flex; justify-content: flex-end; gap: 10px; margin-top: 18px; }
.nav-btn {
  width: 46px; height: 46px;
  border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: transform .2s, opacity .2s;
}
.nav-btn.prev { background: var(--purple-2); color: #fff; }
.nav-btn.next { background: var(--grad); color: #fff; }
.nav-btn:hover { transform: scale(1.08); }

/* ══════════════════════════════
   TOUR / VIDEO
══════════════════════════════ */
.tour-section {
  background: var(--pink-hero);
  padding: 90px 0 160px;
}
.tour-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
  padding: 0 12px;
}
.tour-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--text);
}
.gallery-btn {
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--grad-h);
  transition: .35s;
  white-space: nowrap;
}
.gallery-btn:hover { transform: translateY(-3px); color: #fff; }

.video-box {
  position: relative;
  border-radius: 28px;
  overflow: visible;
}
.video-box .ratio { border-radius: 28px; overflow: hidden; }
.video-box iframe { border-radius: 28px; }

.tour-caption {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: 40px;
  background: var(--pink-card);
  max-width: 820px; width: calc(100% - 40px);
  padding: 28px 36px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 16px 42px rgba(0,0,0,.12);
  z-index: 5;
}
.tour-caption p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #2a1a1a;
  font-weight: 400;
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about-section {
  position: relative;
  background: var(--pink-light);
  padding: 100px 60px 100px;
  overflow: hidden;
}
.watermark {
  position: absolute;
  bottom: -10px; left: 0; right: 0;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: clamp(70px, 12vw, 175px);
  font-weight: 400;
  color: rgba(220,150,150,.18);
  letter-spacing:20px;
  white-space: nowrap;
  user-select: none; pointer-events: none;
  line-height: 1;
}
.deco-circle {
  position: absolute;
  top: 50%; left: -55px;
  transform: translateY(-50%);
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1.5px solid rgba(180,100,100,.16);
  pointer-events: none;
}
.clinic-img-wrap {
  position: relative; z-index: 1;
  border-radius: 22px; overflow: hidden;
  width: 100%; max-width: 560px;
  aspect-ratio: 4/3.6;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.clinic-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.text-col {
  display: flex; flex-direction: column;
  justify-content: center;
  padding-left: 28px;
}
.section-tag {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: #b06090; margin-bottom: 14px;
}
.about-heading {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text); line-height: 1.12;
  margin-bottom: 22px;
      text-align: right;
}
.about-heading span { font-style: italic; }
.about-tagline {
  font-size: 1rem; font-weight: 700;
  color: var(--text); text-align: right;
  line-height: 1.55; margin-bottom: 16px;
}
.about-desc {
  font-size: .9rem; color: var(--text-mid);
  line-height: 1.85; text-align: right;
  margin-bottom: 34px; font-weight: 400;
}
.btn-learn {
  align-self: flex-end;
}

/* ══════════════════════════════
   STRATEGY
══════════════════════════════ */
.strategy-section {
  background: var(--pink-hero);
  overflow: hidden;
}
.content-box {
  background: var(--pink-card);
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 80px 80px 80px 70px;
  border-top-right-radius: 400px;
  border-bottom-right-radius: 400px;
  height: 100%;
}
.inner-content { max-width: 620px; }
.inner-content h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.18;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 600;
}
.inner-content p {
  font-size: 15px; line-height: 1.85;
  color: #2a1212; font-weight: 400;
}
.image-box { }
.image-box img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ══════════════════════════════
   APPOINTMENT
══════════════════════════════ */
.appointment-section { padding: 100px 0; background: var(--pink-hero); }
.appt-wrapper {
  background: var(--pink-rose);
  padding: 60px;
  border-radius: 24px;
}
.sub-label {
  font-size: 11px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--purple-2);
  display: block; margin-bottom: 18px;
}
.appt-heading {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3rem);
  line-height: 1.08; font-weight: 600;
  margin-bottom: 18px; color: var(--text);
}
.appt-contact-row h4 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;
}
.appt-contact-row p { font-size: .95rem; color: var(--text-mid); line-height: 1.6; }

.map-box { margin-top: 28px; border-radius: 16px; overflow: hidden; height: 170px; }
.map-box iframe { width: 60%; height: 100%; border: 0; }

.social-icons { display: flex; gap: 14px; margin-top: 22px; }
.social-icons a {
  width: 46px; height: 46px;
  border: 1px solid #f4a4ac;
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  text-decoration: none; color: #f4a4ac;
  font-size: 16px; transition: .3s;
}
.social-icons a:hover { background: #f4a4ac; color: #fff; }

.form-box {
  background: var(--pink-hero);
  padding: 36px; border-radius: 18px;
}
.form-box label {
  display: block; font-size: 11px;
  font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #888;
  margin-bottom: 8px;
}
.form-box label span { color: red; }
.form-box input,
.form-box textarea {
  width: 100%;
  background: #f5dce0;
  border: 1px solid #f1c9cf;
  padding: 13px 16px;
  border-radius: 10px;
  outline: none;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  transition: border-color .2s;
}
.form-box input:focus,
.form-box textarea:focus { border-color: var(--purple); }
.form-box textarea { resize: none; }
.submit-btn {
  width: 100%; margin-top: 26px;
  border: 0; padding: 14px;
  border-radius: var(--radius-btn);
  color: #fff;
  background: var(--grad-h);
  font-family: 'Manrope', sans-serif;
  font-size: 16px; font-weight: 600;
  cursor: pointer; transition: opacity .2s;
}
.submit-btn:hover { opacity: .88; }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials-section {
  background: var(--pink-light);
  padding: 80px 60px 90px;
}
.t-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 20px;
  flex-wrap: wrap; margin-bottom: 40px;
}
.t-header h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 500;
  color: var(--text); line-height: 1.25;
  max-width: 660px;
}
.t-nav { display: flex; gap: 10px; flex-shrink: 0; }
.t-nav-btn {
  width: 46px; height: 46px;
  border-radius: 50%; border: none; cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, opacity .2s;
}
.t-nav-btn.prev { background: #e8d0e0; color: var(--purple-2); }
.t-nav-btn.next { background: var(--grad); color: #fff; }
.t-nav-btn:hover { transform: scale(1.08); }

.testimonial-card {
  background: #fff;
  border: 1.5px solid var(--pink-mid);
  border-radius: var(--radius-card);
  padding: 28px 24px 24px;
  height: 100%;
  display: flex; flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(160,60,120,.12);
  transform: translateY(-4px);
}
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars span { font-size: 20px;
    color: #f4a4ac; }
.t-text {
  font-size: .88rem; color: var(--text-mid);
  line-height: 1.82; flex: 1;
  margin-bottom: 24px; font-weight: 400;
}
.t-divider { border: none; border-top: 1px solid var(--pink-mid); margin-bottom: 18px; }
.t-author strong { display: block; font-size: .92rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.t-author span { font-size: .76rem; color: var(--text-light); font-weight: 400; }

/* ══════════════════════════════
   CTA + FOOTER
══════════════════════════════ */
.cta-footer-wrap {
  position: relative;
  background: linear-gradient(160deg, #c090c8 0%, #b878b0 35%, #a868a8 60%, #9060a0 100%);
  overflow: hidden;
}
.cta-watermark {
    position: absolute;
    bottom: 27%;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Manrope", sans-serif;
    font-size: clamp(56px, 11vw, 175px);
    font-weight: 600;
    color: rgba(255, 255, 255, .04);
    white-space: nowrap;
    letter-spacing: 20px;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}
.contact-cta {
  padding: 90px 60px 60px;
  text-align: center; position: relative; z-index: 2;
}
.cta-tag {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: 16px;
  font-weight: 600;
}
.cta-heading {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: #fff; font-weight: 400;
  line-height: 1.1; margin-bottom: 18px;
}
.cta-sub {
  font-size: .9rem; color: rgba(255,255,255,.78);
  max-width: 460px; margin: 0 auto 34px;
  line-height: 1.78; font-weight: 400;
}
.btn-contact {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.55);
  color: #fff; border-radius: var(--radius-btn);
  padding: 12px 28px; font-size: .88rem; font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s;
}
.btn-contact:hover { background: rgba(255,255,255,.26); border-color: rgba(255,255,255,.8); color: #fff; }

.footer-bar {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.2);
  padding: 26px 60px 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem; color: #fff;
  font-weight: 500; margin-bottom: 6px;
      text-align: center;
}
.footer-info {
  font-size: 14px; color: rgba(255,255,255,.65);
  line-height: 1.9; font-weight: 500;
      text-align: center;
}
.footer-copy { font-size: .72rem; color: rgba(255,255,255,.45); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 991px) {
  .topbar { padding: 18px 20px; }
  .btn-outline-dk { display: none; }

  .hero-title { font-size: clamp(38px, 8vw, 58px); }

  .services-section { padding: 60px 20px; }
  .service-card { flex: 0 0 85%; min-width: 85%; height: 400px; }
  .service-card.active { height: 330px; }

  .tour-section { padding: 60px 0 80px; }
  .tour-caption {
    position: static;
    transform: none;
    max-width: 100%;
    margin-top: 20px;
    width: 100%;
    border-radius: 14px;
  }

  .about-section { padding: 60px 20px 0; }
  .text-col { padding-left: 0; padding-top: 36px; }
  .about-tagline, .about-desc { text-align: left; }
  .btn-learn { align-self: flex-start; }
  .deco-circle { display: none; }

  .content-box {
    padding: 60px 32px;
    border-radius: 0 0 0 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .image-box { height: 320px; }

  .appt-wrapper { padding: 32px 20px; }
  .appt-heading { font-size: clamp(2rem, 6vw, 2.8rem); }

  .testimonials-section { padding: 50px 20px 60px; }

  .contact-cta { padding: 60px 24px 40px; }
  .footer-bar { padding: 22px 24px; }
  .footer-copy { width: 100%; text-align: left; }
}

@media (max-width: 576px) {
  .topbar { padding: 14px 16px; }
  .logo-area img { width: 70px; }
  .social-area { gap: 8px; }
  .social-area a { width: 34px; height: 34px; font-size: 13px; }
  .hero-eyebrow { font-size: 10px; }
  .hero-title { font-size: clamp(32px, 9vw, 46px); }
  .menu-btn { font-size: 20px; }

  .services-section { padding: 50px 16px; }
  .tour-section { padding: 50px 0 60px; }
  .tour-header { padding: 0 4px; }

  .about-section { padding: 50px 16px 0; }
  .content-box { padding: 40px 20px; }

  .appt-wrapper { padding: 24px 16px; }
  .form-box { padding: 24px 16px; }

  .testimonials-section { padding: 40px 16px 50px; }
  .contact-cta { padding: 50px 16px 30px; }
  .footer-bar { padding: 18px 16px; gap: 12px; }

  .menu-links a { font-size: clamp(32px, 8vw, 44px); }
  .fullscreen-menu { padding: 28px 20px; }
}


.video-box {
  max-height: 500px;
  overflow: hidden;
}

.video-box .ratio {
  max-height: 500px;
}

.video-box .ratio iframe {
  max-height: 500px;
}

 .eyebrow {
     font-family: "Manrope", sans-serif;
      font-size: .68rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color:  #8a7672;
    }
 
    .section-title {
     font-family: "Manrope", sans-serif;
      font-weight: 600;
      color: #2b2523;
      line-height: 1.12;
    }
 
    .rose-rule {
      width: 40px; height: 2px;
      background:  var(--grad);
      border: none;
      margin: 0 auto 1.5rem;
    }
 
    /* ───────── HERO BANNER ───────── */
    .hero-banner {
      background: var(--pink-hero);
      text-align: center;
      padding: 6.5rem 1.5rem 2.5rem;
      border-bottom: 1px solid #f0ddd8;
    }
    .hero-banner .eyebrow { margin-bottom: 1rem; }
    .hero-banner h1 {
          font-family: "Cormorant Garamond", serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 600;
      color: var(--purple);
      letter-spacing: -.02em;
    }
    .hero-banner h1 span { font-style: italic; color: #a05a4d; }
    .hero-banner p {
      margin: 1.4rem auto 0;
    font-size: .95rem;
    line-height: 1.8;
    color: #000000;
    font-weight: 400;
    letter-spacing: 1px;
	max-width: 1000px;
    }
 
    /* ───────── SPACE SECTION ───────── */
    .space-section {
      padding: 5rem 0;
      background: #fdf8f6;
    }
    .space-section .img-wrap {
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(43,37,35,.12);
    }
    .space-section .img-wrap img {
      width: 100%;
      object-fit: cover;
      display: block;
      transition: transform .6s ease;
    }
    .space-section .img-wrap:hover img { transform: scale(1.03); }
    .space-section h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 1.2rem; }
    .space-section .intro {     font-size: 16px;
    margin-bottom: 1.8rem;
    font-weight: 400; }
    .feature-item { margin-bottom: 1.1rem; }
    .feature-item strong {
      display: block;
     font-family: "Manrope", sans-serif;
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: #2b2523;
      margin-bottom: .25rem;
    }
    .feature-item p {    font-size: 16px;
    margin-bottom: 1.8rem;
    font-weight: 400; }
 
    /* ───────── BOUTIQUE / SLIDER ───────── */
    .boutique-section {
      background: var(--pink-hero);
      padding: 5rem 0;
      text-align: center;
    }
    .boutique-section h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      margin-bottom: .8rem;
    }
    .boutique-section .sub {
          max-width: 480px;
    margin: 0 auto 2.5rem;
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    font-weight: 400;
    }
 
    /* Slider wrapper */
    .smile-slider {
      position: relative;
      overflow: hidden;
      border-radius: 6px;
      box-shadow: 0 16px 50px rgba(43,37,35,.13);
    }
    .smile-slider .slides-track {
      display: flex;
      transition: transform .65s cubic-bezier(.4,0,.2,1);
    }
    .smile-slider .slide {
      min-width: 100%;
      position: relative;
    }
    .smile-slider .slide img {
      width: 100%; height: 500px;
      object-fit: cover;
      display: block;
    }
    .smile-slider .slide-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(43,37,35,.55));
      color: #fff;
      padding: 2rem 2rem 1.5rem;
      text-align: left;
    }
    .smile-slider .slide-caption h4 {
      font-family: "Manrope", sans-serif;
      font-size: 1.4rem;
      font-weight: 400;
      margin-bottom: .25rem;
    }
    .smile-slider .slide-caption p { font-size: .8rem; opacity: .8; font-weight: 400; }
 
    /* Arrows */
    .slider-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      z-index: 10;
      background: rgba(255,255,255,.85);
      border: none;
      width: 44px; height: 44px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(0,0,0,.15);
      transition: background .2s, transform .2s;
    }
    .slider-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
    .slider-btn svg { width: 18px; height: 18px; stroke: #a05a4d; fill: none; stroke-width: 2; }
    .slider-btn.prev { left: 14px; }
    .slider-btn.next { right: 14px; }
 
    /* Dots */
    .slider-dots {
      display: flex; justify-content: center; gap: 8px;
      margin-top: 1.4rem;
    }
    .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #f0ddd8;
      border: 1px solid  var(--grad);
      cursor: pointer;
      transition: background .3s, transform .3s;
    }
    .dot.active {
      background:  var(--grad);
      transform: scale(1.25);
    }
 
    /* ───────── DOCTORS ───────── */
    .doctors-section { padding: 5rem 0; background: #fdf8f6; }
 
    .doctor-card {
      display: flex;
      gap: 2.5rem;
      align-items: flex-start;
      margin-bottom: 5rem;
    }
    .doctor-card.reverse { flex-direction: row-reverse; }
    .doctor-card:last-child { margin-bottom: 0; }
 
    .doctor-photo {
      position: relative;
      flex-shrink: 0;
      width: 315px;
    }
    .doctor-photo img {
      width: 315px; 
      object-fit: cover;
      border-radius: 4px;
      display: block;
      box-shadow: 0 12px 35px rgba(43,37,35,.12);
    }
    .doctor-photo .name-tag {
      position: absolute;
      bottom: -10px; left: 50%; transform: translateX(-50%);
      background: #a05a4d;
      color: #fff;
      font-size: .7rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .35rem 1rem;
      border-radius: 2px;
      white-space: nowrap;
    }
 
    .doctor-info { flex: 1; padding-top: .5rem; }
    .doctor-info h3 {
      font-family: "Manrope", sans-serif;
      font-size: clamp(2rem, 3vw, 2.6rem);
      font-weight: 400;
      margin-bottom: .3rem;
      color: #2b2523;
    }
    .doctor-info .role {
      font-size: .72rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color:  var(--grad);
      font-weight: 500;
      margin-bottom: 1.2rem;
      display: flex; align-items: center; gap: .6rem;
    }
    .doctor-info .role::after {
      content: '';
      flex: 1; height: 1px;
      background: #f0ddd8;
    }
    .doctor-info p {
    font-size: 15px;
    line-height: 1.85;
    color: #000000;
    font-weight: 400;
    margin-bottom: 1rem;
    }
    .doctor-info p:last-child { margin-bottom: 0; }
 
    /* ───────── RESPONSIVE ───────── */
    @media (max-width: 768px) {
      .doctor-card, .doctor-card.reverse { flex-direction: column; align-items: center; text-align: center; }
      .doctor-photo { width: 220px; }
      .doctor-photo img { width: 220px; height: 270px; }
      .doctor-info .role::after { display: none; }
      .space-section .img-wrap img { height: 280px; }
      .smile-slider .slide img { height: 400px; }
    }
	
	
	
	
	/* ─────────────────────────────────────────
       1. STERILIZATION
    ───────────────────────────────────────── */
    .sterilization {
      background: #fdf8f6;
      padding: 5rem 0;
    }
    .sterilization .img-wrap {
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 10px 36px rgba(43,37,35,.13);
    }
    .sterilization .img-wrap img {
      width: 100%; 
      object-fit: cover;
      transition: transform .6s ease;
    }
    .sterilization .img-wrap:hover img { transform: scale(1.03); }
 
    .sterilization .content { padding-left: 2rem; }
    .sterilization h2 {
      font-size: clamp(1.8rem, 3vw, 2.7rem);
      margin-bottom: 1rem;
    }
    .sterilization .lead-bold {
      font-size: .9rem;
      font-weight: 600;
      color: #2b2523;
      margin-bottom: .9rem;
    }
    .sterilization p {
         font-size: 15px;
    line-height: 1.85;
    color: #000;
    font-weight: 400;
    }
 
    /* ─────────────────────────────────────────
       2. DEDICATED CLINICAL ZONES
    ───────────────────────────────────────── */
    .clinical-zones {
      background: var(--pink-hero);
      padding: 5rem 0 0;
    }
    .clinical-zones .header-row { margin-bottom: 2.5rem; }
    .clinical-zones h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); margin-bottom: 1.2rem; }
    .clinical-zones .right-block p { font-size: .88rem; line-height: 1.85; color: #5a4a47; font-weight: 400; }
    .clinical-zones .right-block .lead-bold {
      font-size: .9rem; font-weight: 600; color: #2b2523; margin-bottom: .8rem;
    }
 
    /* Visit Clinic button */
    .btn-visit {
      display: inline-flex; align-items: center; gap: .5rem;
      margin-top: 1.4rem;
      background: var(--grad);
      color: #fff;
     font-family: "Manrope", sans-serif;
      font-size: .78rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      border: none;
      border-radius: 30px;
      padding: .6rem 1.4rem;
      text-decoration: none;
      transition: background .25s, transform .2s;
    }
    .btn-visit:hover { background: var(--grad); transform: translateX(3px); color: #fff; }
    .btn-visit svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.2; }
 
    /* ── SCROLLABLE ZONE CARDS ── */
    .zones-scroll-outer {
      /* Sits flush below the header row, full width of the section */
      width: 100%;
      overflow: hidden;           /* clips the track */
      padding-bottom: 3rem;
    }
 
    .zones-track {
      display: flex;
      gap: 1.25rem;
      padding: 0 calc((100% - 1140px) / 2) 1rem; /* align with Bootstrap container */
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .zones-track::-webkit-scrollbar { display: none; }
 
    .zone-card {
      flex: 0 0 340px;
      border: 1.5px solid #f4a4ac;
      border-radius: 10px;
      overflow: hidden;           /* ← overflow hidden on each card */
      background: #ffffff;
      scroll-snap-align: start;
      box-shadow: 0 6px 22px rgba(43,37,35,.08);
      transition: box-shadow .3s, transform .3s;
    }
    .zone-card:hover {
      box-shadow: 0 14px 40px rgba(43,37,35,.14);
      transform: translateY(-4px);
    }
 
    /* card image area — overflow hidden already on .zone-card */
    .zone-card .card-img {
      width: 100%; height: 220px;
      object-fit: cover;
      transition: transform .55s ease;
    }
    .zone-card:hover .card-img { transform: scale(1.05); }
 
    .zone-card .card-body-custom {
      padding: 1.1rem 1.2rem 1.4rem;
    }
    .zone-card .card-tag {
      font-size: .68rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--grad);
      font-weight: 500;
      margin-bottom: .5rem;
    }
    .zone-card h5 {
      font-family: "Manrope", sans-serif;
      font-size: 1.15rem;
      font-weight: 600;
      color: #2b2523;
      margin-bottom: .5rem;
      line-height: 1.3;
    }
    .zone-card p {
      font-size: .8rem;
      line-height: 1.75;
      color: #5a4a47;
      font-weight: 400;
    }
 
    /* scroll arrows */
    .zones-nav {
      display: flex; gap: .7rem;
      justify-content: flex-end;
      padding-right: calc((100% - 1140px) / 2);
      margin-bottom: 1rem;
    }
    .znav-btn {
      width: 38px; height: 38px;
      border-radius: 50%;
      border: 1.5px solid #f4a4ac;
      background:var(--grad);
	
	  stroke: #fff;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      box-shadow: 0 3px 10px rgba(43,37,35,.08);
      transition: background .2s, transform .2s, border-color .2s;
    }
    .znav-btn:hover { background: var(--grad); border-color: var(--grad); }
    .znav-btn:hover svg { stroke: #fff; border:none; }
    .znav-btn svg { width: 16px; height: 16px; stroke: var(--rose-dark); fill: none; stroke-width: 2; }
 
    /* ─────────────────────────────────────────
       3. WHERE EVERY TREATMENT BEGINS
    ───────────────────────────────────────── */
    .insight-section {
      background: #fdf8f6;
      padding: 5rem 0;
    }
    .insight-section h2 {
      font-size: clamp(1.8rem, 3.2vw, 2.7rem);
      margin-bottom: 1.4rem;
    }
    .insight-section p {
          font-size: 15px;
    line-height: 1.9;
    color: #000;
    font-weight: 400;
    margin-bottom: 1rem;
    }
    .insight-section .img-wrap {
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 14px 42px rgba(43,37,35,.13);
    }
    .insight-section .img-wrap img {
      width: 100%; 
      transition: transform .6s ease;
    }
    .insight-section .img-wrap:hover img { transform: scale(1.03); }
 
    /* ─────────────────────────────────────────
       4. HEALING ENVIRONMENT
    ───────────────────────────────────────── */
    .healing-section {
      background: var(--pink-hero);
      padding: 5rem 0;
      text-align: center;
    }
    .healing-section .eyebrow {
      font-size: .7rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--light-txt);
      margin-bottom: .7rem;
    }
    .healing-section h2 {
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      margin-bottom: .8rem;
    }
    .healing-section .sub {
      max-width: 620px;
      margin: 0 auto 2.5rem;
      font-size: .88rem;
      line-height: 1.85;
      color: #5a4a47;
      font-weight: 400;
    }
    .healing-section .full-img {
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 16px 50px rgba(43,37,35,.14);
    }
    .healing-section .full-img img {
      width: 100%;
      object-fit: cover;
    }
 
    /* ─────────────────────────────────────────
       5. CARE CUSTOMIZED
    ───────────────────────────────────────── */
    .care-section {
      background: #fdf8f6;
      padding: 5rem 0;
      position: relative;
      overflow: hidden;
    }
    /* large watermark text */
    .care-section .watermark {
     position: absolute;
    bottom: -30px;
    left: -10px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(5rem, 14vw, 12rem);
    font-weight: 700;
    color: #f0ddd894;
    letter-spacing: -.02em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    line-height: 1;
    z-index: 0;
    }
    .care-section .row { position: relative; z-index: 1; }
    .care-section .img-wrap {
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 14px 44px rgba(43,37,35,.14);
    }
    .care-section .img-wrap img {
      width: 100%; 
      object-fit: cover;
      object-position: top center;
    }
    .care-section h2 {
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      margin-bottom: 1rem;
    }
    .care-section .lead-bold {
      font-size: .9rem; font-weight: 600; color: #2b2523; margin-bottom: 1rem;
    }
    .care-section p {
      font-size: .88rem; line-height: 1.9; color: #5a4a47; font-weight: 400; margin-bottom: 1rem;
    }
 
    /* ─────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────── */
    @media (max-width: 991px) {
      .sterilization .content { padding-left: 0; margin-top: 2rem; }
      .insight-section .img-wrap { margin-top: 2.5rem; }
      .zones-track { padding: 0 1.25rem 1rem; }
      .zones-nav   { padding-right: 1.25rem; }
    }
    @media (max-width: 767px) {
      .zone-card { flex: 0 0 290px; }
      .zone-card .card-img { height: 180px; }
      .healing-section .full-img img { height: 280px; }
      
    }
	
	
	#dk-gallery {
		margin-top:100px;
	}
	 #dk-gallery, #dk-gallery * {
      box-sizing: border-box !important;
    }

    #dk-gallery {
      --blush:     #f8ece8;
      --blush-dark:#f0ddd8;
      --rose:      #c2796a;
      --rose-dark: #a05a4d;
      --charcoal:  #2b2523;
      --mid:       #5a4a47;
      --border:    #e8d8d4;
      --white:     #ffffff;

      font-family: 'Jost', sans-serif;
      background: var(--blush);
      padding: 3rem 1.5rem;
      width: 100%;

      /* column: [main-row] then [filter tabs] */
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      gap: 1.8rem;
    }

    /* ── MAIN ROW: preview LEFT + strip RIGHT ── */
    #dk-gallery .dk-main-row {
      display: flex !important;
      flex-direction: row !important;
      align-items: stretch !important;
      gap: 14px;
      width: 100%;
      max-width: 1060px;
    }

    /* ── LARGE PREVIEW ── */
    #dk-gallery .dk-preview {
      flex: 1 1 auto !important;
      min-width: 0;
      border-radius: 10px;
      overflow: hidden !important;
      background: #1a1210;
      box-shadow: 0 18px 56px rgba(43,37,35,.2);
      position: relative;
      /* height driven by the strip */
      min-height: 500px;
    }
    #dk-gallery .dk-preview img {
      position: absolute !important;
      top: 0 !important; left: 0 !important;
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      display: block !important;
      transition: opacity .3s ease;
    }
    #dk-gallery .dk-preview img.dk-fade { opacity: 0 !important; }

    /* ── THUMBNAIL STRIP ── */
    #dk-gallery .dk-strip {
      flex: 0 0 90px !important;
      width: 90px !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      gap: 6px;
    }

    /* arrow buttons */
    #dk-gallery .dk-arrow {
      flex-shrink: 0 !important;
      width: 32px !important;
      height: 32px !important;
      border: none !important;
      border-radius: 50% !important;
      background: var(--white) !important;
      cursor: pointer;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      box-shadow: 0 3px 10px rgba(43,37,35,.13);
      transition: background .2s;
      outline: none !important;
      padding: 0 !important;
    }
    #dk-gallery .dk-arrow:hover { background: var(--rose) !important; }
    #dk-gallery .dk-arrow:hover svg { stroke: #fff !important; }
    #dk-gallery .dk-arrow svg {
      width: 14px !important; height: 14px !important;
      stroke: var(--rose-dark);
      fill: none;
      stroke-width: 2.2;
      display: block !important;
    }

    /* viewport — clips overflow */
    #dk-gallery .dk-viewport {
      flex: 1 1 auto !important;
      width: 80px !important;
      overflow: hidden !important;
      position: relative;
    }

    /* scrolling list */
    #dk-gallery .dk-thumb-list {
      display: flex !important;
      flex-direction: column !important;
      gap: 8px;
      padding: 4px 0;
      transition: transform .4s cubic-bezier(.4,0,.2,1);
      will-change: transform;
    }

    /* each thumbnail — image ONLY, no text */
    #dk-gallery .dk-thumb {
      width: 78px !important;
      height: 68px !important;
      border-radius: 7px !important;
      overflow: hidden !important;
      cursor: pointer;
      flex-shrink: 0 !important;
      border: 2.5px solid transparent !important;
      box-shadow: 0 2px 8px rgba(43,37,35,.12);
      transition: border-color .25s, box-shadow .25s, transform .2s;
      display: block !important;
      padding: 0 !important;
      background: none !important;
      outline: none !important;
    }
    #dk-gallery .dk-thumb img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      display: block !important;
      transition: transform .4s ease;
    }
    #dk-gallery .dk-thumb:hover { transform: scale(1.04) !important; }
    #dk-gallery .dk-thumb:hover img { transform: scale(1.08) !important; }
    #dk-gallery .dk-thumb.dk-active {
      border-color: var(--rose) !important;
      box-shadow: 0 0 0 3px rgba(194,121,106,.28) !important;
    }

    /* ── FILTER TABS ── */
    #dk-gallery .dk-filters {
      display: flex !important;
      flex-direction: row !important;
      align-items: center !important;
      justify-content: center !important;
      gap: .9rem;
      flex-wrap: wrap;
    }
    #dk-gallery .dk-filter-btn {
      font-family: 'Jost', sans-serif !important;
      font-size: .82rem !important;
      font-weight: 500 !important;
      letter-spacing: .04em !important;
      padding: .55rem 1.7rem !important;
      border-radius: 30px !important;
      border: 1.5px solid var(--border) !important;
      background: transparent !important;
      color: var(--mid) !important;
      cursor: pointer;
      transition: all .25s ease;
      outline: none !important;
      display: inline-block !important;
      line-height: normal !important;
    }
    #dk-gallery .dk-filter-btn:hover {
      border-color: var(--rose) !important;
      color: var(--rose-dark) !important;
    }
    #dk-gallery .dk-filter-btn.dk-active {
      background: linear-gradient(135deg, #c2796a 0%, #8b4c8c 100%) !important;
      border-color: transparent !important;
      color: #fff !important;
      box-shadow: 0 4px 18px rgba(139,76,140,.3) !important;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 600px) {
      #dk-gallery .dk-preview { min-height: 260px; }
      #dk-gallery .dk-strip   { flex: 0 0 72px !important; width: 72px !important; }
      #dk-gallery .dk-viewport{ width: 64px !important; }
      #dk-gallery .dk-thumb   { width: 62px !important; height: 54px !important; }
    }
	
	.contact-details {
		text-align:center;
	}
	
	.contact-details h4{
		    color: #f4a4ac;
    margin: 15px 0;
	}
	
	.contact-details img{
		margin-top:20px;
	}
	
	.strategy-section {
		background:url('./../../assets/img/bg.jpg'); 
		background-position: right;
	}
	
@media only screen and (max-width: 600px) {
	.strategy-section {
		    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
	}
	
	.hero {
	    min-height:67vh;
	}
	
	.scroll-wrap{
	        bottom: -11px;
	}
}



@media (max-width: 768px) {
  #dk-gallery {
    padding: 1.5rem 1rem !important;
    gap: 1rem !important;
  }

  /* Stack preview on top, thumbs below */
  #dk-gallery .dk-main-row {
    flex-direction: column !important;
    gap: 10px !important;
  }

  /* Preview full width, shorter height */
  #dk-gallery .dk-preview {
    width: 100% !important;
    min-height: 220px !important;
    max-height: 260px !important;
    border-radius: 12px !important;
  }

  /* Strip goes horizontal */
  #dk-gallery .dk-strip {
    flex: unset !important;
    width: 100% !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    height: 72px !important;
  }

  /* Viewport scrolls horizontally */
  #dk-gallery .dk-viewport {
    flex: 1 1 auto !important;
    width: auto !important;
    height: 68px !important;
    overflow: hidden !important;
  }

  /* Thumb list goes horizontal */
  #dk-gallery .dk-thumb-list {
    flex-direction: row !important;
    gap: 8px !important;
    padding: 0 4px !important;
    transition: transform .4s cubic-bezier(.4,0,.2,1) !important;
  }

  /* Thumb size on mobile */
  #dk-gallery .dk-thumb {
    width: 72px !important;
    height: 62px !important;
    flex-shrink: 0 !important;
  }

  /* Arrows point left/right */
  #dk-gallery .dk-arrow {
    width: 28px !important;
    height: 28px !important;
    flex-shrink: 0 !important;
  }

  /* Rotate the SVG arrows for horizontal direction */
  #dk-gallery #dkUp svg {
    transform: rotate(-90deg) !important;
  }
  #dk-gallery #dkDown svg {
    transform: rotate(-90deg) !important;
  }
}



 /* Bubble button */
    #wa-bubble {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 9999;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }
 
    .wa-btn {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #25d366 0%, #128c4f 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.15);
      transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
      position: relative;
    }
    .wa-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 30px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.18);
    }
    .wa-btn svg { width: 30px; height: 30px; fill: #fff; }
 
    /* Pulse ring */
    .wa-btn::before {
      content: '';
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 2px solid rgba(37,211,102,.5);
      animation: waPulse 2s ease-out infinite;
    }
    @keyframes waPulse {
      0%   { transform: scale(1);   opacity: .8; }
      70%  { transform: scale(1.35); opacity: 0; }
      100% { transform: scale(1.35); opacity: 0; }
    }
 
    /* Notification dot */
    .wa-badge {
      position: absolute;
      top: 0; right: 0;
      width: 16px; height: 16px;
      background: #e53935;
      border-radius: 50%;
      border: 2px solid #fff;
      font-size: 9px;
      font-weight: 700;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }
 
    /* Tooltip label */
    .wa-label {
      position: absolute;
      right: 70px;
      background: #fff;
      color: #1a1a1a;
      font-family: 'DM Sans', sans-serif;
      font-size: .78rem;
      font-weight: 500;
      white-space: nowrap;
      padding: .45rem .85rem;
      border-radius: 20px;
      box-shadow: 0 4px 18px rgba(0,0,0,.12);
      pointer-events: none;
      opacity: 0;
      transform: translateX(8px);
      transition: opacity .2s ease, transform .2s ease;
    }
    .wa-label::after {
      content: '';
      position: absolute;
      right: -5px; top: 50%;
      transform: translateY(-50%);
      border: 5px solid transparent;
      border-right: none;
      border-left-color: #fff;
    }
    #wa-bubble:hover .wa-label {
      opacity: 1;
      transform: translateX(0);
    }
 
    /* Chat popup */
    #wa-popup {
      position: fixed;
      bottom: 100px;
      right: 28px;
      z-index: 9998;
      width: 320px;
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 16px 60px rgba(0,0,0,.16), 0 4px 16px rgba(0,0,0,.08);
      overflow: hidden;
      transform-origin: bottom right;
      transform: scale(0.85) translateY(20px);
      opacity: 0;
      pointer-events: none;
      transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .25s ease;
    }
    #wa-popup.open {
      transform: scale(1) translateY(0);
      opacity: 1;
      pointer-events: all;
    }
 
    /* Popup header */
    .wa-header {
      background: linear-gradient(135deg, #075e54 0%, #128c4f 100%);
      padding: 1.1rem 1.3rem;
      display: flex;
      align-items: center;
      gap: .85rem;
    }
    .wa-avatar {
      width: 46px; height: 46px;
      border-radius: 50%;
      background: rgba(255,255,255,.2);
      border: 2px solid rgba(255,255,255,.4);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: #fff;
      flex-shrink: 0;
    }
    .wa-header-info { flex: 1; }
    .wa-header-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: #fff;
      letter-spacing: .04em;
    }
    .wa-header-status {
      font-size: .73rem;
      color: rgba(255,255,255,.8);
      display: flex;
      align-items: center;
      gap: .3rem;
      margin-top: .15rem;
    }
    .wa-online-dot {
      width: 7px; height: 7px;
      background: #76ff9a;
      border-radius: 50%;
      animation: blink 2s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }
 
    .wa-close {
      background: none;
      border: none;
      cursor: pointer;
      color: rgba(255,255,255,.8);
      padding: .2rem;
      border-radius: 50%;
      width: 28px; height: 28px;
      display: flex; align-items: center; justify-content: center;
      transition: background .15s;
    }
    .wa-close:hover { background: rgba(255,255,255,.15); }
    .wa-close svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.2; }
 
    /* Chat body */
    .wa-body {
      background: #ece5dd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 0h80v80H0z' fill='none'/%3E%3Ccircle cx='40' cy='40' r='1' fill='%23c7bdb5' opacity='.35'/%3E%3C/svg%3E");
      padding: 1.1rem;
      min-height: 120px;
    }
    .wa-chat-bubble {
      background: #fff;
      border-radius: 12px 12px 12px 2px;
      padding: .75rem .95rem;
      font-size: .82rem;
      color: #333;
      line-height: 1.55;
      box-shadow: 0 1px 3px rgba(0,0,0,.1);
      max-width: 88%;
      position: relative;
      animation: bubbleIn .4s cubic-bezier(.34,1.56,.64,1);
    }
    @keyframes bubbleIn { from { transform: scale(.9) translateY(6px); opacity: 0; } }
    .wa-chat-bubble .wa-time {
      font-size: .68rem;
      color: #999;
      text-align: right;
      margin-top: .4rem;
    }
    .wa-chat-bubble strong { color: #075e54; }
 
    /* Input area */
    .wa-footer {
      padding: .85rem 1rem;
      display: flex;
      gap: .55rem;
      align-items: center;
      border-top: 1px solid #f0ebe5;
      background: #fff;
    }
    .wa-input {
      flex: 1;
      border: 1.5px solid #e8e1d9;
      border-radius: 22px;
      padding: .6rem 1rem;
      font-family: 'DM Sans', sans-serif;
      font-size: .82rem;
      color: #333;
      outline: none;
      transition: border-color .2s;
      background: #faf8f5;
    }
    .wa-input:focus { border-color: #25d366; }
    .wa-input::placeholder { color: #bbb; }
 
    .wa-send {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, #25d366, #128c4f);
      border: none;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
      flex-shrink: 0;
      box-shadow: 0 3px 10px rgba(37,211,102,.4);
    }
    .wa-send:hover { transform: scale(1.1); box-shadow: 0 5px 16px rgba(37,211,102,.5); }
    .wa-send svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
 
    /* Quick reply chips */
    .wa-chips {
      padding: 0 1rem .9rem;
      display: flex;
      flex-wrap: wrap;
      gap: .4rem;
      background: #fff;
    }
    .wa-chip {
      background: #f0faf3;
      border: 1.2px solid #25d366;
      color: #0d7a3a;
      font-family: 'DM Sans', sans-serif;
      font-size: .73rem;
      font-weight: 500;
      padding: .35rem .75rem;
      border-radius: 14px;
      cursor: pointer;
      transition: background .15s, transform .15s;
      white-space: nowrap;
    }
    .wa-chip:hover { background: #d6f5e3; transform: scale(1.04); }
 
    /* Powered-by strip */
    .wa-powered {
      text-align: center;
      font-size: .65rem;
      color: #ccc;
      padding: .45rem;
      background: #fff;
      border-top: 1px solid #f5f0ea;
    }
    
    
    .bottom-links ul{
    display:inline-block;
    margin: 30px 0 0 0;
    }
    
    .bottom-links li{
        display:inline-block;
        list-style:none;
            padding: 5px 10px;
    }
    
    
    .bottom-links a{
       color:#fff;
           text-decoration: none;
    }
    