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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  overflow-x: hidden;
}

/* ════════════════════════════════════
       LOADER
    ════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}
#loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.loader-icon {
  width: 52px;
  height: 52px;
  position: relative;
  animation: iconPulse 1.6s ease-in-out infinite;
}
.loader-icon::before,
.loader-icon::after {
  content: "";
  position: absolute;
  background: #6c63ff;
  border-radius: 3px;
}
.loader-icon::before {
  width: 8px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.loader-icon::after {
  width: 100%;
  height: 8px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.7;
  }
}

.loader-tagline {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: #6c63ff;
  animation: ldrFade 0.8s 0.2s ease both;
}
.loader-name {
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.01em;
  color: #111111;
  text-align: center;
  animation: ldrFade 0.8s 0.4s ease both;
}
.loader-sub {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.35);
  animation: ldrFade 0.8s 0.6s ease both;
}
.loader-bar-wrap {
  width: min(280px, 70vw);
  height: 2px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 99px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6c63ff, #a89dff);
  border-radius: 99px;
  animation: ldrBar 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes ldrBar {
  0% {
    width: 0%;
  }
  60% {
    width: 72%;
  }
  100% {
    width: 100%;
  }
}
@keyframes ldrFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════════
       NAVBAR
    ════════════════════════════════════ */
.sh-navbar {
  position: fixed;
  top: 14px;
  left: 18px;
  right: 18px;
  z-index: 998;
  height: 60px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  transition: all 0.3s ease;
}
.brand {
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  margin: 0 auto;
  flex-shrink: 0;
}
.nav-login {
  flex-shrink: 0;
  padding: 0.48rem 1.2rem;
  background: linear-gradient(90deg, #EC4899, #Be185D);
  color: #fff !important;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.18s;
}
.nav-login:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #fff !important;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
 color: #000;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: #7c72ff !important;
}
.nav-links a.active::after {
  transform: scaleX(1);
  background: #7c72ff;
}
.nav-links-quick {
  list-style: none;
  display: none;
  gap: 1.2rem;
  margin: 0 auto;
  padding: 0;
  align-items: center;
}
.nav-links-quick li a {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links-quick li a.active {
  color: #7c72ff !important;
}

@media (max-width: 768px) {
  .nav-links-quick {
    display: flex !important;
  }
}

/* ════════════════════════════════════
       SHARED BUTTON
    ════════════════════════════════════ */
.sh-btn {
  display: block;
  margin: 0 auto;
  padding: 0.88rem 0;
  width: min(380px, 88vw);
  background: linear-gradient(90deg, #EC4899, #BE185D);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background 0.28s,
    border-color 0.28s,
    box-shadow 0.28s,
    transform 0.18s;
}
.sh-btn:hover {
  background: linear-gradient(90deg, #BE185D, #9b1248);
  border-color: rgba(190, 24, 93, 0.4);
  box-shadow:
    0 0 28px rgba(190, 24, 93, 0.25),
    0 10px 36px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  color: #fff;
}
.sh-btn:active {
  transform: translateY(0);
}

/* ════════════════════════════════════
       S1 — SUPERSURGERY
    ════════════════════════════════════ */
.s-surgery {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.s-surgery .bg {
  position: absolute;
  inset: 0;
  /* background: url("https://images.unsplash.com/photo-1551190822-a9333d879b1f?w=1800&auto=format&fit=crop&q=85")
    center 22% / cover no-repeat; */
  background: url(../images/herobg.png) center 22% / cover no-repeat;
    transform: scale(1.04);
  animation: slowZoom 22s ease-out forwards;
}
@keyframes slowZoom {
  to {
    transform: scale(1);
  }
}
.s-surgery .overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(10, 10, 16, 0.78) 0%,
      rgba(10, 10, 16, 0.06) 36%,
      rgba(10, 10, 16, 0.06) 64%,
      rgba(10, 10, 16, 0.6) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(10, 10, 16, 0.22) 0%,
      rgba(10, 10, 16, 0) 42%,
      rgba(10, 10, 16, 0.78) 100%
    );
}
.s-surgery .bloom {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}
.s-surgery .content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  width: 100%;
}
.eyebrow {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: #7c72ff;
  margin-bottom: 0.9rem;
  opacity: 0;
  animation: heroRise 0.6s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.sec-title {
  font-weight: 800;
  font-size: clamp(1.6rem, 5.5vw, 3.2rem);
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  animation: heroRise 0.72s 0.48s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.sec-sub {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
  opacity: 0;
  animation: heroRise 0.72s 0.62s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.s-surgery .sh-btn {
  margin-top: 2.2rem;
  opacity: 0;
  animation: heroRise 0.72s 0.76s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-rule {
  position: absolute;
  bottom: 78px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.13);
  z-index: 10;
}
.scroll-label {
  position: absolute;
  bottom: 24px;
  left: 2.4rem;
  z-index: 10;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  opacity: 0;
  animation: fadeEl 1s 1.3s ease forwards;
}
.scroll-arrow {
  position: absolute;
  bottom: 20px;
  right: 2.4rem;
  z-index: 10;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  cursor: pointer;
  animation:
    fadeEl 1s 1.3s ease forwards,
    bob 2.4s 2.3s ease-in-out infinite;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.scroll-arrow:hover {
  border-color: rgba(124, 114, 255, 0.55);
  background: rgba(124, 114, 255, 0.1);
}
@keyframes fadeEl {
  to {
    opacity: 1;
  }
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

/* ════════════════════════════════════
       S2 — SUPERBIRTH
    ════════════════════════════════════ */
.s-birth {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: #d6d6d6;
}
.s-birth .bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 50% 60%,
    #e8e8e8 0%,
    #b8b8b8 100%
  );
}
.s-birth .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(80, 80, 80, 0.55) 0%,
    transparent 28%,
    transparent 72%,
    rgba(80, 80, 80, 0.55) 100%
  );
}
.sb-top {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 5.5rem 1.5rem 0;
  width: 100%;
}
.sb-title {
  font-weight: 800;
  font-size: clamp(1.8rem, 5.5vw, 3.2rem);
  line-height: 1.05;
  color: #0F172A;
  letter-spacing: -0.02em;
}
.sb-sub {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  font-weight: 400;
  color: #64748B;
  line-height: 1.7;
}
.sb-price {
  color: #6c63ff;
  font-weight: 600;
}
.sb-photo-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 640px;
  margin: 1.8rem auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}
.sb-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.sb-cta-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 1.5rem 2.4rem;
  display: flex;
  justify-content: center;
}
.sb-cta-wrap .sh-btn {
  border-color: rgba(0, 0, 0, 0.1);
}
.sb-cta-wrap .sh-btn:hover {
  border-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.18);
}

