*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0d6ea3;
  --primary-light: #1a9bd1;
  --primary-dark: #084d78;
  --accent: #0d9488;
  --accent-light: #14b8a6;
  --text-dark: #0f2944;
  --text-mid: #1e4a6e;
  --text-light: #4a7fa5;
  --bg-light: #e8f4fd;
  --bg-white: #ffffff;
  --shadow: 0 8px 32px rgba(13, 110, 163, 0.12);
  --shadow-lg: 0 20px 60px rgba(13, 110, 163, 0.18);
  --radius: 16px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 110, 163, 0.1);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo .logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}
.nav-logo .logo-text h1 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.nav-logo .logo-text p {
  font-size: 11px;
  color: var(--text-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s;
}
.nav-links a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13, 110, 163, 0.4) !important;
  background: var(--primary-dark) !important;
  color: #fff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── BANNER SLIDER ── */
.slider-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 70px;
}

.slides-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* slide backgrounds */
.slide {
  background: #0d3a5c;
}

/* right-side photo */
.slide-photo {
  width: 100%;
  height: 260px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  margin-bottom: 20px;
  transform: scale(0.96);
  transition: transform 8s ease;
}
.slide.active .slide-photo {
  transform: scale(1);
}

/* dot pattern overlay */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1.5' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E")
    repeat;
}

/* diagonal shine */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

/* text side */
.slide-text {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s 0.3s,
    transform 0.7s 0.3s;
}
.slide.active .slide-text {
  opacity: 1;
  transform: none;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.slide-badge i {
  color: var(--accent-light);
}

.slide-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4.5vw, 58px);
  color: #fff;
  line-height: 1.18;
  margin-bottom: 18px;
}
.slide-title span {
  color: var(--accent-light);
}

.slide-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
  margin-bottom: 34px;
  max-width: 520px;
}

.slide-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13, 148, 136, 0.6);
  background: var(--accent-light);
}

.btn-outline {
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

/* visual side — photo + info card */
.slide-visual {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(40px) scale(0.96);
  transition:
    opacity 0.7s 0.45s,
    transform 0.7s 0.45s;
}
.slide.active .slide-visual {
  opacity: 1;
  transform: none;
}

.slide-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: 36px 32px;
}

.sc-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 20px;
}
.slide-card h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.slide-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sc-tag {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.sc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.sc-stat {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}
.sc-stat .snum {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.sc-stat .snum sup {
  font-size: 14px;
}
.sc-stat .slbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

/* ── SLIDER CONTROLS ── */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  user-select: none;
}
.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}
.slider-arrow.prev {
  left: 24px;
}
.slider-arrow.next {
  right: 24px;
}

/* dots */
.slider-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border: none;
  transition: all 0.35s;
  padding: 0;
}
.dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

/* progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--accent);
  z-index: 10;
  width: 0%;
  transition: width linear;
}

/* thumbnail strip */
.slide-thumbs {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.thumb {
  width: 56px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  overflow: hidden;
}
.thumb.active {
  border-color: var(--accent);
  background: rgba(13, 148, 136, 0.25);
  transform: scale(1.1);
}
.thumb:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

/* slide counter */
.slide-counter {
  position: absolute;
  top: 90px;
  right: 28px;
  z-index: 10;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}
.slide-counter span {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* responsive slider */
@media (max-width: 1024px) {
  .slide-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
    padding: 0 48px;
  }
  .slide-visual {
    width: 100%;
  }
  .slide-card {
    padding: 24px 20px;
  }
  .slide-photo {
    display: none;
  }
  .slide-desc {
    max-width: none;
  }
  .slider-wrap {
    height: auto;
    min-height: 100vh;
  }
  .slide {
    height: auto;
    padding: 24px 0 100px;
  }
  .slides-track {
    height: auto;
    align-items: flex-start;
  }
  .slider-arrow {
    display: none;
  }
}
@media (max-width: 768px) {
  .slide-content {
    padding: 0 24px;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .slider-arrow.prev {
    left: 12px;
  }
  .slider-arrow.next {
    right: 12px;
  }
  .slide-thumbs {
    display: none;
  }
  .slider-dots {
    bottom: 60px;
  }
}

/* ── SECTION COMMON ── */
section {
  padding: 90px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 110, 163, 0.08);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-tag i {
  font-size: 12px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span {
  color: var(--primary);
}

.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 600px;
}

.section-header {
  margin-bottom: 56px;
}
.section-header.center {
  text-align: center;
}
.section-header.center .section-sub {
  margin: 0 auto;
}

/* ── ABOUT ── */
#about {
  background: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-grid-full {
  grid-template-columns: 1fr;
}
.about-grid-full .about-doctors-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
}
.about-grid-full .about-doctor-item {
  border-bottom: 1px solid #e0e8ee;
}

/* ── ABOUT IMAGE COLLAGE ── */
.about-img-wrap {
  position: relative;
  min-height: 540px;
}

.about-img-main {
  width: 78%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(13, 110, 163, 0.22);
  position: relative;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.about-img-main:hover img {
  transform: scale(1.04);
}

/* green frame accent */
.about-img-main::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 3px solid var(--primary);
  border-radius: 28px;
  z-index: -1;
  opacity: 0.35;
}

/* second (floating) image */
.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  border: 4px solid #fff;
}
.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.about-img-float:hover img {
  transform: scale(1.06);
}

