/* ===== Ahimsa Health Care - Custom Styles ===== */

:root {
  --navy: #1B3A5C;
  --navy-dark: #142d47;
  --teal: #4DB6AC;
  --teal-light: #80CBC4;
  --teal-dark: #009688;
  --green-wa: #25D366;
  --bg-light: #F8FAFB;
  --bg-section: #EFF6F5;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --border-light: #dee2e6;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 8px;
}

/* ===== Base ===== */
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: #fff;
  padding-top: 72px;
}

a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--navy); }

h1, h2, h3, h4, h5 { color: var(--navy); font-weight: 700; }

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

section { padding: 3.5rem 0; }
.bg-light-custom { background: var(--bg-light); }
.bg-section { background: var(--bg-section); }

/* ===== Navbar ===== */
.navbar {
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 0.5rem 0;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-brand img { height: 72px; }
.navbar-brand span {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-left: 10px;
}
.navbar-brand .powered-by {
  font-size: 0.65rem;
  color: var(--text-muted);
  display: block;
  margin-left: 10px;
  font-weight: 400;
}
.nav-link {
  color: var(--navy) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--teal-dark) !important; }
.btn-wa-nav {
  background: var(--green-wa);
  color: #fff !important;
  border-radius: 50px;
  padding: 0.45rem 1.2rem !important;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-wa-nav:hover {
  background: #20bd5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  color: #fff !important;
}

/* ===== Buttons ===== */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border: none;
  color: #fff;
  border-radius: 50px;
  padding: 0.65rem 1.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(77,182,172,0.4);
}
.btn-outline-custom {
  border: 2px solid var(--teal);
  color: var(--teal-dark);
  border-radius: 50px;
  padding: 0.6rem 1.8rem;
  font-weight: 600;
  background: transparent;
  transition: all 0.2s;
}
.btn-outline-custom:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-1px);
}
.btn-wa {
  background: var(--green-wa);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-wa:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
}

/* ===== Hero ===== */
.hero-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  background: rgba(77,182,172,0.08);
  border-radius: 50%;
  z-index: 0;
}
.hero-section::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 350px;
  height: 350px;
  background: rgba(77,182,172,0.1);
  border-radius: 50%;
  z-index: 0;
}
.hero-section h1 {
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.2;
}
.hero-section .highlight { color: var(--teal-light); }
.hero-discount {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 1.15em;
  letter-spacing: -1px;
}
.hero-section p { color: rgba(255,255,255,0.85); font-size: 1.15rem; }
.hero-badges .badge {
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin: 0.25rem;
}

/* ===== Hero Carousel ===== */
#heroCarousel .carousel-indicators { bottom: 15px; }
#heroCarousel .carousel-indicators button {
  width: 10px; height: 10px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.4); margin: 0 5px;
}
#heroCarousel .carousel-indicators button.active { background: var(--teal-light); width: 28px; border-radius: 5px; }
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next { width: 5%; opacity: 0.6; }
#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover { opacity: 1; }
#heroCarousel .carousel-item { transition: transform 0.6s ease-in-out; }

/* ===== Trust Bar ===== */
.trust-bar {
  background: #fff;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-light);
}
.trust-item {
  text-align: center;
  padding: 1rem;
}
.trust-item i {
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
  display: block;
}
.trust-item h5 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.trust-item p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ===== Cards ===== */
.card-custom {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  height: 100%;
  background: #fff;
}
.card-custom:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}
.card-custom .card-body { padding: 1.25rem; }

