/* ============ DESIGN TOKENS ============ */
:root {
  --ink: #12232A;
  --teal-900: #0A4B48;
  --teal-700: #0E766E;
  --teal-600: #129186;
  --blue-600: #1C6FA5;
  --blue-500: #2F8FCB;
  --sky-50: #F4FAFB;
  --sky-100: #E7F3F5;
  --sky-200: #D3E9EC;
  --white: #FFFFFF;
  --gray-600: #4E6873;
  --gray-400: #8AA0A8;
  --amber: #F0A73B;
  --coral: #EE6C55;
  --line: #DCE7E9;
  --shadow: 0 24px 48px -26px rgba(10,75,72,0.28);
  --shadow-sm: 0 10px 24px -16px rgba(10,75,72,0.22);
  --display: "Sora", sans-serif;
  --body: "IBM Plex Sans", sans-serif;
  --container: 1160px;
  --radius: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

section {
  position: relative;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 700;
  margin: 0;
  color: var(--teal-900);
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.eyebrow::before {
  content: "";
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--amber);
  display: inline-block;
}

/* ============ HEADER ============ */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--teal-900);
}

.brand .mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex: none;
}

.brand .mark svg {
  width: 19px;
  height: 19px;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navlinks a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-600);
  position: relative;
  padding: 4px 0;
}

.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.navlinks a:hover {
  color: var(--teal-900);
}

.navlinks a:hover::after {
  transform: scaleX(1);
}

.navcta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn {
  font-family: var(--body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s ease;
}

.btn-primary {
  background: var(--teal-700);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background: var(--teal-900);
}

.btn-ghost {
  background: transparent;
  color: var(--teal-900);
  border-color: var(--line);
}

.btn-ghost:hover {
  background: var(--sky-100);
  border-color: var(--sky-200);
}

.btn-accent {
  background: var(--blue-600);
  color: var(--white);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -16px rgba(28, 111, 165, 0.55);
  background: #175D8C;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--teal-900);
  padding: 6px;
}

/* ============ HERO ============ */
.hero {
  padding: 80px 0 76px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(760px 420px at 84% -10%, var(--sky-100) 0%, transparent 62%),
    radial-gradient(circle, var(--sky-200) 1px, transparent 1.4px) 0 0/26px 26px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0.55) 38%, var(--white) 78%);
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky-100);
  color: var(--teal-700);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  border: 1px solid var(--sky-200);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

h1.headline {
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.08;
  font-weight: 800;
}

h1.headline .accent {
  background: linear-gradient(100deg, var(--teal-700) 10%, var(--blue-500) 55%, var(--coral) 105%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin-top: 20px;
  font-size: 17px;
  color: var(--gray-600);
  max-width: 470px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.hero-stats .stat {
  padding-right: 34px;
  margin-right: 34px;
  border-right: 1px solid var(--line);
}

.hero-stats .stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.hero-stats .stat b {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  color: var(--teal-900);
  font-weight: 700;
}

.hero-stats .stat span {
  font-size: 12.5px;
  color: var(--gray-600);
}

.hero-art {
  position: relative;
}

.session-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.session-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--sky-50);
}

.session-topbar .live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--teal-700);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2FB380;
  position: relative;
}

.live-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid #2FB380;
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    opacity: .7;
    transform: scale(0.6);
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

.session-topbar .dur {
  font-size: 12px;
  color: var(--gray-400);
}