/* ════════════════════════════════════
       S3 — WHAT MAKES SUPER?
    ════════════════════════════════════ */
.s-super {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 5rem 0 0;
  overflow: hidden;
}
.s-super .section-head {
  text-align: center;
  padding: 0 1.5rem 3.5rem;
}
.s-super .section-head h2 {
  font-weight: 800;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1.12;
  color: #0F172A;
  letter-spacing: -0.02em;
}
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 3.5rem;
}
.feat-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3.2;
  cursor: pointer;
}
.feat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.feat-card:hover img {
  transform: scale(1.06);
}
.feat-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.38) 50%,
    rgba(0, 0, 0, 0.18) 100%
  );
  transition: background 0.35s;
}
.feat-card:hover .card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.50) 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
}
.feat-card .card-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(0.9rem, 1.4vw, 1.15rem);
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s;
}
.feat-card:hover .card-label {
  transform: translate(-50%, calc(-50% - 18px));
  opacity: 0;
}
.feat-card .card-detail {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1.4rem 1.4rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 70%,
    transparent 100%
  );
  transform: translateY(100%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.feat-card:hover .card-detail {
  transform: translateY(0);
}
.feat-card .card-detail h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}
.feat-card .card-detail p {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.feat-card .card-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  transition: opacity 0.3s;
}
.feat-card:hover .card-hint {
  opacity: 0;
}
.feat-card .card-hint::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

