/* ===== PRXPRO HOMEPAGE NEW DESIGN ===== */
/* Color Scheme: Teal/Cyan (#0ea5e9) */

/* ===== CSS VARIABLES ===== */
:root {
  --prx-primary: #0ea5e9;
  --prx-primary-dark: #0284c7;
  --prx-gradient: linear-gradient(135deg, hsl(187 72% 38%), hsl(170 60% 45%));
  --prx-gradient-hero: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdfa 100%);
  --prx-hp-bg: #fafbfc;
  --prx-hp-secondary-bg: #f1f5f9;
  --prx-hp-card-bg: #ffffff;
  --prx-hp-text-dark: #111827;
  --prx-hp-text-muted: #6b7280;
  --prx-hp-border-color: #e5e7eb;
  --prx-hp-white: #ffffff;
  --prx-hp-radius: 1rem;
  --prx-hp-radius-sm: 0.75rem;
  --prx-hp-radius-full: 9999px;
  --prx-hp-shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --prx-hp-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.06);
  --prx-hp-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.06);
  --prx-hp-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.08);
  --prx-hp-container: 1320px;
}

/* ===== BASE FONT SCALE ===== */
.hp-page {
  font-size: 1.125rem;
  line-height: 1.65;
}

/* ===== GLOBAL UTILITIES ===== */
.hp-container {
  max-width: var(--prx-hp-container);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hp-gradient-text {
  background: var(--prx-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Base animation */
.hp-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-animate.hp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.hp-animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-animate-left.hp-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.hp-animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-animate-right.hp-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up */
.hp-animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-animate-scale.hp-visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children delay */
.hp-stagger > *:nth-child(1) { transition-delay: 0s; }
.hp-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.hp-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.hp-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.hp-stagger > *:nth-child(5) { transition-delay: 0.4s; }
.hp-stagger > *:nth-child(6) { transition-delay: 0.5s; }
.hp-stagger > *:nth-child(7) { transition-delay: 0.6s; }
.hp-stagger > *:nth-child(8) { transition-delay: 0.7s; }

/* SVG base styles for homepage */
.hp-page svg,
.hp-topbar svg,
.hp-nav svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================
   TOP BAR
   ============================================ */
.hp-topbar {
  background: var(--prx-gradient);
  font-size: 13px;
}

.hp-topbar__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 13px;
  color: var(--prx-hp-white);
}

.hp-topbar__marquee {
  flex: 1;
  overflow: hidden;
}

.hp-topbar__marquee marquee {
  font-weight: 500;
  letter-spacing: 0.3px;
}

.hp-topbar__support a {
  font-weight: 500;
  color: var(--prx-hp-white);
  transition: opacity 0.2s;
  text-decoration: none;
}

.hp-topbar__support a:hover {
  text-decoration: underline;
}

/* ============================================
   NAVBAR
   ============================================ */
.hp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  font-size: 14px;
}

.hp-nav__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}

.hp-nav__logo img {
  height: 36px;
  width: auto;
}

.hp-nav__menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.hp-nav__menu-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(17,24,39,0.8);
  transition: color 0.2s;
  text-decoration: none;
}

.hp-nav__menu-link:hover {
  color: var(--prx-primary);
  text-decoration: none;
}

.hp-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hp-nav__login-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 14px;
  font-weight: 600;
  color: rgba(17,24,39,0.8);
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
}

.hp-nav__login-trigger:hover {
  color: var(--prx-primary);
}

.hp-nav__login-trigger svg {
  width: 16px;
  height: 16px;
}

.hp-nav__login-panel {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--prx-hp-card-bg);
  border-radius: 0.5rem;
  box-shadow: var(--prx-hp-shadow-lg);
  padding: 0.5rem 0;
  min-width: 160px;
  z-index: 100;
  margin-top: 0.5rem;
}

.hp-nav__login-panel.hp-nav__login-panel--open {
  display: block;
}

.hp-nav__login-panel a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--prx-hp-text-dark);
  transition: background 0.2s;
  text-decoration: none;
}

.hp-nav__login-panel a:hover {
  background: var(--prx-hp-secondary-bg);
}

.hp-nav__register-btn {
  background: var(--prx-gradient);
  color: var(--prx-hp-white) !important;
  padding: 8px 20px;
  border-radius: var(--prx-hp-radius-full);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  display: inline-block;
  text-decoration: none;
}

.hp-nav__register-btn:hover {
  opacity: 0.9;
  color: var(--prx-hp-white) !important;
  text-decoration: none;
}

.hp-nav__hamburger {
  display: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--prx-hp-text-dark);
  background: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 60;
}

