/* ================================================
   QUADSERV DIAGNOSTIC LABORATORY — style.css
   Clean Medical Theme | Bootstrap 5 | No JavaScript
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Playfair+Display:wght@700;800&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --navy:      #0d2b55;
  --navy-dark: #081c3a;
  --navy-mid:  #163663;
  --teal:      #0ea5a0;
  --teal-dark: #0c8a86;
  --teal-light:#5ecfcb;
  --blue-light:#e8f4fd;
  --white:     #ffffff;
  --off-white: #f8fbff;
  --light-grey:#f1f5f9;
  --text-dark: #1a2e4a;
  --text-mid:  #4a6080;
  --text-light:#8ba0b8;
  --border:    #dde8f0;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(13,43,85,0.10);
  --shadow-lg: 0 12px 48px rgba(13,43,85,0.15);
}

/* ---- BASE ---- */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  background-color: var(--off-white);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }
img { max-width: 100%; }

.text-teal { color: var(--teal) !important; }
.text-navy { color: var(--navy) !important; }
.text-teal-light { color: var(--teal-light) !important; }
.text-white-muted { color: rgba(255,255,255,0.72) !important; }

/* ---- NAVBAR ---- */
.qs-nav {
  background: var(--white) !important;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(13,43,85,0.07);
  padding: 0.55rem 0;
}

.brand-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}
.brand-accent { color: var(--teal); }
.brand-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1;
}

.qs-nav .nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-mid) !important;
  padding: 0.5rem 0.85rem !important;
  position: relative;
  transition: color 0.2s;
}
.qs-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.85rem; right: 0.85rem;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  border-radius: 2px;
}
.qs-nav .nav-link:hover,
.qs-nav .nav-link.active { color: var(--navy) !important; }
.qs-nav .nav-link:hover::after,
.qs-nav .nav-link.active::after { transform: scaleX(1); }

.btn-qs-nav {
  background: var(--teal);
  color: var(--white) !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  border: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-qs-nav:hover {
  background: var(--teal-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.navbar-toggler { border-color: var(--border); }

/* ---- HERO ---- */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 60%, #1a4a7a 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg,
    rgba(8,28,58,0.92) 0%,
    rgba(13,43,85,0.75) 50%,
    rgba(14,165,160,0.08) 100%);
}

/* Subtle dot pattern */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.hero-location-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(14,165,160,0.18);
  border: 1px solid rgba(14,165,160,0.4);
  color: var(--teal-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  line-height: 1.8;
}

.hero-img-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(10px);
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}
.hero-img-card {
  width: 100%;
  max-width: 650px;
}

.hero-img-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

.hero-wave {
  position: relative;
  line-height: 0;
  margin-top: -2px;
  z-index: 2;
}
.hero-wave svg { display: block; }

/* ---- BUTTONS ---- */
.btn-qs-primary {
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border: 2px solid var(--teal);
  border-radius: 50px;
  padding: 0.65rem 1.75rem;
  transition: all 0.25s;
}
.btn-qs-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,165,160,0.35);
}

.btn-qs-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  padding: 0.65rem 1.75rem;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}
.btn-qs-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

.btn-qs-outline {
  background: transparent;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid var(--teal);
  border-radius: 50px;
  padding: 0.65rem 1.75rem;
  transition: all 0.25s;
}
.btn-qs-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-qs-outline-sm {
  background: transparent;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.82rem;
  border: 1.5px solid var(--teal);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  transition: all 0.2s;
  display: inline-block;
}
.btn-qs-outline-sm:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-qs-teal {
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  transition: all 0.2s;
  display: inline-block;
}
.btn-qs-teal:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-qs-teal-sm {
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
  font-size: 0.8rem;
  border: none;
  border-radius: 50px;
  padding: 0.4rem 1rem;
  transition: all 0.2s;
  display: inline-block;
}
.btn-qs-teal-sm:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.btn-qs-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: 50px;
  padding: 0.65rem 1.75rem;
  transition: all 0.25s;
  display: inline-block;
}
.btn-qs-white:hover {
  background: var(--off-white);
  color: var(--teal);
  transform: translateY(-2px);
}

