/* ============================================================
   HealthServices.pk — Global Stylesheet
   Colors: Deep Blue #0a2463 | Medical Green #2ecc71 | White #fff
============================================================ */

:root {
  --deep-blue: #0a2463;
  --deep-blue-light: #133a8a;
  --deep-blue-dark: #061640;
  --med-green: #2ecc71;
  --med-green-dark: #25a75e;
  --white: #ffffff;
  --off-white: #f4f8fb;
  --grey-text: #4a5568;
  --dark-text: #0c1a33;
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.35);
  --shadow-soft: 0 10px 30px rgba(10, 36, 99, 0.12);
  --shadow-hard: 0 20px 50px rgba(10, 36, 99, 0.25);
  --radius: 18px;
  --ff-heading: 'Poppins', 'Segoe UI', sans-serif;
  --ff-body: 'Inter', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--dark-text);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  color: var(--deep-blue);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 90px 0; position: relative; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--med-green-dark);
  background: rgba(46, 204, 113, 0.12);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-head { max-width: 700px; margin: 0 auto 50px; text-align: center; }
.section-head p { color: var(--grey-text); font-size: 1.05rem; margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, background 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--med-green), var(--med-green-dark));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(46, 204, 113, 0.35);
}
.btn-primary:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 18px 36px rgba(46, 204, 113, 0.45); }
.btn-outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { background: var(--white); color: var(--deep-blue); transform: translateY(-4px); }
.btn-dark {
  background: var(--deep-blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(10, 36, 99, 0.3);
}
.btn-dark:hover { background: var(--deep-blue-light); transform: translateY(-4px); }
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1060;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  background: transparent;
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(10,36,99,0.1);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--ff-heading); font-weight: 700; font-size: 1.3rem; color: var(--white); transition: color 0.4s ease; }
.navbar.scrolled .nav-logo { color: var(--deep-blue); }
.nav-logo .logo-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--med-green), var(--deep-blue));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem;
}
.logo-icon-img { width: 42px; height: 42px; flex-shrink: 0; }
.footer-logo-img { width: 32px; height: 32px; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  color: var(--white); font-weight: 500; font-size: 0.92rem;
  position: relative; transition: color 0.3s ease; white-space: nowrap;
}
.navbar.scrolled .nav-links a { color: var(--dark-text); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--med-green); transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone {
  display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--white);
  transition: color 0.4s ease;
}
.navbar.scrolled .nav-phone { color: var(--deep-blue); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none;
  position: relative; z-index: 1100;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--white); border-radius: 3px; transition: all 0.3s ease; }
.navbar.scrolled .nav-toggle span { background: var(--deep-blue); }
.nav-mobile, .nav-overlay { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--deep-blue-dark) 0%, var(--deep-blue) 55%, #124a8f 100%);
  overflow: hidden;
}
/* ---------- Hero Floating Equipment Photos ---------- */
.hero-equip-field { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-equip-card {
  position: absolute; width: 190px;
  opacity: 0; transform: translateY(40px) scale(0.9);
  transition: transform 0.2s ease-out;
}
.hero-equip-inner {
  border-radius: 16px; overflow: hidden; position: relative;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 20px 45px rgba(2, 10, 30, 0.45);
  animation: heroFloat 6s ease-in-out infinite;
}
.hero-equip-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.hero-equip-label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 8px 12px;
  background: linear-gradient(0deg, rgba(6,22,64,0.92), rgba(6,22,64,0));
  color: var(--white); font-size: 0.78rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.hero-equip-label i { color: var(--med-green); }

.hero-equip-card.card-1 { width: 220px; top: 14%; right: 6%; }
.hero-equip-card.card-2 { width: 170px; top: 46%; right: 12%; }
.hero-equip-card.card-3 { width: 190px; top: 60%; right: 3%; }
.hero-equip-card.card-4 { width: 140px; top: 20%; right: 16%; }
.hero-equip-card.card-5 { width: 150px; top: 72%; right: 14%; }

.hero-equip-card.card-1 .hero-equip-inner { animation-delay: 0s; }
.hero-equip-card.card-2 .hero-equip-inner { animation-delay: 1.2s; }
.hero-equip-card.card-3 .hero-equip-inner { animation-delay: 2.1s; }
.hero-equip-card.card-4 .hero-equip-inner { animation-delay: 0.6s; }
.hero-equip-card.card-5 .hero-equip-inner { animation-delay: 1.8s; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}

@media (max-width: 1300px) {
  .hero-equip-card.card-4, .hero-equip-card.card-5 { display: none; }
}
@media (max-width: 992px) {
  .hero-equip-field { display: none; }
}

.hero-content { position: relative; z-index: 5; padding-top: 90px; }
.hero-content .eyebrow { background: rgba(46,204,113,0.18); color: #7cf0ac; }
.hero h1 { color: var(--white); max-width: 850px; text-shadow: 0 4px 24px rgba(2, 10, 30, 0.45); }
.hero h1 span { color: var(--med-green); }
.hero p.lead { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 600px; margin: 22px 0 34px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); z-index: 5; text-align: center; font-size: 0.8rem;
}
.hero-scroll .mouse {
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.5); border-radius: 20px;
  margin: 10px auto 0; position: relative;
}
.hero-scroll .mouse::before {
  content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--med-green); border-radius: 4px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 22px; } }