.hp-nav__hamburger svg {
  width: 26px;
  height: 26px;
  display: block;
}

.hp-nav__mobile {
  display: flex;
  flex-direction: column;
  background: var(--prx-hp-card-bg);
  padding: 0 1.25rem;
  border-top: 1px solid var(--prx-hp-border-color);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.hp-nav__mobile.hp-nav__mobile--open {
  max-height: 600px;
  padding: 0.75rem 1.25rem 1.25rem;
  overflow-y: auto;
}

.hp-nav__mobile-link {
  padding: 0.875rem 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(17,24,39,0.85);
  border-bottom: 1px solid var(--prx-hp-border-color);
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: color 0.2s, background 0.2s;
  border-radius: 0.375rem;
  margin: 0 -0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.hp-nav__mobile-link:hover,
.hp-nav__mobile-link:active {
  color: var(--prx-primary);
  background: rgba(14,165,233,0.05);
  text-decoration: none;
}

.hp-nav__mobile-link:last-child {
  border-bottom: none;
}

/* Mobile menu register button full width */
.hp-nav__mobile .hp-nav__register-btn {
  text-align: center;
  margin-top: 0.75rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  border-radius: 0.75rem;
  width: 100%;
  display: block;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hp-hero {
  position: relative;
  overflow: hidden;
  background: var(--prx-gradient-hero);
}

.hp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 2rem;
  min-height: 540px;
}

.hp-hero__badge {
  display: inline-block;
  background: var(--prx-gradient);
  color: var(--prx-hp-white);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border-radius: var(--prx-hp-radius-full);
  margin-bottom: 2rem;
}

.hp-hero__title {
  font-size: 4.5rem !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  color: var(--prx-hp-text-dark) !important;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.hp-hero__subtitle {
  margin-top: 1.5rem;
  font-size: 1.375rem;
  color: var(--prx-hp-text-muted);
  max-width: 36rem;
  line-height: 1.7;
}

.hp-hero__searchbox {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: row;
  gap: 0;
  background: var(--prx-hp-card-bg);
  border-radius: 1rem;
  padding: 0.5rem;
  box-shadow: var(--prx-hp-shadow-lg);
  max-width: 100%;
}

.hp-hero__searchbox-input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  flex: 1;
}

.hp-hero__searchbox-input:first-child {
  border-right: 1px solid var(--prx-hp-border-color);
}

.hp-hero__searchbox-input svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--prx-primary);
}

.hp-hero__searchbox-input:last-of-type svg {
  color: var(--prx-hp-text-muted);
}

.hp-hero__searchbox-input input {
  font-size: 0.875rem;
  width: 100%;
  color: var(--prx-hp-text-dark);
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
}

.hp-hero__searchbox-input input::placeholder {
  color: var(--prx-hp-text-muted);
}

.hp-hero__searchbox-submit {
  background: var(--prx-gradient);
  color: var(--prx-hp-white);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.2s;
  flex-shrink: 0;
  border: none;
  font-family: inherit;
}

.hp-hero__searchbox-submit:hover {
  opacity: 0.9;
}

.hp-hero__visual {
  position: relative;
}

.hp-hero__photo {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--prx-hp-shadow-lg);
  position: relative;
  height: 480px;
}

.hp-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hp-hero__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,165,233,0.2), transparent);
}

.hp-hero__stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -1.5rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 5;
}

.hp-hero__stat-badge {
  background: var(--prx-hp-card-bg);
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  box-shadow: var(--prx-hp-shadow-lg);
  text-align: center;
  border: 1px solid var(--prx-hp-border-color);
  transition: all 0.3s;
}

.hp-hero__stat-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--prx-hp-shadow-xl);
}

.hp-hero__stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--prx-primary);
  margin: 0;
  line-height: 1.2;
}

.hp-hero__stat-label {
  font-size: 0.875rem;
  color: var(--prx-hp-text-muted);
  margin: 0.25rem 0 0;
}

/* ============================================
   SERVICES SECTION (Feature Cards)
   ============================================ */
.hp-services {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: var(--prx-hp-bg);
}

.hp-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.hp-services__card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--prx-hp-shadow-md);
  transition: box-shadow 0.3s;
  display: block;
  text-decoration: none;
}

.hp-services__card:hover {
  box-shadow: var(--prx-hp-shadow-xl);
  text-decoration: none;
}

.hp-services__card-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s;
  display: block;
}

.hp-services__card:hover .hp-services__card-image {
  transform: scale(1.05);
}

.hp-services__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,0.9) 0%, rgba(17,24,39,0.5) 40%, rgba(17,24,39,0.1) 70%, transparent 100%);
}