/* experience badge */
.about-exp-badge {
  position: absolute;
  top: 28px;
  right: -10px;
  background: var(--accent);
  color: var(--text-dark);
  border-radius: 20px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.45);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}
.about-exp-badge .exp-num {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}
.about-exp-badge .exp-lbl {
  font-size: 11px;
  font-weight: 600;
  margin-top: 2px;
}

/* patients badge */
.about-pat-badge {
  position: absolute;
  bottom: 50px;
  left: -16px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  z-index: 3;
  animation: float 3.5s ease-in-out infinite reverse;
}
.about-pat-badge .pb-icon {
  width: 44px;
  height: 44px;
  background: rgba(13, 110, 163, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
}
.about-pat-badge .pb-text strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.about-pat-badge .pb-text span {
  font-size: 11px;
  color: var(--text-light);
}

/* third small image (top-left strip) */
.about-img-strip {
  position: absolute;
  top: 0;
  left: -20px;
  width: 90px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid #fff;
}
.about-img-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.mini-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.mini-card:hover {
  transform: translateY(-4px);
}
.mini-card i {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}
.mini-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.mini-card p {
  font-size: 12px;
  color: var(--text-light);
}

.about-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.about-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 2px 12px rgba(13, 110, 163, 0.07);
}
.highlight-item i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.highlight-item div h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.highlight-item div p {
  font-size: 13px;
  color: var(--text-light);
}

/* ── NEW ABOUT SECTION STYLES ── */
.about-img-main-single {
  width: 100%;
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(13, 110, 163, 0.18);
  position: relative;
}
.about-img-main-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-exp-badge-new {
  position: absolute;
  top: 24px;
  left: 0px;
  background: var(--primary-dark, #0d5c63);
  color: #fff;
  border-radius: 0 16px 16px 0;
  padding: 18px 24px;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  z-index: 3;
}
.about-exp-badge-new .exp-num-new {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.about-exp-badge-new .exp-lbl-new {
  font-size: 13px;
  font-weight: 500;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

.about-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-heading span {
  color: var(--primary);
}

.about-doctors-list {
  display: flex;
  flex-direction: column;
  margin: 24px 0 28px;
  border-top: 1px solid #e0e8ee;
}
.about-doctor-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e0e8ee;
}
.about-doctor-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.about-doctor-icon.ayurveda {
  background: #1a8c6e;
}
.about-doctor-info {
  font-size: 14.5px;
  color: var(--text-dark);
  line-height: 1.4;
}
.about-doctor-info strong {
  font-weight: 700;
}
.about-doctor-info span {
  color: var(--text-mid);
  font-weight: 400;
}

.about-btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.about-btn-row .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-dark, #0d5c63);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.2s;
}
.about-btn-row .btn-primary:hover {
  background: var(--primary);
  transform: translateY(-2px);
}
.about-btn-row .btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.2s;
}
.about-btn-row .btn-teal:hover {
  background: var(--primary-dark, #0d5c63);
  transform: translateY(-2px);
}

/* ── DOCTOR CARDS ── */
.doctors-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.doctor-card {
  background: #fff;
  border-radius: 24px;
  overflow: visible;
  box-shadow: var(--shadow);
  transition:
    transform 0.35s,
    box-shadow 0.35s;
  text-align: center;
  position: relative;
}
.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* colored arc banner behind the photo */
.doctor-card-banner {
  height: 120px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 60%,
    var(--primary-light) 100%
  );
  position: relative;
  overflow: hidden;
}
.doctor-card-banner::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}
.doctor-card-banner::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

