:root {
  /* ── Logo-exact palette ── */
  --sky: #1aabdb; /* bright sky blue from logo house/cross */
  --sky-dark: #0e8bb5;
  --sky-deeper: #0972a0;
  --sky-light: #e3f6fd;
  --sky-pale: #f0fafd;
  --navy: #1e3a7b; /* deep navy from logo text & hand */
  --navy-dark: #122660;
  --navy-mid: #2a4e9c;
  --navy-light: #d8e4f5;
  --navy-pale: #eef3fb;
  /* Neutral */
  --white: #ffffff;
  --offwhite: #f6fafd;
  --text: #0d1b30;
  --text-mid: #2c3e60;
  --text-soft: #5a6e8a;
  --border: #c8dcee;
  /* Accent — subtle teal for success/highlights */
  --teal: #07b89e;
  --teal-pale: #e6faf7;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito", sans-serif;
  background: var(--offwhite);
  color: var(--text);
  overflow-x: hidden;
}

/* ════════════════════════════
     STICKY HEADER
  ════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  /* border-bottom: 3px solid var(--sky); */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 44px;
  box-shadow: 0 2px 20px rgba(30, 58, 123, 0.1);
}
.header-logo img {
  height: 56px;
  object-fit: contain;
  display: block;
}
.header-ctas {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hdr-call {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  color: white;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.15s;
}
.hdr-call:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  color: #fff;
}

.hdr-wa {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.15s;
}
.hdr-wa:hover {
  background: #1eb756;
  transform: translateY(-1px);
  color: #fff;
}

.hdr-appt {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--sky);
  color: white;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  transition:
    background 0.2s,
    transform 0.15s;
  cursor: pointer;
  border: none;
  font-family: "Nunito", sans-serif;
  letter-spacing: 0.01em;
}
.hdr-appt:hover {
  background: var(--sky-dark);
  transform: translateY(-1px);
}

/* ════════════════════════════
     HERO
  ════════════════════════════ */