.hero-page {
  min-height: 46vh;
  background: linear-gradient(135deg, var(--deep-blue-dark), var(--deep-blue) 60%, #124a8f);
  display: flex; align-items: center; position: relative; overflow: hidden;
  padding-top: 100px; padding-bottom: 50px;
}
.hero-page h1 { color: var(--white); }
.hero-page .breadcrumb { color: rgba(255,255,255,0.75); margin-bottom: 18px; font-size: 0.92rem; }
.hero-page .breadcrumb a { color: var(--med-green); }
.hero-page p { color: rgba(255,255,255,0.8); max-width: 640px; margin-top: 16px; font-size: 1.05rem; }
.hero-page::after {
  content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(46,204,113,0.25), transparent 70%);
  border-radius: 50%;
}

/* ---------- Stats / Counters ---------- */
.stats-band {
  background: var(--deep-blue);
  padding: 60px 0;
  position: relative;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item .stat-number {
  font-family: var(--ff-heading); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700;
  color: var(--med-green); display: flex; align-items: center; justify-content: center; gap: 4px;
}
.stat-item .stat-label { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-top: 6px; }

/* ---------- Glass Cards ---------- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 34px 28px;
  transition: transform 0.15s ease, box-shadow 0.4s ease;
  will-change: transform;
}
.glass-card:hover { box-shadow: var(--shadow-hard); }

.card-icon {
  width: 62px; height: 62px; border-radius: 16px;
  background: linear-gradient(135deg, var(--med-green), var(--deep-blue));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.6rem; margin-bottom: 20px;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--med-green-dark); font-weight: 600; font-size: 0.92rem; }
.card-link i { transition: transform 0.3s ease; }
.glass-card:hover .card-link i { transform: translateX(6px); }

/* ---------- Photo Cards (equipment / services with real photography) ---------- */
.photo-card { padding: 0; overflow: hidden; }
.photo-card .photo-card-body { padding: 40px 28px 28px; position: relative; }
.photo-card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.photo-card-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.02); transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.photo-card:hover .photo-card-media img { transform: scale(1.12); }
.photo-card-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,36,99,0) 55%, rgba(6,22,64,0.55) 100%);
}
.photo-card .card-icon {
  position: absolute; top: -28px; left: 28px; margin: 0;
  box-shadow: 0 10px 24px rgba(10,36,99,0.3); border: 3px solid var(--white);
}
.photo-card h3 { margin-top: 6px; }

.stock-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(6,22,64,0.55); backdrop-filter: blur(4px);
  color: var(--white); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.3px;
  padding: 6px 12px 6px 10px; border-radius: 30px; text-transform: uppercase;
}
.stock-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--med-green);
  box-shadow: 0 0 0 rgba(46,204,113,0.6); animation: dotPulse 1.8s infinite;
}
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(46,204,113,0.6); }
  70% { box-shadow: 0 0 0 7px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}
.sale-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--med-green); color: var(--white); font-size: 0.72rem; font-weight: 700;
  padding: 6px 12px; border-radius: 30px; text-transform: uppercase; letter-spacing: 0.3px;
}

.photo-card-sm { aspect-ratio: 16 / 10; }

/* Split-section photo frame (services page, about page) */
.photo-frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-hard); aspect-ratio: 4 / 3;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-frame::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15); pointer-events: none;
}
.photo-frame .frame-badge {
  position: absolute; bottom: 20px; left: 20px; display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); padding: 12px 18px 12px 12px;
  border-radius: 14px; box-shadow: var(--shadow-soft);
}
.frame-badge .card-icon { margin: 0; width: 44px; height: 44px; font-size: 1.15rem; border-radius: 12px; }
.frame-badge strong { color: var(--deep-blue); font-family: var(--ff-heading); font-size: 0.95rem; display: block; }
.frame-badge span { color: var(--grey-text); font-size: 0.8rem; }