.session-video {
  height: 190px;
  background: linear-gradient(155deg, var(--teal-900) 0%, var(--teal-700) 55%, var(--blue-600) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.session-video .avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
}

.session-video .self-tile {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 58px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.session-video .name-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(10, 75, 72, 0.55);
  padding: 5px 10px;
  border-radius: 100px;
}

.session-info {
  padding: 20px;
}

.session-info .row1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.session-info b {
  font-family: var(--display);
  font-size: 17px;
  color: var(--teal-900);
}

.session-info .role {
  font-size: 12.5px;
  color: var(--gray-600);
  margin-top: 2px;
}

.session-badge {
  background: var(--sky-100);
  color: var(--teal-700);
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.vitals-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.vital-chip {
  flex: 1;
  background: var(--sky-50);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
}

.vital-chip span {
  display: block;
  font-size: 11px;
  color: var(--gray-400);
  margin-bottom: 3px;
}

.vital-chip b {
  font-family: var(--display);
  font-size: 14.5px;
  color: var(--teal-900);
}

/* ============ SECTION HEAD ============ */
.section-head {
  max-width: 600px;
  margin-bottom: 52px;
}

.section-head h2 {
  font-size: clamp(27px, 3.2vw, 38px);
  margin-top: 14px;
}

.section-head p {
  margin-top: 14px;
  color: var(--gray-600);
  font-size: 16px;
}

.section-pad {
  padding: 96px 0;
}

.bg-tint {
  background: var(--sky-50);
}

.bg-teal {
  background: var(--teal-900);
  color: var(--white);
}

.bg-teal .section-head h2,
.bg-teal h3 {
  color: var(--white);
}

.bg-teal .section-head p {
  color: #B9D8D5;
}

/* ============ SERVICES GRID ============ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all .25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-700), var(--blue-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
  border-color: var(--sky-200);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--sky-100);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all .25s ease;
}

.service-icon svg {
  width: 21px;
  height: 21px;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--teal-700), var(--blue-600));
  color: var(--white);
  transform: scale(1.06);
}

.service-card h3 {
  font-size: 17.5px;
  margin-bottom: 8px;
  font-weight: 700;
}

.service-card p {
  font-size: 14.5px;
  color: var(--gray-600);
  margin: 0;
}

/* ============ DOCTORS ============ */
.doctor-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  max-width: 640px;
  box-shadow: var(--shadow-sm);
}

.doctor-photo {
  width: 170px;
  height: 170px;
  border-radius: 14px;
  background: linear-gradient(155deg, var(--teal-700) 0%, var(--blue-600) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--display);
  font-size: 42px;
  font-weight: 800;
}

.doctor-card h3 {
  font-size: 22px;
  font-weight: 700;
}

.doctor-card .cred {
  color: var(--blue-600);
  font-weight: 600;
  font-size: 13.5px;
  margin-top: 6px;
}

.doctor-card .focus {
  color: var(--gray-600);
  font-size: 14.5px;
  margin-top: 10px;
}

.doctor-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.doctor-tags span {
  font-size: 12px;
  font-weight: 600;
  background: var(--sky-100);
  color: var(--teal-700);
  padding: 5px 11px;
  border-radius: 100px;
}

/* ============ HOW IT WORKS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.track-row {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.track-row .tdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  flex: none;
}

.track-row .tline {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 6px;
}

.step {
  padding: 0 26px 0 0;
  position: relative;
}

.step .num {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.step .num .ring {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12.5px;
}

.step h3 {
  color: var(--white);
  font-size: 18.5px;
  margin-bottom: 8px;
  font-weight: 700;
}

.step p {
  color: #B9D8D5;
  font-size: 14.5px;
  margin: 0;
  max-width: 280px;
}

/* ============ BOOKING FORM ============ */
.book-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: flex-start;
}

.book-info h2 {
  font-size: clamp(27px, 3.2vw, 36px);
}

.book-info p {
  color: var(--gray-600);
  margin-top: 14px;
  max-width: 400px;
}

.book-points {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.book-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-600);
}

.book-points svg {
  width: 18px;
  height: 18px;
  color: var(--teal-700);
  flex: none;
}

.book-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-900);
}

.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--sky-50);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: all .2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(18, 145, 134, 0.13);
  background: var(--white);
}

.field textarea {
  resize: vertical;
  min-height: 70px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  font-size: 14px;
  transition: all .2s ease;
  background: var(--sky-50);
}

.radio-opt:has(input:checked) {
  border-color: var(--teal-600);
  background: rgba(18, 145, 134, 0.06);
}

.radio-opt .left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.radio-opt .price {
  color: var(--gray-600);
  font-weight: 600;
  font-size: 13px;
}

/* ============ SLOT GRID STYLES ============ */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 10px 0;
}

.slot-btn {
  font-family: var(--body, Arial, sans-serif);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 6px;
  border-radius: 9px;
  border: 1.5px solid #DCE7E9;
  background: #F4FAFB;
  color: #0A4B48;
  cursor: pointer;
  text-align: center;
  transition: all 0.18s ease;
}

