/* ============================================
   Dr. Muhammad Nisar — Premium Medical Website
   Style: Navy Blue + Amber/Gold Medical Theme
   ============================================ */

/* ----- RESET & VARIABLES ----- */
:root {
  --navy: #1a1f5e;
  --navy-d: #12164a;
  --navy-m: #252b75;
  --amber: #f5a623;
  --amber-l: #ffd07a;
  --amber-d: #c4840e;
  --white: #fff;
  --off: #f4f6fb;
  --gray: #64748b;
  --gray-l: #e2e8f0;
  --green: #10b981;
  --red: #ef4444;
  --sh: 0 4px 24px rgba(26, 31, 94, 0.10);
  --sh-lg: 0 16px 56px rgba(26, 31, 94, 0.16);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--navy);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; }
input, select, textarea { font-family: inherit; outline: none; }
img { display: block; max-width: 100%; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 6px; }

/* ----- ANIMATIONS ----- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ----- NAVBAR ----- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  transition: all 0.3s;
  padding: 0 20px;
  background: transparent;
}
.navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(26, 31, 94, 0.1);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
}
.nav-logo-nm {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  transition: color 0.3s;
}
.nav-logo-tg {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  font-weight: 600;
  transition: color 0.3s;
}
.navbar.scrolled .nav-logo-nm { color: var(--navy); }
.navbar.scrolled .nav-logo-tg { color: var(--gray); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  background: none;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  transition: all 0.2s;
}
.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.navbar.scrolled .nav-link { color: var(--navy-m); }
.navbar.scrolled .nav-link:hover { background: var(--off); }

.nav-cta {
  background: var(--amber);
  border-radius: 50px;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  margin-left: 6px;
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.4);
  transition: all 0.22s;
}
.nav-cta:hover {
  background: var(--amber-d);
  transform: translateY(-2px);
}

.nav-wa {
  background: #25d366;
  border-radius: 50px;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.22s;
}
.nav-wa:hover { background: #1ea952; transform: translateY(-2px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar.scrolled .hamburger span { background: var(--navy); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 14px 20px 20px;
  flex-direction: column;
  gap: 4px;
  z-index: 490;
  box-shadow: 0 16px 40px rgba(26, 31, 94, 0.14);
  border-top: 3px solid var(--amber);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  background: none;
  padding: 13px 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  border-radius: 10px;
  text-align: left;
  transition: all 0.18s;
}
.mobile-link:hover { background: var(--off); color: var(--amber-d); }
.mobile-cta {
  color: var(--amber-d);
  border-top: 1px solid var(--gray-l);
  margin-top: 6px;
  padding-top: 14px;
}

/* ----- HERO SECTION ----- */
.hero {
  background: linear-gradient(150deg, var(--navy-d), var(--navy) 55%, #1d2370);
  min-height: 100vh;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.hero-orb-1 {
  width: 380px;
  height: 380px;
  background: rgba(245, 166, 35, 0.12);
  top: -100px;
  right: -80px;
}
.hero-orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(37, 43, 117, 0.4);
  bottom: -120px;
  left: -100px;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-h1 em {
  color: var(--amber);
  font-style: italic;
}

.hero-sub {
  font-size: 14px;
  font-weight: 800;
  color: var(--amber-l);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-pmdc {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 22px;
  animation: fadeUp 0.8s 0.25s ease both;
}

.hero-conditions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-condition {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.hero-condition:hover {
  background: rgba(245, 166, 35, 0.12);
  border-color: rgba(245, 166, 35, 0.35);
}
.hero-condition::before {
  content: '✓';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.35s ease both;
}
.btn-primary-hero {
  background: var(--amber);
  border-radius: 50px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.42);
  transition: all 0.22s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-hero:hover {
  background: var(--amber-d);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 166, 35, 0.55);
}
.btn-outline-hero {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.22s;
}
.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ----- HERO IMAGE CARD ----- */
.hero-image-wrap {
  position: relative;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-image-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  padding: 12px;
  box-shadow: var(--sh-lg);
  position: relative;
  overflow: hidden;
}
.hero-image-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 1;
}
.hero-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-image-badge-ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.hero-image-badge-ttl {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.hero-image-badge-sub {
  font-size: 11px;
  color: var(--gray);
  font-weight: 600;
  margin-top: 1px;
}

/* ----- SECTION DEFAULTS ----- */
.section {
  padding: 80px 20px;
}
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 800;
  color: var(--amber-d);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-title em {
  color: var(--amber-d);
  font-style: italic;
}
.section-sub {
  font-size: 16px;
  color: var(--gray);
  font-weight: 600;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ----- APPOINTMENT DETAILS SECTION ----- */
.appt-section {
  background: var(--off);
}
.appt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.appt-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--sh);
  border: 1px solid var(--gray-l);
  transition: all 0.3s;
}
.appt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--amber);
}
.appt-card-ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-m));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.appt-card-ttl {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.appt-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-l);
  font-size: 14px;
}
.appt-card-row:last-child { border-bottom: none; }
.appt-card-row-lbl {
  color: var(--gray);
  font-weight: 600;
}
.appt-card-row-val {
  font-family: 'Fraunces', serif;
  color: var(--amber-d);
  font-weight: 900;
  font-size: 16px;
}
.appt-card-text {
  font-size: 14px;
  color: var(--navy);
  line-height: 1.65;
  font-weight: 600;
}
.appt-card-urdu {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.9;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--gray-l);
  direction: rtl;
  text-align: right;
  font-weight: 600;
}