.hp-services__card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
}

.hp-services__card-title {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--prx-hp-white) !important;
  margin: 0;
}

.hp-services__card-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin: 0.25rem 0 0;
}

/* ============================================
   SPECIALITY SECTION
   ============================================ */
.hp-speciality {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: rgba(241,245,249,0.5);
}

.hp-speciality__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.hp-speciality__heading {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: var(--prx-hp-text-dark) !important;
  margin: 0;
}

.hp-speciality__tagline {
  margin-top: 0.5rem;
  color: var(--prx-hp-text-muted);
}

.hp-speciality__view-all {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--prx-primary);
  text-decoration: none;
}

.hp-speciality__view-all:hover {
  text-decoration: underline;
  color: var(--prx-primary);
}

.hp-speciality__view-all svg {
  width: 16px;
  height: 16px;
}

.hp-speciality__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.hp-speciality__card {
  background: var(--prx-hp-card-bg);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--prx-hp-shadow-md);
  transition: all 0.3s;
  display: block;
  text-decoration: none;
}

.hp-speciality__card:hover {
  box-shadow: var(--prx-hp-shadow-xl);
  transform: translateY(-4px);
  text-decoration: none;
}

.hp-speciality__card-icon {
  display: inline-flex;
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.hp-speciality__card-icon--cyan {
  color: var(--prx-primary);
  background: rgba(14,165,233,0.1);
}

.hp-speciality__card-icon--red {
  color: #ef4444;
  background: #fef2f2;
}

.hp-speciality__card-icon--purple {
  color: #8b5cf6;
  background: #f5f3ff;
}

.hp-speciality__card-icon--amber {
  color: #d97706;
  background: #fffbeb;
}

.hp-speciality__card-icon--green {
  color: #059669;
  background: #ecfdf5;
}

.hp-speciality__card-icon--blue {
  color: #2563eb;
  background: #eff6ff;
}

.hp-speciality__card-icon--pink {
  color: #db2777;
  background: #fdf2f8;
}

.hp-speciality__card-icon--teal {
  color: #0d9488;
  background: #f0fdfa;
}

.hp-speciality__card-icon svg,
.hp-speciality__card-icon i {
  width: 28px;
  height: 28px;
  font-size: 28px;
}

.hp-speciality__card-name {
  font-weight: 600 !important;
  color: var(--prx-hp-text-dark) !important;
  transition: color 0.2s;
  font-size: 1rem !important;
  margin: 0;
}

.hp-speciality__card:hover .hp-speciality__card-name {
  color: var(--prx-primary) !important;
}

.hp-speciality__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--prx-primary);
  margin-top: 0.75rem;
}

.hp-speciality__card-cta svg,
.hp-speciality__card-cta i {
  width: 14px;
  height: 14px;
  font-size: 12px;
}

/* ============================================
   SYMPTOMS SECTION
   ============================================ */
.hp-symptoms {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: var(--prx-hp-bg);
}

.hp-symptoms__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.hp-symptoms__heading {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: var(--prx-hp-text-dark) !important;
  margin: 0;
}

.hp-symptoms__tagline {
  margin-top: 0.5rem;
  color: var(--prx-hp-text-muted);
}

.hp-symptoms__view-all {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--prx-primary);
  text-decoration: none;
}

.hp-symptoms__view-all:hover {
  text-decoration: underline;
  color: var(--prx-primary);
}

.hp-symptoms__view-all svg {
  width: 16px;
  height: 16px;
}

.hp-symptoms__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.hp-symptoms__card {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--prx-hp-card-bg);
  box-shadow: var(--prx-hp-shadow-md);
  transition: all 0.3s;
  display: block;
  text-decoration: none;
}

.hp-symptoms__card:hover {
  box-shadow: var(--prx-hp-shadow-xl);
  transform: translateY(-4px);
  text-decoration: none;
}

.hp-symptoms__card-thumb {
  overflow: hidden;
  height: 12rem;
}

.hp-symptoms__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

.hp-symptoms__card:hover .hp-symptoms__card-thumb img {
  transform: scale(1.05);
}

.hp-symptoms__card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-symptoms__card-info {
  padding: 1.25rem;
}

.hp-symptoms__card-name {
  font-weight: 600 !important;
  color: var(--prx-hp-text-dark) !important;
  margin: 0;
  font-size: 1rem !important;
}

.hp-symptoms__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--prx-primary);
  margin-top: 0.75rem;
}

.hp-symptoms__card-cta svg,
.hp-symptoms__card-cta i {
  width: 14px;
  height: 14px;
  font-size: 12px;
}

/* ============================================
   HOSPITAL SECTION
   ============================================ */