/* avatar – floats half-over the banner */
.doctor-avatar-wrap {
  position: relative;
  margin: -70px auto 0;
  width: 140px;
  z-index: 2;
}

/* outer decorative ring */
.doctor-avatar-wrap::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(
    var(--primary) 0% 50%,
    var(--accent) 50% 75%,
    var(--primary-light) 75% 100%
  );
  z-index: -1;
  animation: spin-ring 8s linear infinite;
}

@keyframes spin-ring {
  to {
    transform: rotate(360deg);
  }
}

/* white gap ring */
.doctor-avatar-wrap::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: #fff;
  z-index: -1;
}

.doctor-avatar-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 1;
}
.doctor-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}
.doctor-card:hover .doctor-avatar-img img {
  transform: scale(1.08);
}

/* verified badge */
.doctor-verified {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  z-index: 3;
}

.doctor-card-body {
  padding: 20px 28px 28px;
}

.doctor-card-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.doctor-card-body .role {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 14px;
}

.doctor-badge {
  display: inline-block;
  background: rgba(13, 110, 163, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.doctor-card-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.doctor-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}
.spec-tag {
  background: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid rgba(13, 110, 163, 0.15);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.doctor-contact-row {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.dc-btn {
  padding: 9px 20px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}
.dc-btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 4px 14px rgba(13, 110, 163, 0.3);
}
.dc-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 110, 163, 0.45);
}
.dc-btn.outline {
  border: 2px solid rgba(13, 110, 163, 0.25);
  color: var(--primary);
}
.dc-btn.outline:hover {
  border-color: var(--primary);
  background: rgba(13, 110, 163, 0.05);
}

/* ── DISEASES ── */
#diseases {
  background: var(--bg-light);
}

.diseases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) {
  .diseases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .diseases-grid {
    grid-template-columns: 1fr;
  }
}

.disease-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.35s,
    box-shadow 0.35s;
  cursor: default;
  background: #fff;
}
.disease-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

/* image block */
.disease-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.disease-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.disease-card:hover .disease-img-wrap img {
  transform: scale(1.07);
}

/* gradient overlay on image */
.disease-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.15) 55%,
    transparent 100%
  );
}

