/* ===========================
   WorkHealth Stylesheet
   =========================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px; line-height: 1.55; color: #1f2937; background:#fff;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; font-weight: 700; color: #0f3a6b; line-height: 1.2; }
ul { list-style: none; }

/* Colors */
:root{
  --wh-blue:#1E78C8; --wh-blue-dark:#0F3A6B; --wh-blue-soft:#E8F4FB;
  --wh-green:#5BBA3F; --wh-green-dark:#2F7A1E; --wh-green-soft:#EEF8E9;
  --slate-50:#f8fafc; --slate-100:#f1f5f9; --slate-200:#e2e8f0;
  --slate-400:#94a3b8; --slate-500:#64748b; --slate-600:#475569; --slate-700:#334155; --slate-800:#1e293b;
  --radius: 14px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; }
.gap-3 { gap: 12px; } .gap-4 { gap: 16px; } .gap-6 { gap: 24px; } .gap-8 { gap: 32px; }
.items-center { align-items: center; } .items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.mt-1{margin-top:4px} .mt-2{margin-top:8px} .mt-3{margin-top:12px} .mt-4{margin-top:16px} .mt-5{margin-top:20px} .mt-6{margin-top:24px} .mt-8{margin-top:32px} .mt-10{margin-top:40px}
.mb-2{margin-bottom:8px} .mb-4{margin-bottom:16px} .mb-6{margin-bottom:24px}