.hp-hospitals {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: rgba(241,245,249,0.5);
}

.hp-hospitals__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.hp-hospitals__heading {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: var(--prx-hp-text-dark) !important;
  margin: 0;
}

.hp-hospitals__tagline {
  margin-top: 0.75rem;
  color: var(--prx-hp-text-muted);
}

.hp-hospitals__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.hp-hospitals__list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--prx-hp-card-bg);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: var(--prx-hp-shadow-md);
  transition: all 0.3s;
  text-decoration: none;
}

.hp-hospitals__list-item:hover {
  box-shadow: var(--prx-hp-shadow-xl);
  transform: translateY(-2px);
  text-decoration: none;
}

.hp-hospitals__item-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hp-hospitals__item-icon {
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: rgba(14,165,233,0.1);
}

.hp-hospitals__item-icon svg,
.hp-hospitals__item-icon i {
  width: 24px;
  height: 24px;
  color: var(--prx-primary);
  font-size: 20px;
}

.hp-hospitals__item-name {
  font-weight: 600;
  color: var(--prx-hp-text-dark);
}

.hp-hospitals__list-item > svg {
  width: 20px;
  height: 20px;
  color: var(--prx-primary);
}

.hp-hospitals__photo {
  display: flex;
  align-items: stretch;
}
.hp-hospitals__photo img {
  border-radius: 1.5rem;
  box-shadow: var(--prx-hp-shadow-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hp-hospitals__see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--prx-primary);
  margin-top: 1.5rem;
  text-decoration: none;
}

.hp-hospitals__see-all:hover {
  text-decoration: underline;
  color: var(--prx-primary);
}

.hp-hospitals__see-all svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.hp-packages {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: var(--prx-hp-bg);
}

.hp-packages__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.hp-packages__heading {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: var(--prx-hp-text-dark) !important;
  margin: 0;
}

.hp-packages__tagline {
  margin-top: 0.5rem;
  color: var(--prx-hp-text-muted);
}

.hp-packages__view-all {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--prx-primary);
  text-decoration: none;
}

.hp-packages__view-all:hover {
  text-decoration: underline;
  color: var(--prx-primary);
}

.hp-packages__view-all svg {
  width: 16px;
  height: 16px;
}

.hp-packages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.hp-packages__card {
  background: var(--prx-hp-card-bg);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--prx-hp-shadow-md);
  border: 1px solid var(--prx-hp-border-color);
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}

.hp-packages__card:hover {
  box-shadow: var(--prx-hp-shadow-xl);
  transform: translateY(-4px);
  text-decoration: none;
}

.hp-packages__card-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(14,165,233,0.1);
  margin-bottom: 1rem;
}

.hp-packages__card-icon svg,
.hp-packages__card-icon i {
  width: 28px;
  height: 28px;
  color: var(--prx-primary);
  font-size: 24px;
}

.hp-packages__card-title {
  font-weight: 700 !important;
  color: var(--prx-hp-text-dark) !important;
  margin: 0;
}

.hp-packages__card-tests {
  font-size: 0.875rem;
  color: var(--prx-hp-text-muted);
  margin-top: 0.25rem;
}

.hp-packages__card-bottom {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hp-packages__card-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--prx-primary);
}

.hp-packages__card-book {
  background: var(--prx-gradient);
  color: var(--prx-hp-white) !important;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--prx-hp-radius-full);
  cursor: pointer;
  transition: opacity 0.2s;
  display: inline-block;
  text-decoration: none;
}

.hp-packages__card-book:hover {
  opacity: 0.9;
  color: var(--prx-hp-white) !important;
  text-decoration: none;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.hp-whyus {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: var(--prx-hp-bg);
}

.hp-whyus__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hp-whyus__image-col {
  position: relative;
  width: 100%;
}

.hp-whyus__photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: var(--prx-hp-shadow-lg);
  display: block;
}

.hp-whyus__content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hp-whyus__heading {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: var(--prx-hp-text-dark) !important;
  margin: 0;
}

.hp-whyus__description {
  margin-top: 1rem;
  color: var(--prx-hp-text-muted);
  line-height: 1.8;
  font-size: 1rem;
}