.slot-btn:hover:not(:disabled) {
  border-color: #129186;
  transform: translateY(-1px);
}

.slot-btn.selected {
  background: #0E766E;
  border-color: #0E766E;
  color: #FFFFFF;
}

.slot-btn:disabled {
  background: #FFFFFF;
  border-color: #DCE7E9;
  color: #8AA0A8;
  text-decoration: line-through;
  cursor: not-allowed;
  opacity: 0.65;
}

.slot-legend {
  display: flex;
  gap: 18px;
  margin: 10px 0 16px;
  flex-wrap: wrap;
}

.slot-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #4E6873;
}

.slot-legend i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}

.slot-legend .lg-open i {
  background: #F4FAFB;
  border: 1.5px solid #DCE7E9;
}

.slot-legend .lg-sel i {
  background: #0E766E;
}

.slot-legend .lg-booked i {
  background: #FFFFFF;
  border: 1.5px solid #DCE7E9;
}

.slot-note {
  font-size: 12.5px;
  color: #4E6873;
  margin-top: -6px;
  margin-bottom: 16px;
}

.slot-note.warn {
  color: #EE6C55;
  font-weight: 600;
}

/* ============ FEE ROW ============ */
.fee-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--line);
  padding-top: 18px;
  margin-top: 6px;
  margin-bottom: 20px;
}

.fee-row span {
  font-size: 13px;
  color: var(--gray-600);
}

.fee-row b {
  font-family: var(--display);
  font-size: 23px;
  color: var(--teal-900);
}

.submit-btn {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 15px;
}

.success-msg {
  display: none;
  text-align: center;
  padding: 30px 10px;
}

.success-msg.show {
  display: block;
}

.success-msg .tick {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sky-100);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-msg h3 {
  font-size: 19px;
  margin-bottom: 8px;
  font-weight: 700;
}

.success-msg p {
  color: var(--gray-600);
  font-size: 14px;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.t-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--line);
  transition: all .25s ease;
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.t-card .stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}

.t-card p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
}

.t-card .who {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-900);
}

.t-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex: none;
  background: linear-gradient(135deg, var(--teal-700), var(--blue-600));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 700;
}

/* ============ FOOTER ============ */
footer {
  background: var(--teal-900);
  color: #B9D8D5;
  padding: 70px 0 26px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 700;
}

.foot-brand .mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex: none;
}

.foot-brand .mark svg {
  width: 16px;
  height: 16px;
}

.foot-col h4 {
  color: var(--white);
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-family: var(--body);
  font-weight: 600;
}

.foot-col p,
.foot-col a {
  display: block;
  font-size: 14px;
  color: #B9D8D5;
  margin-bottom: 10px;
  line-height: 1.6;
}

.foot-col a:hover {
  color: var(--white);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 13px;
  color: rgba(185, 216, 213, 0.6);
  flex-wrap: wrap;
  gap: 10px;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ MODALS ============ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 35, 42, 0.55);
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
}

.modal-overlay.show {
  display: flex;
}

.modal-box {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 30px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(10, 35, 42, 0.4);
  animation: modalPop .25s ease;
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.modal-icon svg {
  width: 26px;
  height: 26px;
}

.modal-icon.success {
  background: #DFF3EA;
  color: #1E9463;
}

.modal-icon.fail {
  background: #FBE3DF;
  color: var(--coral);
}

.modal-box h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.modal-box p {
  color: var(--gray-600);
  font-size: 14.5px;
  margin: 0;
}

.modal-details {
  text-align: left;
  background: var(--sky-50);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 18px;
  font-size: 13.5px;
}

.modal-details div {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  color: var(--gray-600);
}

.modal-details div b {
  color: var(--teal-900);
  font-weight: 600;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .navlinks {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero .wrap {
    grid-template-columns: 1fr;
  }
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .track-row {
    display: none;
  }
  .book-grid {
    grid-template-columns: 1fr;
  }
  .doctor-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .doctor-tags {
    justify-content: center;
  }
  .testimonials {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .slot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .services {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 56px 0 40px;
  }
  .section-pad {
    padding: 64px 0;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 