/* ============================================================
   PRIME PHARMACY — MODERNIZED STYLESHEET
   Colors extracted directly from logo:
     Primary Blue : #3c508c (dominant)
     Dark Navy    : #1a2464
     Accent Red   : #e82014
   Font: Outfit (headings) + Sora (body)
============================================================ */

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

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Blues from logo */
  --blue-900: #0e1640;
  --blue-800: #1a2464;
  --blue-700: #243080;
  --blue-600: #3c508c;   /* primary logo blue */
  --blue-500: #4a60a8;
  --blue-400: #6a80c4;
  --blue-100: #dde3f5;
  --blue-50:  #f0f3fb;

  /* Reds from logo */
  --red-700:  #b01008;
  --red-600:  #cc1810;
  --red-500:  #e82014;   /* primary logo red */
  --red-400:  #f04030;
  --red-100:  #fee2e0;
  --red-50:   #fff5f4;

  /* Neutrals */
  --navy:     #0e1640;
  --slate:    #334155;
  --muted:    #64748b;
  --border:   #e2e8f0;
  --bg:       #f8f9fc;
  --white:    #ffffff;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.11);
  --shadow-blue: 0 8px 30px rgba(60,80,140,0.25);
  --shadow-red:  0 8px 24px rgba(232,32,20,0.28);

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

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate);
  background: var(--white);
  padding-top: 76px;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; }
ul  { list-style: none; }
.container { width: 90%; max-width: 1160px; margin: auto; }


/* ════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 76px;
  z-index: 1000;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.navbar.scrolled { box-shadow: 0 4px 24px rgba(60,80,140,0.12); }

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img { height: 46px; }

.nav-links ul { display: flex; align-items: center; gap: 4px; }

.nav-links ul li a {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-links ul li a:hover,
.nav-links ul li a.active-link {
  color: var(--blue-600);
  background: var(--blue-50);
}

/* Last nav item — red pill CTA */
.nav-links ul li:last-child a {
  background: var(--red-500);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 700;
}
.nav-links ul li:last-child a:hover {
  background: var(--red-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}

.menu-toggle { display: none; font-size: 22px; cursor: pointer; color: var(--navy); padding: 8px; }


/* ════════════════════════════════════════════════════════
   EMERGENCY BANNER
════════════════════════════════════════════════════════ */
.emergency-banner {
  background: linear-gradient(90deg, var(--red-600), var(--red-700));
  color: #fff;
  text-align: center;
  padding: 11px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.emergency-banner i { margin-right: 8px; }
.emergency-banner a { color: #fef08a; text-decoration: underline; margin-left: 8px; }


/* ════════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-600);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-500);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition);
}
.btn-red:hover {
  background: var(--red-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue-600);
  padding: 12px 28px;
  border-radius: 100px;
  border: 2px solid var(--blue-400);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--blue-50); transform: translateY(-2px); }


/* ════════════════════════════════════════════════════════
   HERO + SLIDER
════════════════════════════════════════════════════════ */
.hero-slider-section {
  width: 100%;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 60px 6%;
  background: linear-gradient(140deg, var(--blue-50) 0%, #fff 55%);
  position: relative;
  overflow: hidden;
}

/* Decorative blob */
.hero-slider-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(60,80,140,0.06) 0%, transparent 70%);
  top: -150px; left: -150px;
  pointer-events: none;
}

.hero-text { flex: 1; max-width: 560px; }

.hero-text .pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-text h1 {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-text h1 span { color: var(--blue-600); }

.hero-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 32px; margin-top: 44px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong {
  font-family: 'Outfit', sans-serif;
  font-size: 24px; font-weight: 800;
  color: var(--blue-600);
}
.hero-stat span { font-size: 12px; color: var(--muted); font-weight: 500; }

/* SLIDER */
.hero-slider-section .image-slider {
  flex: 1;
  position: relative;
  max-width: 560px;
  height: 500px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(60,80,140,0.07);
}

/* Stacking container for slides */
.hero-slider-section .image-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ── Slide base: stacked, invisible ── */
.hero-slider-section .image-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transform: scale(1.06);
  transition:
    opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Active slide: fully visible, zoomed to normal ── */
.hero-slider-section .image-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
  transform: scale(1);
}

/* ── Slide that is leaving: fade out and zoom further ── */
.hero-slider-section .image-slide.leaving {
  opacity: 0;
  z-index: 2;                /* sits above incoming so crossfade looks clean */
  transform: scale(0.97);
  transition:
    opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider-section .image-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-prev, .image-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.image-prev:hover, .image-next:hover {
  background: var(--blue-600);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.image-prev { left: 16px; }
.image-next { right: 16px; }

.image-dots { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; }
.image-dot { display: inline-block; width: 8px; height: 8px; background: rgba(255,255,255,0.5); border-radius: 50%; margin: 0 4px; cursor: pointer; transition: all var(--transition); }
.image-dot.active { background: #fff; width: 24px; border-radius: 4px; }


/* ════════════════════════════════════════════════════════
   ABOUT + MISSION / VISION
════════════════════════════════════════════════════════ */
.about-mv-section { padding: 100px 20px; background: var(--white); }

.about-mv-wrapper {
  display: flex; gap: 64px; align-items: flex-start;
  max-width: 1160px; margin: auto;
}

.about-left { flex: 1; }
.about-left h2 { font-size: clamp(26px,3.5vw,38px); color: var(--navy); margin-bottom: 20px; }
.about-left h2 span { color: var(--blue-600); }
.about-left p { color: var(--muted); line-height: 1.85; margin-bottom: 32px; font-size: 15px; }

.mv-right { flex: 1; display: flex; flex-direction: column; gap: 20px; }

.mv-card {
  background: var(--white);
  padding: 28px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue-600);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.mv-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-left-color: var(--red-500); }

.mv-icon { width: 48px; height: 48px; background: var(--blue-50); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.mv-icon i { font-size: 20px; color: var(--blue-600); }
.mv-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.mv-card p { color: var(--muted); font-size: 14px; line-height: 1.8; }


/* ════════════════════════════════════════════════════════
   NEWS
════════════════════════════════════════════════════════ */
.news { padding: 100px 20px; background: var(--bg); text-align: center; }
.news h2 { font-size: clamp(28px,4vw,38px); color: var(--navy); margin-bottom: 12px; }
.news-intro { color: var(--muted); margin-bottom: 52px; font-size: 15px; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 28px; max-width: 1100px; margin: auto; }

.news-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  text-align: left; transition: all var(--transition);
}
.news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--blue-400); }
.news-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover img { transform: scale(1.04); }

.news-card-body { padding: 24px; }
.news-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.news-card p { font-size: 14px; color: var(--muted); margin-bottom: 18px; line-height: 1.7; }
.news-card a { display: inline-flex; align-items: center; gap: 6px; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700; color: var(--red-500); transition: gap var(--transition); }
.news-card a:hover { gap: 10px; }


/* ════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════ */
.testimonials {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,32,20,0.12) 0%, transparent 60%);
  top: -200px; right: -200px;
  pointer-events: none;
}