/* coloured accent strip at top of image */
.disease-img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 2;
}
.disease-card:nth-child(1) .disease-img-wrap::before {
  background: linear-gradient(90deg, #0d6ea3, #38bdf8);
}
.disease-card:nth-child(2) .disease-img-wrap::before {
  background: linear-gradient(90deg, #084d78, #0d6ea3);
}
.disease-card:nth-child(3) .disease-img-wrap::before {
  background: linear-gradient(90deg, #6d4c41, #a1614a);
}
.disease-card:nth-child(4) .disease-img-wrap::before {
  background: linear-gradient(90deg, #7b1fa2, #ab47bc);
}
.disease-card:nth-child(5) .disease-img-wrap::before {
  background: linear-gradient(90deg, #bf360c, #e64a19);
}
.disease-card:nth-child(6) .disease-img-wrap::before {
  background: linear-gradient(90deg, #004d40, #00897b);
}

/* text over image */
.disease-img-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  z-index: 2;
}
.disease-img-content h3 {
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.d-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.disease-card:nth-child(1) .d-tag {
  background: rgba(13, 110, 163, 0.75);
}
.disease-card:nth-child(2) .d-tag {
  background: rgba(13, 71, 161, 0.75);
}
.disease-card:nth-child(3) .d-tag {
  background: rgba(109, 76, 65, 0.75);
}
.disease-card:nth-child(4) .d-tag {
  background: rgba(123, 31, 162, 0.75);
}
.disease-card:nth-child(5) .d-tag {
  background: rgba(191, 54, 12, 0.75);
}
.disease-card:nth-child(6) .d-tag {
  background: rgba(0, 77, 64, 0.75);
}

/* disease card action buttons */
.disease-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #f0f0f0;
}
.disease-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
  font-family: "Poppins", sans-serif;
  transition: all 0.25s;
  letter-spacing: 0.2px;
}
.disease-action-btn.call {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 0 0 0 24px;
}
.disease-action-btn.call:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
.disease-action-btn.enquire {
  color: var(--primary);
  background: rgba(13, 110, 163, 0.07);
  border-radius: 0 0 24px 0;
  border-left: 1px solid rgba(13, 110, 163, 0.12);
}
.disease-action-btn.enquire:hover {
  background: rgba(13, 110, 163, 0.14);
  color: var(--primary-dark);
}
.disease-action-btn i {
  font-size: 13px;
}

.disease-card-body {
  padding: 0;
}

/* treatment blocks */
.dt-block {
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
}
.dt-block:last-child {
  border-bottom: none;
}

.dt-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.dt-label.routine {
  color: #b71c1c;
}
.dt-label.routine i {
  color: #b71c1c;
}
.dt-label.special {
  color: var(--primary);
}
.dt-label.special i {
  color: var(--primary);
}

.dt-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
  padding: 0;
}
.dt-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.5;
}
.dt-list li i {
  font-size: 8px;
  flex-shrink: 0;
  margin-top: 4px;
}
.dt-list.routine-list li i {
  color: #e53935;
}
.dt-list.special-list li i {
  color: var(--primary);
}

.dt-result {
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}
.dt-result.bad {
  background: #fff3f3;
  color: #b71c1c;
  border-left: 3px solid #e53935;
}
.dt-result.good {
  background: rgba(13, 110, 163, 0.07);
  color: var(--primary-dark);
  border-left: 3px solid var(--primary);
}

/* ── TREATMENT ── */
#treatment {
  background: var(--bg-light);
}

.treatment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.treatment-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.treatment-item {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  border-left: 4px solid transparent;
}
.treatment-item:hover {
  transform: translateX(6px);
  border-left-color: var(--primary);
}

.treatment-item .t-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(13, 110, 163, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.treatment-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.treatment-item p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

.treatment-right {
  position: relative;
}

.treatment-info-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 24px;
  padding: 48px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.treatment-info-card::before {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.treatment-info-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 20px;
}

.tinfo-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tinfo-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  opacity: 0.9;
}
.tinfo-points li i {
  color: var(--accent-light);
  font-size: 16px;
}

.approach-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.approach-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
}

/* ── TREATMENT REDESIGN ── */
/* ── SERVICES GRID ── */
#treatment {
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13, 110, 163, 0.09);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(13, 110, 163, 0.18);
}

.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #eef3f7;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.08);
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 71, 161, 0.72) 0%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
}
.service-card-overlay i {
  font-size: 28px;
  color: #fff;
  opacity: 0.9;
}

.service-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-body h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.service-card-body p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.service-btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.service-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary);
  color: #fff;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.2s;
}
.service-call-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.service-enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.2s;
}
.service-enquire-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.service-cta-card {
  background: linear-gradient(135deg, var(--primary-dark), #17a2a2);
  color: #fff;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 26px;
}
.service-cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-cta-icon i {
  font-size: 22px;
  color: #fff;
}
.service-cta-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.service-cta-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 22px;
}
.service-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--primary-dark);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.service-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card-img {
    height: 180px;
  }
}

.treat-intro-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 20px;
  padding: 32px 40px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
}
.treat-intro-band .tib-icon {
  font-size: 48px;
  opacity: 0.8;
  flex-shrink: 0;
}
.treat-intro-band h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 8px;
}
.treat-intro-band p {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.7;
  margin: 0;
}

.treat-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 72px;
}
.treat-panel.reverse {
  direction: rtl;
}
.treat-panel.reverse > * {
  direction: ltr;
}