/* ---- QUICK INFO ---- */
.qinfo-item { padding: 0.5rem; }
.qinfo-icon {
  font-size: 1.4rem;
  color: var(--teal);
  display: block;
  margin-bottom: 0.35rem;
}
.qinfo-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}
.qinfo-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

/* ---- SECTION BACKGROUNDS ---- */
.section-light { background-color: var(--off-white); }
.section-navy { background-color: var(--navy); }
.section-teal { background-color: var(--teal); }

/* ---- TYPOGRAPHY ---- */
.qs-tag {
  display: inline-block;
  background: rgba(14,165,160,0.1);
  color: var(--teal-dark);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(14,165,160,0.25);
}
.qs-tag-light {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.section-desc {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.8;
}
.rounded-qs { border-radius: var(--radius) !important; }

/* ---- WHY CARDS ---- */
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}
.why-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14,165,160,0.12);
}
.why-icon {
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 1rem;
}
.why-card h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.why-card p { color: var(--text-mid); font-size: 0.88rem; margin: 0; }

/* ---- SERVICE PILLS ---- */
.svc-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  backdrop-filter: blur(6px);
}
.svc-pill:hover {
  background: rgba(14,165,160,0.25);
  border-color: var(--teal-light);
  color: var(--teal-light);
}

/* ---- DOCTOR CARDS ---- */
.doc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.doc-card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 36px rgba(14,165,160,0.14);
  transform: translateY(-3px);
}
.doc-img-wrap {
  width: 130px; height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--teal);
  margin-bottom: 1.25rem;
  background: var(--blue-light);
}
.doc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}
.doc-ph {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--text-light);
  border: 3px solid var(--teal);
  margin-bottom: 1.25rem;
}
.doc-ph::after { content: '👨‍⚕️'; }
.doc-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.doc-spec {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--teal);
  text-transform: uppercase;
}
.doc-sched {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-top: 0.5rem;
}

/* ---- FASTING BOX ---- */
.fasting-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.fasting-title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}
.fasting-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-mid);
}
.fasting-row:last-child { border-bottom: none; }
.fasting-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ---- PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,165,160,0.08), transparent);
}
.page-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 2;
}
.breadcrumb { background: none; margin: 0; }
.breadcrumb-item a { color: var(--teal-light); }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ---- ABOUT PAGE ---- */
.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-img-wrap img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--teal);
  color: var(--white);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 24px rgba(14,165,160,0.4);
  border: 3px solid var(--white);
}
.ab-icon { font-size: 1.5rem; }
.ab-text { font-size: 0.75rem; font-weight: 700; line-height: 1.3; }
.img-ph-lg {
  min-height: 350px;
  background: var(--blue-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ---- MISSION/VISION/VALUES ---- */
.mvv-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all 0.3s;
}
.mvv-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: var(--teal-light);
}
.mvv-icon { font-size: 2.2rem; color: var(--teal-light); margin-bottom: 1rem; }
.mvv-card h5 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.mvv-card p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin: 0; }

/* ---- STATS ---- */
.stat-box { padding: 1rem; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-num span { font-size: 1.5rem; }
.stat-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ---- FACILITY IMAGES ---- */
.facility-img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.facility-img-wrap img { width: 100%; display: block; }
.img-ph-md {
  min-height: 220px;
  background: var(--blue-light);
  border-radius: var(--radius);
}

/* ---- SERVICES PAGE ---- */
.svc-section { }
.svc-header {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  background: var(--blue-light);
  border-left: 4px solid var(--teal);
  padding: 0.75rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1rem;
}
.test-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.2s;
}
.test-item:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: var(--blue-light);
}

/* ---- PACKAGES ---- */
.pkg-group-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 0.5rem;
}
.pkg-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.pkg-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--teal-light);
  transform: translateY(-3px);
}
.pkg-ob { background: rgba(14,165,160,0.08); border-color: rgba(14,165,160,0.25); }
.pkg-ob:hover { background: rgba(14,165,160,0.15); }
.pkg-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.pkg-tests {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  flex: 1;
}
.pkg-tests li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pkg-tests li::before { content: '✓ '; color: var(--teal-light); }

