/* ==========================================================================
   CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
  --primary: #D72B7C;
  --primary-dark: #a81f5d;
  --primary-light: #fce8f3;
  --primary-glow: rgba(215, 43, 124, 0.18);
  --dark: #111827;
  --dark-2: #1a202c;
  --dark-3: #2d3748;
  --mid: #4a5568;
  --muted: #718096;
  --muted-2: #6b7280;
  --border: #edf2f7;
  --border-2: #e2e8f0;
  --bg: #f8f9fa;
  --bg-2: #f8fafc;
  --bg-3: #f7fbff;
  --white: #ffffff;
  --navy: #0f172a;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-pink: 0 8px 30px rgba(215, 43, 124, 0.2);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}

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

/* ==========================================================================
   PAGE LOADER
   ========================================================================== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.loader-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.loader-pulse {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {

  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* ==========================================================================
   SCROLL TO TOP
   ========================================================================== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-pink);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}

.animate-fade-right {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}

.animate-fade-left {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--delay, 0s);
}

.animate-fade-up.in-view,
.animate-fade-right.in-view,
.animate-fade-left.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

.animate-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.main-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   HEADER — GLASSMORPHISM STICKY
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;

  /* Default: fully transparent on page load */
  background: #fae1eb;
  border-bottom: 1px solid transparent;
}

/* Glass effect activates on scroll */
.header.scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1px solid rgba(215, 43, 124, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  transition: padding 0.4s ease;
}

.header.scrolled .header-inner {
  padding: 10px 20px;
}

/* LOGO */
.header-logo .logo-image {
  height: 55px;
  width: auto;
  padding: 5px;
  object-fit: contain;
  transition: height 0.35s ease;
}

.header.scrolled .logo-image {
  height: 48px;
}

/* NAV LINKS */
.navbar-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.navbar-link {
  text-decoration: none;
  color: #2d3748;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

/* Underline indicator */
.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #D72B7C;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.navbar-link:hover,
.navbar-link.active {
  color: #D72B7C;
}

.navbar-link:hover::after,
.navbar-link.active::after {
  width: 100%;
}

/* HEADER RIGHT */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Download button */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: #D72B7C;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.download-btn:hover {
  background: #a81f5d;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(215, 43, 124, 0.3);
}

.download-btn:active {
  transform: scale(0.97);
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  background: rgba(215, 43, 124, 0.08);
  border: 1px solid rgba(215, 43, 124, 0.2);
  border-radius: 8px;
  font-size: 1.375rem;
  color: #D72B7C;
  cursor: pointer;
  padding: 5px 8px;
  line-height: 1;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(215, 43, 124, 0.15);
  border-color: rgba(215, 43, 124, 0.4);
}

/* Push page content below fixed header */
body {
  padding-top: 10px;
}


.navbar-link.inactive::after {
  width: 0;
}

.navbar-link.active {
  color: #D72B7C;
}

.navbar-link.active::after {
  width: 100%;
}

/* ==========================================================================
   MOBILE NAV DRAWER
   ========================================================================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }


  .navbar-menu {
    flex-direction: column;
    gap: 0;
  }

  .navbar-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .navbar-item:last-child {
    border-bottom: none;
  }

  .navbar-link {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    color: #1a202c;
  }

  .navbar-link::after {
    display: none;
  }

  .navbar-link.active {
    color: #D72B7C;
    font-weight: 600;
  }

  /* Backdrop overlay when drawer is open */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 799;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .download-btn {
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  .header-logo .logo-image {
    height: 44px;
  }


}

/* Compact on very small screens */
@media (max-width: 400px) {
  .download-btn span {
    display: none;
  }

  .header-inner {
    padding: 10px 16px;
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero-section {
  padding: 60px 40px 70px;
  background-color: var(--white);
  overflow: hidden;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
  max-width: 580px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #e6f2ff;
  color: var(--primary);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-tag i {
  font-size: 0.85rem;
}

.hero-title {
  font-size: 2.25rem;
  color: var(--dark-2);
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-title span {
  color: var(--primary);
}

.hero-description {
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--dark-2);
  color: var(--white);
  border: none;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition), transform 0.2s ease, box-shadow var(--transition);
}

.store-btn i {
  font-size: 1.1rem;
}

.store-btn:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}

.store-btn:active {
  transform: scale(0.97);
}

.store-btn-outline {
  background: none;
  border: 2px solid var(--dark-2);
  color: var(--dark-2);
}

.store-btn-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.hero-features {
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  flex-wrap: wrap;
}

.feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
}

.feature-box i {
  font-size: 1.25rem;
  color: var(--primary);
}

.feature-box p {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark-3);
  letter-spacing: 0.3px;
}

/* HERO IMAGE */
.hero-image-area {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 420px;
}

.hero-image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.hero-img {
  width: 100%;
  max-width: 320px;
  object-fit: contain;
  animation: floatAnimation 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes floatAnimation {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* FLOATING BADGES */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dark-2);
  z-index: 2;
  animation: badgeFloat 3s ease-in-out infinite;
}