.hp-whyus__points {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.hp-whyus__point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.hp-whyus__point-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 0.625rem;
  background: rgba(14,165,233,0.1);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-whyus__point-icon svg,
.hp-whyus__point-icon i {
  width: 22px;
  height: 22px;
  color: var(--prx-primary);
  font-size: 18px;
}

.hp-whyus__point-title {
  font-weight: 600 !important;
  font-size: 0.9375rem !important;
  color: var(--prx-hp-text-dark) !important;
  margin: 0;
}

.hp-whyus__point-desc {
  font-size: 0.8125rem;
  color: var(--prx-hp-text-muted);
  margin-top: 0.25rem;
  line-height: 1.5;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.hp-howitworks {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: var(--prx-gradient);
}

.hp-howitworks__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.hp-howitworks__heading {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: var(--prx-hp-white) !important;
  margin: 0;
}

.hp-howitworks__tagline {
  color: rgba(255,255,255,0.8);
  margin-top: 0.75rem;
}

.hp-howitworks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.hp-howitworks__step {
  position: relative;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.hp-howitworks__step-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.1);
  line-height: 1;
}

.hp-howitworks__step-icon {
  display: inline-flex;
  padding: 1rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  margin-bottom: 1.25rem;
}

.hp-howitworks__step-icon svg,
.hp-howitworks__step-icon i,
.hp-howitworks__step-icon img {
  width: 32px;
  height: 32px;
  color: var(--prx-hp-white);
  font-size: 28px;
}

.hp-howitworks__step-title {
  font-size: 1.375rem !important;
  font-weight: 700 !important;
  color: var(--prx-hp-white) !important;
  margin: 0;
}

.hp-howitworks__step-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ============================================
   CTA BANNER SECTION
   ============================================ */
.hp-ctabanner {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hp-ctabanner__box {
  background: var(--prx-gradient);
  border-radius: 1.5rem;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hp-ctabanner__decor {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.hp-ctabanner__decor-circle1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 18rem;
  height: 18rem;
  background: var(--prx-hp-white);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.hp-ctabanner__decor-circle2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 14rem;
  height: 14rem;
  background: var(--prx-hp-white);
  border-radius: 50%;
  transform: translate(-50%, 50%);
}

.hp-ctabanner__inner {
  position: relative;
  z-index: 10;
}

.hp-ctabanner__heading {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: var(--prx-hp-white) !important;
  margin: 0;
}

.hp-ctabanner__text {
  margin-top: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.hp-ctabanner__btn {
  display: inline-block;
  margin-top: 2rem;
  background: var(--prx-hp-card-bg);
  color: var(--prx-primary) !important;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: var(--prx-hp-radius-full);
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.hp-ctabanner__btn:hover {
  background: rgba(255,255,255,0.9);
  color: var(--prx-primary) !important;
  text-decoration: none;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.hp-blogs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: rgba(241,245,249,0.5);
}

.hp-blogs__header {
  text-align: center;
  margin-bottom: 3rem;
}

.hp-blogs__heading {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: var(--prx-hp-text-dark) !important;
  margin: 0;
}

.hp-blogs__tagline {
  margin-top: 0.5rem;
  color: var(--prx-hp-text-muted);
}

.hp-blogs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.hp-blogs__card {
  background: var(--prx-hp-card-bg);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--prx-hp-shadow-md);
  transition: all 0.3s;
  display: block;
  text-decoration: none;
}

.hp-blogs__card:hover {
  box-shadow: var(--prx-hp-shadow-xl);
  transform: translateY(-4px);
  text-decoration: none;
}

.hp-blogs__card-thumb {
  overflow: hidden;
  height: 12rem;
}

.hp-blogs__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

.hp-blogs__card:hover .hp-blogs__card-thumb img {
  transform: scale(1.05);
}

.hp-blogs__card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-blogs__card-body {
  padding: 1.5rem;
}

.hp-blogs__card-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--prx-hp-text-muted);
  margin-bottom: 0.75rem;
}

.hp-blogs__card-date svg,
.hp-blogs__card-date i {
  width: 14px;
  height: 14px;
  font-size: 12px;
}

.hp-blogs__card-title {
  font-weight: 700 !important;
  color: var(--prx-hp-text-dark) !important;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  font-size: 1rem !important;
}

.hp-blogs__card:hover .hp-blogs__card-title {
  color: var(--prx-primary) !important;
}

.hp-blogs__card-excerpt {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--prx-hp-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hp-blogs__card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--prx-primary);
  margin-top: 1rem;
}

.hp-blogs__card-readmore svg,
.hp-blogs__card-readmore i {
  width: 14px;
  height: 14px;
  font-size: 12px;
}

/* ============================================
   CONSULTATION CTA BANNER
   ============================================ */
.hp-cta-section {
  padding: 0 1.5rem 3.5rem;
}

.hp-cta {
  background: var(--prx-gradient);
  border-radius: 1.5rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  position: relative;
}

.hp-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -40px;
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.hp-cta::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: 30%;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.hp-cta__content {
  padding: 2.5rem 3.5rem;
  position: relative;
  z-index: 1;
}

.hp-cta__title {
  color: #fff !important;
  font-size: 2.25rem !important;
  font-weight: 800 !important;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.hp-cta__desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  line-height: 1.8;
  margin: 0 0 1.75rem;
  max-width: 100%;
}

.hp-cta__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem 1.5rem;
  margin-bottom: 1.75rem;
}