.treat-panel-img {
  position: relative;
}
.treat-img-main {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}
.treat-img-main img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.treat-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.treat-img-grid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.treat-img-four {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.treat-img-four img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.treat-img-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.treat-img-duo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.treat-content-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 110, 163, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.treat-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.treat-content h3 span {
  color: var(--primary);
}
.treat-content > p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.treat-avail-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-bottom: 24px;
}
.treat-avail-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.5;
}
.treat-avail-list li i {
  color: var(--primary);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

.treat-research-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.treat-research-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-dark);
  line-height: 1.6;
}
.treat-research-list li i {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.treat-result-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.treat-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 9px 18px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(13, 110, 163, 0.25);
}
.treat-result-badge.gold {
  background: linear-gradient(135deg, #084d78, var(--accent));
}

.treat-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary-light),
    transparent
  );
  margin-bottom: 72px;
}

@media (max-width: 900px) {
  .treat-intro-band {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
  .treat-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .treat-panel.reverse {
    direction: ltr;
  }
  .treat-avail-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .treat-content h3 {
    font-size: 24px;
  }
  .treat-img-four {
    grid-template-columns: 1fr 1fr;
  }
  .treat-img-duo {
    grid-template-columns: 1fr;
  }
}

/* ── WORKSHOP ── */
#workshop {
  background: #fff;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.workshop-card {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.workshop-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}
.workshop-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.wc-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(13, 110, 163, 0.3);
}

.workshop-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.workshop-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
}

.wc-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.wc-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
}
.wc-detail i {
  color: var(--primary);
  width: 16px;
}

/* ── WHY CHOOSE US ── */
#why-choose-us {
  background: var(--bg-light);
}

.wcu-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}

.wcu-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin: 12px 0 18px;
}
.wcu-title span {
  color: var(--primary);
}

.wcu-sub {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto;
}

/* 3-col first row, 2-col second row centred */
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* push cards 4 & 5 to a centred 2-col row */
.wcu-card:nth-child(4) {
  grid-column: 1 / 2;
  margin-left: calc(50% - 0px);
}
.wcu-card:nth-child(4),
.wcu-card:nth-child(5) {
  grid-row: 2;
}
/* centre the bottom two cards */
.wcu-grid {
  grid-template-rows: auto auto;
}
.wcu-card:nth-child(4) {
  grid-column: 1;
  margin-left: auto;
  margin-right: 0;
}
.wcu-card:nth-child(5) {
  grid-column: 2;
  margin-left: 0;
  margin-right: auto;
}
/* Reflow: use a wrapper trick — simpler approach */
.wcu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.wcu-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px 28px;
  text-align: center;
  box-shadow: 0 2px 20px rgba(13, 110, 163, 0.07);
  border-bottom: 3px solid var(--primary);
  flex: 0 1 calc(33.333% - 24px);
  min-width: 240px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wcu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(13, 110, 163, 0.14);
}

/* Bottom row — 2 cards centred */
.wcu-card:nth-child(4),
.wcu-card:nth-child(5) {
  flex: 0 1 calc(40% - 24px);
}

.wcu-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px dashed var(--primary);
  background: rgba(13, 110, 163, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--primary);
  flex-shrink: 0;
}
.wcu-icon-wrap.accent {
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 28px;
}

.wcu-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}
.wcu-card p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .wcu-card {
    flex: 0 1 calc(50% - 24px);
  }
  .wcu-card:nth-child(4),
  .wcu-card:nth-child(5) {
    flex: 0 1 calc(50% - 24px);
  }
}
@media (max-width: 560px) {
  .wcu-card,
  .wcu-card:nth-child(4),
  .wcu-card:nth-child(5) {
    flex: 0 1 100%;
  }
}

/* ── GALLERY ── */
#gallery {
  background: #0f1923;
}
#gallery .section-title {
  color: #fff;
}
#gallery .section-sub {
  color: rgba(255, 255, 255, 0.65);
}
#gallery .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-light);
}

/* year filter tabs */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.gtab {
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}
.gtab:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.gtab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-dark);
}

/* grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #1e2a35;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay .g-caption {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}
.gallery-overlay .g-year {
  display: inline-block;
  background: var(--accent);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-bottom: 6px;
}
.gallery-overlay .g-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}
.lightbox.open {
  display: flex;
}

.lb-img-wrap {
  max-width: 900px;
  max-height: 80vh;
  width: 100%;
  position: relative;
}
.lb-img-wrap img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

.lb-caption {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-top: 14px;
  text-align: center;
}

.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb-nav:hover {
  background: var(--accent);
  color: var(--text-dark);
}
.lb-nav.lb-prev {
  left: 16px;
}
.lb-nav.lb-next {
  right: 16px;
}

.lb-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/* ── TESTIMONIALS SLIDER ── */
#testimonials {
  background: linear-gradient(135deg, #04243d 0%, #084d78 60%, #0d6ea3 100%);
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
#testimonials .section-tag {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
#testimonials .section-title {
  color: #fff;
}
#testimonials .section-title span {
  color: var(--accent-light);
}
#testimonials .section-sub {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto;
}

/* track wrapper */
.tslider-outer {
  position: relative;
  margin-top: 48px;
}

.tslider-viewport {
  overflow: hidden;
  border-radius: 20px;
}

.tslider-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

/* each slide shows 1 card on ≤768px, 2 on md, 3 on lg */
.tslide {
  min-width: calc(100% / 3);
  padding: 0 12px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .tslide {
    min-width: 50%;
  }
}
@media (max-width: 640px) {
  .tslide {
    min-width: 100%;
  }
}

/* card */
.tcard {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px 28px;
  position: relative;
  height: 100%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

/* big quote mark */
.tcard::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  right: 22px;
  font-family: "Playfair Display", serif;
  font-size: 90px;
  color: rgba(13, 110, 163, 0.08);
  line-height: 1;
  pointer-events: none;
}

/* top accent line */
.tcard::after {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 0 0 4px 4px;
}

.tcard .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.tcard .stars i {
  color: var(--accent);
  font-size: 13px;
}

.tcard .review-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  font-style: italic;
  flex: 1;
  margin-bottom: 22px;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(13, 110, 163, 0.1);
}