/* Gradients */
.wh-gradient-soft { background: linear-gradient(135deg, #E8F4FB 0%, #EEF8E9 100%); }
.wh-gradient-band { background: linear-gradient(90deg, #1E78C8 0%, #5BBA3F 100%); }
.wh-text-gradient {
  background: linear-gradient(90deg, #1E78C8 0%, #5BBA3F 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 15px; transition: all .18s ease; white-space: nowrap; }
.btn-primary { background: var(--wh-green); color: #fff; box-shadow: 0 6px 18px rgba(91,186,63,.25); }
.btn-primary:hover { background: var(--wh-green-dark); transform: translateY(-1px); }
.btn-secondary { background: #fff; color: var(--wh-blue); border: 1px solid rgba(30,120,200,.2); }
.btn-secondary:hover { background: var(--wh-blue-soft); border-color: rgba(30,120,200,.4); }
.btn-outline-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }
.btn-white { background:#fff; color: var(--wh-blue); }
.btn-white:hover { background: var(--slate-50); }
.btn-blue { background: var(--wh-blue); color: #fff; }
.btn-blue:hover { background: var(--wh-blue-dark); }

/* Header */
.topbar { background: linear-gradient(90deg, #1E78C8 0%, #5BBA3F 100%); color: #fff; font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; padding-bottom: 8px; gap: 16px; flex-wrap: wrap; }
.topbar .info { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar a { display: inline-flex; gap: 6px; align-items: center; opacity: .95; }
.topbar a:hover { opacity: 1; }

.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--slate-100); }
.header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 70px; height: 70px; object-fit: contain; }
.header .brand img { width: 80px; height: 80px; }
@media (max-width: 640px){ .header .brand img { width: 60px; height: 60px; } }
.brand .name { font-family: 'Poppins'; font-weight: 800; font-size: 20px; line-height: 1; }
.brand .name span:nth-child(1){ color: var(--wh-blue); }
.brand .name span:nth-child(2){ color: var(--wh-green); }
.brand .tag { font-size: 11px; letter-spacing: .18em; color: var(--slate-500); font-weight: 500; margin-top: 4px; }

.nav { display: none; gap: 28px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--slate-700); padding: 6px 0; transition: color .15s; }
.nav a:hover, .nav a.active { color: var(--wh-blue); }

.header-cta { display: none; }
.menu-btn { display: inline-flex; padding: 8px; border-radius: 8px; color: var(--slate-700); }
.menu-btn:hover { background: var(--slate-100); }

.mobile-menu { display: none; border-top: 1px solid var(--slate-100); background: #fff; }
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; padding: 16px 20px 22px; }
.mobile-menu a { padding: 8px 0; color: var(--slate-700); font-weight: 500; }
.mobile-menu a.active { color: var(--wh-blue); }
.mobile-menu .btn { margin-top: 10px; justify-content: center; }

/* Hero */
.hero { padding: 56px 0 70px; position: relative; overflow: hidden; }
.hero-grid { display: grid; gap: 40px; align-items: center; grid-template-columns: 1fr; }
.eyebrow { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid rgba(30,120,200,.12); color: var(--wh-blue); font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; box-shadow: 0 1px 2px rgba(0,0,0,.04); }
.section-eyebrow { color: var(--wh-green-dark); font-weight: 600; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.h1 { font-size: 38px; line-height: 1.08; }
.h2 { font-size: 30px; }
.h3 { font-size: 22px; }
.lead { font-size: 17px; color: var(--slate-600); max-width: 620px; }

.hero-img-wrap { position: relative; }
.hero-img-wrap .glow { position: absolute; inset: -20px; border-radius: 40px; background: linear-gradient(135deg,#1E78C8,#5BBA3F); opacity: .15; filter: blur(40px); }
.hero-img-wrap img { position: relative; width: 100%; height: 380px; object-fit: cover; border-radius: 24px; box-shadow: 0 24px 60px rgba(15,58,107,.18); }
.float-card { position: absolute; background: #fff; border: 1px solid var(--slate-100); border-radius: 16px; padding: 12px 16px; display: flex; gap: 12px; align-items: center; box-shadow: 0 12px 28px rgba(15,58,107,.12); }
.float-card .ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; }
.float-card .ico.blue { background: var(--wh-blue-soft); color: var(--wh-blue); }
.float-card .ico.green { background: var(--wh-green-soft); color: var(--wh-green-dark); }
.float-card .t1 { font-size: 14px; font-weight: 600; color: var(--slate-800); }
.float-card .t2 { font-size: 12px; color: var(--slate-500); }
.fc-tr { top: -14px; right: 8px; }
.fc-bl { bottom: -18px; left: 8px; }
@media (min-width: 768px){
  .fc-tr { right: -14px; }
  .fc-bl { left: -14px; }
}

.stats { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 420px; }
.stat-num { font-family: 'Poppins'; font-weight: 700; font-size: 24px; color: var(--wh-blue); }
.stat-lbl { font-size: 12px; color: var(--slate-500); margin-top: 2px; }

/* Quick links band */
.qlinks { background: #fff; border-radius: 16px; box-shadow: 0 16px 40px rgba(15,58,107,.06); border: 1px solid var(--slate-100); margin-top: -34px; position: relative; z-index: 5; display: grid; grid-template-columns: 1fr 1fr; }
.qlinks a { display: flex; gap: 12px; align-items: center; padding: 18px 20px; transition: background .15s; border-right: 1px solid var(--slate-100); border-bottom: 1px solid var(--slate-100); }
.qlinks a:nth-child(2n) { border-right: none; }
.qlinks a:nth-last-child(-n+2) { border-bottom: none; }
.qlinks a:hover { background: var(--wh-blue-soft); }
.qlinks .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--wh-blue-soft); color: var(--wh-blue); display: grid; place-items: center; flex-shrink: 0; }
.qlinks .lbl { font-weight: 600; color: var(--slate-700); }

/* Cards */
.cards { display: grid; gap: 22px; grid-template-columns: 1fr; margin-top: 36px; }
.card { background: #fff; border: 1px solid var(--slate-100); border-radius: 18px; padding: 22px; transition: all .2s ease; }
.card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(15,58,107,.10); border-color: rgba(30,120,200,.25); }
.card .ico { width: 48px; height: 48px; border-radius: 14px; background: var(--wh-blue-soft); color: var(--wh-blue); display: grid; place-items: center; transition: background .15s, color .15s; }
.card:hover .ico { background: var(--wh-blue); color: #fff; }
.card h3 { font-size: 17px; margin-top: 14px; }
.card p { font-size: 14px; color: var(--slate-600); margin-top: 8px; }
.card .more { display: inline-flex; gap: 4px; align-items: center; margin-top: 14px; color: var(--wh-blue); font-weight: 600; font-size: 14px; }

/* Package card */
.pkg-card { background: #fff; border: 1px solid var(--slate-100); border-radius: 18px; overflow: hidden; transition: all .2s ease; display: flex; flex-direction: column; }
.pkg-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(15,58,107,.10); }
.pkg-card .img { height: 180px; overflow: hidden; }
.pkg-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.pkg-card:hover .img img { transform: scale(1.06); }
.pkg-card .body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.pkg-card h3 { font-size: 17px; }
.pkg-card .tag { font-size: 13px; color: var(--slate-500); margin-top: 4px; }
.pkg-card .meta { font-size: 12px; color: var(--slate-500); margin-top: 8px; display: inline-flex; align-items: center; gap: 6px; }
.pkg-card .row { margin-top: 14px; display: flex; justify-content: space-between; align-items: center; }
.pkg-price-wrap { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.pkg-price-wrap .mrp { font-size: 13px; color: var(--slate-400); text-decoration: line-through; text-decoration-thickness: 1.5px; }
.pkg-price-wrap .offer-label { font-size: 10px; font-weight: 700; letter-spacing: .08em; color: var(--wh-green-dark); text-transform: uppercase; margin-bottom: 2px; }
.pkg-card .price { font-family: 'Poppins'; font-size: 22px; font-weight: 700; color: var(--wh-blue); }
.pkg-card .save-badge { display: inline-block; margin-left: 8px; background: var(--wh-green-soft); color: var(--wh-green-dark); font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 999px; }
.pkg-card .view { color: var(--wh-green-dark); font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 4px; }
.pkg-card .btn { margin-top: 12px; justify-content: center; width: 100%; }

/* Why */
.why-grid { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: center; }
.why-list { display: grid; gap: 14px; grid-template-columns: 1fr; }
.why-item { display: flex; gap: 12px; align-items: flex-start; }
.why-item .ico { width: 36px; height: 36px; border-radius: 10px; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.06); display: grid; place-items: center; color: var(--wh-green-dark); flex-shrink: 0; }
.why-item p { font-size: 14px; color: var(--slate-700); margin-top: 6px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-card { background: #fff; border-radius: 18px; padding: 22px; border: 1px solid #fff; }
.stat-card.shift { margin-top: 28px; }
.stat-card .ico { color: var(--wh-blue); }
.stat-card .num { font-family: 'Poppins'; font-weight: 700; font-size: 22px; margin-top: 12px; }
.stat-card .lbl { font-size: 13px; color: var(--slate-500); }

/* CTA strip */
.cta-strip { border-radius: 24px; padding: 36px; background: linear-gradient(90deg, #1E78C8 0%, #5BBA3F 100%); color: #fff; box-shadow: 0 20px 50px rgba(15,58,107,.18); display: grid; gap: 18px; }
.cta-strip h3 { color: #fff; font-size: 24px; }
.cta-strip p { color: rgba(255,255,255,.92); margin-top: 4px; font-size: 15px; }
.cta-strip .actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Footer */
.footer { margin-top: 80px; background: var(--wh-blue-dark); color: #cbd5e1; }
.footer .container { padding-top: 56px; padding-bottom: 0; }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
.footer h4 { color: #fff; font-size: 17px; margin-bottom: 14px; }
.footer ul li { margin-bottom: 8px; font-size: 14px; }
.footer a:hover { color: var(--wh-green); }
.footer .brand img { background: #fff; padding: 4px; border-radius: 8px; }
.footer .brand .name span:nth-child(1){ color:#fff; }
.footer .brand .tag { color: var(--slate-400); }
.footer p.about { font-size: 13.5px; line-height: 1.6; margin-top: 18px; color: #cbd5e1; }
.footer .contacts li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.footer .contacts svg { color: var(--wh-green); margin-top: 2px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; font-size: 12px; color: var(--slate-400); display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap; }

/* WhatsApp floating */
.wa-float { position: fixed; bottom: 22px; right: 22px; z-index: 40; width: 56px; height: 56px; border-radius: 50%; background: var(--wh-green); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 28px rgba(91,186,63,.4); transition: transform .15s; }
.wa-float:hover { transform: scale(1.06); background: var(--wh-green-dark); }

/* Forms */
.input, .textarea, .select { width: 100%; padding: 10px 14px; border: 1px solid var(--slate-200); border-radius: 10px; font-family: inherit; font-size: 14px; background: #fff; transition: border-color .15s, box-shadow .15s; }
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--wh-blue); box-shadow: 0 0 0 3px rgba(30,120,200,.15); }
.textarea { resize: vertical; min-height: 110px; }
.label { font-size: 14px; font-weight: 500; color: var(--slate-700); display: block; margin-bottom: 6px; }

/* Packages page filters */
.filters { display: flex; gap: 10px; flex-wrap: wrap; max-width: 700px; margin-top: 28px; }
.search { position: relative; flex: 1; min-width: 220px; }
.search svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--slate-400); width: 16px; height: 16px; }
.search .input { padding-left: 38px; height: 42px; }
.select { height: 42px; padding-right: 30px; }

/* Package detail */
.pkg-hero { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.pkg-hero img { width: 100%; height: 320px; object-fit: cover; border-radius: 22px; box-shadow: 0 18px 40px rgba(15,58,107,.15); }
.pkg-meta { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; max-width: 420px; margin-top: 22px; }
.pkg-meta .item { background: #fff; border: 1px solid var(--slate-100); border-radius: 12px; padding: 12px; text-align: center; }
.pkg-meta .item svg { display: inline-block; }
.pkg-meta .item div { font-size: 12px; color: var(--slate-500); margin-top: 4px; }
.tests-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 24px; }
.test-item { display: flex; gap: 10px; align-items: flex-start; background: #fff; border: 1px solid var(--slate-100); border-radius: 12px; padding: 14px; font-size: 14px; color: var(--slate-700); }
.test-item svg { color: var(--wh-green-dark); margin-top: 2px; flex-shrink: 0; }

.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--wh-blue); font-weight: 600; font-size: 14px; }
.back-link:hover { gap: 10px; }

/* Service stack section */
.service-row { display: grid; gap: 28px; grid-template-columns: 1fr; align-items: center; margin-bottom: 56px; }
.service-row:last-child { margin-bottom: 0; }
.service-row img { width: 100%; height: 280px; object-fit: cover; border-radius: 22px; box-shadow: 0 18px 40px rgba(15,58,107,.15); }
.service-row .ico { width: 48px; height: 48px; border-radius: 14px; background: var(--wh-blue-soft); color: var(--wh-blue); display: grid; place-items: center; }
.service-row ul { margin-top: 16px; display: grid; gap: 8px; }
.service-row ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--slate-700); font-size: 15px; }
.service-row ul li svg { color: var(--wh-green-dark); margin-top: 3px; flex-shrink: 0; }

/* Contact */
.contact-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
.info-card { background: #fff; border: 1px solid var(--slate-100); border-radius: 18px; padding: 20px; display: flex; gap: 14px; align-items: flex-start; }
.info-card .ico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; flex-shrink: 0; }
.info-card .ico.blue { background: var(--wh-blue-soft); color: var(--wh-blue); }
.info-card .ico.green { background: var(--wh-green-soft); color: var(--wh-green-dark); }
.info-card h4 { font-size: 16px; }
.info-card a, .info-card p { color: var(--slate-600); margin-top: 4px; font-size: 14px; word-break: break-word; }
.form-card { background: #fff; border: 1px solid var(--slate-100); border-radius: 22px; padding: 28px; box-shadow: 0 4px 18px rgba(15,58,107,.05); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }

/* About */
.mv-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.mv-card { background: #fff; border: 1px solid var(--slate-100); border-radius: 22px; padding: 26px; box-shadow: 0 4px 18px rgba(15,58,107,.04); }
.mv-card .ico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; }
.mv-card .ico.blue { background: var(--wh-blue-soft); color: var(--wh-blue); }
.mv-card .ico.green { background: var(--wh-green-soft); color: var(--wh-green-dark); }
.mv-card h3 { font-size: 20px; margin-top: 14px; }
.mv-card p { color: var(--slate-600); margin-top: 10px; font-size: 15px; line-height: 1.6; }
.commit-box { background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.05); border-radius: 16px; width: 56px; height: 56px; display: grid; place-items: center; margin: 0 auto; color: var(--wh-blue); }

/* Utility */
.hidden { display: none !important; }
.iframe-wrap { border-radius: 22px; overflow: hidden; border: 1px solid var(--slate-100); box-shadow: 0 4px 18px rgba(15,58,107,.05); }
.iframe-wrap iframe { display: block; width: 100%; height: 340px; border: 0; }

/* Animations */
@keyframes wh-fade-up { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: wh-fade-up .6s ease-out both; }

/* OHC supplies grid — 2 cols on desktop */
@media (min-width: 900px){
  .ohc-supplies-grid { grid-template-columns: 1fr 1fr !important; }
}

/* ===== Clients marquee ===== */
.clients-section { padding: 56px 0 24px; background: #fff; }
.clients-head { text-align: center; max-width: 720px; margin: 0 auto 32px; padding: 0 16px; }
.marquee { position: relative; overflow: hidden; padding: 12px 0; mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%); }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: wh-marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.client-logo { flex: 0 0 auto; height: 70px; width: 170px; background: #fff; border: 1px solid var(--slate-100); border-radius: 14px; display: grid; place-items: center; padding: 12px 18px; box-shadow: 0 1px 3px rgba(15,58,107,.04); transition: transform .2s, box-shadow .2s; }
.client-logo:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(15,58,107,.08); }
.client-logo img { max-height: 46px; max-width: 130px; width: auto; height: auto; object-fit: contain; filter: grayscale(100%); opacity: .75; transition: filter .2s, opacity .2s; }
.client-logo:hover img { filter: grayscale(0); opacity: 1; }
@keyframes wh-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 640px){
  .client-logo { height: 60px; width: 140px; padding: 10px 14px; }
  .marquee-track { gap: 24px; animation-duration: 26s; }
}

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .cards, .tests-grid, .form-row { grid-template-columns: 1fr 1fr; }
  .qlinks { grid-template-columns: repeat(4, 1fr); }
  .qlinks a { border-right: 1px solid var(--slate-100); border-bottom: none; }
  .qlinks a:last-child { border-right: none; }
  .mv-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .h1 { font-size: 46px; }
  .h2 { font-size: 36px; }
  .cta-strip { display: flex; justify-content: space-between; align-items: center; padding: 44px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .pkg-hero { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 1fr 1fr; }
  .service-row.reverse > div:first-child { order: 2; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .tests-grid { grid-template-columns: 1fr 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-btn { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: repeat(4, 1fr); }
  .pkgs-cards { grid-template-columns: 1fr 1fr 1fr; }
  .h1 { font-size: 56px; }
  .section { padding: 88px 0; }
}