.float-badge i {
  color: var(--primary);
  font-size: 1rem;
}

.badge-1 {
  bottom: 10%;
  left: -20px;
  animation-delay: 0s;
}

.badge-2 {
  top: 15%;
  right: -15px;
  animation-delay: 1.5s;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ==========================================================================
   TRUST
   ========================================================================== */
.trust-section {
  padding: 70px 20px;
  background-color: var(--bg-2);
}

.trust-heading {
  text-align: center;
  margin-bottom: 44px;
}

.trust-title {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.trust-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
}

.trust-card-wrapper {
  display: grid;

  gap: 12px;
}

.trust-card {
  background-color: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.trust-icon {
  width: 58px;
  height: 58px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.375rem;
  transition: var(--transition);
}

.trust-card:hover .trust-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.trust-card-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--dark-3);
  margin-bottom: 6px;
  letter-spacing: 0.8px;
}

.trust-card-text {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}




/* ==========================================================================
   truth scroller
   ========================================================================== */
.partners-section {
  padding: 80px 0;
  background: var(--bg);
  overflow: hidden;
}


.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.partners-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--primary);
}

.partners-heading p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* Track */
/* Track Wrapper */
.partners-track-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Infinite Track */
.partners-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: scroll-left 25s linear infinite;
  will-change: transform;
}

/* Pause on Hover */
.partners-track-wrapper:hover .partners-track {
  animation-play-state: paused;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 160px;
  height: 80px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.partner-logo:hover {
  box-shadow: var(--shadow-pink);
  border-color: var(--primary-light);
  transform: translateY(-4px);
}

.partner-logo img {
  max-width: 70%;
  max-height: 50%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: var(--transition);
}

.partner-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 60px));
  }
}

/* Animation */
.animate-fade-up {
  animation: fadeUp 0.8s var(--transition-slow) forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .section-title {
    font-size: 30px;
  }

  .partner-logo {
    width: 140px;
    height: 70px;
  }

  .partners-track {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .partners-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .partners-heading p {
    font-size: 15px;
  }

  .partner-logo {
    width: 120px;
    height: 64px;
    border-radius: var(--radius-sm);
  }

  .partners-track {
    gap: 30px;
    animation-duration: 18s;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }

  .partner-logo {
    width: 100px;
    height: 56px;
  }

  .partners-track {
    gap: 20px;
    animation-duration: 15s;
  }

  .partners-heading {
    margin-bottom: 36px;
  }
}

/* Animation */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 30px));
  }
}







/* ============================================================
   HEALTH BLOG (NEW)
============================================================ */
.blog-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #ffc4e0, #e0f2fe);
  ;
}

.blog-section .main-container {
  padding: 0 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-thumb {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--primary-light), #e0f2fe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
  overflow: hidden;
  position: relative;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.blog-body {
  padding: 22px;
}

.blog-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .8px;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-body p {
  font-size: .8125rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .75rem;
  color: var(--muted);
}

.blog-meta i {
  color: var(--primary);
}

/* ==========================================================================
   STEPS
   ========================================================================== */
.steps-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #ffc4e0, #e0f2fe);
}

.steps-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.steps-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark-2);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.steps-title span {
  color: var(--primary);
}

.steps-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.steps-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.steps-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 10px;
}

.steps-card p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.65;
}

.steps-card.large-card {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.large-card .steps-content {
  flex: 1;
}

.large-card .steps-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.large-card .steps-image img {
  max-width: 150px;
  height: auto;
  object-fit: contain;
  animation: floatAnimation 5s ease-in-out infinite;
}

.steps-card.active-card {
  background-color: var(--primary);
  border-color: var(--primary);
}

.steps-card.active-card h3 {
  color: var(--white);
}

.steps-card.active-card p {
  color: rgba(255, 255, 255, 0.88);
}

.steps-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: 18px;
  transition: transform var(--transition);
}

.steps-card:hover .steps-icon {
  transform: scale(1.1) rotate(-5deg);
}

.steps-icon.active-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.steps-card:not(.active-card):hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}



/* ==========================================================================
  TESTIMONIALS INFINITY SCROLLER
   ========================================================================== */

/* ===== TESTIMONIALS INFINITY SCROLLER ===== */

.testimonials-section {
  padding: 5rem 0;
  overflow: hidden;
  background: var(--bg);
}

/* Fade edges */
.testimonials-scroller {
  position: relative;
  overflow: hidden;
}


/* Scrolling track */
.testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: testimonials-scroll 32s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes testimonials-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Cards */
.testimonial-card {
  flex: 0 0 300px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-pink);
  transform: translateY(-3px);
  border-color: var(--primary-light);
}

.testimonial-stars {
  font-size: 15px;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-avatar img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.author-city {
  font-size: 12px;
  color: var(--muted);
}

.quote-mark {
  position: absolute;
  bottom: -12px;
  right: 16px;
  font-size: 80px;
  line-height: 1;
  color: var(--primary-light);
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}

/* Section heading styles */
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 2.5rem;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
  }
}