.cards-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 14px 3.5rem 0;
}
.feat-card-wide {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/7;
  cursor: pointer;
}
.feat-card-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.feat-card-wide:hover img {
  transform: scale(1.06);
}
.feat-card-wide .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.38) 50%,
    rgba(0, 0, 0, 0.18) 100%
  );
  transition: background 0.35s;
}
.feat-card-wide:hover .card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.50) 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
}
.feat-card-wide .card-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(0.9rem, 1.4vw, 1.15rem);
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s;
}
.feat-card-wide:hover .card-label {
  transform: translate(-50%, calc(-50% - 18px));
  opacity: 0;
}
.feat-card-wide .card-detail {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1.6rem 1.5rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 70%,
    transparent 100%
  );
  transform: translateY(100%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.feat-card-wide:hover .card-detail {
  transform: translateY(0);
}
.feat-card-wide .card-detail h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}
.feat-card-wide .card-detail p {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.feat-card-wide .card-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  transition: opacity 0.3s;
}
.feat-card-wide:hover .card-hint {
  opacity: 0;
}
.feat-card-wide .card-hint::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.consult-wrap {
  display: flex;
  justify-content: center;
  padding: 2.4rem 1.5rem 3.5rem;
}
.consult-wrap .sh-btn {
  border-color: rgba(0, 0, 0, 0.15);
}
.consult-wrap .sh-btn:hover {
  border-color: rgba(108, 99, 255, 0.45);
}

/* ════════════════════════════════════
       S4 — HIGH PRECISION EQUIPMENTS
    ════════════════════════════════════ */
.s-equip {
  position: relative;
  width: 100%;
  background: #fff;
  overflow: hidden;
  padding: 2rem 0 4rem;
}
.s-equip .section-head {
  text-align: center;
  padding: 0 1.5rem 3rem;
}
.equip-eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #6c63ff;
  margin-bottom: 1rem;
}
.s-equip .section-head h2 {
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.18;
  color: #0F172A;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto;
}
.equip-slider-wrap {
  padding: 0 3.5rem;
}
.equip-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 6px;
}
.equip-slider::-webkit-scrollbar {
  display: none;
}
.eq-card {
  flex: 0 0 280px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  overflow: hidden;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.eq-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.eq-card-body {
  padding: 1.3rem 1.3rem 0.9rem;
}
.eq-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}
.eq-card-desc {
  font-size: 0.7rem;
  font-weight: 300;
  color: #555;
  line-height: 1.65;
}
.eq-card-img {
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  margin: 0.8rem 1rem 1rem;
  width: calc(100% - 2rem);
}
.slider-progress-wrap {
  margin: 2rem 3.5rem 0;
  height: 2px;
  background: #e8e8e8;
  border-radius: 99px;
  overflow: hidden;
}
.slider-progress-bar {
  height: 100%;
  width: 0%;
  display: none;
  background: #111;
  border-radius: 99px;
  transition: width 0.3s ease;
}
.slider-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  padding: 1.4rem 3.5rem 0;
}
.arrow-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.18s;
}
.arrow-btn:hover {
  background: #111;
  border-color: #111;
}
.arrow-btn:hover svg path {
  stroke: #fff;
}
.arrow-btn:active {
  transform: scale(0.92);
}
.arrow-btn svg path {
  stroke: #111;
  transition: stroke 0.2s;
}
.equip-consult {
  display: flex;
  justify-content: center;
  padding: 3rem 1.5rem 0;
}

/* ════════════════════════════════════
       SHARED SECTION EYEBROW
    ════════════════════════════════════ */
.section-eyebrow {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #6c63ff;
  margin-bottom: 0.9rem;
}
.section-eyebrow.light {
  color: #6c63ff;
}

/* ════════════════════════════════════
       S5 — TESTIMONIALS
    ════════════════════════════════════ */
.s-testimonials {
  background: linear-gradient(135deg, #0F172A, #1E3A8A);
  padding: 5.5rem 0 4rem;
  overflow: hidden;
}

.testi-head {
  text-align: center;
  padding: 0 1.5rem 3.5rem;
}
.testi-head h2 {
  font-weight: 800;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1.12;
  color: #fff;
  letter-spacing: -0.02em;
}

.testi-track-wrap {
  padding: 0 3.5rem;
}

.testi-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
}
.testi-card:hover {
  background: rgba(124, 114, 255, 0.08);
  border-color: rgba(124, 114, 255, 0.25);
  transform: translateY(-4px);
}