/* ---- ACCORDION / FAQ ---- */
.qs-accordion .accordion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.qs-accordion .accordion-button {
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius) !important;
}
.qs-accordion .accordion-button:not(.collapsed) {
  background: var(--teal);
  color: var(--white);
  box-shadow: none;
}
.qs-accordion .accordion-button::after {
  filter: none;
}
.qs-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.qs-accordion .accordion-body {
  color: var(--text-mid);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

/* ---- DOCTOR PROFILE (DOCTORS PAGE) ---- */
.doctor-profile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.dp-img-wrap {
  padding: 2.5rem 1.5rem;
  background: var(--blue-light);
}
.dp-img-wrap img {
  width: 200px; height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 4px solid var(--teal);
  display: block;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.dp-img-ph {
  padding: 2.5rem 1.5rem;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  min-height: 250px;
}
.dp-body { padding: 2.5rem; }
.dp-spec-badge {
  display: inline-block;
  background: rgba(14,165,160,0.1);
  color: var(--teal-dark);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(14,165,160,0.25);
  margin-bottom: 0.6rem;
}
.dp-name {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.dp-schedule {
  display: inline-flex;
  align-items: center;
  background: var(--blue-light);
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
}
.dp-svc-title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dp-svc-item {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  color: var(--text-mid);
  transition: all 0.2s;
}
.dp-svc-item:hover {
  border-color: var(--teal);
  background: var(--blue-light);
  color: var(--teal-dark);
}
.dp-svc-item .bi { color: var(--teal); }

/* ---- TABLE ---- */
.qs-table {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  color: rgba(255,255,255,0.85);
}
.qs-table thead th {
  background: rgba(14,165,160,0.25);
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 1rem;
}
.qs-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.qs-table tbody tr:hover { background: rgba(255,255,255,0.06); }
.qs-table tbody td { padding: 0.9rem 1rem; font-size: 0.88rem; vertical-align: middle; }
.qs-table tbody td strong { color: var(--black); }

/* ---- CONTACT PAGE ---- */
.cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cinfo-item:last-child { border-bottom: none; }
.cinfo-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: rgba(14,165,160,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  color: var(--teal);
  border: 1px solid rgba(14,165,160,0.2);
}
.cinfo-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.cinfo-val { font-size: 0.9rem; font-weight: 500; color: var(--text-dark); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--teal);
}
.contact-form-card h4 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.5rem;
}
.qs-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
  display: block;
}
.qs-input {
  background: var(--off-white) !important;
  border: 1.5px solid var(--border) !important;
  color: var(--text-dark) !important;
  border-radius: 8px !important;
  padding: 0.6rem 1rem !important;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.qs-input:focus {
  border-color: var(--teal) !important;
  box-shadow: 0 0 0 3px rgba(14,165,160,0.12) !important;
  background: var(--white) !important;
  outline: none;
}
.qs-input::placeholder { color: var(--text-light) !important; }

.map-wrap { border: 1px solid var(--border); box-shadow: var(--shadow); border-radius: var(--radius); }

/* ---- FOOTER ---- */
.qs-footer {
  background: var(--navy-dark);
  border-top: 3px solid var(--teal);
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.footer-brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer-desc { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.footer-heading {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover { color: var(--teal-light); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}
.footer-contact li .bi { color: var(--teal); font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }
.footer-socials { display: flex; gap: 0.6rem; }
.footer-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: all 0.2s;
}
.footer-socials a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.footer-hr { border-color: rgba(255,255,255,0.1); }
.footer-copy { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .hero-title { font-size: 2.4rem; }
}
@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .about-badge { right: 0; bottom: -12px; }
  .contact-form-card { padding: 1.5rem; }
  .dp-body { padding: 1.5rem; }
  .dp-img-wrap { padding: 2rem 1rem; }
}
@media (max-width: 576px) {
  .section-title { font-size: 1.7rem; }
  .stat-num { font-size: 2.2rem; }
}