.hero {
  margin-top: 25px;
  background: linear-gradient(
    120deg,
    var(--navy-dark) 0%,
    var(--navy) 45%,
    #1a4b9e 75%,
    #1097c8 100%
  );
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* Subtle crosshatch */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
/* Sky glow top-right */
.hero::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -100px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(26, 171, 219, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.hero-left {
  padding: 60px 30px 10px 50px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 171, 219, 0.2);
  border: 1px solid rgba(26, 171, 219, 0.45);
  color: #7ee0f7;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeUp 0.5s ease both;
}
.hero-tag-dot {
  width: 7px;
  height: 7px;
  background: #7ee0f7;
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

.hero h1 {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(30px, 3.3vw, 50px);
  font-weight: 700;
  line-height: 1.16;
  color: #ffffff;
  margin-bottom: 18px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em {
  font-style: italic;
  color: #7ee0f7;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.72;
  max-width: 480px;
  margin-bottom: 32px;
  font-weight: 400;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-sky {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 6px 28px rgba(26, 171, 219, 0.45);
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-family: "Nunito", sans-serif;
}
.btn-sky:hover {
  background: var(--sky-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(26, 171, 219, 0.5);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: all 0.25s;
  backdrop-filter: blur(6px);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #fff;
}

/* Hero stats row */
.hero-stats {
  display: flex;
  gap: 0;
  animation: fadeUp 0.6s 0.4s ease both;
}
.h-stat {
  padding: 0 28px 0 0;
}
.h-stat:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  margin-right: 28px;
}
.h-stat-num {
  font-family: "Libre Baskerville", serif;
  font-size: 30px;
  font-weight: 700;
  color: #7ee0f7;
  line-height: 1;
}
.h-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  font-weight: 600;
}

/* Hero right – symptom card */
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 60px 40px 10px;
}
.hero-card {
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 32px 28px;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  animation: fadeUp 0.7s 0.25s ease both;
}
.hero-card-title {
  font-size: 12px;
  font-weight: 800;
  color: #7ee0f7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 7px;
}
.symptom-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}
.symptom-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.s-icon {
  width: 34px;
  height: 34px;
  background: rgba(26, 171, 219, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.s-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}
.hero-card-cta {
  width: 100%;
  padding: 13px;
  background: var(--sky);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.hero-card-cta:hover {
  background: var(--sky-dark);
  color: #fff;
}

/* Floating badge */
.hero-badge-float {
  position: absolute;
  bottom: -42px;
  left: -10px;
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
  min-width: 200px;
}
.hbf-icon {
  width: 36px;
  height: 36px;
  background: var(--sky-light);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.hbf-text strong {
  display: block;
  font-size: 12.5px;
  color: var(--text);
  font-weight: 800;
}
.hbf-text span {
  font-size: 11px;
  color: var(--text-soft);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════
     TRUST STRIP
  ════════════════════════════ */
.trust-strip {
  background: var(--navy);
  padding: 14px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
}
.trust-icon {
  width: 28px;
  height: 28px;
  background: rgba(26, 171, 219, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* ════════════════════════════
     SHARED SECTION STYLES
  ════════════════════════════ */
section {
  padding: 70px 40px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sky-light);
  color: var(--sky-deeper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 6px;
  margin-bottom: 12px;
  border-left: 3px solid var(--sky);
}
.sec-title {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 12px;
}
.sec-title span {
  color: var(--sky-dark);
  font-style: italic;
}
.sec-desc {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.72;
  max-width: 600px;
  font-weight: 400;
}

/* ════════════════════════════
     USP STATS BAR
  ════════════════════════════ */
.usp-bar {
  background: var(--white);
  padding: 44px 72px;
  border-bottom: 1px solid var(--border);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.usp-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.usp-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border);
}
.usp-num {
  font-family: "Libre Baskerville", serif;
  font-size: 50px;
  font-weight: 700;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 6px;
}
.usp-label {
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
}
.usp-sub {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 3px;
}

/* ════════════════════════════
     SYMPTOMS
  ════════════════════════════ */
.symptoms-section {
  background: var(--navy-pale);
  text-align: center;
}
.symptoms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 44px;
}
.sym-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sym-card {
  text-align: left;
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 18px;
  border-top: 3px solid var(--sky);
  transition:
    transform 0.22s,
    box-shadow 0.22s;
}
.sym-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(26, 171, 219, 0.12);
}
.sym-card-icon {
  font-size: 24px;
  margin-bottom: 9px;
}
.sym-card h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 5px;
}
.sym-card p {
  font-size: 12.5px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Anatomy visual */
.sym-visual-wrap {
  position: relative;
}
.sym-visual {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 3%;
  background: linear-gradient(145deg, var(--sky-light), #b8e9f8);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 56px rgba(26, 171, 219, 0.2);
  overflow: hidden;
  position: relative;
}
.sym-visual svg {
  width: 65%;
  height: 65%;
}
.sym-stat-badge {
  position: absolute;
  bottom: 16px;
  right: -10px;
  background: var(--navy);
  color: white;
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(30, 58, 123, 0.35);
}
.sym-stat-badge strong {
  display: block;
  font-family: "Libre Baskerville", serif;
  font-size: 26px;
  font-weight: 700;
  color: #7ee0f7;
}
.sym-stat-badge span {
  font-size: 11px;
  opacity: 0.8;
}

/* ════════════════════════════
     TREATMENT
  ════════════════════════════ */
.treatment-section {
  background: var(--white);
}
.treatment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.t-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.t-step {
  display: flex;
  gap: 18px;
  position: relative;
  padding-bottom: 26px;
}
.t-step:last-child {
  padding-bottom: 0;
}
.t-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--sky), var(--border));
}
.t-num {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--sky);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Libre Baskerville", serif;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(26, 171, 219, 0.35);
}
.t-body h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 5px;
  margin-top: 8px;
}
.t-body p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.62;
}

/* Laparoscopy highlight card */
.lap-card {
  background: linear-gradient(145deg, var(--navy-dark), var(--navy), #1a5fa8);
  border-radius: 18px;
  padding: 36px 32px;
  color: white;
  box-shadow: 0 24px 72px rgba(30, 58, 123, 0.28);
  position: sticky;
  top: 110px;
}
.lap-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26, 171, 219, 0.25);
  border: 1px solid rgba(26, 171, 219, 0.4);
  color: #7ee0f7;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.lap-card h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.22;
}
.lap-card > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 22px;
  font-weight: 400;
}
.lap-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}
.lap-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}
.lap-check {
  width: 22px;
  height: 22px;
  background: rgba(26, 171, 219, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #7ee0f7;
  font-size: 12px;
  font-weight: 900;
}
.lap-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lap-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--sky);
  color: white;
  text-decoration: none;
  padding: 13px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 800;
  transition: background 0.2s;
}
.lap-btn-call:hover {
  background: var(--sky-dark);
  color: #fff;
}
.lap-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #4ade80;
  text-decoration: none;
  padding: 13px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s;
}
.lap-btn-wa:hover {
  background: rgba(37, 211, 102, 0.28);
  color: #fff;
}

/* ════════════════════════════
     FAQ + FORM
  ════════════════════════════ */
.faq-section {
  background: var(--navy-pale);
}

.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--navy-pale);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition:
    border 0.25s,
    box-shadow 0.25s;
}
.faq-item.open {
  border-color: var(--sky);
  box-shadow: 0 4px 20px rgba(41, 171, 226, 0.14);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  border: none;
  background: none;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}

