/* ============================================================
   ADVIKA IVF CENTRE — MAIN STYLESHEET
   Color System: Kumkum (#8B111B) + Kesar (#D58F4B)
   ============================================================ */

:root {
  --k900: #5E0C13;
  --k700: #8B111B;
  --k500: #B63A45;
  --k300: #E6A3A8;
  --k100: #F9E8EA;
  --s900: #9A5F2E;
  --s700: #D58F4B;
  --s500: #E6A96E;
  --s300: #F3CFA7;
  --s100: #FCF3E8;
  --warm: #F8F5F2;
  --white: #FFFFFF;
  --lgrey: #E5E5E5;
  --mgrey: #8A8A8A;
  --dgrey: #2E2E2E;
  --success: #4CAF50;
  --warning: #F4A261;
  --error: #D32F2F;
  --info: #2F80ED;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--warm);
  color: var(--dgrey);
  font-size: 15px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   STICKY CTA BAR
   ============================================================ */
.sticky-cta-bar {
  background: var(--k700);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta-bar .btn-topbar {
  background: #fff;
  color: var(--k700);
  border: none;
  border-radius: 6px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.sticky-cta-bar .btn-topbar:hover {
  background: var(--s700);
  color: #fff;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: #fff !important;
  border-bottom: 1px solid var(--lgrey);
  padding: 0 !important;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.navbar-brand img {
  height: 52px;
  width: auto;
}

.nav-link {
  font-size: 14px;
  color: var(--mgrey) !important;
  padding: 1.2rem 0.9rem !important;
  transition: color 0.2s;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  color: var(--k700) !important;
}

.btn-book-nav {
  background: var(--k700);
  color: #fff !important;
  border-radius: 6px;
  padding: 9px 20px !important;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
  cursor: pointer;
}

.btn-book-nav:hover {
  background: var(--k900) !important;
  color: #fff !important;
}

/* ============================================================
   HERO / SLIDER
   ============================================================ */
.hero-section {
  background: var(--k100);
  padding: 60px 0 50px;
  overflow: hidden;
}

.hero-badge {
  background: var(--k700);
  color: #fff;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.hero-section h1 {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--k900);
  line-height: 1.25;
  margin-bottom: 16px;
}

.hero-section p.lead {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust-badge {
  background: #fff;
  border: 1px solid var(--lgrey);
  border-radius: 8px;
  padding: 7px 13px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--dgrey);
  font-weight: 500;
}

.trust-badge i {
  color: var(--k700);
  font-size: 14px;
}

/* Hero Image Slider */
.hero-slider-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--k300);
  background: #fff;
}

.hero-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hero-slide {
  min-width: 100%;
  position: relative;
}

.hero-slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.slider-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.35), transparent);
}

.slider-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex: 1;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.slider-dot.active {
  background: #fff;
  transform: scale(1.25);
}

.slider-arrow {
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 14px;
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.45);
}

/* Hero Stats Bar */
.hero-stats {
  display: flex;
  border-top: 1px solid var(--lgrey);
  background: #fff;
}

.hero-stat {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  border-right: 1px solid var(--lgrey);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--k700);
  line-height: 1.2;
}

.hero-stat span {
  font-size: 11px;
  color: var(--mgrey);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--k700);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--k900);
  margin-bottom: 10px;
}

.section-sub {
  color: var(--mgrey);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto 48px;
}

/* ============================================================
   DOCTORS SECTION
   ============================================================ */
.doctors-section {
  background: #fff;
  padding: 80px 0;
}

.doctors-track-wrap {
  position: relative;
}

.doctors-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.doctors-track::-webkit-scrollbar {
  display: none;
}

.doctor-card {
  background: #fff;
  border: 1px solid var(--lgrey);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  min-width: 280px;
  max-width: 280px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.doctor-card:hover {
  border-color: var(--k300);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(139,17,27,0.10);
}

.doctor-img {
  height: 200px;
  background: var(--k100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--k300);
  overflow: hidden;
}

.doctor-img i {
  font-size: 72px;
}

.doctor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-body {
  padding: 18px 20px;
}

.doctor-badge {
  background: var(--k100);
  color: var(--k700);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}

.doctor-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--k900);
  margin-bottom: 4px;
}

.doctor-qual {
  font-size: 13px;
  color: var(--mgrey);
  margin-bottom: 8px;
}

