/* First Aid CPR — medical / calm urgency theme */
:root {
  --teal: #0D9488;
  --teal-dark: #0F766E;
  --teal-soft: #CCFBF1;
  --teal-mid: #5EEAD4;
  --red: #DC2626;
  --red-soft: #FEE2E2;
  --ink: #0F172A;
  --muted: #64748B;
  --line: #E2E8F0;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --card: #FFFFFF;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 50px rgba(13, 148, 136, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 68px;
  --callbar-h: 64px;
  --max: 1120px;
  --font: "DM Sans", Inter, system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--callbar-h);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--teal); }
h1, h2, h3, h4 { line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 0.6rem; }
p { margin: 0 0 1rem; color: var(--muted); }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.section { padding: 4rem 0; }
.section--soft { background: var(--bg-soft); }
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem;
}
.section__title { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--ink); }
.section__lead { font-size: 1.05rem; max-width: 40rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.35rem; border-radius: 999px; border: 2px solid transparent;
  font: inherit; font-weight: 700; font-size: 0.95rem; cursor: pointer;
  text-decoration: none; transition: transform .15s, background .15s, color .15s, border-color .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn--primary { background: var(--teal); color: #fff; box-shadow: 0 8px 20px rgba(13,148,136,.28); }
.btn--primary:hover { background: var(--teal-dark); color: #fff; }
.btn--red { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(220,38,38,.25); }
.btn--red:hover { background: #B91C1C; color: #fff; }
.btn--ghost { background: #fff; color: var(--teal-dark); border-color: var(--teal-mid); }
.btn--ghost:hover { background: var(--teal-soft); color: var(--teal-dark); }
.btn--block { width: 100%; }
.btn--sm { padding: 0.65rem 1rem; font-size: 0.875rem; }

/* Sticky header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}
.header-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo img { height: 44px; width: auto; }
.nav { display: none; align-items: center; gap: 1.25rem; }
.nav a {
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.92rem;
}
.nav a:hover { color: var(--teal); }
.header-cta { display: none; }
.nav-toggle {
  width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line);
  background: #fff; display: grid; place-items: center; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--ink); margin: 3px 0;
  transition: .2s;
}
.nav-open .nav {
  display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: var(--header-h);
  background: #fff; padding: 1rem 1.25rem 1.25rem; border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow); gap: 0.85rem;
}
.nav-open .header-cta { display: inline-flex; margin-top: 0.25rem; }

@media (min-width: 880px) {
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #F0FDFA 0%, #FFFFFF 45%, #FEF2F2 100%);
  padding: 2.5rem 0 3.5rem;
}
.hero-grid {
  display: grid; gap: 2rem; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: #fff; border: 1px solid var(--line); color: var(--teal-dark);
  padding: 0.4rem 0.85rem; border-radius: 999px; font-size: 0.8rem; font-weight: 700;
  box-shadow: var(--shadow); margin-bottom: 1rem;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.1rem); margin-bottom: 1rem; color: var(--ink);
}
.hero h1 em { font-style: normal; color: var(--teal); }
.hero__lead { font-size: 1.1rem; max-width: 34rem; margin-bottom: 1.5rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.1rem; font-size: 0.88rem; color: var(--muted); font-weight: 600;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.hero__meta svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.hero-visual {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--teal-soft);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border-radius: 16px; padding: 0.9rem 1rem; display: flex; gap: 0.85rem; align-items: center;
  box-shadow: var(--shadow);
}
.hero-float__icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--red-soft);
  display: grid; place-items: center; color: var(--red); flex-shrink: 0;
}
.hero-float strong { display: block; color: var(--ink); font-size: 0.92rem; }
.hero-float span { font-size: 0.8rem; color: var(--muted); }

@media (min-width: 900px) {
  .hero { padding: 3.5rem 0 4.5rem; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}

/* Trust strip */
.trust {
  border-block: 1px solid var(--line); background: #fff; padding: 1.1rem 0;
}
.trust-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: center;
  font-size: 0.85rem; font-weight: 600; color: var(--muted); text-align: center;
}
.trust-row strong { color: var(--ink); }

/* Cards */
.cards { display: grid; gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 760px) { .cards { grid-template-columns: 1fr 1fr; } }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--teal-soft); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card__tag {
  display: inline-flex; width: fit-content; background: var(--teal-soft); color: var(--teal-dark);
  font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.65rem; border-radius: 999px; margin-bottom: 0.7rem;
}
.card__tag--red { background: var(--red-soft); color: var(--red); }
.card h3 { font-size: 1.25rem; }
.card p { flex: 1; }
.card__list { margin: 0.5rem 0 1.25rem; display: grid; gap: 0.45rem; }
.card__list li {
  position: relative; padding-left: 1.35rem; color: var(--ink); font-size: 0.95rem; font-weight: 500;
}
.card__list li::before {
  content: ""; position: absolute; left: 0; top: 0.45rem;
  width: 0.65rem; height: 0.65rem; border-radius: 50%;
  background: var(--teal); box-shadow: inset 0 0 0 3px var(--teal-soft);
}

/* Covered grid */
.covered {
  display: grid; gap: 1rem; margin-top: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .covered { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .covered { grid-template-columns: repeat(3, 1fr); } }
.covered-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.2rem 1.25rem; box-shadow: var(--shadow);
}
.covered-item__icon {
  width: 42px; height: 42px; border-radius: 12px; background: var(--teal-soft);
  color: var(--teal-dark); display: grid; place-items: center; margin-bottom: 0.85rem;
}
.covered-item h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.covered-item p { margin: 0; font-size: 0.92rem; }

/* Who / Why */
.split { display: grid; gap: 2rem; align-items: center; margin-top: 1.5rem; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.split__media {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 5/4; background: var(--teal-soft);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.check-list { display: grid; gap: 0.75rem; margin-top: 1.25rem; }
.check-list li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.9rem 1rem; color: var(--ink); font-weight: 560; font-weight: 600;
}
.check-list .tick {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal); color: #fff; display: grid; place-items: center; margin-top: 1px;
}
.why-grid { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width: 700px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; box-shadow: var(--shadow);
}
.why-card__num {
  font-size: 0.8rem; font-weight: 800; color: var(--red); letter-spacing: 0.04em; margin-bottom: 0.5rem;
}
.why-card h3 { font-size: 1.1rem; }
.why-card p { margin: 0; font-size: 0.95rem; }

/* FAQ */
.faq { margin-top: 1.5rem; display: grid; gap: 0.75rem; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.2rem 1rem; box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--ink); padding: 1rem 0;
  list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--teal); font-size: 1.4rem; font-weight: 500; line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: 1rem; margin: 0; }

/* Location + form */
.loc-grid { display: grid; gap: 1.5rem; margin-top: 1.75rem; }
@media (min-width: 900px) { .loc-grid { grid-template-columns: 1fr 1.05fr; align-items: start; } }
.map-wrap {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); min-height: 320px; background: var(--bg-soft);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.loc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; box-shadow: var(--shadow); margin-bottom: 1rem;
}
.loc-card h3 { font-size: 1.1rem; }
.loc-card p { margin-bottom: 0.4rem; }
.loc-card a { font-weight: 600; text-decoration: none; }
.loc-card a:hover { text-decoration: underline; }

.enquire-panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-lg);
}
.enquire-panel h2 { font-size: 1.45rem; }
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 560px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
.field label {
  display: block; font-size: 0.88rem; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem;
}
.req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: 0.8rem 0.95rem; font: inherit; color: var(--ink); background: var(--bg-soft);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,148,136,.18); background: #fff;
}
.form-note { font-size: 0.82rem; margin: 0.85rem 0 0; }

/* Footer */
.site-footer {
  background: #0F172A; color: #CBD5E1; padding: 3rem 0 5.5rem;
}
.site-footer h2, .site-footer h3 { color: #fff; font-size: 1.05rem; }
.site-footer p, .site-footer li { color: #94A3B8; font-size: 0.92rem; margin-bottom: 0.4rem; }
.site-footer a { color: #99F6E4; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid {
  display: grid; gap: 2rem;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.75rem; }
.footer-brand img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-legal { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid #1E293B; font-size: 0.8rem; color: #64748B; }

/* Mobile call bar */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
}
.callbar .btn { padding: 0.8rem 0.5rem; }
@media (min-width: 880px) {
  .callbar { display: none; }
  body { padding-bottom: 0; }
  .site-footer { padding-bottom: 3rem; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