.testimonials h2 { font-size: clamp(28px,4vw,38px); color: #fff; margin-bottom: 12px; }
.testimonials-subtitle { color: rgba(255,255,255,0.6); margin-bottom: 52px; font-size: 15px; }
.testimonial-grid { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; max-width: 1100px; margin: auto; overflow: hidden; }

.testimonial-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  min-width: 280px; max-width: 340px;
  text-align: left;
  transition: all var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-6px); border-color: rgba(232,32,20,0.4); }
.testimonial-stars { color: #fbbf24; font-size: 13px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-style: italic; font-size: 15px; color: rgba(255,255,255,0.88); line-height: 1.8; margin-bottom: 20px; }
.testimonial-card h4 { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; color: var(--red-400); }


/* ════════════════════════════════════════════════════════
   FEATURED SERVICES
════════════════════════════════════════════════════════ */
.featured-services { padding: 100px 20px; background: var(--white); }
.services-container { max-width: 1160px; margin: auto; text-align: center; }
.section-title { font-size: clamp(26px,4vw,36px); color: var(--navy); margin-bottom: 8px; }
.section-subtitle { font-size: 15px; color: var(--muted); margin-bottom: 52px; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 24px; margin-bottom: 52px; }

.service-card {
  background: var(--bg);
  padding: 34px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: left;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--white); }
.service-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--muted); margin-bottom: 22px; line-height: 1.7; }

.more-card {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-900));
  border-color: transparent;
}
.more-card h3, .more-card p { color: rgba(255,255,255,0.95); }

.service-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--blue-600);
  border: 1.5px solid var(--blue-400);
  padding: 7px 18px; border-radius: 100px;
  transition: all var(--transition);
}
.service-btn:hover { background: var(--blue-600); color: #fff; border-color: var(--blue-600); }

.services-cta { margin-bottom: 72px; }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; text-align: left; }