.doctor-trust {
  font-size: 13px;
  color: #555;
  margin-bottom: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.doctor-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.doc-meta-item {
  font-size: 12px;
  color: var(--mgrey);
  display: flex;
  align-items: center;
  gap: 4px;
}

.doc-meta-item i {
  color: var(--k500);
  font-size: 13px;
}

.doctor-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-doc-consult {
  flex: 1;
  background: var(--k700);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-doc-consult:hover {
  background: var(--k900);
}

.btn-doc-read {
  background: transparent;
  border: 1.5px solid var(--k700);
  color: var(--k700);
  border-radius: 7px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-doc-read:hover {
  background: var(--k100);
}

/* Scroll Buttons */
.doc-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1.5px solid var(--lgrey);
  color: var(--k700);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.doc-scroll-btn:hover {
  border-color: var(--k700);
  box-shadow: 0 4px 12px rgba(139,17,27,0.15);
}

.doc-scroll-left { left: -20px; }
.doc-scroll-right { right: -20px; }

/* ============================================================
   FACILITIES
   ============================================================ */
.facilities-section {
  background: var(--s100);
  padding: 80px 0;
}

.facility-card {
  background: #fff;
  border: 1px solid var(--lgrey);
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
  height: 100%;
}

.facility-card:hover {
  border-color: var(--s700);
  transform: translateY(-2px);
}

.facility-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--k100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.facility-icon i {
  color: var(--k700);
  font-size: 20px;
}

.facility-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--k900);
  margin-bottom: 3px;
}

.facility-desc {
  font-size: 12px;
  color: var(--mgrey);
  line-height: 1.5;
}

.facility-link {
  font-size: 12px;
  color: var(--k700);
  font-weight: 600;
  margin-top: 5px;
  cursor: pointer;
  display: inline-block;
  transition: color 0.2s;
}

.facility-link:hover {
  color: var(--k900);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: #fff;
  padding: 80px 0;
}

.why-card {
  text-align: center;
  padding: 28px 16px;
  border-radius: 12px;
  transition: background 0.2s;
}

.why-card:hover {
  background: var(--k100);
}

.why-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--k100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.2s;
}

.why-card:hover .why-icon-wrap {
  background: var(--k300);
}

.why-icon-wrap i {
  font-size: 26px;
  color: var(--k700);
}

.why-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--k900);
  margin-bottom: 6px;
}

.why-desc {
  font-size: 12px;
  color: var(--mgrey);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--k100);
  padding: 80px 0;
}

.testi-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid var(--lgrey);
  height: 100%;
}

.testi-stars {
  color: var(--s700);
  font-size: 14px;
  margin-bottom: 12px;
}

.testi-text {
  font-size: 14px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--k700);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--k900);
}

.testi-label {
  font-size: 12px;
  color: var(--mgrey);
}

/* ============================================================
   APPOINTMENT SECTION
   ============================================================ */
.appt-section {
  background: var(--k700);
  padding: 80px 0;
}

.appt-section .section-title {
  color: #fff;
}

.appt-section .section-sub {
  color: rgba(255,255,255,0.75);
}

.appt-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.appt-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

.appt-check-item i {
  color: var(--s500);
  font-size: 18px;
  flex-shrink: 0;
}

/* Inline Quick Form (on homepage) */
.quick-appt-form {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
}

.quick-appt-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dgrey);
  margin-bottom: 5px;
  display: block;
}

.quick-appt-form .form-control,
.quick-appt-form .form-select {
  border: 1px solid var(--lgrey);
  border-radius: 8px;
  font-size: 14px;
  padding: 10px 14px;
  color: var(--dgrey);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.quick-appt-form .form-control:focus,
.quick-appt-form .form-select:focus {
  border-color: var(--s700);
  box-shadow: 0 0 0 3px rgba(213,143,75,0.15);
  outline: none;
}

.btn-appt-submit {
  background: var(--k700);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  width: 100%;
  transition: background 0.2s;
  cursor: pointer;
}

.btn-appt-submit:hover {
  background: var(--k900);
}

.reassurance {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--warm);
  padding: 80px 0;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--lgrey);
  border-radius: 14px;
  padding: 28px 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--k100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  color: var(--k700);
  font-size: 18px;
}

.contact-label {
  font-size: 11px;
  color: var(--mgrey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  font-weight: 600;
}

.contact-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--k900);
}

.contact-val a {
  color: var(--k700);
  transition: color 0.2s;
}

.contact-val a:hover {
  color: var(--k900);
}

.map-placeholder {
  background: var(--lgrey);
  border-radius: 12px;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mgrey);
  font-size: 14px;
  flex-direction: column;
  gap: 8px;
}

.map-placeholder i {
  font-size: 36px;
  color: var(--k300);
}

.btn-directions {
  background: var(--s700);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  text-align: center;
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-directions:hover {
  background: var(--s900);
  color: #fff;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--k900);
  color: rgba(255,255,255,0.8);
  padding: 52px 0 24px;
}

footer h6 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

footer p,
footer a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  line-height: 2;
}

