/* Success Stories Instagram Grid */
/* Instagram Success Stories Swiper Slider */
.insta-swiper {
  margin-top: 2.5rem;
  padding-bottom: 3.5rem;
}
.insta-swiper .swiper-wrapper {
  align-items: stretch;
}
.insta-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
}
.insta-story-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
  text-decoration: none;
  color: #222;
  width: 220px;
  min-height: 320px;
  padding: 1.2rem 1rem 1.1rem 1rem;
  transition: transform 0.18s, box-shadow 0.18s;
}
.insta-story-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 6px 24px 0 rgba(0,0,0,0.13);
}
.insta-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 0.8rem;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insta-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.insta-caption {
  font-weight: 600;
  font-size: 1.08rem;
  text-align: center;
  margin-top: 0.2rem;
  color: #1a1a1a;
}
.insta-swiper .swiper-pagination {
  bottom: 0;
}
.insta-swiper .swiper-button-prev,
.insta-swiper .swiper-button-next {
  color: #222;
  top: 40%;
}
@media (max-width: 700px) {
  .insta-story-card {
    width: 90vw;
    min-width: 0;
    min-height: 260px;
  }
}
:root {
  --maroon: #800000;
  --crimson: #b8001f;
  --red: #ff4d4d;
  --orange: #ff7a00;
  --gold: #ffb400;
  --ink: #1f1f29;
  --muted: #666977;
  --soft: #fff7f1;
  --white: #fff;
  --brand: linear-gradient(135deg, #800000 0%, #b8001f 32%, #ff4d4d 58%, #ff7a00 82%, #ffb400 100%);
  --dark: linear-gradient(145deg, #120616 0%, #1a0b26 50%, #230606 100%);
  --shadow: 0 20px 60px rgba(128, 0, 0, .14);
  --shadow-strong: 0 28px 90px rgba(0, 0, 0, .28);
  --radius: 26px;
  --transition: all .35s cubic-bezier(.2, .8, .2, 1);
  --font: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none
}

.container {
  width: min(1180px, 90%);
  margin: auto
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(128, 0, 0, .08);
  box-shadow: 0 10px 40px rgba(128, 0, 0, .06)
}

.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.brand img {
  width: 240px
}

.nav {
  display: flex;
  gap: 28px
}

.nav a {
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  position: relative
}

.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 3px;
  border-radius: 10px;
  background: var(--brand);
  transition: var(--transition)
}

.nav a:hover:after {
  width: 100%
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--brand);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 18px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .02em;
  transition: var(--transition);
  border: 0;
  cursor: pointer
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--maroon), var(--red));
  box-shadow: 0 16px 32px rgba(184, 0, 31, .28)
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(255, 77, 77, .38);
  background: linear-gradient(135deg, var(--crimson), var(--orange))
}

.btn-glass {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .34);
  backdrop-filter: blur(12px)
}

.btn-glass:hover {
  background: #fff;
  color: var(--maroon);
  transform: translateY(-4px)
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  padding: 90px 0;
  background: var(--brand);
  overflow: hidden
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 18%, rgba(255, 255, 255, .18), transparent 28%), radial-gradient(circle at 85% 68%, rgba(255, 180, 0, .28), transparent 34%), repeating-linear-gradient(45deg, rgba(255, 255, 255, .04) 0 2px, transparent 2px 28px)
}

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

.orb-1 {
  width: 360px;
  height: 360px;
  background: #fff;
  left: -120px;
  top: 80px;
  opacity: .16
}

.orb-2 {
  width: 430px;
  height: 430px;
  background: #ffb400;
  right: -130px;
  bottom: -110px;
  opacity: .34
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 54px;
  align-items: center
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px
}

.eyebrow.dark {
  background: #fff3df;
  color: var(--maroon)
}

.hero h1 {
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.02;
  color: #fff;
  font-weight: 900;
  letter-spacing: -.06em;
  margin-bottom: 22px
}

.hero-copy p {
  color: rgba(255, 255, 255, .92);
  font-size: 18px;
  max-width: 680px;
  margin-bottom: 28px
}

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 38px
}

.trust-row div {
  padding: 16px 14px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 20px;
  backdrop-filter: blur(10px)
}

.trust-row strong {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 900
}

.trust-row span {
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 700
}

.hero-visual {
  position: relative
}

.growth-card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(20px)
}

.brand-mark {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 24px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 20px 50px rgba(128, 0, 0, .16)
}

.brand-mark img {
  width: 58px
}

.growth-card h3 {
  font-size: 26px;
  margin-bottom: 22px
}

.metric-list {
  display: grid;
  gap: 13px
}

.metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 17px;
  border-radius: 16px;
  background: #fff7f1;
  border: 1px solid rgba(255, 122, 0, .16)
}

.metric span {
  font-weight: 800;
  color: #555
}

.metric strong {
  color: #16a34a
}

.mini-chart {
  height: 130px;
  display: flex;
  align-items: end;
  gap: 12px;
  margin-top: 25px
}

.mini-chart span {
  flex: 1;
  border-radius: 14px 14px 0 0;
  background: var(--brand);
  box-shadow: 0 12px 24px rgba(255, 77, 77, .22);
  animation: bars 2.6s ease infinite alternate
}

.mini-chart span:nth-child(1) {
  height: 36%
}

.mini-chart span:nth-child(2) {
  height: 52%;
  animation-delay: .1s
}

.mini-chart span:nth-child(3) {
  height: 64%;
  animation-delay: .2s
}

.mini-chart span:nth-child(4) {
  height: 82%;
  animation-delay: .3s
}

.mini-chart span:nth-child(5) {
  height: 96%;
  animation-delay: .4s
}

@keyframes bars {
  to {
    transform: scaleY(.82)
  }
}

.floating-pill {
  position: absolute;
  background: #fff;
  color: var(--maroon);
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 900;
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite
}

.pill-a {
  top: 20px;
  right: -10px
}

.pill-b {
  left: -26px;
  bottom: 50px;
  animation-delay: 1.2s
}

@keyframes float {
  50% {
    transform: translateY(-12px)
  }
}

section {
  padding: 88px 0
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px
}

.section-head.left {
  text-align: left;
  margin: 0
}

.section-head.light h2,
.section-head.light p {
  color: #fff
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--maroon);
  margin-bottom: 14px
}

.section-head p {
  color: var(--muted);
  font-size: 17px
}

.services,
.proof {
  background: linear-gradient(180deg, #fff 0%, #fff7f1 100%)
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.service-card,
.doctor-card,
.testi-card {
  background: #fff;
  border: 1px solid rgba(128, 0, 0, .08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
  transition: var(--transition);
  position: relative;
  overflow: hidden
}

.service-card:before,
.doctor-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: var(--brand)
}

.service-card:hover,
.doctor-card:hover,
.testi-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 122, 0, .28)
}

.service-card i {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: #fff0e6;
  color: var(--maroon);
  display: grid;
  place-items: center;
  font-size: 25px;
  margin-bottom: 20px;
  transition: var(--transition)
}

.service-card:hover i {
  background: var(--brand);
  color: #fff;
  transform: rotate(-6deg) scale(1.05)
}

.service-card h3 {
  font-size: 21px;
  margin-bottom: 10px
}

.service-card p {
  color: var(--muted)
}

.process {
  background: #fff
}

.process-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center
}

.process-steps {
  display: grid;
  gap: 18px
}

.step {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(128, 0, 0, .08);
  box-shadow: 0 12px 35px rgba(128, 0, 0, .08)
}

.step span {
  grid-row: span 2;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900
}

.step h3 {
  font-size: 22px
}

.step p {
  color: var(--muted)
}

.packages {
  position: relative;
  background: var(--dark);
  overflow: hidden
}

.packages:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(255, 77, 77, .20), transparent 30%), radial-gradient(circle at 90% 80%, rgba(255, 180, 0, .16), transparent 28%), repeating-linear-gradient(45deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 26px)
}

.packages .container {
  position: relative;
  z-index: 1
}

.pkg-cards-wrap {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 34px;
  flex-wrap: wrap
}

.pkg-card {
  width: min(100%, 430px);
  background: #fff;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, .2)
}

.pkg-card:hover {
  transform: translateY(-12px)
}

.pkg-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.03)
}

.pkg-card.featured:hover {
  transform: scale(1.03) translateY(-12px)
}

.pkg-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  border-radius: 999px;
  padding: 8px 16px;
  color: #fff;
  font-weight: 900;
  font-size: 12px
}

.purple {
  background: linear-gradient(135deg, #4f46e5, #7c3aed)
}

.gold {
  background: linear-gradient(135deg, var(--orange), var(--gold))
}

.pkg-top {
  text-align: center;
  padding: 78px 34px 34px;
  background: #fff
}

.pkg-top.warm {
  background: linear-gradient(160deg, #fff5f2, #fffaf0)
}

.pkg-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  border-radius: 24px;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px
}

.pkg-icon.impact {
  background: linear-gradient(135deg, #2563eb, #7c3aed)
}

.pkg-icon.empower {
  background: linear-gradient(135deg, var(--orange), var(--gold))
}

.pkg-top h3 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 20px
}

.price {
  width: 165px;
  height: 150px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1688ff, #2457df);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -.05em;
  box-shadow: 0 20px 45px rgba(37, 99, 235, .28)
}

.featured .price {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  box-shadow: 0 20px 45px rgba(255, 122, 0, .3)
}

.price small {
  font-size: 18px;
  margin-right: 4px
}

.pkg-top p {
  color: #777;
  font-weight: 700
}

.pkg-top span {
  display: block;
  color: #666;
  margin-top: 8px;
  font-size: 14px
}

.feature-list {
  list-style: none;
  padding: 12px 34px 8px
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid #eee;
  color: #333;
  font-size: 15px
}

.feature-list li:last-child {
  border-bottom: 0
}

.feature-list i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  flex: 0 0 24px;
  margin-top: 1px
}

