/* Preventine Diagnostics - Main Stylesheet */
/* Brand: #1B6DA9 | #2EB2EA | Gradient: 90deg */

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

:root {
  --primary: #1B6DA9;
  --secondary: #2EB2EA;
  --gradient: linear-gradient(90deg, #1B6DA9 0%, #2EB2EA 100%);
  --gradient-v: linear-gradient(135deg, #1B6DA9 0%, #2EB2EA 100%);
  --dark: #0d2137;
  --text: #2c3e50;
  --muted: #6c7a89;
  --light-bg: #f0f7ff;
  --white: #ffffff;
  --border: #e1edf7;
  --shadow: 0 4px 20px rgba(27,109,169,0.12);
  --shadow-lg: 0 10px 40px rgba(27,109,169,0.18);
  --radius: 16px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

/* ======= NAVBAR ======= */
.navbar-main {
  background: #fff;
  box-shadow: 0 2px 20px rgba(27,109,169,0.10);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s;
}

.navbar-brand img { height: 52px; }

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-phone {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ======= BUTTONS ======= */
.btn-primary-main {
  background: var(--gradient);
  color: #fff !important;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(27,109,169,0.3);
}

.btn-primary-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27,109,169,0.4);
  color: #fff !important;
}

.btn-outline-main {
  background: transparent;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-outline-main:hover {
  background: var(--gradient);
  color: #fff !important;
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-white-main {
  background: #fff;
  color: var(--primary) !important;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff !important;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  color: #fff !important;
}

/* ======= HERO SECTION ======= */
.hero-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 50%, #daeefa 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46,178,234,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(27,109,169,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,109,169,0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(27,109,169,0.2);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-stat-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-stat-text strong {
  display: block;
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
}

.hero-stat-text span {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-image-wrap {
  position: relative;
  text-align: center;
}

.hero-image-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-image-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
}

.hero-image-card img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 380px;
}

.hero-floating-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 6px 25px rgba(27,109,169,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--dark);
  animation: float 3s ease-in-out infinite;
}

.hero-floating-badge.badge-1 {
  bottom: 30px;
  left: -20px;
}

.hero-floating-badge.badge-2 {
  top: 20px;
  right: -20px;
  animation-delay: 1.5s;
}

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

/* ======= SECTION HEADERS ======= */
.section-header { text-align: center; margin-bottom: 50px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,109,169,0.08);
  color: var(--primary);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}

.section-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ======= WHY CHOOSE ======= */
.why-section { padding: 90px 0; background: #fff; }

.why-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: all 0.3s;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: #fff;
}