/* ==========================================================================
   HEALTHCARE
   ========================================================================== */
.healthcare-section {
  padding: 70px 0;
  background-color: var(--bg-2);
  overflow: hidden;
}

.healthcare-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.healthcare-image-box {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hc-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(215, 43, 124, 0.15);
  animation: ringExpand 3s ease-in-out infinite;
}

.hc-ring-1 {
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hc-ring-2 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 1s;
  border-color: rgba(215, 43, 124, 0.08);
}

@keyframes ringExpand {

  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

.healthcare-image {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  position: relative;
  z-index: 1;
}

.trust-badge {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background-color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 2;
}

.trust-badge h4 {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2px;
  line-height: 1;
}

.trust-badge p {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.healthcare-content {
  flex: 1;
  max-width: 520px;
}

.healthcare-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-2);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.healthcare-text {
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 26px;
}

.healthcare-list {
  list-style: none;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.healthcare-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-3);
}

.healthcare-list li i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.healthcare-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.healthcare-btn a {
  text-decoration: none;
  color: var(--primary);
}

.healthcare-btn i {
  font-size: 0.9rem;
  transition: transform var(--transition);
}

.healthcare-btn:hover {
  color: var(--primary-dark);
}

.healthcare-btn:hover i {
  transform: translateX(5px);
}

/* ==========================================================================
   PHARMACY
   ========================================================================== */
.pharmacy-section {
  padding: 70px 0;
  background-color: var(--white);
}

.pharmacy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.pharmacy-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.pharmacy-heading h5 {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1.2px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.pharmacy-heading h2 {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--dark-2);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.pharmacy-tabs {
  display: flex;
  gap: 8px;
  background-color: var(--bg-2);
  padding: 5px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.tab-btn {
  background: none;
  border: none;
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.tab-btn:hover {
  color: var(--dark-2);
}

.tab-btn.active {
  background-color: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.scroll-buttons {
  display: flex;
  gap: 10px;
  position: absolute;
  top: 58px;
  right: 20px;
}

.scroll-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--border);
  color: var(--dark-3);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.scroll-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.05);
}

.pharmacy-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 4px 30px;
  scrollbar-width: none;
}

.pharmacy-grid::-webkit-scrollbar {
  display: none;
}

/* MEDICINE CARDS */
.medicine-card {
  flex: 0 0 calc(25% - 17px);
  min-width: 240px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.medicine-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.medicine-image {
  width: 100%;
  height: 170px;
  background-color: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}

.medicine-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--transition);
}

.medicine-card:hover .medicine-image img {
  transform: scale(1.08);
}

/* Lazy load shimmer */
.medicine-image img[loading="lazy"] {
  background: linear-gradient(90deg, var(--border) 25%, var(--bg-2) 50%, var(--border) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.medicine-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.medicine-content h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 7px;
}

.medicine-content p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.medicine-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.medicine-price {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--dark-2);
}

.cart-btn {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background-color: var(--primary-light);
  color: var(--primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
}

.cart-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

/* ==========================================================================
   MEDICAL APP
   ========================================================================== */
.medical-app-section {
  padding: 70px 0;
}

.medical-app-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.medical-app-content-ap {
  flex: 1;
}

.medical-app-content-text {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--dark-2);
  margin-bottom: 28px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.medical-app-content-text span {
  color: var(--primary);
}

.medical-feature {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.medical-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.feature-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 11px;
  color: var(--white);
  font-size: 1rem;
}

.feature-text h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--muted-2);
}

.medical-mobile-wrapper {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
}

.mobile-card {
  width: 190px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
}

.mobile-card img {
  width: 100%;
}

.mobile-card:hover {
  transform: translateY(-10px);
}

.center-card {
  transform: translateY(-36px);
}

.center-card:hover {
  transform: translateY(-46px);
}

/* ==========================================================================
   DOWNLOAD APP
   ========================================================================== */
.download-app-section {
  padding: 70px 20px;
  background: var(--white);
}

.download-app-container {
  max-width: 1200px;
  margin: auto;
  background: linear-gradient(135deg, #670231, #D72B7C);
  border-radius: var(--radius-xl);
  padding: 70px 64px;
  position: relative;
  overflow: hidden;
}

.download-bg-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.blob-1 {
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.06);
  top: -100px;
  right: -80px;
  animation: blobFloat 6s ease-in-out infinite;
}

.blob-2 {
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.04);
  bottom: -60px;
  right: 120px;
  animation: blobFloat 8s ease-in-out infinite reverse;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.download-app-content {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.download-app-content h2 {
  font-size: 2.25rem;
  line-height: 1.25;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.download-app-content p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin-bottom: 38px;
}

.download-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.download-buttons .store-btn {
  background: var(--dark-2);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px 26px;
  gap: 14px;
}

.download-buttons .store-btn i {
  font-size: 1.875rem;
  flex-shrink: 0;
}

.download-buttons .store-btn span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 3px;
  opacity: 0.75;
}