/* ----- BOOKING OPTIONS SECTION ----- */
.book-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.book-option-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: var(--sh);
  border: 2px solid var(--gray-l);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.book-option-card.featured {
  border-color: var(--amber);
  background: linear-gradient(160deg, #fff, #fffaef);
}
.book-option-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--amber);
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  padding: 4px 36px;
  letter-spacing: 0.12em;
  transform: rotate(35deg);
}
.book-option-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.book-option-ic {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.book-option-ic.wa { background: #25d366; }
.book-option-ic.online { background: var(--amber); }
.book-option-ttl {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}
.book-option-sub {
  font-size: 14px;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.6;
}
.book-option-phone {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--amber-d);
  background: var(--off);
  border-radius: 12px;
  padding: 12px 20px;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.book-option-urdu {
  background: var(--off);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--navy);
  line-height: 2;
  direction: rtl;
  text-align: right;
  margin-bottom: 20px;
  font-weight: 600;
}
.book-option-urdu ul {
  list-style: none;
  padding: 0;
}
.book-option-urdu li {
  padding: 4px 0;
}
.book-option-btn {
  width: 100%;
  border-radius: 50px;
  padding: 15px;
  font-size: 15px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.22s;
}
.btn-wa-full {
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}
.btn-wa-full:hover { background: #1ea952; transform: translateY(-2px); }
.btn-amber-full {
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(245, 166, 35, 0.42);
}
.btn-amber-full:hover { background: var(--amber-d); transform: translateY(-2px); }

/* ----- FOOTER ----- */
.footer {
  background: var(--navy-d);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 20px 24px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand-logo-ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  color: var(--navy);
  font-size: 16px;
}
.footer-brand-name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}
.footer-brand-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.footer-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}
.footer-text strong {
  color: var(--amber-l);
  font-weight: 800;
}
.footer-h {
  font-family: 'Fraunces', serif;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  padding: 5px 0;
  transition: color 0.2s;
  font-weight: 600;
}
.footer-link:hover { color: var(--amber); }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

/* ----- WHATSAPP FLOATING BUTTON ----- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  z-index: 400;
  transition: all 0.22s;
  animation: pulseWa 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  background: #1ea952;
}
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.8), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ============================================
   BOOKING PAGE STYLES
   ============================================ */

.bk-page {
  background: var(--off);
  min-height: 100vh;
}
.bk-topbar {
  background: var(--navy-d);
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}
.bk-topbar-in {
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bk-back {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bk-back:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.bk-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}
.bk-head {
  text-align: center;
  margin-bottom: 28px;
}
.bk-head h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}
.bk-head p {
  font-size: 15px;
  color: var(--gray);
  font-weight: 600;
}

.bk-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--sh);
  margin-bottom: 16px;
}

.bk-step-h {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.bk-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}
.bk-step-ttl {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}

.bk-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bk-label .req { color: var(--red); }
.bk-input {
  width: 100%;
  border: 2px solid var(--gray-l);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  transition: border-color 0.18s;
  margin-bottom: 6px;
}
.bk-input:focus { border-color: var(--amber); }
.bk-input.error { border-color: var(--red); }
.bk-hint {
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 16px;
}
.bk-error-msg {
  font-size: 12px;
  color: var(--red);
  font-weight: 700;
  margin-top: 4px;
  margin-bottom: 8px;
  display: none;
}
.bk-error-msg.show { display: block; }