.hp-cta__feature {
  color: rgba(255,255,255,0.9);
  font-size: 0.9375rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hp-cta__feature i {
  color: #fff;
  font-size: 0.875rem;
}

.hp-cta__buttons {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.hp-cta__btn {
  padding: 0.8125rem 1.75rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.hp-cta__btn--white {
  background: #fff;
  color: var(--prx-primary) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.hp-cta__btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  color: var(--prx-primary) !important;
  text-decoration: none;
}

.hp-cta__btn--outline {
  background: rgba(255,255,255,0.12);
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.35);
}

.hp-cta__btn--outline:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
  color: #fff !important;
  text-decoration: none;
}

.hp-cta__image {
  height: 100%;
  width: 260px;
  flex-shrink: 0;
}

.hp-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .hp-cta {
    grid-template-columns: 1fr;
  }

  .hp-cta__image {
    width: 100%;
    height: 220px;
    order: -1;
  }

  .hp-cta__content {
    padding: 2rem 2rem;
  }
}

@media (max-width: 767px) {
  .hp-cta-section {
    padding: 0 1rem 2rem;
  }

  .hp-cta__content {
    padding: 1.5rem;
  }

  .hp-cta__title {
    font-size: 1.5rem !important;
  }

  .hp-cta__desc {
    font-size: 0.9375rem;
  }

  .hp-cta__image {
    height: 180px;
  }

  .hp-cta__btn {
    font-size: 0.8125rem;
    padding: 0.6875rem 1.25rem;
  }
}

/* ============================================
   HOMEPAGE ADS SECTION
   ============================================ */
.hp-ads {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: var(--prx-hp-bg);
}

.hp-ads__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hp-ads__row {
  display: flex;
  gap: 1.25rem;
}

.hp-ads__row--double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.hp-ads__row--full {
  display: block;
}

.hp-ads__item {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--prx-hp-shadow-md);
  transition: all 0.3s;
  text-decoration: none;
}

.hp-ads__item:hover {
  box-shadow: var(--prx-hp-shadow-xl);
  transform: translateY(-3px);
  text-decoration: none;
}

.hp-ads__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  transition: transform 0.4s;
}

.hp-ads__item:hover img {
  transform: scale(1.02);
}

@media (max-width: 767px) {
  .hp-ads__row--double {
    grid-template-columns: 1fr;
  }

  .hp-ads {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* ============================================
   VIDEOS SECTION
   ============================================ */
.hp-videos {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: var(--prx-hp-bg);
}

.hp-videos__header {
  text-align: center;
  margin-bottom: 3rem;
}

.hp-videos__heading {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: var(--prx-hp-text-dark) !important;
  margin: 0;
}

.hp-videos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.hp-videos__card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--prx-hp-shadow-md);
}

.hp-videos__card iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}

/* ============================================
   RESPONSIVE — TABLET (768px – 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hp-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hp-nav__menu,
  .hp-nav__actions {
    display: none;
  }

  .hp-nav__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hp-nav__wrapper {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .hp-hero__grid {
    grid-template-columns: 1fr;
    padding-top: 3rem;
    padding-bottom: 3rem;
    min-height: auto;
  }

  .hp-hero__visual {
    display: none;
  }

  .hp-hero__title {
    font-size: 2.75rem !important;
  }

  .hp-hero__subtitle {
    font-size: 1rem;
  }

  .hp-hero__searchbox {
    max-width: 100%;
  }

  .hp-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hp-speciality__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hp-symptoms__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hp-hospitals__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hp-hospitals__photo {
    display: none;
  }

  .hp-packages__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hp-whyus__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hp-whyus__image-col {
    order: -1;
  }

  .hp-whyus__photo {
    height: 350px;
  }

  .hp-whyus__heading {
    font-size: 2rem !important;
  }

  .hp-howitworks__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .hp-howitworks__step {
    padding: 1.5rem;
  }

  .hp-blogs__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .hp-services,
  .hp-speciality,
  .hp-symptoms,
  .hp-hospitals,
  .hp-packages,
  .hp-whyus,
  .hp-howitworks,
  .hp-blogs {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (max 767px)
   ============================================ */