/* ---------- Process Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step-item { position: relative; text-align: center; padding: 20px; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--white);
  border: 3px solid var(--med-green); color: var(--deep-blue); font-family: var(--ff-heading);
  font-weight: 700; font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; box-shadow: var(--shadow-soft);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 850px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: 14px; margin-bottom: 16px;
  box-shadow: var(--shadow-soft); overflow: hidden; border: 1px solid rgba(10,36,99,0.06);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; cursor: pointer; font-family: var(--ff-heading); font-weight: 600;
  color: var(--deep-blue); font-size: 1.02rem; gap: 20px;
}
.faq-question .icon {
  min-width: 30px; height: 30px; border-radius: 50%; background: rgba(46,204,113,0.15);
  color: var(--med-green-dark); display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s ease;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); background: var(--med-green); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 26px 22px; color: var(--grey-text); }
.faq-item.open .faq-answer { max-height: 400px; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--deep-blue), #124a8f 60%, var(--med-green-dark));
  border-radius: 28px;
  padding: 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner h2, .cta-banner p { color: var(--white); }
.cta-banner p { opacity: 0.9; margin-top: 10px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer {
  background: var(--deep-blue-dark); color: rgba(255,255,255,0.75); padding: 70px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer-logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-family: var(--ff-heading); font-weight: 700; font-size: 1.25rem; margin-bottom: 16px; }
footer h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 20px; }
footer ul li { margin-bottom: 12px; }
footer ul li a:hover { color: var(--med-green); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--med-green); transform: translateY(-4px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; text-align: center; font-size: 0.88rem;
}
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact-item i { color: var(--med-green); margin-top: 4px; }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 62px; height: 62px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.8rem; box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}
.whatsapp-float::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25d366;
  animation: pulseRing 2s infinite; z-index: -1;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.9); opacity: 0; }
}

.back-to-top {
  position: fixed; bottom: 26px; left: 26px; z-index: 999; width: 48px; height: 48px;
  border-radius: 50%; background: var(--deep-blue); color: var(--white); display: flex;
  align-items: center; justify-content: center; box-shadow: var(--shadow-soft);
  opacity: 0; visibility: hidden; transition: all 0.35s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; }

/* ---------- Misc content sections ---------- */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.badge-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.badge-pill {
  display: flex; align-items: center; gap: 8px; background: var(--white); padding: 10px 18px;
  border-radius: 40px; box-shadow: var(--shadow-soft); font-size: 0.88rem; font-weight: 600; color: var(--deep-blue);
}
.badge-pill i { color: var(--med-green); }

.area-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.area-tags span {
  background: rgba(10,36,99,0.06); padding: 10px 18px; border-radius: 30px; font-size: 0.9rem;
  color: var(--deep-blue); font-weight: 500;
}

.timeline { border-left: 3px solid var(--med-green); padding-left: 30px; margin-left: 10px; }
.timeline-item { position: relative; margin-bottom: 34px; }
.timeline-item::before {
  content: ''; position: absolute; left: -38px; top: 4px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--med-green); border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--med-green);
}

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.map-wrap iframe { width: 100%; height: 340px; border: 0; }

.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 15px 18px; border-radius: 12px; border: 1px solid rgba(10,36,99,0.15);
  font-family: var(--ff-body); font-size: 0.95rem; background: var(--white); transition: border 0.3s ease;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--med-green);
}
.contact-form label { font-weight: 600; font-size: 0.88rem; color: var(--deep-blue); margin-bottom: 6px; display: block; }

.price-note { display: inline-flex; align-items: center; gap: 8px; background: rgba(46,204,113,0.12); color: var(--med-green-dark); padding: 8px 16px; border-radius: 30px; font-weight: 600; font-size: 0.85rem; }

/* ---------- Product Price Tags ---------- */
.product-price { display: flex; align-items: baseline; gap: 8px; margin-top: 14px; }
.product-price .currency { font-weight: 600; color: var(--grey-text); font-size: 0.95rem; }
.product-price .amount { font-family: var(--ff-heading); font-weight: 700; font-size: 1.55rem; color: var(--deep-blue); }
.product-price-lg .currency { font-size: 1.15rem; }
.product-price-lg .amount { font-size: 2.4rem; }
.product-price-lg { margin: 18px 0 22px; }

/* ---------- Blog ---------- */
.blog-meta { display: flex; align-items: center; gap: 14px; color: var(--grey-text); font-size: 0.85rem; margin-top: 10px; }
.blog-meta span { display: inline-flex; align-items: center; gap: 6px; }
.blog-meta i { color: var(--med-green-dark); }
.blog-category { display: inline-block; background: rgba(46,204,113,0.12); color: var(--med-green-dark); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.3px; text-transform: uppercase; padding: 5px 12px; border-radius: 30px; margin-bottom: 12px; }
.article-body { max-width: 780px; margin: 0 auto; color: var(--grey-text); line-height: 1.8; }
.article-body h2 { color: var(--deep-blue); margin: 38px 0 14px; font-size: 1.5rem; }
.article-body h3 { color: var(--deep-blue); margin: 26px 0 10px; font-size: 1.2rem; }
.article-body p { margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 0 0 18px 22px; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--med-green-dark); font-weight: 600; text-decoration: underline; }