.tcard-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.tcard-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tcard-avatar.c1 {
  background: linear-gradient(135deg, #084d78, #0d6ea3);
}
.tcard-avatar.c2 {
  background: linear-gradient(135deg, #0d6ea3, #38bdf8);
}
.tcard-avatar.c3 {
  background: linear-gradient(135deg, #7b1fa2, #ab47bc);
}
.tcard-avatar.c4 {
  background: linear-gradient(135deg, #bf360c, #e64a19);
}
.tcard-avatar.c5 {
  background: linear-gradient(135deg, #004d40, #00897b);
}
.tcard-avatar.c6 {
  background: linear-gradient(135deg, #e65100, #ffa000);
}
.tcard-avatar.c7 {
  background: linear-gradient(135deg, #1a237e, #3949ab);
}
.tcard-avatar.c8 {
  background: linear-gradient(135deg, #880e4f, #e91e63);
}

.tcard-author h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.tcard-author .treat {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
}
.tcard-author .loc {
  font-size: 12px;
  color: var(--text-light);
}

/* treatment badge on card */
.tcard-badge {
  position: absolute;
  top: 5px;
  left: 24px;
  background: rgba(13, 110, 163, 0.08);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

/* arrows */
.tslider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 5;
  user-select: none;
}
.tslider-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-dark);
  transform: translateY(-50%) scale(1.1);
}
.tslider-arrow.tprev {
  left: -22px;
}
.tslider-arrow.tnext {
  right: -22px;
}
@media (max-width: 768px) {
  .tslider-arrow.tprev {
    left: 0;
  }
  .tslider-arrow.tnext {
    right: 0;
  }
}

/* dots */
.tslider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.tdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.tdot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 5px;
}

/* progress */
.tslider-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  margin-top: 16px;
  overflow: hidden;
}
.tslider-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0%;
  transition: width linear;
}

/* review count badge */
.tslider-count {
  text-align: center;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}
.tslider-count span {
  color: #fff;
  font-weight: 700;
}

/* ── STATS ── */
.stats-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 60px 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
}
.stat-item .num {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-item .num sup {
  font-size: 24px;
}
.stat-item .lbl {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin-top: 6px;
}

/* ── CONTACT ── */
#contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ci-icon {
  width: 48px;
  height: 48px;
  background: rgba(13, 110, 163, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}
.ci-text h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.ci-text p {
  font-size: 14px;
  color: var(--text-mid);
}
.ci-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.ci-text a:hover {
  text-decoration: underline;
}

.contact-maps {
  background: var(--bg-light);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-maps h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.map-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── FOOTER ── */
footer {
  background: #0a537feb;
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-text h1 {
  color: #fff;
  font-size: 18px;
}
.footer-brand .logo-text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.footer-brand p {
  font-size: 14px;
  margin-top: 16px;
  opacity: 0.7;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.contact-item .footer-social {
  margin-top: 4px;
}
.contact-item .footer-social a {
  background: rgba(13, 110, 163, 0.1);
  color: var(--primary);
}
.contact-item .footer-social a:hover {
  background: var(--primary);
  color: #fff;
}

footer h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
}
footer ul li a:hover {
  color: var(--primary-light);
}
footer ul li a i {
  font-size: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.6;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 999;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(13, 110, 163, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a {
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
  transition: background 0.2s;
}
.mobile-menu a:hover {
  background: var(--bg-light);
  color: var(--primary);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px 12px;
  line-height: 1;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: var(--primary);
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── SCROLL TOP ── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 500;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(13, 110, 163, 0.4);
}
.scroll-top.visible {
  opacity: 1;
  transform: none;
}
.scroll-top:hover {
  background: var(--primary-dark);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-img-wrap {
    min-height: 420px;
  }
  .about-img-main {
    width: 80%;
    height: 340px;
  }
  .about-img-float {
    width: 55%;
    height: 200px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .treatment-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-item:nth-child(6) {
    grid-column: span 1;
  }
  .gallery-item .gallery-img {
    min-height: 200px !important;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-right: 48px;
  }
}

@media (max-width: 768px) {
  .about-img-wrap {
    min-height: 340px;
  }
  .about-img-main {
    width: 85%;
    height: 260px;
  }
  .about-img-float {
    width: 58%;
    height: 160px;
    bottom: 0;
    right: 0;
  }
  .about-img-strip {
    display: none;
  }
  .about-exp-badge {
    right: 0;
    top: 12px;
    padding: 12px 14px;
  }
  .about-exp-badge .exp-num {
    font-size: 26px;
  }
  .about-pat-badge {
    left: 0;
    bottom: 36px;
  }
  .about-img-main-single {
    height: 280px;
  }
  .about-exp-badge-new {
    padding: 12px 16px;
    min-width: 140px;
  }
  .about-exp-badge-new .exp-num-new {
    font-size: 30px;
  }
  .about-btn-row {
    flex-direction: column;
  }
  .about-btn-row .btn-primary,
  .about-btn-row .btn-teal {
    text-align: center;
    justify-content: center;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  section {
    padding: 64px 0;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .about-mini-cards {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
    column-gap: 16px;
    padding-right: 44px;
  }
  .stat-item .num {
    font-size: 34px;
  }
}

/* ── FLOATING ENQUIRE NOW ── */
.float-enquire {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(0deg);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 10px 0 0 10px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.5px;
  z-index: 8999;
  box-shadow: -4px 0 20px rgba(13, 110, 163, 0.35);
  transition:
    padding 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.float-enquire i {
  writing-mode: horizontal-tb;
  font-size: 15px;
}
.float-enquire span {
  transform: rotate(180deg);
}
.float-enquire:hover {
  padding: 12px 18px;
  box-shadow: -6px 0 28px rgba(13, 110, 163, 0.5);
  color: #fff;
}

/* ── FLOATING CALL & WHATSAPP ── */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9000;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.float-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.float-call {
  background: #0d6ea3;
  animation: pulse-call 2.5s infinite;
}
.float-whatsapp {
  background: #25d366;
  animation: pulse-wa 2.5s infinite;
}
@keyframes pulse-call {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(21, 101, 192, 0.4);
  }
  50% {
    box-shadow: 0 4px 28px rgba(21, 101, 192, 0.75);
  }
}
@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.75);
  }
}

/* ── ONLOAD POPUP ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
  padding: 16px;
}
.popup-overlay.popup-visible {
  opacity: 1;
  visibility: visible;
}
.popup-box {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 32px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(30px);
  transition: transform 0.35s ease;
}
.popup-overlay.popup-visible .popup-box {
  transform: translateY(0);
}
.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: #4a7fa5;
  cursor: pointer;
  transition: color 0.2s;
}
.popup-close:hover {
  color: var(--primary);
}
.popup-header {
  text-align: center;
  margin-bottom: 24px;
}
.popup-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.popup-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.popup-header p {
  font-size: 13px;
  color: var(--text-light);
}
.popup-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.popup-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8f0eb;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.25s;
  box-sizing: border-box;
}
.popup-input:focus {
  border-color: var(--primary);
}
.popup-submit {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.popup-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 110, 163, 0.35);
}
@media (max-width: 480px) {
  .popup-box {
    padding: 28px 20px 24px;
  }
}

/* ── TREATMENTS & ADVANTAGES ── */
#treatments-advantages {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary) 55%,
    var(--accent) 130%
  );
  overflow: hidden;
}
/* dotted texture */
#treatments-advantages::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.14) 1.5px,
    transparent 1.5px
  );
  background-size: 26px 26px;
  opacity: 0.5;
  pointer-events: none;
}
/* glowing orbs */
#treatments-advantages::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(255, 255, 255, 0.14),
      transparent 40%
    ),
    radial-gradient(
      circle at 88% 20%,
      rgba(20, 184, 166, 0.35),
      transparent 42%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(239, 68, 68, 0.18),
      transparent 45%
    );
  pointer-events: none;
}

.ta-header .ta-tag {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  position: relative;
  z-index: 1;
}
.ta-title {
  color: #fff;
  position: relative;
  z-index: 1;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.ta-title span {
  background: linear-gradient(90deg, var(--accent-light), #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ta-sub {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.ta-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.ta-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.ta-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 26px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.ta-card-head i {
  font-size: 18px;
}
.ta-head-red {
  background: linear-gradient(135deg, #f87171, #b91c1c);
}
.ta-head-teal {
  background: linear-gradient(135deg, var(--accent-light), var(--primary));
}

.ta-list {
  list-style: none;
  padding: 10px 26px;
  margin: 0;
}
.ta-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  font-size: 15px;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}
.ta-list li:hover {
  transform: translateX(6px);
  color: #fff;
}
.ta-list li:last-child {
  border-bottom: none;
}
.ta-card:first-child .ta-list li i {
  font-size: 8px;
  color: #f87171;
  filter: drop-shadow(0 0 6px rgba(248, 113, 113, 0.7));
}
.ta-card:last-child .ta-list li i {
  font-size: 16px;
  color: var(--accent-light);
  filter: drop-shadow(0 0 6px rgba(20, 184, 166, 0.6));
}

.ta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 10px 26px 26px;
  padding: 15px;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    filter 0.25s;
}
.ta-btn-red {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  box-shadow: 0 10px 24px rgba(185, 28, 28, 0.35);
}
.ta-btn-teal {
  background: linear-gradient(135deg, var(--accent-light), var(--primary));
  box-shadow: 0 10px 24px rgba(13, 110, 163, 0.4);
}
.ta-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.ta-expert {
  align-self: center;
  justify-self: center;
  position: relative;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: radial-gradient(
    circle at 35% 30%,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.05),
    0 20px 45px rgba(0, 0, 0, 0.25);
}
.ta-expert::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  animation: ta-spin 18s linear infinite;
}
.ta-expert i {
  font-size: 24px;
  color: var(--accent-light);
  filter: drop-shadow(0 0 8px rgba(20, 184, 166, 0.8));
  animation: ta-spin 9s linear infinite;
}
@keyframes ta-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .ta-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .ta-expert {
    order: -1;
    margin-bottom: 8px;
  }
}