@media (max-width: 767px) {
  .hp-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hp-topbar__support {
    display: none;
  }

  .hp-topbar__wrapper {
    justify-content: center;
    font-size: 0.8125rem;
  }

  .hp-nav__menu,
  .hp-nav__actions {
    display: none;
  }

  .hp-nav__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem;
  }

  .hp-nav__hamburger svg {
    width: 24px;
    height: 24px;
  }

  .hp-nav__wrapper {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .hp-nav__logo img {
    height: 32px;
  }

  .hp-nav__mobile {
    padding: 0 1rem;
  }

  .hp-nav__mobile.hp-nav__mobile--open {
    padding: 0.5rem 1rem 1rem;
  }

  .hp-nav__mobile-link {
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
    margin: 0 -0.5rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .hp-nav__mobile .hp-nav__register-btn {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }

  .hp-hero__grid {
    grid-template-columns: 1fr;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
    min-height: auto;
  }

  .hp-hero__visual {
    display: none;
  }

  .hp-hero__badge {
    font-size: 0.6875rem;
    padding: 0.3rem 0.875rem;
    margin-bottom: 1rem;
  }

  .hp-hero__title {
    font-size: 2rem !important;
    line-height: 1.15 !important;
  }

  .hp-hero__subtitle {
    font-size: 0.9375rem;
    margin-top: 0.75rem;
  }

  .hp-hero__stat-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 0;
    padding-bottom: 1.5rem;
  }

  .hp-hero__stat-badge {
    padding: 0.875rem 0.5rem;
  }

  .hp-hero__stat-number {
    font-size: 1.25rem;
  }

  .hp-hero__searchbox {
    flex-direction: column;
    gap: 0;
    border-radius: 0.875rem;
    max-width: 100%;
  }

  .hp-hero__searchbox-input {
    padding: 0.875rem 1rem;
  }

  .hp-hero__searchbox-input:first-child {
    border-right: none;
    border-bottom: 1px solid var(--prx-hp-border-color);
  }

  .hp-hero__searchbox-submit {
    border-radius: 0.625rem;
    padding: 0.875rem 1.5rem;
    margin: 0.5rem;
  }

  .hp-services {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hp-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .hp-services__card-image {
    height: 10rem;
  }

  .hp-services__card-label {
    padding: 0.875rem;
  }

  .hp-services__card-title {
    font-size: 0.9375rem !important;
  }

  .hp-services__card-desc {
    font-size: 0.75rem;
  }

  .hp-speciality {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hp-speciality__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .hp-speciality__view-all {
    display: none;
  }

  .hp-speciality__heading {
    font-size: 1.5rem !important;
  }

  .hp-speciality__tagline {
    font-size: 0.875rem;
  }

  .hp-speciality__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .hp-speciality__card {
    padding: 1.25rem;
  }

  .hp-speciality__card-icon {
    padding: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .hp-speciality__card-icon svg,
  .hp-speciality__card-icon i {
    width: 24px;
    height: 24px;
    font-size: 22px;
  }

  .hp-speciality__card-name {
    font-size: 0.875rem !important;
  }

  .hp-symptoms {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hp-symptoms__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .hp-symptoms__view-all {
    display: none;
  }

  .hp-symptoms__heading {
    font-size: 1.5rem !important;
  }

  .hp-symptoms__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .hp-symptoms__card-thumb {
    height: 9rem;
  }

  .hp-hospitals {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hp-hospitals__heading {
    font-size: 1.5rem !important;
  }

  .hp-hospitals__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hp-hospitals__photo {
    display: none;
  }

  .hp-packages {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hp-packages__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .hp-packages__heading {
    font-size: 1.5rem !important;
  }

  .hp-packages__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .hp-whyus {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hp-whyus__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hp-whyus__image-col {
    order: -1;
  }

  .hp-whyus__photo {
    height: 280px;
  }

  .hp-whyus__heading {
    font-size: 1.5rem !important;
  }

  .hp-whyus__points {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
  }

  .hp-howitworks {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hp-howitworks__heading {
    font-size: 1.5rem !important;
  }

  .hp-howitworks__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hp-howitworks__step {
    padding: 1.5rem;
  }

  .hp-ctabanner {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hp-ctabanner__box {
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
  }

  .hp-ctabanner__heading {
    font-size: 1.5rem !important;
  }

  .hp-blogs {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hp-blogs__heading {
    font-size: 1.5rem !important;
  }

  .hp-blogs__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hp-blogs__card-body {
    padding: 1rem;
  }

  .hp-blogs__card-thumb {
    height: 10rem;
  }

  .hp-blogs__tagline {
    font-size: 0.875rem;
  }

  /* ===== CTA Section Mobile ===== */
  .hp-cta__features {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .hp-cta__feature {
    font-size: 0.8125rem;
  }

  .hp-cta__buttons {
    flex-direction: column;
    gap: 0.625rem;
  }

  .hp-cta__btn {
    justify-content: center;
    font-size: 0.8125rem;
    padding: 0.75rem 1.25rem;
  }

  .hp-cta__title {
    font-size: 1.375rem !important;
  }

  .hp-cta__desc {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  /* ===== Videos Section Mobile ===== */
  .hp-videos {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hp-videos__heading {
    font-size: 1.5rem !important;
  }

  .hp-videos__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hp-videos__card iframe {
    height: 200px;
  }

  /* ===== How It Works Mobile ===== */
  .hp-howitworks__step-title {
    font-size: 1.125rem !important;
  }

  .hp-howitworks__step-desc {
    font-size: 0.8125rem;
  }

  .hp-howitworks__tagline {
    font-size: 0.875rem;
  }

  /* ===== Packages Mobile ===== */
  .hp-packages__card {
    padding: 1.25rem;
  }

  .hp-packages__card-icon {
    padding: 0.625rem;
    margin-bottom: 0.75rem;
  }

  .hp-packages__card-icon svg,
  .hp-packages__card-icon i {
    width: 22px;
    height: 22px;
    font-size: 20px;
  }

  .hp-packages__card-title {
    font-size: 0.875rem !important;
  }

  .hp-packages__card-tests {
    font-size: 0.75rem;
  }

  .hp-packages__card-price {
    font-size: 1rem;
  }

  .hp-packages__card-book {
    font-size: 0.6875rem;
    padding: 0.4375rem 0.75rem;
  }

  .hp-packages__tagline {
    font-size: 0.875rem;
  }

  /* ===== Hospital Mobile ===== */
  .hp-hospitals__list-item {
    padding: 1rem;
  }

  .hp-hospitals__item-icon {
    padding: 0.5rem;
  }

  .hp-hospitals__item-icon svg,
  .hp-hospitals__item-icon i {
    width: 20px;
    height: 20px;
    font-size: 18px;
  }

  .hp-hospitals__item-name {
    font-size: 0.875rem;
  }

  .hp-hospitals__tagline {
    font-size: 0.875rem;
  }

  .hp-hospitals__list {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  /* ===== Why Choose Us Mobile ===== */
  .hp-whyus__description {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .hp-whyus__point-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .hp-whyus__point-icon svg,
  .hp-whyus__point-icon i {
    width: 18px;
    height: 18px;
    font-size: 16px;
  }

  .hp-whyus__point-title {
    font-size: 0.875rem !important;
  }

  .hp-whyus__point-desc {
    font-size: 0.75rem;
  }

  /* ===== CTA Banner Mobile ===== */
  .hp-ctabanner__text {
    font-size: 0.875rem;
  }

  .hp-ctabanner__btn {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }

  /* ===== Speciality Card CTA Mobile ===== */
  .hp-speciality__card-cta {
    font-size: 0.8125rem;
    margin-top: 0.5rem;
  }

  /* ===== Symptoms Card Mobile ===== */
  .hp-symptoms__card-info {
    padding: 1rem;
  }

  .hp-symptoms__card-name {
    font-size: 0.875rem !important;
  }

  .hp-symptoms__card-cta {
    font-size: 0.8125rem;
    margin-top: 0.5rem;
  }

  .hp-symptoms__tagline {
    font-size: 0.875rem;
  }

  /* ===== Stat Cards Mobile ===== */
  .hp-hero__stat-label {
    font-size: 0.75rem;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max 374px)
   ============================================ */
@media (max-width: 374px) {
  .hp-hero__title {
    font-size: 1.625rem !important;
  }

  .hp-hero__subtitle {
    font-size: 0.8125rem;
  }

  .hp-hero__stat-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.375rem;
  }

  .hp-hero__stat-number {
    font-size: 1.125rem;
  }

  .hp-hero__stat-label {
    font-size: 0.6875rem;
  }

  .hp-services__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hp-services__card-image {
    height: 12rem;
  }

  .hp-speciality__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hp-symptoms__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hp-packages__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hp-speciality__heading,
  .hp-symptoms__heading,
  .hp-packages__heading,
  .hp-hospitals__heading,
  .hp-whyus__heading,
  .hp-howitworks__heading,
  .hp-ctabanner__heading,
  .hp-blogs__heading,
  .hp-videos__heading {
    font-size: 1.25rem !important;
  }

  .hp-nav__logo img {
    height: 28px;
  }

  .hp-nav__mobile-link {
    font-size: 0.8125rem;
    padding: 0.625rem 0.5rem;
  }
}
