/**
 * DoctorPlus - Enterprise Healthcare Platform Stylesheet
 * Brand Colors strictly extracted from official DoctorPlus logo & assets:
 * Primary Navy: #062750
 * Primary Teal: #039590
 * Logo Accent Gold: #FCBF04
 * App Button Yellow: #FFD600
 * Dark Text: #1e293b / #353535
 */

:root {
  --dp-navy: #062750;
  --dp-navy-dark: #031c3d;
  --dp-navy-light: #0d3b75;
  --dp-navy-soft: #123766;
  
  --dp-teal: #039590;
  --dp-teal-dark: #027a76;
  --dp-teal-light: #05b2ac;
  --dp-teal-soft: #e6f7f6;
  --dp-teal-glow: rgba(3, 149, 144, 0.22);
  
  --dp-gold: #FCBF04;
  --dp-gold-soft: #fff9e6;
  --dp-yellow-btn: #FFD600;
  --dp-yellow-hover: #f0c800;
  
  --dp-text-dark: #1e293b;
  --dp-text-muted: #64748b;
  --dp-text-light: #94a3b8;
  
  --dp-bg-light: #f8fafc;
  --dp-bg-surface: #ffffff;
  --dp-border: #e2e8f0;
  
  --dp-radius-sm: 10px;
  --dp-radius-md: 16px;
  --dp-radius-lg: 24px;
  --dp-radius-xl: 32px;
  --dp-radius-pill: 9999px;
  
  --dp-shadow-sm: 0 4px 12px rgba(6, 39, 80, 0.04);
  --dp-shadow-md: 0 10px 28px rgba(6, 39, 80, 0.08);
  --dp-shadow-lg: 0 18px 45px rgba(6, 39, 80, 0.12);
  --dp-shadow-hover: 0 22px 50px rgba(3, 149, 144, 0.18);

  --dp-header-height: 74px;
}

/* Strict Box Sizing & Mobile Overflow Prevention */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  margin: 0;
  padding: 0;
  position: relative;
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--dp-text-dark);
  background-color: var(--dp-bg-light);
  line-height: 1.65;
  /* Top padding to accommodate fixed header with zero dead space */
  padding-top: var(--dp-header-height);
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--dp-navy);
  font-weight: 700;
  letter-spacing: -0.025em;
}

a {
  color: var(--dp-teal);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--dp-teal-dark);
}

/* =========================================================================
   SCROLL PROGRESS BAR
   ========================================================================= */
.dp-scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1060;
  background: transparent;
  pointer-events: none;
}

.dp-scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--dp-teal) 0%, var(--dp-yellow-btn) 100%);
  transition: width 0.1s ease-out;
}

/* =========================================================================
   BULLETPROOF FIXED STICKY HEADER WITH BLUR EFFECT
   ========================================================================= */
.dp-fixed-header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(6, 39, 80, 0.08);
  box-shadow: 0 4px 20px rgba(6, 39, 80, 0.05);
  transition: all 0.3s ease;
}

.dp-fixed-header-wrapper.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(6, 39, 80, 0.1);
  border-bottom-color: rgba(3, 149, 144, 0.18);
}

.navbar-dp {
  padding: 8px 0;
  background: transparent !important;
  border: none;
}