.feature-list b {
  display: block;
  color: var(--maroon);
  font-size: 13px
}

.btn-package {
  margin: 22px 34px 34px;
  width: calc(100% - 68px);
  color: #fff
}

.impact-btn {
  background: linear-gradient(135deg, #4f46e5, #7c3aed)
}

.empower-btn {
  background: linear-gradient(135deg, var(--orange), var(--gold))
}

.btn-package:hover {
  transform: translateY(-4px);
  filter: saturate(1.15)
}

.testimonials {
  background: linear-gradient(180deg, #fff7f1 0%, #fff 100%)
}

.testi-swiper {
  padding: 14px 8px 56px !important
}

.testi-card {
  padding: 0;
  height: 100%;
  border: 1px solid rgba(128, 0, 0, .12);
  border-radius: 24px;
  overflow: hidden;
  background: #fff
}

.video-thumb {
  position: relative;
  /*aspect-ratio: 16/9;*/
  cursor: pointer;
  overflow: hidden;
  display: block
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition)
}

.video-thumb:hover img {
  transform: scale(1.08)
}

.video-thumb:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .56))
}

.video-thumb button {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .94);
  color: #a2001c;
  font-size: 18px;
  box-shadow: 0 15px 36px rgba(0, 0, 0, .25);
  cursor: pointer;
  transition: var(--transition)
}

.video-thumb:hover button {
  transform: translate(-50%, -50%) scale(1.08)
}

.story-badge {
  position: absolute;
  z-index: 3;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .65);
  color: #fff;
  font-size: 11px;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-weight: 800;
  backdrop-filter: blur(4px)
}

.testi-body {
  padding: 20px 20px 22px
}

.testi-card span,
.doctor-card span {
  display: inline-block;
  border-radius: 999px;
  background: #fee9a8;
  color: #92400e;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px
}

.testi-card p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.55
}

.testi-card h3 {
  color: var(--maroon);
  font-size: 19px;
  margin-bottom: 8px
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b8001f;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em
}

.story-link:hover {
  color: #7f0016
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--maroon) !important;
  background: #fff;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .16)
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px !important;
  font-weight: 900
}

.swiper-pagination-bullet-active {
  background: var(--maroon) !important
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.doctor-card {
  text-align: center
}

.doctor-card>i {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff0e6;
  color: var(--maroon);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin: 0 auto 18px
}

.doctor-card h3 {
  font-size: 20px;
  margin: 8px 0
}

.doctor-card p {
  color: var(--muted);
  margin-bottom: 18px
}

.doctor-card div {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap
}

.doctor-card a {
  padding: 8px 13px;
  border-radius: 999px;
  background: #f5f5f5;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900
}

.doctor-card a:hover {
  background: var(--brand);
  color: #fff
}

.contact-strip {
  padding: 0;
  background: #fff
}

.contact-card {
  transform: translateY(40px);
  position: relative;
  z-index: 5;
  text-align: center;
  background: var(--brand);
  color: #fff;
  border-radius: 36px;
  padding: 58px 28px;
  box-shadow: var(--shadow-strong);
  overflow: hidden
}

.contact-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 15%, rgba(255, 255, 255, .18), transparent 32%), radial-gradient(circle at 80% 85%, rgba(255, 180, 0, .25), transparent 32%)
}

.contact-card>* {
  position: relative
}

.contact-card h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 10px
}

.contact-card p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .9)
}

.contact-card .hero-actions {
  justify-content: center
}

.site-footer {
  padding: 98px 0 24px;
  background: linear-gradient(180deg, #220707, #120303);
  color: #d7caca
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 54px
}

.footer-grid img {
  width: 260px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 18px
}

.footer-grid h3 {
  color: #fff;
  margin-bottom: 16px
}

.footer-grid a {
  display: block;
  color: #d7caca;
  margin: 7px 0
}

.footer-grid a:hover {
  color: var(--gold)
}

.footer-grid p {
  margin: 7px 0;
  color: #cdbbbb
}

.offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 34px;
  padding-top: 30px
}