.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.why-card h5 {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ======= SERVICES ======= */
.services-section { padding: 90px 0; background: var(--light-bg); }

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
  border: 1px solid var(--border);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.service-card:hover .service-icon {
  background: var(--gradient);
  color: #fff;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(27,109,169,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.7rem;
  margin: 0 auto 16px;
  transition: all 0.3s;
}

.service-card h5 {
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.5;
}

/* ======= PACKAGES ======= */
.packages-section { padding: 90px 0; background: #fff; }

.package-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 28px 24px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.package-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.package-card.featured-pkg {
  border-color: var(--primary);
  background: linear-gradient(135deg, #f0f7ff, #fff);
}

.package-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient);
  color: #fff;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.package-category {
  display: inline-block;
  background: rgba(27,109,169,0.08);
  color: var(--primary);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.package-card h4 {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 14px;
}

.package-tests {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.package-tests li {
  font-size: 0.87rem;
  color: var(--muted);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-tests li i { color: var(--secondary); font-size: 0.75rem; }

.package-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.pkg-offer-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
}

.pkg-original-price {
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
}

.pkg-discount {
  background: #e8f8ef;
  color: #2d8a4e;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

.pkg-time {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 18px;
}

.pkg-actions { display: flex; gap: 10px; }

.btn-pkg-book {
  flex: 1;
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-pkg-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(27,109,169,0.3);
  color: #fff;
}

.btn-pkg-details {
  padding: 10px 16px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  text-decoration: none;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.btn-pkg-details:hover {
  background: var(--primary);
  color: #fff;
}

/* ======= HOME COLLECTION BANNER ======= */
.collection-banner {
  background: var(--gradient-v);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.collection-banner::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.collection-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.collection-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.collection-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.collection-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.collection-feature i {
  background: rgba(255,255,255,0.2);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ======= DOCTORS ======= */
.doctors-section { padding: 90px 0; background: var(--light-bg); }

.doctor-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  height: 100%;
}

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

.doctor-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: linear-gradient(135deg, #e8f4fd, #daeefa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--primary);
}

.doctor-photo-placeholder {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, #e0f0fb, #c8e4f8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--primary);
}

.doctor-info { padding: 24px; }

.doctor-info h4 {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.doctor-qual {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.doctor-exp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(27,109,169,0.08);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.doctor-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.spec-tag {
  background: var(--light-bg);
  color: var(--text);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.doctor-lang {
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 16px;
}

/* ======= ABOUT PREVIEW ======= */
.about-preview { padding: 90px 0; background: #fff; }

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 420px;
}

.about-img-placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #e0f0fb, #c8e4f8);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  color: var(--primary);
}

.about-stat-cards {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 130px;
}

.about-stat-card strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-stat-card span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

.about-content { padding-left: 40px; }

.about-content p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

/* ======= TESTIMONIALS ======= */
.testimonials-section { padding: 90px 0; background: var(--light-bg); }

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--secondary);
  height: 100%;
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 14px;
}

.testimonial-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-stars { color: #f5a623; margin-bottom: 16px; }

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

.testimonial-avatar {
  width: 46px;
  height: 46px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ======= CONTACT CTA ======= */
.cta-section {
  background: var(--gradient);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* ======= FOOTER ======= */
.footer {
  background: var(--dark);
  padding: 70px 0 30px;
  color: rgba(255,255,255,0.7);
}

.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 48px; filter: brightness(10); }

.footer h5 {
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gradient);
}

.footer p { font-size: 0.9rem; line-height: 1.7; }

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover { color: var(--secondary); }

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  align-items: flex-start;
}

.footer-contact li i {
  color: var(--secondary);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-social { display: flex; gap: 10px; margin-top: 16px; }

.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.social-btn:hover {
  background: var(--gradient);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  margin-top: 50px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--secondary); }

/* ======= FLOATING WHATSAPP ======= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 6px 25px rgba(37,211,102,0.4);
  text-decoration: none;
  z-index: 9999;
  transition: all 0.3s;
  animation: pulse-wa 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 35px rgba(37,211,102,0.6); }
}

/* ======= ANIMATIONS ======= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======= PAGE BANNERS ======= */
.page-banner {
  background: var(--gradient-v);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}

.page-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  position: relative;
}

.breadcrumb-wrap {
  position: relative;
  margin-top: 12px;
}

.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }
.breadcrumb-item a { color: rgba(255,255,255,0.8); text-decoration: none; }
.breadcrumb-item.active { color: #fff; }

/* ======= FORMS ======= */
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.form-control:focus, .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(46,178,234,0.15);
}

.form-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

/* ======= CONTACT PAGE ======= */
.contact-info-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  border: 1px solid var(--border);
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

/* ======= ABOUT PAGE ======= */
.value-card {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

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

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

/* ======= PRESCRIPTION PAGE ======= */
.upload-zone {
  border: 2px dashed var(--secondary);
  border-radius: var(--radius);
  padding: 50px 20px;
  text-align: center;
  background: rgba(46,178,234,0.04);
  cursor: pointer;
  transition: all 0.2s;
}

.upload-zone:hover, .upload-zone.active {
  border-color: var(--primary);
  background: rgba(27,109,169,0.06);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 992px) {
  .about-content { padding-left: 0; margin-top: 30px; }
  .about-stat-cards { position: static; flex-direction: row; margin-top: 16px; }
  .hero-floating-badge { display: none; }
}

@media (max-width: 768px) {
  .hero-section { padding: 60px 0 50px; min-height: auto; }
  .hero-image-wrap { margin-top: 40px; }
  .hero-stats { gap: 16px; }
  .collection-features { gap: 16px; }
  .navbar-phone { display: none; }
  .form-card { padding: 24px 18px; }
}

/* ======= STATS COUNTER ======= */
.stats-section { padding: 60px 0; background: #fff; }

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

/* ======= SEARCH BOX (Tests Page) ======= */
.search-box-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}

/* Scroll to top */
#scrollTop {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 9998;
  border: none;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}

#scrollTop:hover { transform: translateY(-2px); }
#scrollTop.show { display: flex; }

/* Map placeholder */
.map-placeholder {
  background: var(--light-bg);
  border-radius: var(--radius);
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--muted);
}

.map-placeholder i { font-size: 3rem; color: var(--primary); margin-bottom: 14px; }