.testi-stars {
  color: #7c72ff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.testi-text {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1rem;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c72ff, #a89dff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}
.testi-role {
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.1rem;
}

/* 5-card row — last 2 cards only on large screens */
@media (min-width: 992px) {
  .testi-track {
    grid-template-columns: repeat(3, 1fr);
  }
  .testi-card:nth-child(4),
  .testi-card:nth-child(5) {
    display: none;
  }
}

/* ════════════════════════════════════
       S6 — FAQ
    ════════════════════════════════════ */
.s-faq {
  background: #fff;
  padding: 5.5rem 0 5rem;
  overflow: hidden;
}

.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.faq-left h2 {
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.12;
  color: #111;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}

.faq-sub {
  font-size: 0.78rem;
  font-weight: 300;
  color: #666;
  line-height: 1.7;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #e8e8e8;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #111;
  transition: color 0.2s;
}
.faq-q:hover {
  color: #6c63ff;
}

.faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: #999;
  transition:
    transform 0.3s,
    color 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-q.open .faq-icon {
  transform: rotate(45deg);
  color: #6c63ff;
}
.faq-q.open {
  color: #6c63ff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.3s;
}
.faq-a.open {
  max-height: 300px;
  padding-bottom: 1.2rem;
}
.faq-a p {
  font-size: 0.76rem;
  font-weight: 300;
  color: #555;
  line-height: 1.75;
}

/* ════════════════════════════════════
       S7 — ENQUIRY FORM
    ════════════════════════════════════ */
.s-enquiry {
  background: linear-gradient(135deg, #f5f3ff, #eef2ff);
  padding: 5.5rem 0 5rem;
  overflow: hidden;
}

.enquiry-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.enquiry-info h2 {
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.12;
  color: #0F172A;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}

.enquiry-sub {
  font-size: 0.78rem;
  font-weight: 300;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(124, 114, 255, 0.12);
  border: 1px solid rgba(124, 114, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7c72ff;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 0.76rem;
  font-weight: 400;
  color: #333;
  line-height: 1.65;
}

/* Form */
.enquiry-form-wrap {
  background: #fff;
  border: 1px solid rgba(124, 114, 255, 0.15);
  border-radius: 20px;
  padding: 2.4rem 2rem;
  box-shadow: 0 8px 32px rgba(124, 114, 255, 0.08);
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748B;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.76rem;
  font-weight: 400;
  color: #111;
  outline: none;
  transition:
    border-color 0.25s,
    background 0.25s;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}
.form-group select option {
  background: #fff;
  color: #111;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(124, 114, 255, 0.55);
  background: rgba(124, 114, 255, 0.02);
}

.form-submit {
  margin-top: 0.4rem;
  padding: 0.95rem;
  background: #7c72ff;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.18s,
    box-shadow 0.25s;
}
.form-submit:hover {
  background: #6c63ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(108, 99, 255, 0.4);
}
.form-submit:active {
  transform: translateY(0);
}

.form-note {
  font-size: 0.62rem;
  font-weight: 300;
  color: #999;
  text-align: center;
  margin-top: -0.2rem;
}

/* ════════ RESPONSIVE — new sections ════════ */
@media (max-width: 991.98px) {
  .testi-track {
    grid-template-columns: 1fr 1fr;
  }
  .testi-card:nth-child(5) {
    display: none;
  }
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }
  .enquiry-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }
  .testi-track-wrap {
    padding: 0 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .testi-track {
    grid-template-columns: 1fr;
  }
  .testi-card:nth-child(4),
  .testi-card:nth-child(5) {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .enquiry-form-wrap {
    padding: 1.6rem 1.2rem;
  }
}

/* ════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════ */
@media (max-width: 991.98px) {
  .cards-row {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }
  .cards-row-2 {
    grid-template-columns: 1fr;
    padding: 14px 1.5rem 0;
  }
  .feat-card,
  .feat-card-wide {
    aspect-ratio: 16/9;
  }
  .equip-slider-wrap,
  .slider-progress-wrap,
  .slider-arrows {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Hamburger button */
.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 0.6rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2.2px;
  background: #111;
  border-radius: 4px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger → X animation */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(8.2px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-8.2px) rotate(-45deg);
}

/* Mobile dropdown menu */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 10px;
  right: 10px;
  z-index: 997;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
  padding: 1.4rem 1.4rem 1.2rem;
  flex-direction: column;
  max-height: calc(100dvh - 96px);
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}

.nav-mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-mobile-menu ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
}

.nav-mobile-menu ul li a:hover,
.nav-mobile-menu ul li a.active {
  background: #f4f3ff;
  color: #7c72ff;
}

.nav-mobile-menu ul li:last-child a {
  border-bottom: none;
}

/* Desktop Dropdown */
.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0.8rem 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1000;
}

.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: 0.7rem 1.5rem;
  color: #334155 !important;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.nav-dropdown li a:hover {
  background: #f8fafc;
  color: #7c72ff !important;
  padding-left: 1.8rem;
}

/* Mobile Sub-menu Styling */
.mobile-sub-menu {
  list-style: none;
  padding: 0.2rem 0 0.4rem 1rem;
  margin: 0 0 0 0.6rem;
  border-left: 2px solid #ede9fe;
}

.mobile-sub-menu li {
  border-bottom: none !important;
  padding: 0 !important;
}

.mobile-sub-menu li a {
  font-size: 0.83rem !important;
  color: #64748b !important;
  padding: 0.42rem 0.6rem !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  border-radius: 8px !important;
  border-bottom: none !important;
}

.mobile-sub-menu li a:hover {
  background: #f4f3ff !important;
  color: #7c72ff !important;
}

.nav-mobile-cta {
  display: block;
  margin-top: 1rem;
  padding: 0.9rem;
  background: linear-gradient(90deg, #7c72ff, #a78bfa);
  color: #fff !important;
  text-align: center;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(124, 114, 255, 0.28);
  transition: opacity 0.2s, transform 0.2s;
}

.nav-mobile-cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

@media (max-width: 991.98px) {
  .sh-navbar {
    left: 10px;
    right: 10px;
    top: 10px;
    padding: 0 1rem;
    height: 56px;
  }
  .nav-links {
    display: none !important;
  }
  .nav-login {
    display: none !important;
  }
  .nav-hamburger {
    display: flex !important;
    margin-left: auto;
  }
  /* Quick links in center */
  .nav-links-quick {
    display: flex !important;
    gap: 0.8rem;
    position: absolute;
    left: 55%;
    transform: translateX(-50%);
  }
  .nav-links-quick li a {
    font-size: 0.65rem;
    letter-spacing: 0;
  }
}

@media (max-width: 767.98px) {
  .sh-navbar .brand img {
    width: 76px !important;
  }
  .nav-mobile-menu {
    top: 70px;
  }
  .nav-links-quick {
    gap: 0.6rem;
  }
}

@media (max-width: 480px) {
  .nav-links-quick {
    display: flex !important;
    gap: 0.45rem;
  }
  .nav-links-quick li a {
    font-size: 0.58rem;
    letter-spacing: 0;
  }
}
/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.sh-footer {
  background: linear-gradient(135deg, #0F172A, #1E3A8A);
  padding: 5rem 3.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
}

/* Brand col */
.footer-logo {
  display: inline-block;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.74rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.75;
  margin-bottom: 1.6rem;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition:
    border-color 0.25s,
    color 0.25s,
    background 0.25s,
    transform 0.18s;
}
.social-btn:hover {
  border-color: rgba(124, 114, 255, 0.55);
  color: #a89dff;
  background: rgba(124, 114, 255, 0.1);
  transform: translateY(-2px);
}

/* Nav cols */
.footer-col-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.3rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.76rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  transition:
    color 0.2s,
    padding-left 0.2s;
  display: inline-block;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

/* Contact list */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.8rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.73rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.55;
}

.footer-contact-list svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* Newsletter */
.newsletter-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.7rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.newsletter-form:focus-within {
  border-color: rgba(124, 114, 255, 0.5);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.65rem 0.9rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  color: #fff;
  outline: none;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.newsletter-form button {
  background: #7c72ff;
  border: none;
  padding: 0 1rem;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s;
}
.newsletter-form button:hover {
  background: #6c63ff;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0 1.6rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.28);
}

.footer-legal {
  display: flex;
  gap: 1.6rem;
}

.footer-legal a {
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Footer Responsive */
@media (max-width: 991.98px) {
  .sh-footer {
    padding: 4rem 1.5rem 0;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand-col {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .footer-legal {
    gap: 1rem;
  }
}
/* Mobile Sticky CTA — hidden; combined into .mobile-action-bar */
.mobile-sticky-cta {
  display: none !important;
}

/* ════════════════════════════════════
   MOBILE ACTION BAR (WhatsApp + CTA)
════════════════════════════════════ */
.mobile-action-bar {
  display: none;
}

@media (max-width: 767.98px) {
  .mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  }

  .mac-consult {
    flex: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, #7c72ff, #6c63ff);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    padding: 0.85rem 0.5rem;
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 20px rgba(124, 114, 255, 0.35);
    transition: transform 0.18s, box-shadow 0.18s;
  }
  .mac-consult:active {
    transform: scale(0.97);
    box-shadow: 0 3px 12px rgba(124, 114, 255, 0.3);
  }

  .mac-whatsapp {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.18rem;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    padding: 0.7rem 0.4rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: transform 0.18s, box-shadow 0.18s;
  }
  .mac-whatsapp:active {
    transform: scale(0.97);
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
  }
  .mac-whatsapp-label {
    font-family: "Poppins", sans-serif;
    font-size: 0.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
}

@media (min-width: 768px) {
  .mobile-action-bar {
    display: none !important;
  }
}

/* Push footer content above mobile action bar */
@media (max-width: 767.98px) {
  .sh-footer {
    padding-bottom: 5rem;
  }
}

/* ════════════════════════════════════
   APPOINTMENT MODAL
════════════════════════════════════ */
.appt-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none; /* Controlled by JS */
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.appt-modal.active {
  display: flex !important;
}

.appt-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

.appt-modal-content {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 2.2rem;
  z-index: 1;
}

.appt-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
  z-index: 10;
}
.appt-modal-close:hover { color: #111; }

.appt-modal-head {
  text-align: center;
  margin-bottom: 2rem;
}
.appt-modal-head h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 0.4rem;
  margin-top: 0;
}
.appt-modal-head p {
  font-size: 0.88rem;
  color: #666;
  margin: 0;
}

.appt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 0;
}
.appt-form-group {
  margin-bottom: 1.2rem;
}
.appt-form-group label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 0.5rem;
}
.appt-form-group input,
.appt-form-group select,
.appt-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  color: #111;
  outline: none;
  transition: border-color 0.2s;
}
.appt-form-group input:focus,
.appt-form-group select:focus,
.appt-form-group textarea:focus {
  border-color: #7c72ff;
}

.appt-modal-submit-btn {
  width: 100%;
  padding: 1.1rem;
  background: #7c72ff;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(124, 114, 255, 0.2);
  transition: transform 0.2s, background 0.2s;
  margin-top: 0.5rem;
}
.appt-modal-submit-btn:hover {
  background: #6c63ff;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .appt-modal {
    padding: 0;
    align-items: flex-end; /* Mobile: Slide from bottom */
  }
  .appt-modal-content {
    max-width: none;
    max-height: none;
    height: auto;
    border-radius: 24px 24px 0 0; /* Rounded top only */
    padding: 2.5rem 1.4rem 2rem;
    margin: 0;
    overflow-y: visible;
  }
  .appt-form-row {
    grid-template-columns: 1fr 1fr; /* Keep 2-col for some fields on mobile */
    gap: 0.8rem;
  }
  .appt-form-group {
    margin-bottom: 0.8rem;
  }
  /* Stagger specific fields that need more room */
  .appt-form-group:nth-child(3), 
  .appt-form-group:nth-child(6) {
    grid-column: span 2;
  }
  .appt-modal-head h3 { font-size: 1.3rem; }
  .appt-modal-head { margin-bottom: 1.2rem; }
  .appt-modal-close { top: 1rem; right: 1rem; }
}
/* ════════════════════════════════════
   GLOBAL MOBILE RESPONSIVENESS (AUDIT FIX)
════════════════════════════════════ */
@media (max-width: 768px) {
  /* Fix universal headings */
  h1, .hero-title, .c-hero-title {
    font-size: clamp(1.8rem, 8vw, 3rem) !important;
    line-height: 1.2 !important;
    word-break: break-word;
  }
  
  h2, .sb-title, .section-head h2 {
    font-size: clamp(1.5rem, 6vw, 2.2rem) !important;
    line-height: 1.25 !important;
  }

  /* Doctor photo – mobile */
  .sb-photo-wrap {
    max-width: 100%;
    border-radius: 14px;
    margin-top: 1.2rem;
  }
  .sb-photo {
    height: 280px;
  }

  /* Fix section paddings */
  section, .s-birth, .s-super, .s-equip, .tr-items, .c-intro, .c-approach {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }

  /* Fix hero text cut-off */
  .s-surgery, .c-hero {
    padding-top: 100px !important;
  }

  /* Button improvements */
  .sh-btn {
    width: 100% !important;
    max-width: none !important;
    font-size: 0.75rem !important;
    padding: 1rem 0 !important;
    letter-spacing: 0.1em !important;
  }

  /* Grid & Flex layouts */
  .cards-row, .cards-row-2, .info-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .d-flex:not(.nav-links) {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .sh-navbar .brand img {
    width: 70px !important;
  }
  .nav-mobile-menu {
    left: 8px !important;
    right: 8px !important;
  }
  .c-hero { min-height: 70vh !important; }
}