.test-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-dark);
}
.test-card .test-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.test-card .test-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Package Cards ===== */
.package-card {
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.package-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px var(--teal), var(--shadow-md);
  position: relative;
}
.package-card.featured::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  z-index: -1;
  opacity: 0.15;
}
.package-card .card-header {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 1.25rem;
}
.package-card .card-header h5 { color: #fff; margin: 0; font-size: 1.1rem; }
.package-card .card-header .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-light);
}
.package-card .card-header .price small {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.8;
}
.package-card.featured .card-header { background: var(--teal-dark); }
.package-card .card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.package-card .test-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.package-card .test-list li {
  padding: 0.35rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
}
.package-card .test-list li:last-child { border: none; }
.package-card .test-list li i { color: var(--teal); margin-right: 0.5rem; font-size: 0.8rem; }
.package-card .card-footer {
  padding: 1rem 1.25rem;
  background: #f8f9fa;
  border-top: 1px solid #f0f0f0;
  text-align: center;
}
.package-badge {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

/* ===== Steps ===== */
.step-card {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}
.step-card .step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(77,182,172,0.3);
  transition: transform 0.3s ease;
}
.step-card:hover .step-num {
  transform: scale(1.1);
}
.step-card h5 { font-size: 1.05rem; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== Tests Page ===== */
.search-box {
  max-width: 600px;
  margin: 0 auto 2rem;
}
.search-box input {
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--border-light);
  font-size: 1.05rem;
  transition: border-color 0.2s;
}
.search-box input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(77,182,172,0.2);
  outline: none;
}
.filter-bar {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  align-items: center;
}
.filter-bar select {
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border-light);
  font-size: 0.9rem;
}
.test-count {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.tests-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.tests-table thead th {
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.tests-table thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.tests-table thead th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.tests-table tbody td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}
.tests-table tbody tr:hover { background: #e8f5f3; }
.tests-table .price-col {
  font-weight: 700;
  color: var(--teal-dark);
  font-size: 1rem;
  white-space: nowrap;
}
.test-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
  cursor: pointer;
}

/* Package Suggestion Banner */
.suggestion-banner {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border: 2px solid var(--green-wa);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  display: none;
  animation: slideDown 0.3s ease;
}
.suggestion-banner.show { display: block; }
.suggestion-banner h5 { color: #2e7d32; margin-bottom: 0.5rem; }
.suggestion-banner .savings { font-size: 1.3rem; font-weight: 700; color: #2e7d32; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Packages Page ===== */
.series-section { padding: 2rem 0; }
.series-section:nth-child(even) { background: var(--bg-light); }
.series-title {
  font-size: 1.6rem;
  color: var(--navy);
  border-left: 4px solid var(--teal);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.comparison-table thead th {
  background: var(--navy);
  color: #fff;
  padding: 0.6rem 0.75rem;
  text-align: center;
  font-size: 0.8rem;
}
.comparison-table tbody td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
}
.comparison-table tbody td:first-child { text-align: left; font-weight: 500; }
.comparison-table tbody tr:hover { background: #f8fffe; }
.comparison-table .check { color: var(--teal); }
.comparison-table .cross { color: #ccc; }

/* ===== Cities Page ===== */
.metro-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.metro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(27,58,92,0.4);
}
.metro-card i { font-size: 2rem; margin-bottom: 0.5rem; color: var(--teal-light); }
.metro-card h5 { color: #fff; margin: 0; }

.city-badge {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  margin: 0.3rem;
  font-size: 0.85rem;
  color: var(--navy);
  transition: all 0.3s ease;
  cursor: pointer;
}
.city-badge:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(77,182,172,0.3);
}
.city-badge-highlight {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.city-match {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

/* ===== FAQ ===== */
.accordion-button {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}
.accordion-button:not(.collapsed) {
  background: var(--bg-section);
  color: var(--teal-dark);
}
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(77,182,172,0.2); }

/* ===== Chatbot ===== */
.chatbot-toggle {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot-toggle:hover { transform: scale(1.1); }

.chatbot-window {
  position: fixed;
  bottom: 90px;
  left: 24px;
  width: 350px;
  max-height: 480px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chatbot-window.open { display: flex; }
.chatbot-header {
  background: var(--navy);
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chatbot-header h6 { margin: 0; color: #fff; font-size: 0.95rem; }
.chatbot-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  max-height: 320px;
}
.chat-msg {
  margin-bottom: 0.75rem;
  display: flex;
}
.chat-msg.bot { justify-content: flex-start; }
.chat-msg.user { justify-content: flex-end; }
.chat-bubble {
  max-width: 80%;
  padding: 0.6rem 1rem;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.4;
}
.chat-msg.bot .chat-bubble {
  background: var(--bg-section);
  color: var(--text-dark);
  border-bottom-left-radius: 4px;
}
.chat-msg.user .chat-bubble {
  background: var(--teal);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chatbot-input {
  display: flex;
  border-top: 1px solid var(--border-light);
  padding: 0.5rem;
}
.chatbot-input input {
  flex: 1;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  outline: none;
}
.chatbot-input input:focus { border-color: var(--teal); }
.chatbot-input button {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  margin-left: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
}
.quick-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-top: 1px solid #f0f0f0;
}
.quick-q {
  font-size: 0.75rem;
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  padding: 0.25rem 0.7rem;
  cursor: pointer;
  color: var(--navy);
  transition: all 0.2s;
}
.quick-q:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ===== WhatsApp Float ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 1000;
  transition: transform 0.2s;
  color: #fff;
  font-size: 1.8rem;
}
.wa-float:hover {
  transform: scale(1.1);
  color: #fff;
}
.wa-float .wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--green-wa);
  animation: pulse 2s infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===== Call Float Button ===== */
.call-float {
  position: fixed;
  bottom: 94px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(27,58,92,0.4);
  z-index: 1000;
  transition: transform 0.2s;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}
.call-float:hover { transform: scale(1.1); }
.call-menu {
  position: absolute;
  bottom: 68px;
  right: 0;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  display: none;
  overflow: hidden;
}
.call-menu.open { display: block; }
.call-menu a {
  display: block;
  padding: 12px 16px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.15s;
}
.call-menu a:last-child { border-bottom: none; }
.call-menu a:hover { background: var(--bg-light); }

/* ===== Footer ===== */
.footer {
  background: linear-gradient(180deg, var(--navy-dark) 0%, #0d1f30 100%);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 1.5rem;
}
.footer h5 { color: #fff; font-size: 1.1rem; margin-bottom: 1rem; }
.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: var(--teal-light); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: background 0.2s;
}
.social-links a:hover { background: var(--teal); color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer .powered-by {
  color: var(--teal-light);
  font-size: 0.8rem;
}

/* ===== Pagination ===== */
.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.pagination-controls button {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  background: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.pagination-controls button:hover:not(:disabled) {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.pagination-controls button:disabled { opacity: 0.5; cursor: default; }
.pagination-controls span { color: var(--text-muted); font-size: 0.9rem; }

/* ===== Responsive ===== */
@media (max-width: 991px) {
  body { padding-top: 64px; }
  .hero-section h1 { font-size: 2rem; }
  .hero-section { padding: 3rem 0 2rem; }
  section { padding: 2.5rem 0; }
  .section-title { font-size: 1.6rem; }
  .chatbot-window { width: 300px; left: 12px; bottom: 84px; }
}

@media (max-width: 767px) {
  .hero-section h1 { font-size: 1.6rem; }
  .hero-section p { font-size: 1rem; }
  .section-title { font-size: 1.4rem; }
  .navbar-brand span { font-size: 0.95rem; }
  .navbar-brand img { height: 56px; }
  .trust-item h5 { font-size: 1.1rem; }
  .tests-table { font-size: 0.8rem; }
  .tests-table thead th, .tests-table tbody td { padding: 0.5rem 0.6rem; }
  .comparison-table { font-size: 0.75rem; }
  .chatbot-window { width: calc(100vw - 24px); left: 12px; right: 12px; }
  .chatbot-toggle { width: 48px; height: 48px; font-size: 1.2rem; bottom: 18px; left: 18px; }
  .wa-float { width: 52px; height: 52px; font-size: 1.5rem; bottom: 18px; right: 18px; }
  .call-float { width: 52px; height: 52px; font-size: 1.2rem; bottom: 78px; right: 18px; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-bar select { width: 100%; }
}

@media (max-width: 575px) {
  .hero-section h1 { font-size: 1.4rem; }
  .hero-badges .badge { font-size: 0.75rem; padding: 0.35rem 0.7rem; }
  .package-card .card-header .price { font-size: 1.6rem; }
  .step-card { padding: 1rem 0.5rem; }
}

/* ===== MRP Pricing ===== */
.price-mrp {
  text-decoration: line-through;
  color: #999;
  font-size: 0.85em;
  font-weight: 400;
  margin-right: 4px;
}
.price-now {
  font-weight: 700;
  color: var(--teal-dark);
}
.discount-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ===== Utilities ===== */
.text-teal { color: var(--teal-dark); }
.text-navy { color: var(--navy); }
.bg-navy { background: var(--navy); }
.bg-teal { background: var(--teal); }

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: none;
  z-index: 999;
  transition: all 0.2s;
  align-items: center;
  justify-content: center;
}
.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* Loading spinner */
.loader {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}
.loader i { font-size: 2rem; color: var(--teal); }

/* Tab nav for packages */
.nav-pills-custom {
  gap: 0.4rem;
}
.nav-pills-custom .nav-link {
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.9rem;
}
.nav-pills-custom .nav-link.active {
  background: var(--teal);
  color: #fff;
}

/* Parameter details in test list */
.test-list li.has-params {
  cursor: pointer;
  position: relative;
}
.test-list li.has-params > span::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  margin-left: 6px;
  color: var(--teal);
  transition: transform 0.2s;
  display: inline-block;
}
.test-list li.has-params.expanded > span::after {
  transform: rotate(180deg);
}
.param-count {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.78rem;
}
.param-details {
  display: none;
  padding: 6px 0 2px 22px;
}
.test-list li.expanded .param-details {
  display: block;
}
.param-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.param-tag {
  background: var(--bg-light);
  color: var(--text-dark);
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

/* Cookie consent banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
.cookie-consent a { color: var(--teal-light); }
.btn-teal {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 0.3rem 1.2rem;
  font-weight: 600;
}
.btn-teal:hover { background: var(--teal-dark); color: #fff; }

/* Colored icon backgrounds for feature cards */
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}
.icon-circle.red { background: #fdecea; color: #e74c3c; }
.icon-circle.blue { background: #e8f4fd; color: #3498db; }
.icon-circle.green { background: #e8f8f0; color: #2ecc71; }
.icon-circle.orange { background: #fef5e7; color: #f39c12; }
.icon-circle.purple { background: #f3e8fd; color: #9b59b6; }
.icon-circle.teal { background: #e0f2f1; color: #009688; }
.icon-circle.pink { background: #fce4ec; color: #e91e63; }
.icon-circle.indigo { background: #e8eaf6; color: #3f51b5; }
.icon-circle.amber { background: #fff8e1; color: #ff8f00; }
.icon-circle.cyan { background: #e0f7fa; color: #00bcd4; }
.icon-circle.brown { background: #efebe9; color: #795548; }
.icon-circle.navy { background: #e3eaf2; color: var(--navy); }