.info-card { background: var(--blue-50); padding: 32px; border-radius: var(--radius-md); border: 1px solid var(--blue-100); }
.info-card h3 { font-size: 20px; color: var(--blue-800); margin-bottom: 16px; }

.highlight { display: inline-block; font-size: 22px; font-weight: 800; color: var(--blue-600); margin-top: 8px; font-family: 'Outfit', sans-serif; }

.values-list { padding: 0; }
.values-list li { padding: 9px 0; border-bottom: 1px solid rgba(60,80,140,0.1); font-size: 14px; color: var(--slate); display: flex; align-items: center; gap: 10px; }
.values-list li::before { content: ''; width: 6px; height: 6px; background: var(--blue-600); border-radius: 50%; flex-shrink: 0; }
.values-list li:last-child { border-bottom: none; }


/* ════════════════════════════════════════════════════════
   DEPARTMENTS
════════════════════════════════════════════════════════ */
.departments-section { padding: 100px 20px; background: var(--bg); }
.departments-container { max-width: 1160px; margin: auto; text-align: center; }
.departments-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 28px; }

.department-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); }
.department-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.department-image { height: 200px; overflow: hidden; }
.department-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.department-card:hover .department-image img { transform: scale(1.06); }

.department-card-body { padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; }
.department-card h3 { font-size: 18px; color: var(--navy); margin: 0; }

.dept-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--blue-600);
  border: 1.5px solid var(--blue-400);
  padding: 7px 18px; border-radius: 100px;
  transition: all var(--transition);
}
.dept-btn:hover { background: var(--blue-600); color: #fff; border-color: var(--blue-600); }


/* ════════════════════════════════════════════════════════
   HEALTH BLOG
════════════════════════════════════════════════════════ */
.health-blog { padding: 100px 20px; background: var(--white); }
.health-blog h2 { text-align: center; font-size: clamp(26px,4vw,36px); color: var(--navy); margin-bottom: 12px; }
.health-blog-sub { text-align: center; color: var(--muted); margin-bottom: 52px; font-size: 15px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 28px; max-width: 1100px; margin: auto; }

.blog-card { background: var(--bg); padding: 34px 28px; border-radius: var(--radius-md); border: 1px solid var(--border); transition: all var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--white); }
.blog-icon { font-size: 30px; color: var(--blue-600); margin-bottom: 20px; display: block; }
.blog-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.blog-card p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 22px; }
.blog-card a { display: inline-flex; align-items: center; gap: 6px; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700; color: var(--blue-600); transition: gap var(--transition); }
.blog-card a:hover { gap: 10px; }


/* ════════════════════════════════════════════════════════
   DELIVERY
════════════════════════════════════════════════════════ */
.delivery-section { padding: 100px 20px; background: var(--bg); text-align: center; }
.delivery-section h2 { font-size: clamp(26px,4vw,36px); color: var(--navy); margin-bottom: 12px; }
.delivery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 24px; max-width: 1100px; margin: 52px auto 0; }

.delivery-card { background: var(--white); padding: 30px; border-radius: var(--radius-md); border: 1px solid var(--border); text-align: left; transition: all var(--transition); }
.delivery-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blue-400); }
.delivery-card h4 { font-size: 17px; color: var(--navy); margin-bottom: 10px; }
.delivery-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.delivery-card.urgent { border-left: 4px solid var(--red-500); background: var(--red-50); }
.delivery-card.urgent h4 { color: var(--red-600); }


/* ════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════ */
.faq-section { padding: 100px 20px; background: var(--white); }
.faq-section h2 { font-size: clamp(26px,4vw,36px); color: var(--navy); margin-bottom: 12px; text-align: center; }
.faq-sub { text-align: center; color: var(--muted); margin-bottom: 52px; font-size: 15px; }
.faq-grid { max-width: 780px; margin: auto; display: flex; flex-direction: column; gap: 14px; }