.faq-ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--sky-lite);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.3s;
}
.faq-item.open .faq-ico {
  transform: rotate(45deg);
  background: var(--sky);
  color: var(--white);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  padding: 0 22px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}
.faq-item.open .faq-a {
  max-height: 280px;
  padding-bottom: 20px;
}

/* Appointment form box */
.appt-box {
  background: linear-gradient(145deg, var(--navy-dark), var(--navy));
  border-radius: 18px;
  padding: 36px 32px;
  color: white;
  box-shadow: 0 18px 56px rgba(30, 58, 123, 0.25);
  position: sticky;
  top: 110px;
}
.appt-box h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}
.appt-box > p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 22px;
  font-weight: 400;
}
.ff-group {
  margin-bottom: 13px;
}
.ff-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ff-input,
.ff-select,
.ff-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  background: rgba(255, 255, 255, 0.09);
  color: white;
  outline: none;
  transition: border-color 0.2s;
}
.ff-input::placeholder,
.ff-textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}
.ff-input:focus,
.ff-select:focus,
.ff-textarea:focus {
  border-color: var(--sky);
  background: rgba(255, 255, 255, 0.14);
}
.ff-select {
  color: rgba(255, 255, 255, 0.82);
}
.ff-select option {
  background: var(--navy-dark);
  color: white;
}
.ff-textarea {
  resize: none;
  height: 70px;
}
.ff-submit {
  width: 100%;
  padding: 13px;
  background: var(--sky);
  color: white;
  border: none;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 800;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: 0 5px 20px rgba(26, 171, 219, 0.4);
  margin-top: 4px;
}
.ff-submit:hover {
  background: var(--sky-dark);
  transform: translateY(-1px);
}
.ff-privacy {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ════════════════════════════
     BOTTOM FORM SECTION
  ════════════════════════════ */
.cta-section {
  background: linear-gradient(
    120deg,
    var(--navy-dark) 0%,
    var(--navy) 50%,
    #1a5fa8 100%
  );
  padding: 80px 72px;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(26, 171, 219, 0.15) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-left h2 {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: white;
  line-height: 1.22;
  margin-bottom: 14px;
}
.cta-left p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
  margin-bottom: 28px;
  font-weight: 400;
}
.cta-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  padding: 14px 18px;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
  backdrop-filter: blur(6px);
}
.cta-contact:hover {
  background: rgba(255, 255, 255, 0.16);
}
.cta-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.cta-info {
  flex: 1;
}
.cta-info strong {
  display: block;
  font-size: 12px;
  opacity: 0.6;
  font-weight: 600;
  margin-bottom: 2px;
  color: #fff;
}
.cta-info span {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.mf-right {
  background: white;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}
.mf-right h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.mf-right > p {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 22px;
}

.mf-group {
  margin-bottom: 13px;
}

.mf-privacy {
  text-align: center;
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ------------- */
.ff-group {
  margin-bottom: 13px;
}

.ff-input,
.ff-select,
.ff-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--sky-light);
  border-radius: 9px;
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  background: rgba(255, 255, 255, 0.09);
  color: #000;
  outline: none;
  transition: border-color 0.2s;
}
.ff-input::placeholder,
.ff-textarea::placeholder {
  color: #999;
}
.ff-input:focus,
.ff-select:focus,
.ff-textarea:focus {
  border-color: var(--sky);
  background: rgba(255, 255, 255, 0.14);
}
.ff-select {
  color: #000;
}
.ff-textarea {
  resize: none;
  height: 70px;
}
.ff-submit {
  width: 100%;
  padding: 13px;
  background: var(--sky);
  color: white;
  border: none;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 800;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: 0 5px 20px rgba(26, 171, 219, 0.4);
  margin-top: 4px;
}
.ff-submit:hover {
  background: var(--sky-dark);
  transform: translateY(-1px);
}
.ff-privacy {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ════════════════════════════
     FOOTER
  ════════════════════════════ */
footer {
  background: var(--navy-dark);
  padding: 24px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  border-top: 3px solid var(--sky);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img {
  height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
}
.footer-links {
  display: flex;
  gap: 18px;
}
.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}
.footer-links a:hover {
  color: var(--sky);
}

/* Floating WhatsApp */
.float-wa {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  animation: float 3s ease-in-out infinite;
}
.float-wa:hover {
  transform: scale(1.1);
}
.float-wa svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ════════════════════════════
     RESPONSIVE
  ════════════════════════════ */
@media (max-width: 960px) {
  .hero,
  .symptoms-grid,
  .treatment-grid,
  .doctor-grid,
  .faq-inner,
  .loc-inner,
  .cta-inner {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .hero-left {
    padding: 0px 5px;
    margin-top: 50px;
  }
  section {
    padding: 50px 20px;
  }
  .cta-section,
  .usp-bar {
    padding: 56px 24px;
  }
  .trust-strip {
    padding: 14px 24px;
    justify-content: center;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .sym-cards {
    grid-template-columns: 1fr 1fr;
  }
  footer {
    padding: 20px 24px;
    flex-direction: column;
    text-align: center;
  }
  .header {
    padding: 8px 16px;
  }
  .mf-row {
    grid-template-columns: 1fr;
  }
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .usp-item:not(:last-child)::after {
    display: none;
  }
  .lap-ctas {
    grid-template-columns: 1fr;
  }
  .loc-ctas {
    flex-direction: column;
  }
  .stick12foot{
    display: block !important;
  }
}

/* ------------fixed bottom cta------------- */
.stick12foot {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0e395a; /* Aapka original dark blue color */
  z-index: 999999;
  padding: 9px 13px; /* Thoda extra breathing space */
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* Halka sa shadow top par */
  box-sizing: border-box;
  display: none;
}

.stick12foot .container {
  max-width: 100%;
  margin: 0 auto;
}

.stick12foot ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 12px; /* Dono buttons ke beech gap */
  justify-content: center;
  align-items: center;
}

.stick12foot ul li {
  flex: 1; /* Dono buttons ko equal width dega */
}

.stick12foot ul li a {
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  padding: 12px 5px;
  border-radius: 8px; /* Modern rounded corners */
  transition: all 0.3s ease;
  text-transform: uppercase; /* Professional look */
  letter-spacing: 0.5px;
}

/* Specific Button Colors */
.fx-btn-call {
  background: #ffffff;
  color: #0e395a !important;
}

.btn-book {
  background: #25d366; /* WhatsApp Green for Book Appointment */
  color: #ffffff !important;
}

.stick12foot svg {
  flex-shrink: 0;
}

/* Button Active Effect (Click karne par feel aayegi) */
.stick12foot ul li a:active {
  transform: scale(0.96);
  opacity: 0.9;
}

/* ------------testimonial------------------- */

.testi-section {
  padding: 60px 0;
  overflow: hidden;
}

.testi-header {
  margin-bottom: 30px;
}
.tag {
  display: inline-block;
  background: var(--sky-light);
  color: var(--sky-dark);
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.sec-title {
  color: var(--navy);
  font-weight: 700;
  font-size: 2.5rem;
}
.sec-desc {
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto;
}

.testi-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid var(--border);
  height: 100%;
  transition: transform 0.3s ease;
  margin: 15px 5px;
  box-shadow: 0 10px 30px rgba(30, 58, 123, 0.05);
}
.testi-card:hover {
  transform: translateY(-5px);
  border-color: var(--sky);
}

.testi-stars {
  color: #ffc107;
  margin-bottom: 20px;
  font-size: 14px;
}
.testi-text {
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 25px;
  min-height: 100px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testi-av {
  width: 50px;
  height: 50px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
}
.testi-name {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.testi-loc {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* Carousel Navigation Dots */
.owl-theme .owl-dots .owl-dot span {
  background: var(--navy-light);
  width: 10px;
  height: 10px;
}
.owl-theme .owl-dots .owl-dot.active span {
  background: var(--sky);
  width: 10px;
  height: 10px;
}

/* ---------------------common css--------------------------- */
.owl-dots {
  text-align: center;
  padding-top: 15px;
  display: flex;
  margin: auto;
  justify-content: center;
}
.owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  padding: 0 5px;
  margin: 5px 2px;
  border: none;
  font-size: 16px;
  line-height: 16px;
  position: relative;
  background-color: var(--navy);
  bottom: 0px;
  display: block;
  border-radius: 50%;
}

/* Owl Dots Styling */
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--sky) !important;
}

input[type="date"] {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 45px;
  padding: 12px 16px;
  border: 1.5px solid var(--sky-light);
  border-radius: 10px;
  -webkit-appearance: none; /* iPhone default UI reset */
  appearance: none;
  background: #fff;
  position: relative;
  cursor: pointer;
}

/* Custom Placeholder Logic */
input[type="date"]::before {
  content: "Appointment Date";
  color: #999;
  flex: 1;
}

/* Jab date select ho jaye ya input valid ho toh placeholder hide karein */
input[type="date"]:focus::before,
input[type="date"]:valid::before {
  display: none !important;
  content: "";
}

/* SABSE ZARURI: Calendar icon ko hide karna aur 
   poore box ko clickable banana 
*/
input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0; /* Yeh symbol ko hide kar dega */
  cursor: pointer;
  background: transparent;
}