.download-buttons .store-btn h4 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}

.download-buttons .store-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.white-btn {
  background: var(--white) !important;
  color: var(--dark-2) !important;
}

.white-btn span {
  color: var(--muted-2) !important;
  opacity: 1 !important;
}

.white-btn:hover {
  background: var(--white) !important;
}

/* ==========================================================================
   LOCATION
   ========================================================================== */
.location-section {
  padding: 70px 0;
  background: var(--white);
}

.location-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.location-content {
  width: 100%;
}

.location-content h5 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.location-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-2);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.location-text {
  font-size: 0.95rem;
  color: var(--muted-2);
  line-height: 1.7;
  margin-bottom: 25px;

}

.location-content iframe {
  width: 100%;
  height: 280px;
  border: none;
  border-radius: 20px;
  display: block;
  box-shadow: var(--shadow-sm);
}

.location-st {
  text-align: center;
}

/* Tablet */
@media (max-width: 768px) {
  .location-section {
    padding: 60px 0;
  }

  .testimonials-scroller {
    position: static;

  }

  .location-content h2 {
    font-size: 1.75rem;
  }

  .location-text {
    font-size: 0.875rem;
  }

  .location-content iframe {
    height: 240px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .location-section {
    padding: 50px 0;
  }

  .location-content h5 {
    font-size: 0.7rem;
  }

  .location-content h2 {
    font-size: 1.5rem;
  }

  .location-text {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .location-content iframe {
    height: 200px;
    border-radius: 14px;
  }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-section {
  padding: 70px 0;
  background: var(--bg-3);
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 52px;
}

.contact-content {
  flex: 1;
  max-width: 500px;
}

.contact-content h2 {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--dark-2);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.contact-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted-2);
  margin-bottom: 28px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-info:hover {
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 14px;
  font-size: 1.125rem;
}

.contact-details span {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-details h4 {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--dark-2);
  line-height: 1.4;
}

.contact-form-box {
  flex: 1;
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-form {
  width: 100%;
}

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

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  background: var(--bg-2);
  color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(215, 43, 124, 0.08);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 50px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}

/* ============================================================
   FOOTER
============================================================ */



.footer-section {
  padding: 60px 0 0;
  background: var(--navy);
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  padding-bottom: 50px;
}

.footer-heading {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-text,
.footer-small-text,
.footer-links li a,
.footer-location p,
.hours-info p {
  font-size: .8125rem;
  line-height: 1.8;
  color: #cbd5e1;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.footer-brand .footer-text {
  margin-bottom: 20px;
  max-width: 220px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1e293b;
  color: var(--white);
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links li a {
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-links li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-hotline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-hotline i {
  font-size: 1.25rem;
  color: var(--primary);
}

.footer-hotline span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-small-text {
  margin-bottom: 20px;
}

.hours-label {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hours-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hours-info i {
  color: var(--white);
  font-size: .9rem;
}

.footer-location {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-location i {
  font-size: 1.125rem;
  color: var(--primary);
  margin-top: 3px;
}

.direction-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 50px;
  background: var(--primary);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .5px;
  transition: var(--transition);
}

.direction-link:hover {
  background: var(--primary-dark);
}

.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1e293b;
  padding: 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.footer-badge:hover {
  background: #283447;
}

.footer-badge i {
  font-size: 1.375rem;
  color: var(--primary);
}

.footer-badge span {
  font-size: .75rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .3px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  text-align: center;
  padding: 20px;
}

.footer-bottom p {
  font-size: .8rem;
  color: #64748b;
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .header-navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border);
    padding: 20px;
    z-index: 1000;
    display: none;
  }

  .header-navbar.active {
    display: block;
  }

  .navbar-menu {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .navbar-item {
    width: 100%;
  }

  .navbar-link {
    display: block;
    padding: 10px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--bg-2);
  }

  .navbar-link::after {
    display: none;
  }

  .download-btn {
    padding: 8px 12px;
    font-size: 0.7rem;
  }

  .header-logo .logo-image {
    height: 44px;
  }

  .hero-section {
    padding: 40px 0 50px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 44px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-image-area {
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  .hero-img {
    max-width: 75%;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .badge-1 {
    left: 0;
    bottom: 5%;
  }

  .badge-2 {
    right: 0;
    top: 5%;
  }


  .trust-section {
    padding: 50px 20px;
  }

  .trust-title {
    font-size: 1.375rem;
  }

  .steps-title {
    font-size: 1.375rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .steps-card.large-card {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .large-card .steps-image {
    width: 100%;
    justify-content: center;
  }

  .large-card .steps-image img {
    max-width: 110px;
  }

  .steps-card {
    padding: 20px;
  }

  .healthcare-section {
    padding: 50px 0;
  }

  .healthcare-container {
    flex-direction: column;
    gap: 48px;
  }

  .healthcare-image-box {
    width: 100%;
    justify-content: center;
  }

  .trust-badge {
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
  }

  .healthcare-content {
    width: 100%;
  }

  .healthcare-title {
    font-size: 1.5rem;
  }

  .hc-ring {
    display: none;
  }

  .pharmacy-heading h2 {
    font-size: 1.5rem;
  }

  .medicine-card {
    flex: 0 0 calc(50% - 11px);
  }

  .scroll-buttons {
    position: relative;
    top: initial;
    right: initial;
    order: 2;
  }

  .medical-app-container {
    flex-direction: column;
    gap: 40px;
  }

  .medical-app-content-text {
    margin-top: 0;
    font-size: 1.375rem;
  }

  .medical-mobile-wrapper {
    width: 100%;
    justify-content: center;
  }

  .mobile-card:not(.center-card) {
    display: none;
  }

  .center-card {
    transform: translateY(0);
    width: 220px;
  }

  .center-card:hover {
    transform: translateY(-10px);
  }

  .download-app-section {
    padding: 60px 15px;
  }

  .download-app-container {
    padding: 50px 26px;
    border-radius: var(--radius-lg);
  }

  .download-app-content h2 {
    font-size: 1.625rem;
  }

  .download-buttons .store-btn {
    width: 100%;
    justify-content: center;
  }



  .contact-container {
    flex-direction: column;
  }

  .contact-content {
    max-width: 100%;
    text-align: center;
  }

  .contact-info {
    text-align: left;
  }

  .contact-form-box {
    width: 100%;
  }

  .contact-content h2 {
    font-size: 1.5rem;
  }


}

/* ===== TRUST SECTION ===== */
.trust-section {
  padding: 100px 0;
  background: #f8fbff;
}

.trust-heading {
  text-align: center;
  margin-bottom: 60px;
}




.trust-card-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.trust-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid #e5e7eb;
}

.trust-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.trust-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #d72b7c, #aa2566);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon i {
  font-size: 34px;
  color: #fff;
}

.trust-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.trust-card-text {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* ===== TABLET ===== */
@media (max-width: 991px) {
  .trust-card-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-title {
    font-size: 34px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
  .trust-section {
    padding: 70px 0;
  }

  .trust-card-wrapper {
    grid-template-columns: 1fr;
  }

  .trust-title {
    font-size: 28px;
  }

  .trust-card {
    padding: 30px 20px;
  }

  .trust-icon {
    width: 70px;
    height: 70px;
  }

  .trust-icon i {
    font-size: 30px;
  }
}

@media (max-width: 576px) {

  .medicine-card {
    flex: 0 0 85%;
  }

  .pharmacy-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .tab-btn {
    padding: 7px 13px;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .download-app-content h2 {
    font-size: 1.375rem;
    line-height: 1.4;
  }

}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 992px) {
  .hero-title {
    font-size: 1.875rem;
  }

  .hero-img {
    max-width: 280px;
  }

  .healthcare-container {
    gap: 36px;
  }

  .healthcare-title {
    font-size: 1.625rem;
  }

  .medicine-card {
    flex: 0 0 calc(33.333% - 15px);
  }

  .download-app-container {
    padding: 60px 44px;
  }

  .download-app-content h2 {
    font-size: 1.875rem;
  }

  .medical-app-container {
    gap: 40px;
  }
}

/* ===========================
   FOOTER RESPONSIVE CSS
=========================== */

/* ==========================
   Footer Responsive (768px)
========================== */
@media (max-width: 768px) {
  .contact-container {
    padding: 0;
  }

  .medical-app-section {
    padding: 20px;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px 40px;
  }

  .footer-col {
    text-align: left;
  }

  .footer-brand .footer-text {
    max-width: 100%;
  }

  .footer-social,
  .footer-hotline,
  .hours-info,
  .footer-links li a {
    justify-content: flex-start;
  }



  .footer-badges {
    align-items: flex-start;
  }

  .footer-badge {
    width: 100%;
    max-width: 280px;
    justify-content: flex-start;
  }

  .direction-link {
    display: inline-flex;
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
    padding: 18px 15px;
  }
}

/* ========== Tablet (768px) ========== */
@media (max-width: 768px) {



  .blog-grid {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .consult-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .download-app-section {
    padding: 40px 15px;
  }

  .download-app-container {
    padding: 40px 20px;
  }

  .download-app-content h2 {
    font-size: 34px;
  }

  .download-app-content p {
    font-size: 16px;
  }

  .download-buttons {
    justify-content: center;
  }

  .store-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ========== Mobile (480px) ========== */
@media (max-width: 480px) {
  .download-app-content h2 {
    font-size: 28px;
  }

  .download-app-content p {
    font-size: 15px;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-btn {
    width: 100%;
    max-width: 100%;
  }

  .store-btn i {
    font-size: 24px;
  }

  .store-btn h4 {
    font-size: 16px;
  }
}

/* ===========================
   Tablet (768px)
=========================== */
@media (max-width: 768px) {

  .steps-heading {
    text-align: center;
    margin-bottom: 30px;
  }

  .steps-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .steps-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .steps-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps-card,
  .large-card {
    width: 100%;
    padding: 20px;
  }

  .large-card {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .steps-image {
    margin-top: 20px;
    text-align: center;
  }

  .steps-image img {
    max-width: 220px;
    width: 100%;
    height: auto;
  }

  .steps-icon {
    margin-bottom: 15px;
  }

  .steps-card h3 {
    font-size: 22px;
  }

  .steps-card p {
    font-size: 15px;
    line-height: 1.6;
  }

  .steps-section {
    padding: 0 20px;

  }
}

/* ===========================
   Mobile (480px)
=========================== */
@media (max-width: 480px) {

  .steps-title {
    font-size: 28px;
  }

  .steps-subtitle {
    font-size: 14px;
  }

  .steps-card {
    padding: 18px;
  }

  .steps-card h3 {
    font-size: 20px;
  }

  .steps-card p {
    font-size: 14px;
  }

  .steps-image img {
    max-width: 180px;
  }

  .download-buttons .store-btn h4 {
    font-size: 0.75rem;
  }

  .download-buttons .store-btn span {

    font-size: 0.40rem;
  }
}











/* ==========================================================================
   LEGAL / COMPLIANCE PAGE — SCOPED STYLES
   All selectors are prefixed to avoid conflicts with site-wide CSS.
   ========================================================================== */

/* ==========================================================================
   LEGAL HERO SECTION
   ========================================================================== */
.legal-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #670231 0%, #D72B7C 60%, #e8527a 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative background blobs */
.legal-section::before,
.legal-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.legal-section::before {
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.05);
  top: -120px;
  right: -100px;
}

.legal-section::after {
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.04);
  bottom: -80px;
  left: 60px;
}

.legal-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.legal-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.legal-title span {
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}

.legal-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 48px;
}

/* Bottom trust bar */
.legal-bottom {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.legal-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8375rem;
  font-weight: 600;
}

.legal-item i {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   REGULATORY SECTION
   ========================================================================== */
.regulatory-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.regulatory-container {
  max-width: 1200px;
  margin: 0 auto;
}

.regulatory-heading {
  margin-bottom: 52px;
}

.regulatory-heading h2 {
  font-size: 1.875rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.heading-line {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, #D72B7C, #e8527a);
  border-radius: 2px;
}

/* 4-column grid */
.regulatory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.regulatory-card {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 20px;
  padding: 28px 22px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.regulatory-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(215, 43, 124, 0.14);
  border-color: rgba(215, 43, 124, 0.25);
}

/* Verified badge */
.verified-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ecfdf5;
  color: #065f46;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid #a7f3d0;
}

/* Icon circles */
.regulatory-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  transition: transform 0.3s ease;
}

.regulatory-card:hover .regulatory-icon {
  transform: scale(1.08) rotate(-4deg);
}

.regulatory-icon.pink-icon {
  background: #fce8f3;
  color: #D72B7C;
}

.regulatory-icon.gray-icon {
  background: #f1f5f9;
  color: #475569;
}

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

.regulatory-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.regulatory-card p {
  font-size: 0.8125rem;
  color: #718096;
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
}

/* View Document button */
.document-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 1.5px solid #e2e8f0;
  color: #D72B7C;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease,
    color 0.25s ease, transform 0.2s ease;
  margin-top: 4px;
  width: fit-content;
}

.document-btn i {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.document-btn:hover {
  background: #D72B7C;
  border-color: #D72B7C;
  color: #ffffff;
  transform: translateY(-1px);
}

.document-btn:hover i {
  transform: translate(2px, -2px);
}

/* ==========================================================================
   PRIVACY SECTION
   ========================================================================== */
.privacy-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffc4e0, #e0f2fe);
}

.privacy-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.privacy-heading {
  position: sticky;
  top: 100px;
}

.privacy-heading h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.privacy-heading p {
  font-size: 0.9rem;
  color: #718096;
  line-height: 1.75;
}

/* Accordion wrapper */
.privacy-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Accordion item */
.privacy-item {
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.privacy-item.active {
  border-color: rgba(215, 43, 124, 0.3);
  box-shadow: 0 4px 20px rgba(215, 43, 124, 0.08);
  background: #ffffff;
}

.privacy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.privacy-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.privacy-number {
  font-size: 0.7rem;
  font-weight: 800;
  color: #D72B7C;
  background: #fce8f3;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.privacy-item.active .privacy-number {
  background: #D72B7C;
  color: #ffffff;
}

.privacy-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

/* Chevron icon */
.privacy-icon {
  font-size: 0.9rem;
  color: #a0aec0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
  flex-shrink: 0;
}

.privacy-item.active .privacy-icon {
  transform: rotate(180deg);
  color: #D72B7C;
}

/* Body (collapsed by default, animated open) */
.privacy-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s ease;
  padding: 0 22px;
}

.privacy-item.active .privacy-body {
  max-height: 300px;
  padding: 0 22px 22px;
}

.privacy-body p {
  font-size: 0.875rem;
  color: #4a5568;
  line-height: 1.78;
  margin: 0;
  padding-top: 2px;
  border-top: 1px solid #edf2f7;
  padding-top: 16px;
}

/* ==========================================================================
   TERMS & CONDITIONS SECTION
   ========================================================================== */
.terms-section {
  padding: 80px 20px;
  background: #f8fafc;
}

.terms-card {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 28px;
  padding: 48px 52px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.terms-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}

.terms-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.terms-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 14px;
  transition: border-color 0.25s ease, background 0.25s ease,
    transform 0.25s ease, box-shadow 0.25s ease;
}

.terms-item:hover {
  border-color: rgba(215, 43, 124, 0.2);
  background: #fff;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(215, 43, 124, 0.07);
}

.terms-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fce8f3;
  color: #D72B7C;
  border-radius: 10px;
  font-size: 1rem;
  margin-top: 1px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.terms-item:hover .terms-icon {
  background: #D72B7C;
  color: #ffffff;
  transform: scale(1.08);
}

.terms-item p {
  font-size: 0.875rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
  padding-top: 6px;
}

/* Footer divider + timestamp */
.terms-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.terms-line {
  width: 100%;
  height: 1px;
  background: #edf2f7;
}

.terms-footer p {
  font-size: 0.775rem;
  color: #a0aec0;
  line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVE — TABLET (max 991px)
   ========================================================================== */
@media (max-width: 991px) {
  .regulatory-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .privacy-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .privacy-heading {
    position: static;
  }

  .legal-title {
    font-size: 2rem;
  }
}

/* ==========================================================================
   RESPONSIVE — MOBILE (max 768px)
   ========================================================================== */
@media (max-width: 768px) {
  .legal-section {
    padding: 60px 20px;
  }

  .legal-title {
    font-size: 1.75rem;
  }

  .legal-bottom {
    gap: 20px;
    padding-top: 28px;
  }

  .regulatory-section {
    padding: 60px 20px;
  }

  .regulatory-heading h2 {
    font-size: 1.5rem;
  }

  .privacy-section {
    padding: 60px 20px;
  }

  .privacy-heading h2 {
    font-size: 1.5rem;
  }

  .terms-section {
    padding: 60px 20px;
  }

  .terms-card {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .terms-title {
    font-size: 1.375rem;
  }
}

/* ==========================================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ========================================================================== */
@media (max-width: 480px) {
  .regulatory-grid {
    grid-template-columns: 1fr;
  }

  .legal-title {
    font-size: 1.5rem;
  }

  .legal-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .terms-card {
    padding: 24px 18px;
  }

  .privacy-header {
    padding: 16px 18px;
  }

  .privacy-item.active .privacy-body {
    padding: 0 18px 18px;
  }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {

  .regulatory-card,
  .privacy-item,
  .privacy-body,
  .privacy-icon,
  .terms-item,
  .document-btn {
    transition: none !important;
  }
}









/* ==========================================
   REFUND SECTION
========================================== */
.refund-section {
  padding: 90px 20px;
  background: #ffffff;
  overflow: hidden;
}

.refund-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

/* --- Image Block --- */
.refund-image-block {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.refund-img-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
}

.refund-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  box-shadow: 0 20px 60px rgba(215, 43, 124, 0.15);
}

/* Floating badge on image */
.refund-float-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  border: 1px solid #edf2f7;
  z-index: 3;
}

.refund-float-badge>i {
  font-size: 1.5rem;
  color: #D72B7C;
  background: #fce8f3;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.refund-float-badge span {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: #D72B7C;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

.refund-float-badge p {
  font-size: 0.9rem;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

/* Decorative rings behind image */
.refund-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(215, 43, 124, 0.12);
  z-index: 1;
  pointer-events: none;
  animation: refundRingPulse 3.5s ease-in-out infinite;
}

.refund-ring-1 {
  width: 340px;
  height: 340px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.refund-ring-2 {
  width: 440px;
  height: 440px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 1.2s;
  border-color: rgba(215, 43, 124, 0.06);
}

@keyframes refundRingPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

/* --- Content --- */
.refund-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fce8f3;
  color: #D72B7C;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.refund-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.refund-title span {
  color: #D72B7C;
}

.refund-desc {
  font-size: 0.9375rem;
  color: #718096;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* Steps */
.refund-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.refund-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease,
    transform 0.25s ease, background 0.25s ease;
}

.refund-step:hover {
  border-color: rgba(215, 43, 124, 0.22);
  background: #ffffff;
  transform: translateX(5px);
  box-shadow: 0 4px 18px rgba(215, 43, 124, 0.07);
}

.refund-step-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: #fce8f3;
  color: #D72B7C;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.refund-step:hover .refund-step-icon {
  background: #D72B7C;
  color: #ffffff;
  transform: scale(1.08);
}

.refund-step-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 4px;
}

.refund-step-text p {
  font-size: 0.8125rem;
  color: #718096;
  line-height: 1.65;
  margin: 0;
}

/* Note box */
.refund-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fffbf0;
  border: 1px solid #fde68a;
  border-radius: 14px;
  padding: 16px 18px;
}

.refund-note i {
  color: #d97706;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.refund-note p {
  font-size: 0.8rem;
  color: #92400e;
  line-height: 1.65;
  margin: 0;
  font-weight: 500;
}

/* ==========================================
   FAQ SECTION
========================================== */
.faq-section {
  padding: 90px 20px;
  background: #f8fafc;
  overflow: hidden;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.faq-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fce8f3;
  color: #D72B7C;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.faq-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.faq-title span {
  color: #D72B7C;
}

.faq-subtitle {
  font-size: 0.9rem;
  color: #718096;
  line-height: 1.75;
  margin: 0;
}

/* Grid */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

/* Image */
.faq-image-block {
  position: relative;
  top: 0;
}

.faq-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Stat overlays */
.faq-stat {
  position: absolute;
  background: #ffffff;
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  border: 1px solid #edf2f7;
  z-index: 2;
  animation: faqBadgeFloat 3s ease-in-out infinite;
}

.faq-stat-1 {
  top: 28px;
  left: -20px;
  animation-delay: 0s;
}

.faq-stat-2 {
  bottom: 36px;
  right: -20px;
  animation-delay: 1.5s;
}

@keyframes faqBadgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.faq-stat>i {
  font-size: 1.25rem;
  color: #D72B7C;
  background: #fce8f3;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-stat strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
}

.faq-stat span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: #718096;
  letter-spacing: 0.4px;
  margin-top: 2px;
}

/* Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
  border-color: rgba(215, 43, 124, 0.3);
  box-shadow: 0 4px 20px rgba(215, 43, 124, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.faq-question span {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.4;
  transition: color 0.25s ease;
}

.faq-item.active .faq-question span {
  color: #D72B7C;
}

/* +/− toggle button */
.faq-toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 9px;
  background: #f1f5f9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-toggle {
  background: #D72B7C;
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 22px 20px;
}

.faq-answer p {
  font-size: 0.875rem;
  color: #4a5568;
  line-height: 1.78;
  margin: 0;
  border-top: 1px solid #edf2f7;
  padding-top: 16px;
}

/* Bottom CTA */
.faq-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.faq-cta p {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #4a5568;
  margin: 0;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #D72B7C;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 50px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(215, 43, 124, 0.25);
}

.faq-cta-btn:hover {
  background: #a81f5d;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(215, 43, 124, 0.35);
}

/* ==========================================
   RESPONSIVE — TABLET (max 991px)
========================================== */
@media (max-width: 991px) {
  .refund-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .refund-image-block {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-image-block {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .faq-img {
    height: 320px;
  }

  .faq-stat-1 {
    left: 10px;
  }

  .faq-stat-2 {
    right: 10px;
  }
}

/* ==========================================
   RESPONSIVE — MOBILE (max 768px)
========================================== */
@media (max-width: 768px) {

  .refund-section,
  .faq-section {
    padding: 60px 20px;
  }

  .refund-title,
  .faq-title {
    font-size: 1.625rem;
  }

  .refund-img {
    height: 300px;
    border-radius: 20px;
  }

  .refund-float-badge {
    right: 8px;
    bottom: -16px;
  }

  .refund-ring {
    display: none;
  }

  .faq-img {
    height: 260px;
    border-radius: 20px;
  }

  .faq-heading {
    margin-bottom: 36px;
  }
}

/* ==========================================
   RESPONSIVE — SMALL MOBILE (max 480px)
========================================== */
@media (max-width: 480px) {

  .refund-title,
  .faq-title {
    font-size: 1.375rem;
  }

  .refund-step {
    flex-direction: column;
    gap: 12px;
  }

  .faq-stat {
    display: none;
  }

  .faq-question {
    padding: 16px 18px;
  }

  .faq-item.active .faq-answer {
    padding: 0 18px 18px;
  }

  .faq-cta {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ==========================================
   REDUCED MOTION
========================================== */
@media (prefers-reduced-motion: reduce) {

  .refund-ring,
  .refund-step,
  .faq-stat,
  .faq-item,
  .faq-toggle,
  .faq-cta-btn,
  .refund-float-badge {
    animation: none !important;
    transition: none !important;
  }


}



.hero-section {
  min-height: auto;
  height: auto;
}

.hero-image-area {
  order: 2;
}

.hero-content {
  order: 1;
}


.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
  font-size: 14px;
}

.medicine-price {
  color: #28a745;
  font-size: 18px;
  font-weight: 700;
}

.discount-badge {
  background: #ff4757;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  margin-left: 8px;
}


.hero-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 60px 0;
}