.faq-item { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px 26px; transition: all var(--transition); border-left: 4px solid transparent; }
.faq-item:hover { border-left-color: var(--blue-600); background: var(--blue-50); }
.faq-item h4 { font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.faq-item p { font-size: 14px; color: var(--muted); line-height: 1.75; }


/* ════════════════════════════════════════════════════════
   CONTACT (homepage)
════════════════════════════════════════════════════════ */
.contact { padding: 100px 20px; background: var(--bg); text-align: center; }
.contact h2 { font-size: clamp(26px,4vw,36px); color: var(--navy); margin-bottom: 10px; }
.contact-subtext { color: var(--muted); margin-bottom: 14px; }

.contact-info { margin-bottom: 48px; display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.contact-info p { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; color: var(--slate); }
.contact-info i { color: var(--blue-600); font-size: 16px; }

.map-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; max-width: 1100px; margin: auto; }
.map-card { background: var(--white); padding: 22px; border-radius: var(--radius-md); border: 1px solid var(--border); text-align: left; transition: all var(--transition); }
.map-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-400); }
.map-card h4 { font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.branch-address { font-size: 13px; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.map-card iframe { width: 100%; height: 210px; border-radius: var(--radius-sm); border: none; }


/* ════════════════════════════════════════════════════════
   TRUST
════════════════════════════════════════════════════════ */
.trust-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  text-align: center;
}
.trust-section h2 { font-size: clamp(26px,4vw,36px); color: #fff; margin-bottom: 12px; }
.trust-sub { color: rgba(255,255,255,0.6); margin-bottom: 52px; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 24px; max-width: 900px; margin: auto; }

.trust-item { background: rgba(255,255,255,0.08); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.12); padding: 32px 24px; border-radius: var(--radius-md); transition: all var(--transition); }
.trust-item:hover { background: rgba(255,255,255,0.14); transform: translateY(-6px); border-color: rgba(232,32,20,0.4); }
.trust-icon { font-size: 28px; color: #fbbf24; margin-bottom: 16px; }
.trust-item h4 { font-size: 17px; color: #fff; margin-bottom: 8px; }
.trust-item p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }


/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.site-footer { background: var(--blue-900); color: rgba(255,255,255,0.8); padding: 72px 20px 0; }

.footer-container { max-width: 1160px; margin: auto; display: grid; grid-template-columns: 1.6fr 1fr 1.4fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }

.footer-column h3, .footer-column h4 { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.footer-column p { font-size: 13.5px; line-height: 1.8; margin-bottom: 12px; color: rgba(255,255,255,0.65); }
.footer-column i { margin-right: 8px; color: #fbbf24; width: 16px; }
.footer-motto { margin-top: 16px; font-size: 13px; opacity: 0.6; line-height: 1.8; }

.footer-bottom { max-width: 1160px; margin: 0 auto; padding: 20px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,0.4); }


/* ════════════════════════════════════════════════════════
   FLOATING WHATSAPP + BACK TO TOP
════════════════════════════════════════════════════════ */
.footer-whatsapp { position: fixed; bottom: 88px; right: 24px; z-index: 9999; }
.footer-whatsapp a { display: flex; align-items: center; gap: 10px; background: #25D366; color: #fff; text-decoration: none; padding: 13px 20px; border-radius: 100px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 14px; box-shadow: 0 8px 28px rgba(37,211,102,0.35); transition: all var(--transition); }
.footer-whatsapp i { font-size: 20px; }
.footer-whatsapp a:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37,211,102,0.45); background: #1da851; }

#backToTop { position: fixed; bottom: 24px; left: 24px; display: none; width: 44px; height: 44px; background: var(--blue-600); color: #fff; border: none; border-radius: 50%; font-size: 16px; cursor: pointer; z-index: 1000; box-shadow: var(--shadow-blue); transition: all var(--transition); }
#backToTop:hover { background: var(--blue-700); transform: translateY(-3px); }


/* ════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }


/* ════════════════════════════════════════════════════════
   OTHER PAGES
════════════════════════════════════════════════════════ */
.about-page { padding: 80px 20px; background: var(--bg); }
.about-page .container { max-width: 1160px; margin: auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.about-left h2::after { content: ''; width: 48px; height: 3px; background: var(--red-500); display: block; border-radius: 2px; margin-top: 14px; }
.about-right { display: flex; flex-direction: column; gap: 20px; }

.contact-page { padding: 80px 20px; background: var(--bg); min-height: 100vh; }
.contact-header { text-align: center; font-size: clamp(32px,5vw,48px); color: var(--navy); margin-bottom: 10px; }
.contact-intro { text-align: center; color: var(--muted); margin-bottom: 52px; max-width: 700px; margin-left: auto; margin-right: auto; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 40px; max-width: 1100px; margin: auto; }

.contact-form-card { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.contact-form-card h2 { text-align: center; color: var(--navy); margin-bottom: 32px; font-size: 24px; }
.form-group { position: relative; margin-bottom: 28px; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 12px; border: none; border-bottom: 2px solid var(--border); background: transparent; font-size: 15px; font-family: 'Sora', sans-serif; outline: none; transition: color var(--transition); }
.form-group::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: linear-gradient(90deg, var(--blue-600), var(--blue-400)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.form-group:focus-within::after { transform: scaleX(1); }
.form-group:focus-within input, .form-group:focus-within textarea { color: var(--blue-600); }

.contact-info-card { background: linear-gradient(135deg, var(--blue-800), var(--blue-900)); color: #fff; padding: 40px; border-radius: var(--radius-lg); }
.contact-info-card h2 { color: #fff; margin-bottom: 24px; font-size: 22px; }
.contact-info-card p { margin-bottom: 16px; font-size: 15px; color: rgba(255,255,255,0.8); }
.contact-info-card i { margin-right: 10px; color: #fbbf24; }

.social-links { margin-top: 28px; display: flex; gap: 12px; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all var(--transition); border: 1px solid rgba(255,255,255,0.15); }
.social-links a:hover { background: var(--red-500); transform: translateY(-3px); border-color: transparent; }

.map-box { margin-top: 28px; border-radius: var(--radius-md); overflow: hidden; }
.map-box iframe { width: 100%; height: 200px; border: none; }

.faq-page { padding: 80px 20px; background: var(--bg); min-height: 100vh; }
.faq-header { text-align: center; font-size: clamp(32px,5vw,48px); color: var(--navy); margin-bottom: 10px; }
.faq-page-intro { text-align: center; color: var(--muted); margin-bottom: 52px; }

.news-page { padding: 80px 20px; background: linear-gradient(135deg, var(--blue-900), var(--blue-700)); min-height: 100vh; }
.news-page-header { text-align: center; font-size: clamp(32px,5vw,48px); color: #fff; margin-bottom: 12px; font-weight: 800; }
.news-page-intro { text-align: center; font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 52px; }
.news-content { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.news-content h3 { color: var(--navy); font-size: 20px; margin-bottom: 10px; }
.news-content p { color: var(--muted); font-size: 15px; flex-grow: 1; margin-bottom: 15px; }
.news-content .btn-primary { align-self: flex-start; background: var(--red-500); }
.news-content .btn-primary:hover { background: var(--red-600); }

.prescription-upload { padding: 80px 20px; text-align: center; background: var(--bg); }
.prescription-upload form { max-width: 480px; margin: auto; display: flex; flex-direction: column; gap: 16px; background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.prescription-upload input { padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); font-family: 'Sora', sans-serif; font-size: 14px; transition: border-color var(--transition); }
.prescription-upload input:focus { outline: none; border-color: var(--blue-500); }
.prescription-upload button { padding: 14px; background: var(--blue-600); color: #fff; border: none; border-radius: 100px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; transition: all var(--transition); }
.prescription-upload button:hover { background: var(--blue-700); transform: translateY(-2px); box-shadow: var(--shadow-blue); }

.vision-mission-page { padding: 80px 20px; background: var(--bg); min-height: 100vh; }
.vm-header { text-align: center; font-size: clamp(32px,5vw,48px); color: var(--navy); margin-bottom: 12px; font-weight: 800; }
.vm-intro { text-align: center; font-size: 16px; color: var(--muted); margin-bottom: 52px; max-width: 800px; margin-left: auto; margin-right: auto; }
.vm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 32px; justify-items: center; }
.vm-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; box-shadow: var(--shadow-md); border: 1px solid var(--border); max-width: 360px; transition: all var(--transition); }
.vm-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--blue-400); }
.vm-icon { color: var(--red-500); font-size: 32px; margin-bottom: 18px; }
.vm-card h2 { color: var(--navy); font-size: 22px; margin: 12px 0; }
.vm-card p { color: var(--muted); font-size: 15px; line-height: 1.75; }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .footer-container { grid-template-columns: 1fr 1fr; }
  .about-page .container { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-slider-section { flex-direction: column; padding: 48px 6% 60px; min-height: auto; }
  .hero-text { max-width: 100%; text-align: center; }
  .hero-text p { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-slider-section .image-slider { max-width: 100%; height: 340px; }
  .about-mv-wrapper { flex-direction: column; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links { position: absolute; top: 76px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); display: none; flex-direction: column; padding: 20px; }
  .nav-links ul { flex-direction: column; gap: 4px; }
  .nav-links ul li:last-child a { border-radius: var(--radius-sm); text-align: center; }
  .nav-links.active { display: flex; }
  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .contact-info { flex-direction: column; align-items: center; gap: 16px; }
  .map-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer-whatsapp span { display: none; }
  .footer-whatsapp a { width: 52px; height: 52px; padding: 0; border-radius: 50%; justify-content: center; }
  .hero-slider-section .image-slider { height: 260px; }
  .testimonial-grid { flex-direction: column; align-items: center; }
}