footer a:hover { color: #fff; }
footer hr { border-color: rgba(255,255,255,0.12); margin: 28px 0 20px; }

.footer-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo-wrap img {
  height: 44px;
  width: auto;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 3px solid #fff;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  text-decoration: none;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float i {
  color: #fff;
  font-size: 28px;
}

/* ============================================================
   MODAL — BOOK APPOINTMENT
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  background: var(--k700);
  padding: 22px 28px;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.modal-header p {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  margin: 4px 0 0;
}

.modal-close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(255,255,255,0.35);
}

.modal-body {
  padding: 28px 28px 24px;
}

.modal-body .form-group {
  margin-bottom: 18px;
}

.modal-body label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dgrey);
  margin-bottom: 6px;
  display: block;
}

.modal-body label .optional-tag {
  color: var(--mgrey);
  font-weight: 400;
  font-size: 11px;
  margin-left: 4px;
}

.modal-body .form-control,
.modal-body .form-select {
  width: 100%;
  border: 1px solid var(--lgrey);
  border-radius: 8px;
  font-size: 14px;
  padding: 10px 14px;
  color: var(--dgrey);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}

.modal-body .form-control:focus,
.modal-body .form-select:focus {
  border-color: var(--s700);
  box-shadow: 0 0 0 3px rgba(213,143,75,0.15);
  outline: none;
}

.modal-body textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.modal-submit-btn {
  background: var(--k700);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.modal-submit-btn:hover {
  background: var(--k900);
}

.modal-privacy {
  text-align: center;
  font-size: 12px;
  color: var(--mgrey);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.modal-privacy i {
  color: var(--success);
  font-size: 13px;
}

/* ============================================================
   DOCTOR PROFILE MODAL (Read More)
   ============================================================ */
.doc-modal-header {
  background: var(--k100);
  padding: 28px 28px 20px;
  border-radius: 16px 16px 0 0;
  position: relative;
}

.doc-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid var(--lgrey);
  color: var(--mgrey);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}

.doc-modal-close:hover {
  border-color: var(--k700);
  color: var(--k700);
}

.doc-modal-profile {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.doc-modal-img {
  width: 90px;
  height: 90px;
  min-width: 90px;
  border-radius: 50%;
  background: var(--k700);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  overflow: hidden;
  border: 3px solid #fff;
}

.doc-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doc-modal-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--k900);
  margin-bottom: 4px;
}

.doc-modal-qual {
  font-size: 14px;
  color: var(--mgrey);
  margin-bottom: 10px;
}

.doc-modal-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.doc-modal-badge {
  background: var(--k700);
  color: #fff;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.doc-modal-body {
  padding: 24px 28px 28px;
}

.doc-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.doc-info-item {
  background: var(--warm);
  border-radius: 10px;
  padding: 12px 14px;
}

.doc-info-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--mgrey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.doc-info-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--k900);
}

.doc-bio-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--k900);
  margin-bottom: 8px;
  margin-top: 20px;
}

.doc-bio-text {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}

.doc-expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.doc-expertise-tag {
  background: var(--s100);
  color: var(--s900);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid var(--s300);
}

.doc-modal-footer {
  padding: 0 28px 24px;
  display: flex;
  gap: 10px;
}

.btn-modal-book {
  flex: 1;
  background: var(--k700);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-modal-book:hover {
  background: var(--k900);
}

/* ============================================================
   BUTTONS GLOBAL
   ============================================================ */
.btn-primary-k {
  background: var(--k700);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-k:hover { background: var(--k900); color: #fff; }

.btn-outline-k {
  background: transparent;
  color: var(--k700);
  border: 2px solid var(--k700);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-k:hover { background: var(--k700); color: #fff; }

/* ============================================================
   SUCCESS STATE (Form submitted)
   ============================================================ */
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.form-success.active { display: block; }

.success-icon {
  width: 72px;
  height: 72px;
  background: #E8F5E9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-icon i {
  font-size: 36px;
  color: var(--success);
}

.success-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--k900);
  margin-bottom: 8px;
}

.success-sub {
  font-size: 14px;
  color: var(--mgrey);
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .hero-section h1 { font-size: 1.9rem; }
  .section-title { font-size: 1.6rem; }
  .doc-scroll-left { left: 0; }
  .doc-scroll-right { right: 0; }
  .doctors-track { padding: 0 8px 8px; }
}

@media (max-width: 767px) {
  .hero-section { padding: 48px 0 36px; }
  .hero-slide img { height: 260px; }
  .hero-stat strong { font-size: 15px; }
  .hero-stat span { font-size: 10px; }
  .doc-info-grid { grid-template-columns: 1fr; }
  .doc-modal-profile { flex-direction: column; }
  .quick-appt-form { padding: 24px 20px; }
  .modal-body { padding: 20px; }
  .modal-header { padding: 18px 20px; }
  .doc-modal-footer { flex-direction: column; }
}

@media (max-width: 575px) {
  .sticky-cta-bar { font-size: 12px; }
  .trust-badges { gap: 8px; }
  .trust-badge { font-size: 12px; padding: 6px 10px; }
  .hero-section h1 { font-size: 1.65rem; }
}