.offices h4 {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 8px
}

.offices p {
  color: #cdbbbb;
  font-size: 14px
}

.copyright {
  text-align: center;
  color: #a99292;
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 28px;
  padding-top: 18px
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  box-shadow: 0 16px 36px rgba(37, 211, 102, .36);
  animation: pulseWhats 2s infinite
}

@keyframes pulseWhats {
  50% {
    transform: scale(1.08)
  }
}

.yt-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition)
}

.yt-modal.active {
  opacity: 1;
  visibility: visible
}

.yt-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .88)
}

.yt-box {
  position: relative;
  width: min(920px, 92%);
  background: #000;
  border-radius: 18px;
  z-index: 2;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .6)
}

.yt-frame-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0
}

.yt-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0
}

.yt-close {
  position: absolute;
  right: 0;
  top: -48px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .16);
  color: #fff;
  cursor: pointer
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.active {
  opacity: 1;
  transform: translateY(0)
}

@media (max-width:980px) {
  .header-cta {
    display: none
  }

  .menu-toggle {
    display: grid;
    place-items: center
  }

  .nav {
    position: absolute;
    left: 5%;
    right: 5%;
    top: 88px;
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 22px;
    display: none;
    flex-direction: column
  }

  .nav.open {
    display: flex
  }

  .hero-grid,
  .process-grid {
    grid-template-columns: 1fr
  }

  .hero-visual {
    max-width: 520px;
    margin: auto
  }

  .service-grid,
  .doctor-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid,
  .offices {
    grid-template-columns: 1fr 1fr
  }

  .trust-row {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:640px) {
  .brand img {
    width: 210px
  }

  .header-inner {
    height: 78px
  }

  .nav {
    top: 78px
  }

  .hero {
    padding: 66px 0
  }

  .hero h1 {
    font-size: 40px
  }

  .hero-copy p {
    font-size: 16px
  }

  .hero-actions,
  .btn {
    width: 100%
  }

  .trust-row,
  .service-grid,
  .doctor-grid,
  .footer-grid,
  .offices {
    grid-template-columns: 1fr
  }

  .pkg-card.featured {
    transform: none
  }

  .pkg-card.featured:hover {
    transform: translateY(-12px)
  }

  .floating-pill {
    display: none
  }

  .section-head.left {
    text-align: center
  }

  .contact-card {
    border-radius: 28px
  }

  .site-footer {
    padding-top: 84px
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none !important
  }
}
/* 10/10 Kinetic Animation Upgrade */

.kinetic-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--dark);
  display: grid;
  place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}

.kinetic-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.kinetic {
  position: relative;
  width: 86px;
  height: 86px;
}

.kinetic::before,
.kinetic::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 42px solid transparent;
  border-bottom-color: var(--gold);
  animation: kineticA 1.25s linear infinite;
}

.kinetic::after {
  border-bottom-color: var(--red);
  animation: kineticB 1.25s linear infinite .6s;
}

@keyframes kineticA {
  0%, 25% { transform: rotate(0deg); }
  50%, 75% { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}

@keyframes kineticB {
  0%, 25% { transform: rotate(90deg); }
  50%, 75% { transform: rotate(270deg); }
  100% { transform: rotate(450deg); }
}

/* Premium icon kinetic hover */
.service-card i,
.doctor-card > i,
.pkg-icon {
  position: relative;
  isolation: isolate;
}

.service-card i::after,
.doctor-card > i::after,
.pkg-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid transparent;
  border-top-color: var(--red);
  border-right-color: var(--gold);
  opacity: 0;
  z-index: -1;
}

.service-card:hover i::after,
.doctor-card:hover > i::after,
.pkg-card:hover .pkg-icon::after {
  opacity: 1;
  animation: spinRing 1s linear infinite;
}

@keyframes spinRing {
  to { transform: rotate(360deg); }
}

/* Button shine */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg);
}

.btn:hover::after {
  animation: shineMove .85s ease;
}

@keyframes shineMove {
  to { left: 130%; }
}

/* Active nav */
.nav a.active {
  color: var(--maroon);
}

.nav a.active::after {
  width: 100%;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  z-index: 10000;
  background: var(--brand);
}

/* Reveal animation improvements */
.reveal {
  opacity: 0;
  transform: translateY(36px) scale(.98);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger effect */
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }
.reveal:nth-child(6) { transition-delay: .40s; }

/* Floating WhatsApp stronger */
.floating-whatsapp::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .45);
  animation: whatsRipple 1.8s infinite;
}

@keyframes whatsRipple {
  to {
    transform: scale(1.45);
    opacity: 0;
  }
}