/* ---------- Equipment Finder (search + category filter) ---------- */
.equip-finder { margin-bottom: 46px; }
.equip-search {
  position: relative; max-width: 560px; margin: 0 auto 24px;
}
.equip-search i {
  position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
  color: var(--med-green-dark); font-size: 1.05rem;
}
.equip-search input {
  width: 100%; padding: 16px 20px 16px 50px; border-radius: 40px;
  border: 2px solid rgba(10,36,99,0.1); font-family: var(--ff-body); font-size: 1rem;
  background: var(--white); box-shadow: var(--shadow-soft); transition: border-color 0.3s ease;
}
.equip-search input:focus { outline: none; border-color: var(--med-green); }
.equip-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.equip-filter-btn {
  background: var(--white); border: 2px solid rgba(10,36,99,0.1); color: var(--deep-blue);
  padding: 10px 20px; border-radius: 30px; font-weight: 600; font-size: 0.88rem;
  transition: all 0.25s ease; white-space: nowrap;
}
.equip-filter-btn:hover { border-color: var(--med-green); }
.equip-filter-btn.active {
  background: linear-gradient(135deg, var(--med-green), var(--deep-blue));
  border-color: transparent; color: var(--white);
}
.equip-no-results { text-align: center; color: var(--grey-text); margin-top: 24px; font-size: 1rem; }
.equip-item.is-hidden { display: none !important; }

/* ---------- Product Category Groups (products page) ---------- */
.product-category { margin-bottom: 60px; }
.product-category:last-child { margin-bottom: 0; }
.product-category.is-hidden { display: none !important; }
.category-head { max-width: 720px; margin-bottom: 30px; }
.category-head h2 { display: flex; align-items: center; gap: 14px; }
.category-head h2 i {
  width: 46px; height: 46px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--med-green), var(--deep-blue));
  color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.category-head p { color: var(--grey-text); margin-top: 10px; font-size: 1rem; }

/* Reveal helper for GSAP (initial state) — 3D tilt-in on scroll */
.reveal-up { opacity: 0; transform: translateY(60px) rotateX(10deg); transform-origin: bottom center; }
.reveal-fade { opacity: 0; }
.reveal-scale { opacity: 0; transform: scale(0.85) rotateY(12deg); transform-origin: center; }
.section { perspective: 1400px; }

/* ---------- 3D Shine Sweep on Tilt Cards ---------- */
.tilt-card { position: relative; overflow: hidden; transform-style: preserve-3d; }
.tilt-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  transform: translateX(-120%); transition: transform 0.7s ease;
}
.tilt-card:hover::after { transform: translateX(120%); }

/* ---------- Parallax Depth Shapes (hero-page banners) ---------- */
.hero-page { perspective: 1200px; }
.parallax-shape {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(2px); transition: transform 0.2s ease-out; opacity: 0.55;
}
.parallax-shape.shape-1 { width: 90px; height: 90px; top: 22%; right: 12%; background: radial-gradient(circle, rgba(46,204,113,0.55), transparent 70%); }
.parallax-shape.shape-2 { width: 140px; height: 140px; bottom: 8%; right: 26%; background: radial-gradient(circle, rgba(91,155,240,0.45), transparent 70%); }
.parallax-shape.shape-3 { width: 60px; height: 60px; top: 55%; right: 42%; background: radial-gradient(circle, rgba(255,255,255,0.5), transparent 70%); }
.parallax-shape.shape-4 { width: 46px; height: 46px; top: 18%; left: 6%; background: radial-gradient(circle, rgba(46,204,113,0.4), transparent 70%); }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split-section { grid-template-columns: 1fr; }
}
@media (max-width: 1140px) {
  .nav-links, .nav-cta .btn, .nav-phone span { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile {
    display: block;
    position: fixed; top: 0; right: -100%; width: 78%; max-width: 320px; height: 100vh;
    background: var(--white); z-index: 1050; padding: 100px 30px 30px; transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  }
  .nav-mobile.open { right: 0; }
  .nav-mobile a { display: block; padding: 14px 0; color: var(--deep-blue); font-weight: 600; border-bottom: 1px solid rgba(10,36,99,0.08); }
  .nav-mobile .btn { margin-top: 20px; width: 100%; justify-content: center; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1040; display: none; }
  .nav-overlay.show { display: block; }
}
@media (max-width: 768px) {
  .grid-3, .grid-4, .grid-2, .stats-grid, .steps-grid, .form-row { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  /* Stacked hero CTA buttons can run tall enough to collide with this
     fixed-from-bottom hint — it's decorative, so just hide it on mobile. */
  .hero-scroll { display: none; }
}