/* Consultation Type Cards */
.bk-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bk-type-card {
  background: var(--off);
  border: 2px solid var(--gray-l);
  border-radius: 14px;
  padding: 18px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  text-align: left;
}
.bk-type-card:hover { border-color: var(--amber); }
.bk-type-card.selected {
  background: #fffaef;
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.12);
}
.bk-type-card.selected::after {
  content: '✓';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bk-type-ic {
  font-size: 26px;
  margin-bottom: 10px;
}
.bk-type-ttl {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.bk-type-sub {
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 10px;
}
.bk-type-price {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--amber-d);
}
.bk-type-badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 6px;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

/* Clinic Display */
.bk-clinic-card {
  background: linear-gradient(160deg, var(--navy), var(--navy-m));
  border-radius: 14px;
  padding: 18px 20px;
  color: #fff;
}
.bk-clinic-en {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.bk-clinic-en::before {
  content: '📍';
  font-size: 18px;
  flex-shrink: 0;
}
.bk-clinic-ur {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
  direction: rtl;
  text-align: right;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}

/* Date & Time Slots */
.bk-date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.bk-date-btn {
  background: var(--off);
  border: 2px solid var(--gray-l);
  border-radius: 10px;
  padding: 10px 4px;
  text-align: center;
  cursor: pointer;
  transition: all 0.18s;
}
.bk-date-btn:hover:not(:disabled):not(.selected) {
  border-color: var(--amber);
}
.bk-date-btn.selected {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.bk-date-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: #f1f3f5;
}
.bk-date-day {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gray);
  letter-spacing: 0.05em;
}
.bk-date-btn.selected .bk-date-day { color: rgba(255, 255, 255, 0.7); }
.bk-date-num {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  margin-top: 2px;
}
.bk-date-btn.selected .bk-date-num { color: #fff; }
.bk-date-mon {
  font-size: 9px;
  color: var(--gray);
  font-weight: 700;
  text-transform: uppercase;
}
.bk-date-btn.selected .bk-date-mon { color: rgba(255, 255, 255, 0.7); }

.bk-slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.bk-slot {
  background: var(--off);
  border: 2px solid var(--gray-l);
  border-radius: 10px;
  padding: 12px 4px;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.18s;
}
.bk-slot:hover:not(.selected) {
  border-color: var(--amber);
  background: #fffaef;
}
.bk-slot.selected {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}

/* Payment Options */
.bk-pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 480px) {
  .bk-pay-grid { grid-template-columns: 1fr 1fr; }
}
.bk-pay-card {
  background: var(--off);
  border: 2px solid var(--gray-l);
  border-radius: 12px;
  padding: 16px 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.bk-pay-card:hover { border-color: var(--amber); }
.bk-pay-card.selected {
  background: #fffaef;
  border-color: var(--amber);
}
.bk-pay-ic {
  font-size: 24px;
  margin-bottom: 6px;
}
.bk-pay-ttl {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}

/* ----- PAYMENT DETAILS PANELS ----- */
.pay-details {
  margin-top: 16px;
  border-radius: 14px;
  padding: 20px;
  border: 1.5px solid var(--gray-l);
  animation: fadeUp 0.4s ease;
}
.pay-easypaisa {
  background: #ecfdf5;
  border-color: #6ee7b7;
}
.pay-ubl {
  background: #eff6ff;
  border-color: #93c5fd;
}
.pay-clinic {
  background: var(--off);
  border-color: var(--gray-l);
  text-align: center;
  padding: 28px 20px;
}
.pay-clinic-msg {
  max-width: 320px;
  margin: 0 auto;
}

.pay-details-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.pay-details-ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.pay-details-ttl {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}
.pay-details-sub {
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
  margin-top: 1px;
}

/* EasyPaisa Account Box */
.pay-account-box {
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  text-align: center;
  margin-bottom: 14px;
  border: 1.5px solid #d1fae5;
}
.pay-account-num {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 900;
  color: #059669;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.pay-account-nm {
  font-size: 13px;
  color: var(--gray);
  font-weight: 700;
  margin-bottom: 12px;
}

.pay-copy-btn {
  width: 100%;
  background: #d1fae5;
  border: 1.5px solid #6ee7b7;
  border-radius: 8px;
  padding: 9px;
  font-size: 13px;
  font-weight: 800;
  color: #065f46;
  transition: all 0.2s;
  cursor: pointer;
  font-family: inherit;
}
.pay-copy-btn:hover { background: #a7f3d0; }
.pay-copy-btn.copied {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* UBL Bank Table */
.pay-bank-table {
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid #dbeafe;
  margin-bottom: 12px;
  overflow: hidden;
}
.pay-bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  border-bottom: 1px solid #eff6ff;
  font-size: 13px;
}
.pay-bank-row:last-child { border-bottom: none; }
.pay-bank-lbl {
  color: var(--gray);
  font-weight: 700;
  font-size: 12px;
}
.pay-bank-val {
  font-weight: 800;
  color: var(--navy);
  text-align: right;
  word-break: break-all;
}
.pay-bank-highlight {
  font-family: 'Fraunces', serif;
  color: #1d4ed8;
  font-size: 16px;
}

.pay-bank-copy-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.pay-copy-btn-sm {
  background: #dbeafe;
  border: 1.5px solid #93c5fd;
  border-radius: 8px;
  padding: 9px;
  font-size: 12px;
  font-weight: 800;
  color: #1d4ed8;
  transition: all 0.2s;
  cursor: pointer;
  font-family: inherit;
}
.pay-copy-btn-sm:hover { background: #bfdbfe; }
.pay-copy-btn-sm.copied {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* Payment Instructions */
.pay-instructions {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 12px;
  color: var(--navy);
  font-weight: 600;
}
.pay-instructions-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 4px 0;
  line-height: 1.6;
}
.pay-instructions-row strong {
  color: var(--navy);
  font-weight: 800;
}

/* File Upload */
.pay-upload {
  border: 2px dashed var(--gray-l);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--off);
}
.pay-upload:hover {
  border-color: var(--amber);
  background: #fffaef;
}
.pay-upload.uploaded {
  border-color: var(--green);
  background: #ecfdf5;
  border-style: solid;
}

/* Submit Button */
.bk-submit {
  width: 100%;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50px;
  padding: 18px;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.42);
  transition: all 0.22s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.02em;
}
.bk-submit:hover:not(:disabled) {
  background: var(--amber-d);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 166, 35, 0.55);
}
.bk-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.bk-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(26, 31, 94, 0.2);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Booking Summary */
.bk-summary {
  background: linear-gradient(160deg, var(--navy), var(--navy-m));
  border-radius: 16px;
  padding: 20px 24px;
  color: #fff;
  margin-bottom: 16px;
}
.bk-summary-h {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--amber-l);
}
.bk-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.bk-summary-row:last-child { border-bottom: none; padding-top: 14px; margin-top: 6px; border-top: 1px solid rgba(255, 255, 255, 0.2); }
.bk-summary-lbl { color: rgba(255, 255, 255, 0.6); font-weight: 600; }
.bk-summary-val { font-weight: 800; color: #fff; }
.bk-summary-row.total .bk-summary-val {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--amber);
  font-weight: 900;
}