/* Prominent Header Brand Logo */
.brand-logo-img {
  height: 56px;
  max-width: 240px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.dp-fixed-header-wrapper.scrolled .brand-logo-img {
  height: 50px;
}

.nav-minimal-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link-dp {
  color: var(--dp-navy) !important;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 7px 16px !important;
  border-radius: var(--dp-radius-pill);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-link-dp:hover, .nav-link-dp.active {
  color: var(--dp-teal) !important;
  background-color: var(--dp-teal-soft);
  transform: translateY(-1px);
}

/* =========================================================================
   EXACT DOWNLOAD APP PILL BUTTON (HEADER & FOOTER 100% MATCH)
   ========================================================================= */
.btn-download-app {
  background-color: var(--dp-yellow-btn) !important;
  color: #000000 !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 8px 22px;
  border-radius: var(--dp-radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  box-shadow: 0 4px 14px rgba(255, 214, 0, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  line-height: 1.2;
}

.btn-download-app:hover {
  background-color: var(--dp-yellow-hover) !important;
  color: #000000 !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 214, 0, 0.6);
}

.btn-download-app.btn-download-app-lg {
  padding: 12px 28px;
  font-size: 1.02rem;
}

/* Outline & Primary Buttons */
.btn-dp-primary {
  background: linear-gradient(135deg, var(--dp-teal) 0%, var(--dp-teal-dark) 100%);
  color: #ffffff !important;
  font-weight: 600;
  border: none;
  border-radius: var(--dp-radius-pill);
  padding: 10px 26px;
  box-shadow: 0 6px 18px var(--dp-teal-glow);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-dp-primary:hover {
  background: linear-gradient(135deg, var(--dp-teal-dark) 0%, #015e5b 100%);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(3, 149, 144, 0.32);
}

.btn-dp-outline {
  background: transparent;
  color: var(--dp-navy) !important;
  font-weight: 600;
  border: 2px solid var(--dp-navy);
  border-radius: var(--dp-radius-pill);
  padding: 8px 24px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-dp-outline:hover {
  background: var(--dp-navy);
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* =========================================================================
   ANIMATED AMBIENT BACKGROUND GLOWS & ORBS
   ========================================================================= */
.dp-ambient-bg-wrapper {
  position: relative;
  overflow: hidden;
}

.dp-ambient-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
  animation: orbFloat 14s infinite alternate ease-in-out;
}

.dp-orb-teal {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(3, 149, 144, 0.35) 0%, transparent 70%);
}

.dp-orb-gold {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(252, 191, 4, 0.25) 0%, transparent 70%);
}

.dp-orb-navy {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(6, 39, 80, 0.2) 0%, transparent 70%);
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(35px, -25px) scale(1.08); }
  100% { transform: translate(-30px, 30px) scale(0.95); }
}

/* =========================================================================
   SCROLL-TRIGGERED TRANSITION ANIMATIONS (.dp-reveal)
   ========================================================================= */
.dp-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.dp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.dp-reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.dp-reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.dp-reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.dp-reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.dp-delay-1 { transition-delay: 0.1s; }
.dp-delay-2 { transition-delay: 0.2s; }
.dp-delay-3 { transition-delay: 0.3s; }
.dp-delay-4 { transition-delay: 0.4s; }

.dp-badge-float {
  animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* =========================================================================
   HERO SECTION - TIGHT TOP SPACING (SHOWS ON TOP IMMEDIATELY)
   ========================================================================= */
.hero-section {
  position: relative;
  padding: 16px 0 40px; /* Tight top padding to display immediately on top */
  background: radial-gradient(circle at 80% 20%, rgba(3, 149, 144, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(252, 191, 4, 0.08) 0%, transparent 40%),
              linear-gradient(180deg, #ffffff 0%, var(--dp-bg-light) 100%);
  overflow: hidden;
}

.hero-badge {
  background-color: #ffffff;
  color: var(--dp-teal-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: var(--dp-radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  border: 1px solid rgba(3, 149, 144, 0.2);
  box-shadow: 0 4px 14px rgba(3, 149, 144, 0.08);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.16;
  color: var(--dp-navy);
  margin-bottom: 16px;
}

.hero-title .text-teal {
  color: var(--dp-teal);
  position: relative;
  display: inline-block;
}

.hero-title .text-teal::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background: rgba(255, 214, 0, 0.35);
  z-index: -1;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--dp-text-muted);
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-img-container {
  position: relative;
  text-align: center;
  border-radius: var(--dp-radius-xl);
  overflow: hidden;
  box-shadow: var(--dp-shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-img-container:hover {
  transform: translateY(-4px);
  box-shadow: var(--dp-shadow-hover);
}

.hero-img-main {
  max-height: 480px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-img-container:hover .hero-img-main {
  transform: scale(1.03);
}

/* =========================================================================
   FEATURE PILLAR CARDS
   ========================================================================= */
.feature-pillar-card {
  background: #ffffff;
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius-lg);
  padding: 30px 24px;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--dp-shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(3, 149, 144, 0.4);
  box-shadow: var(--dp-shadow-hover);
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.feature-pillar-card:hover .feature-icon-box {
  transform: scale(1.1) rotate(4deg);
}

/* =========================================================================
   BANNER CAROUSEL (3-SECOND AUTO-ROTATION)
   ========================================================================= */
.banner-carousel-section {
  padding: 20px 0 50px;
  overflow: hidden;
}

.dp-banner-card {
  border-radius: var(--dp-radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  padding: 40px 48px;
  color: #ffffff;
  box-shadow: var(--dp-shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.dp-banner-1 {
  background: linear-gradient(135deg, var(--dp-navy-dark) 0%, var(--dp-navy) 60%, #0c4384 100%);
}

.dp-banner-2 {
  background: linear-gradient(135deg, #015e5b 0%, var(--dp-teal) 65%, var(--dp-teal-light) 100%);
}

.dp-banner-3 {
  background: linear-gradient(135deg, #1e3a8a 0%, #0284c7 60%, var(--dp-gold) 100%);
}

.banner-timer-badge {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 4px 14px;
  border-radius: var(--dp-radius-pill);
}

/* =========================================================================
   WORKFLOW STEP CARDS
   ========================================================================= */
.workflow-step-card {
  background: #ffffff;
  border-radius: var(--dp-radius-lg);
  border: 1px solid var(--dp-border);
  padding: 30px 22px;
  text-align: center;
  position: relative;
  height: 100%;
  box-shadow: var(--dp-shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.workflow-step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--dp-shadow-hover);
  border-color: rgba(3, 149, 144, 0.35);
}

.workflow-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dp-teal) 0%, var(--dp-teal-dark) 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px var(--dp-teal-glow);
  transition: transform 0.3s ease;
}

.workflow-step-card:hover .workflow-step-num {
  transform: scale(1.15);
}

/* =========================================================================
   DIGITAL HEALTH CARD
   ========================================================================= */
.health-card-preview {
  border-radius: var(--dp-radius-xl);
  background: linear-gradient(135deg, var(--dp-navy-dark) 0%, var(--dp-navy) 65%, #0e407b 100%);
  color: #ffffff;
  padding: 34px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--dp-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  width: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.health-card-preview:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 25px 55px rgba(6, 39, 80, 0.25);
}

.health-card-chip {
  width: 46px;
  height: 32px;
  background: linear-gradient(135deg, #d97706, #fbbf24);
  border-radius: 6px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.family-pill-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: var(--dp-radius-pill);
  font-size: 0.84rem;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* =========================================================================
   HOSPITAL & DOCTOR CARDS
   ========================================================================= */
.hospital-card {
  background: #ffffff;
  border-radius: var(--dp-radius-lg);
  border: 1px solid var(--dp-border);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--dp-shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hospital-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--dp-shadow-hover);
  border-color: rgba(3, 149, 144, 0.35);
}

.hospital-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.hospital-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hospital-card:hover .hospital-img {
  transform: scale(1.06);
}

.badge-cashless {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--dp-radius-pill);
}

.badge-emergency {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--dp-radius-pill);
}

.badge-hod {
  background: linear-gradient(135deg, var(--dp-gold), #eab308);
  color: #000000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--dp-radius-pill);
  box-shadow: 0 2px 8px rgba(252, 191, 4, 0.3);
}

.doctor-card {
  background: #ffffff;
  border-radius: var(--dp-radius-lg);
  border: 1px solid var(--dp-border);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--dp-shadow-sm);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--dp-shadow-hover);
  border-color: rgba(3, 149, 144, 0.35);
}

.doctor-avatar {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--dp-teal-soft);
  margin: 0 auto 16px;
  transition: transform 0.4s ease;
}

.doctor-card:hover .doctor-avatar {
  transform: scale(1.06);
}

/* =========================================================================
   HEALTH TIPS & STORIES
   ========================================================================= */
.story-card {
  background: #ffffff;
  border-radius: var(--dp-radius-lg);
  border: 1px solid var(--dp-border);
  overflow: hidden;
  box-shadow: var(--dp-shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--dp-shadow-md);
  border-color: rgba(3, 149, 144, 0.3);
}

.story-badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--dp-yellow-btn);
  color: #000000;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--dp-radius-pill);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* =========================================================================
   APP SHOWCASE & PARTNER SECTIONS
   ========================================================================= */
.app-showcase-section {
  background: linear-gradient(135deg, var(--dp-navy-dark) 0%, var(--dp-navy) 100%);
  color: #ffffff;
  padding: 75px 0;
  border-radius: var(--dp-radius-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-hospital-section {
  background: linear-gradient(135deg, #01514e 0%, var(--dp-teal) 70%, var(--dp-teal-light) 100%);
  color: #ffffff;
  padding: 65px 0;
  border-radius: var(--dp-radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* =========================================================================
   FOOTER ENHANCEMENT WITH ZERO EXTRA PADDING & CLEAN ALIGNMENT
   ========================================================================= */
.footer-dp {
  background: var(--dp-navy-dark);
  color: #cbd5e1;
  padding: 55px 0 24px;
  font-size: 0.92rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.footer-logo-img {
  height: 60px;
  max-width: 260px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-dp h5 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 18px;
  font-weight: 700;
}

/* Nav links in footer */
.footer-dp .footer-nav-list a {
  color: #94a3b8;
  display: inline-block;
  margin-bottom: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-dp .footer-nav-list a:hover {
  color: var(--dp-teal-light);
  transform: translateX(4px);
}

/* Fixed: Download App Button in Footer - never stretch, exact pill shape */
.footer-dp .btn-download-app {
  display: inline-flex !important;
  width: auto !important;
  max-width: fit-content !important;
  padding: 8px 22px !important;
  margin: 0 !important;
  vertical-align: middle;
}

/* Fixed: Social Media Icons in Footer - centered, crisp, circular */
.footer-social-group {
  margin-top: 18px;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1rem;
  transition: all 0.25s ease;
  margin: 0 !important;
  text-decoration: none;
  flex-shrink: 0;
}

.footer-social-icon:hover {
  background: var(--dp-teal) !important;
  border-color: var(--dp-teal) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(3, 149, 144, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding-top: 20px;
}

.footer-bottom a {
  color: #94a3b8;
  display: inline-block;
  margin: 0;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--dp-teal-light);
}

/* =========================================================================
   RESPONSIVENESS (MOBILE / TABLET)
   ========================================================================= */
@media (max-width: 991.98px) {
  :root {
    --dp-header-height: 68px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .brand-logo-img {
    height: 48px;
  }
  .dp-banner-card {
    padding: 28px 22px;
  }
  .nav-minimal-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 15px 0;
  }
  .nav-link-dp {
    width: 100%;
    padding: 8px 14px !important;
  }
}

@media (max-width: 767.98px) {
  :root {
    --dp-header-height: 64px;
  }
  .hero-title {
    font-size: 2.05rem;
    line-height: 1.22;
  }
  .brand-logo-img {
    height: 44px;
  }
  .footer-logo-img {
    height: 48px;
  }
  .hero-section {
    padding: 14px 0 30px;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 22px;
  }
  .btn-download-app {
    padding: 8px 20px;
    font-size: 0.88rem;
  }
  .app-showcase-section, .partner-hospital-section {
    padding: 35px 20px;
    border-radius: var(--dp-radius-lg);
  }
  .health-card-preview {
    padding: 22px;
  }
}