/* Success Modal */
.bk-success {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(18, 22, 74, 0.85);
  backdrop-filter: blur(8px);
  z-index: 600;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeUp 0.4s ease;
}
.bk-success.show { display: flex; }
.bk-success-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--sh-lg);
}
.bk-success-ic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.bk-success-h {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}
.bk-success-msg {
  font-size: 15px;
  color: var(--gray);
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 16px;
}
.bk-success-urdu {
  background: var(--off);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.9;
  direction: rtl;
  text-align: right;
  font-weight: 600;
  margin-bottom: 22px;
}
.bk-success-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.bk-success-btn {
  flex: 1;
  min-width: 140px;
  border-radius: 50px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 20px 60px;
  }
  .hero-image-wrap {
    max-width: 360px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta, .nav-wa { display: none; }

  .section { padding: 60px 20px; }
  .hero-conditions { grid-template-columns: 1fr 1fr; }
  .bk-type-grid { grid-template-columns: 1fr; }
  .bk-date-grid { grid-template-columns: repeat(4, 1fr); }
  .bk-slot-grid { grid-template-columns: repeat(3, 1fr); }
  .bk-card { padding: 24px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 30px; }
  .hero-conditions { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn-primary-hero, .btn-outline-hero { width: 100%; justify-content: center; }
  .bk-slot-grid { grid-template-columns: repeat(2, 1fr); }
  .wa-float { width: 54px; height: 54px; font-size: 24px; bottom: 20px; right: 20px; }
}
