/* ==========================================================================
   Bittu Critical Care Ambulance Service — Master Stylesheet
   ========================================================================== */

:root {
  --brand-red:        #E63946;
  --brand-red-dark:   #C92A37;
  --brand-red-soft:   #FDECEE;
  --brand-navy:       #1D3557;
  --brand-navy-dark:  #0B1B2B;
  --brand-light:      #F1FAEE;
  --brand-cream:      #FFF8F0;
  --brand-gold:       #FFB703;
  --success:          #06A77D;
  --text-1:           #0B1B2B;
  --text-2:           #4B5867;
  --text-3:           #8A95A3;
  --line:             #E5E9EF;
  --bg:               #FFFFFF;
  --bg-soft:          #F7F9FC;

  --shadow-sm:        0 2px 8px rgba(11, 27, 43, 0.06);
  --shadow:           0 8px 28px rgba(11, 27, 43, 0.10);
  --shadow-lg:        0 18px 50px rgba(11, 27, 43, 0.16);

  --radius:           14px;
  --radius-sm:        8px;
  --radius-lg:        22px;

  --t-fast:           150ms ease;
  --t:                280ms cubic-bezier(.2,.8,.2,1);

  --container:        1240px;

  --font-head:        'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body:        'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ===== Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-1);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--brand-red); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--brand-red-dark); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin: 0 0 0.5em;
  line-height: 1.18;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p  { margin: 0 0 1em; color: var(--text-2); }

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 640px) { .container { padding-inline: 18px; } }

/* ===== Section + headers ===== */
section { padding: 96px 0; position: relative; }
@media (max-width: 768px) { section { padding: 64px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 0 0 rgba(230,57,70,.6);
  animation: dot-pulse 1.6s infinite;
}
@keyframes dot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(230,57,70,.6); }
  70%{ box-shadow: 0 0 0 12px rgba(230,57,70,0); }
  100%{ box-shadow: 0 0 0 0 rgba(230,57,70,0); }
}
.section-title { max-width: 760px; }
.section-title .lede { font-size: 17px; color: var(--text-2); }
.section-title.center { margin: 0 auto; text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(230,57,70,.28);
}
.btn-primary:hover { background: var(--brand-red-dark); color: #fff; box-shadow: 0 12px 30px rgba(230,57,70,.36); }
.btn-secondary {
  background: var(--brand-navy);
  color: #fff;
}
.btn-secondary:hover { background: var(--brand-navy-dark); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--brand-navy);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--brand-navy); color: var(--brand-navy); }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1ebe57; color: #fff; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ===== Top utility bar ===== */
.topbar {
  background: var(--brand-navy-dark);
  color: #cbd5e1;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #cbd5e1; }
.topbar a:hover { color: #fff; }
.topbar .left, .topbar .right { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.topbar .pill {
  background: var(--brand-red);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
/* Updated nav-wrap to grid layout for horizontal logo */
.nav-wrap {
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 12px 0 !important;
  gap: 24px;
}

/* Horizontal logo brand (aspect ~2.67:1) */
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo img {
  height: 64px;
  width: auto;
  display: block;
  transition: transform var(--t-fast);
}
.brand-logo:hover img { transform: translateY(-1px); }
@media (max-width: 1024px) { .brand-logo img { height: 52px; } }
@media (max-width: 540px)  { .brand-logo img { height: 44px; } }

/* Legacy brand styles kept harmless (unused now) */
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text-1); }

/* Centered nav with pill links */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav a {
  color: var(--text-1);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 999px;
  position: relative;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav a:hover { color: var(--brand-red); background: var(--brand-red-soft); }
.nav a.active { color: var(--brand-red); background: var(--brand-red-soft); }
.nav a.active::before {
  content: '';
  position: absolute;
  left: 50%; bottom: -6px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand-red);
  transform: translateX(-50%);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}
.nav-cta .btn-icon-only {
  width: 44px; height: 44px;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: transparent; border: 0; padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 26px; height: 2.5px;
  background: var(--brand-navy); border-radius: 2px; margin: 5px 0;
  transition: transform var(--t), opacity var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1024px) {
  /* Mobile/tablet: logo left, WhatsApp + menu right, all on one row */
  .nav-wrap {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    grid-template-columns: none !important;
  }
  .brand-logo { order: 1; flex: 0 0 auto; }
  .nav-cta {
    order: 2;
    flex: 0 0 auto;
    justify-self: auto;
    margin-left: auto;
    gap: 8px;
  }
  .nav-cta .btn:not(.btn-icon-only) { display: none; }
  .nav-toggle { display: block; }
  .nav {
    order: 3;
    flex-basis: 100%;
    width: 100%;
    grid-column: auto;
    flex-direction: column;
    align-items: stretch;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t);
    gap: 0;
  }
  .site-header.open .nav {
    max-height: 600px;
    padding-top: 12px;
    padding-bottom: 8px;
  }
  .nav a { padding: 14px 18px; border-radius: 10px; text-align: left; }
  .nav a.active::before { display: none; }

@media (max-width: 540px) {
  .nav-cta .btn-icon-only { width: 40px; height: 40px; font-size: 14px; }
}

/* Footer logo (white-text variant for dark bg, horizontal) */
.foot-brand-logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 14px;
}
.foot-brand-logo img {
  height: 64px;
  width: auto;
  display: block;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(230,57,70,.08), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(29,53,87,.08), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  padding: 60px 0 100px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 36px 0 70px; }
}
.hero h1 strong {
  background: linear-gradient(120deg, var(--brand-red), var(--brand-red-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lede {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 26px;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.trust-row {
  display: flex; gap: 22px; flex-wrap: wrap; align-items: center;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.trust-row .stat strong {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 22px; color: var(--brand-navy); line-height: 1;
}
.trust-row .stat span { font-size: 13px; color: var(--text-3); }

/* Hero animation panel */
.hero-anim {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 560px;
  justify-self: end;
}
@media (max-width: 980px) { .hero-anim { justify-self: center; } }
.hero-anim svg { width: 100%; height: 100%; display: block; }

/* ===== Quick service strip ===== */
.quick-strip {
  background: var(--brand-navy);
  color: #fff;
  padding: 22px 0;
}
.quick-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 880px) { .quick-strip .container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .quick-strip .container { grid-template-columns: 1fr; } }
.quick-item { display: flex; align-items: center; gap: 14px; }
.quick-item .ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: var(--brand-gold);
  font-size: 20px;
}
.quick-item small { display: block; color: #94a4b8; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.quick-item strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 15px; }

/* ===== Service cards ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 980px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .service-grid { grid-template-columns: 1fr; } }

.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content:''; position:absolute; left:0; top:0; height:3px; width:0;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-gold));
  transition: width var(--t);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::before { width: 100%; }
.svc-icon {
  width: 64px; height: 64px;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  border-radius: 16px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  position: relative;
  transition: background var(--t);
}
.svc-card:hover .svc-icon { background: var(--brand-red); color: #fff; }
.svc-icon svg { width: 32px; height: 32px; transition: transform var(--t); }
.svc-card:hover .svc-icon svg { transform: scale(1.1); }
.svc-card h3 { font-size: 19px; margin-bottom: 8px; }
.svc-card p { font-size: 14.5px; margin-bottom: 12px; }
.svc-card .more {
  font-weight: 700; color: var(--brand-red); font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
.svc-card .more svg { width: 14px; transition: transform var(--t-fast); }
.svc-card:hover .more svg { transform: translateX(4px); }

/* ===== Fleet showcase ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
  margin-top: 36px;
}
.fleet-grid .tile { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.fleet-grid .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
.fleet-grid .tile:hover img { transform: scale(1.06); }
.fleet-grid .tile::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 50%;
  background: linear-gradient(180deg, transparent, rgba(11,27,43,.6));
}
.fleet-grid .tile .cap {
  position: absolute; bottom: 14px; left: 16px; right: 16px; z-index: 1;
  color: #fff; font-weight: 700; font-size: 14px; text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.fleet-grid .big   { grid-row: 1 / span 2; }
@media (max-width: 880px) {
  .fleet-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); }
  .fleet-grid .big { grid-row: 1 / span 1; grid-column: 1 / span 2; }
}

/* ===== Areas ===== */
.areas {
  background: var(--bg-soft);
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.area-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-1);
  transition: transform var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.area-chip:hover { border-color: var(--brand-red); color: var(--brand-red); transform: translateY(-2px); }
.area-chip svg { width: 16px; color: var(--brand-red); flex-shrink: 0; }

.areas .pan-india {
  margin-top: 22px;
  padding: 22px 26px;
  background: linear-gradient(120deg, var(--brand-navy), var(--brand-navy-dark));
  color: #fff;
  border-radius: var(--radius);
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  justify-content: space-between;
}
.areas .pan-india h3 { color: #fff; margin: 0 0 4px; font-size: 19px; }
.areas .pan-india p { color: #c7d2dc; margin: 0; font-size: 14.5px; }

/* ===== Stats ===== */
.stats {
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-navy-dark));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 80% 10%, rgba(230,57,70,.18), transparent 60%);
}
.stats h2 { color: #fff; }
.stats p  { color: #c7d2dc; }
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 36px; position: relative;
}
@media (max-width: 880px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.stat-card .num {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brand-gold);
  line-height: 1;
}
.stat-card .lbl {
  display: block;
  margin-top: 8px;
  color: #cbd5e1;
  font-size: 14px;
  letter-spacing: .04em;
}

/* ===== About story (3-step SVG) ===== */
.story-wrap {
  margin-top: 42px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.story-wrap svg { width: 100%; height: auto; max-height: 320px; }

.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 14px; }
@media (max-width: 600px) { .feature-list { grid-template-columns: 1fr; } }
.feature-list li {
  list-style: none;
  display: flex; gap: 12px; align-items: flex-start;
  font-weight: 500;
  color: var(--text-1);
  font-size: 14.5px;
}
.feature-list .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--brand-red);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px;
  margin-top: 2px;
}

/* ===== Two-col layout (about/services details) ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 36px; } }
.two-col img.media { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ===== CTA strip ===== */
.cta-strip {
  background: linear-gradient(120deg, var(--brand-red), var(--brand-red-dark));
  color: #fff;
  text-align: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before, .cta-strip::after {
  content:''; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.cta-strip::before { width: 280px; height: 280px; top: -120px; left: -80px; }
.cta-strip::after  { width: 220px; height: 220px; bottom: -110px; right: -60px; }
.cta-strip h2 { color: #fff; margin-bottom: 8px; }
.cta-strip p  { color: rgba(255,255,255,.92); max-width: 640px; margin: 0 auto 20px; }
.cta-strip .btn { background: #fff; color: var(--brand-red); }
.cta-strip .btn:hover { background: var(--brand-cream); color: var(--brand-red-dark); }
.cta-strip .btn-whatsapp { background: #25D366; color: #fff; }
.cta-strip .btn-whatsapp:hover { background: #1ebe57; }

/* ===== Page banner (sub-pages) ===== */
.page-banner {
  background:
    linear-gradient(120deg, rgba(11,27,43,.85), rgba(29,53,87,.78)),
    url('../images/bittu/hero-mountain-front.jpg') center/cover no-repeat;
  color: #fff;
  padding: 110px 0 90px;
  text-align: center;
  position: relative;
}
.page-banner h1 { color: #fff; margin: 0 0 8px; }
.page-banner .crumbs { color: #c7d2dc; font-size: 14px; }
.page-banner .crumbs a { color: var(--brand-gold); }

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 24px;
}
@media (max-width: 480px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; gap: 14px; align-items: flex-start;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  text-decoration: none;
  color: inherit;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.contact-card .ic {
  width: 46px; height: 46px;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  border-radius: 12px;
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 18px;
}
.contact-card small { display: block; color: var(--text-3); font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; }
.contact-card strong { display: block; font-family: var(--font-head); font-weight: 700; color: var(--text-1); font-size: 16.5px; margin-top: 2px; }

.map-frame {
  width: 100%; height: 360px; border: 0;
  border-radius: var(--radius); margin-top: 8px; box-shadow: var(--shadow-sm);
}

/* Form */
.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.form h3 { margin: 0 0 16px; }
.field { margin-bottom: 14px; }
.field label { display:block; font-size: 13px; font-weight: 600; color: var(--text-1); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: #fff;
  font: inherit;
  color: var(--text-1);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 4px rgba(230,57,70,.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.form .btn { width: 100%; justify-content: center; }
.form .hp { position: absolute; left: -9999px; }
.form-msg { margin-top: 12px; padding: 10px 14px; border-radius: 8px; font-size: 14px; display: none; }
.form-msg.ok  { background: #E6F7EE; color: #06743F; display: block; }
.form-msg.err { background: #FDECEE; color: #9b1f2b; display: block; }

/* ===== Footer ===== */
.site-footer {
  background: var(--brand-navy-dark);
  color: #c7d2dc;
  padding: 70px 0 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: #fff; font-family: var(--font-head); font-size: 15px;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px;
}
.site-footer a { color: #c7d2dc; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; font-size: 14.5px; }
.site-footer .brand-text strong { color: #fff; }
.site-footer .brand-text span { color: #94a4b8; }
.site-footer p { color: #94a4b8; font-size: 14px; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  color: #fff;
  transition: background var(--t-fast), transform var(--t-fast);
}
.socials a:hover { background: var(--brand-red); transform: translateY(-2px); }
.foot-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  color: #94a4b8;
  font-size: 13px;
}

/* ===== ElySpace credit (hard-coded — do not remove) ===== */
.credit {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center;
  gap: 6px;
  color: #94a4b8;
  font-size: 13px;
  pointer-events: auto !important;
}
.credit a {
  color: #FFB703 !important;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,183,3,.5);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.credit a:hover {
  color: #FFD166 !important;
  border-bottom-color: rgba(255,209,102,.9);
}
.credit::before { content: none; }

/* ===== Sticky FAB (mobile) ===== */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 200;
  display: flex; flex-direction: column; gap: 12px;
}
.fab a {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-size: 22px;
  box-shadow: var(--shadow);
  transition: transform var(--t-fast);
}
.fab a:hover { transform: scale(1.08); color: #fff; }
.fab .call  { background: var(--brand-red); animation: ring 2.4s infinite; }
.fab .wapp  { background: #25D366; }
@keyframes ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,57,70,.6), var(--shadow); }
  50%      { box-shadow: 0 0 0 14px rgba(230,57,70,0), var(--shadow); }
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d-1 { transition-delay: .08s; }
.reveal-d-2 { transition-delay: .16s; }
.reveal-d-3 { transition-delay: .24s; }
.reveal-d-4 { transition-delay: .32s; }

/* ===== Decorative ECG line divider ===== */
.ecg-divider { width: 100%; max-width: 360px; height: 36px; opacity: .8; }
.ecg-divider path {
  stroke: var(--brand-red);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: ecg-draw 2.6s ease-in-out infinite;
}
@keyframes ecg-draw {
  0%   { stroke-dashoffset: 1000; }
  60%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -1000; }
}

/* ===== Hero SVG specifics ===== */
.hero-anim .road { stroke-dasharray: 8 12; animation: road-dash 1.4s linear infinite; }
@keyframes road-dash { to { stroke-dashoffset: -40; } }

.hero-anim .ambulance { animation: amb-bob 3s ease-in-out infinite; transform-origin: center; }
@keyframes amb-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

.hero-anim .siren-blue, .hero-anim .siren-red {
  transform-origin: center;
  animation: siren 1.2s linear infinite;
}
.hero-anim .siren-red { animation-delay: .6s; }
@keyframes siren {
  0%, 49%   { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.hero-anim .signal-wave {
  transform-origin: center;
  animation: wave-pulse 1.8s ease-out infinite;
  opacity: 0;
}
.hero-anim .signal-wave.w2 { animation-delay: .4s; }
.hero-anim .signal-wave.w3 { animation-delay: .8s; }
@keyframes wave-pulse {
  0%   { opacity: .65; transform: scale(.4); }
  100% { opacity: 0;   transform: scale(1.6); }
}

.hero-anim .ecg-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: hero-ecg 3s linear infinite;
}
@keyframes hero-ecg {
  0%   { stroke-dashoffset: 600; }
  100% { stroke-dashoffset: -600; }
}

/* ===== Story SVG specifics (about page) ===== */
.story-svg .truck { animation: truck-roll 4s ease-in-out infinite; transform-origin: center; }
@keyframes truck-roll {
  0%   { transform: translateX(-12px); }
  50%  { transform: translateX(12px); }
  100% { transform: translateX(-12px); }
}
.story-svg .wheel { transform-origin: center; transform-box: fill-box; animation: spin 1.2s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.story-svg .heart { transform-origin: center; transform-box: fill-box; animation: beat 1.4s ease-in-out infinite; }
@keyframes beat {
  0%, 100% { transform: scale(1); }
  20%      { transform: scale(1.15); }
  40%      { transform: scale(.95); }
  60%      { transform: scale(1.08); }
}

.story-svg .arrow {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: dash-flow 2s linear infinite;
}
@keyframes dash-flow { to { stroke-dashoffset: -80; } }

/* ===== Helpers ===== */
.text-red { color: var(--brand-red); }
.text-navy { color: var(--brand-navy); }
.muted { color: var(--text-3); }
.center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 12px !important; }
.mt-2 { margin-top: 24px !important; }
.mb-0 { margin-bottom: 0 !important; }

/* ============================================================ */
/* ===== HERO PHOTO (circular SANJEEVANI hero image) ========== */
/* ============================================================ */
.hero-photo {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 1;
  justify-self: end;
  margin: 8px auto 0;
}
@media (max-width: 980px) { .hero-photo { justify-self: center; max-width: 460px; } }

.hero-photo-frame {
  position: absolute;
  inset: 4%;
  z-index: 2;
  filter: drop-shadow(0 30px 50px rgba(11, 27, 43, .25));
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Pulsing rings around the circle (image already has its own border, so these ripple beyond it) */
.hero-pulse {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  border: 2px solid var(--brand-red);
  opacity: 0;
  z-index: 1;
  animation: hero-ring 3s cubic-bezier(.2,.8,.2,1) infinite;
}
.hero-pulse.hp2 { animation-delay: 1s; }
.hero-pulse.hp3 { animation-delay: 2s; }
@keyframes hero-ring {
  0%   { transform: scale(1);    opacity: .55; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* Floating badges */
.hero-rating-badge {
  position: absolute;
  top: 12%;
  left: -8px;
  z-index: 4;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 36px -8px rgba(11, 27, 43, .3);
  animation: float-y 4s ease-in-out infinite;
}
.hero-rating-badge .stars {
  color: var(--brand-gold);
  font-size: 22px;
  display: grid; place-items: center;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #FFF7D6, #FFEDA8);
  border-radius: 12px;
}
.hero-rating-badge strong { display: block; font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--brand-navy-dark); line-height: 1; }
.hero-rating-badge small { display: block; font-size: 11.5px; color: var(--text-3); margin-top: 2px; letter-spacing: .04em; }

.hero-years-badge {
  position: absolute;
  bottom: 12%;
  right: -10px;
  z-index: 4;
  background: var(--brand-red);
  color: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  text-align: center;
  box-shadow: 0 16px 36px -10px rgba(230, 57, 70, .55);
  animation: float-y 5s ease-in-out infinite reverse;
}
.hero-years-badge strong { display: block; font-family: var(--font-head); font-size: 28px; font-weight: 800; line-height: 1; }
.hero-years-badge small { display: block; font-size: 9.5px; letter-spacing: .14em; margin-top: 4px; opacity: .92; }

.hero-call-badge {
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  z-index: 4;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: #fff;
  display: grid; place-items: center;
  font-size: 22px;
  box-shadow: 0 12px 24px rgba(230, 57, 70, .42);
  animation: ring 2.4s infinite;
}

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

.hero-ecg {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -16px;
  width: 84%;
  height: 36px;
  z-index: 5;
  background: #fff;
  border-radius: 999px;
  padding: 4px 10px;
  box-shadow: 0 10px 20px rgba(11, 27, 43, .12);
}
.hero-ecg .ecg-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: hero-ecg 3.5s linear infinite;
}
@keyframes hero-ecg {
  0%   { stroke-dashoffset: 600; }
  100% { stroke-dashoffset: -600; }
}

/* Mobile tweaks */
@media (max-width: 540px) {
  .hero-rating-badge { padding: 10px 12px 10px 10px; left: -4px; }
  .hero-rating-badge .stars { width: 36px; height: 36px; font-size: 18px; }
  .hero-rating-badge strong { font-size: 18px; }
  .hero-years-badge { padding: 10px 14px; right: -4px; }
  .hero-years-badge strong { font-size: 22px; }
  .hero-call-badge { width: 46px; height: 46px; font-size: 18px; right: -4px; }
}

/* ============================================================ */
/* ===== CLICKABLE FLEET TILES + LIGHTBOX GALLERY ============= */
/* ============================================================ */
.fleet-grid .tile {
  cursor: pointer;
  position: relative;
}
.fleet-grid .tile::before {
  content: '\f00e'; /* fa magnifying-glass-plus */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.95);
  color: var(--brand-red);
  border-radius: 50%;
  font-size: 14px;
  opacity: 0;
  transform: scale(.8);
  transition: opacity var(--t), transform var(--t);
  z-index: 2;
  pointer-events: none;
}
.fleet-grid .tile:hover::before { opacity: 1; transform: scale(1); }

.fleet-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 18px;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  color: var(--brand-navy);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--t-fast);
}
.fleet-more-link:hover {
  background: var(--brand-navy);
  color: #fff;
  border-color: var(--brand-navy);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(11, 27, 43, .94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--t);
}
.lightbox.open { display: flex; opacity: 1; }

.lightbox-stage {
  position: relative;
  width: min(96vw, 1100px);
  max-height: 85vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  object-fit: contain;
  background: #000;
  user-select: none;
  animation: lb-pop .3s cubic-bezier(.2,.8,.2,1);
}
@keyframes lb-pop {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-caption {
  position: absolute;
  left: 0; right: 0; bottom: -44px;
  text-align: center;
  color: rgba(255,255,255,.85);
  font-size: 14px;
}
.lightbox-counter {
  position: absolute;
  top: -34px; left: 0;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  letter-spacing: .04em;
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 0;
  font-size: 20px;
  display: grid; place-items: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background var(--t-fast), transform var(--t-fast);
}
.lightbox-btn:hover { background: rgba(255,255,255,.22); transform: translateY(-50%) scale(1.05); }
.lightbox-prev { left: -72px; }
.lightbox-next { right: -72px; }

.lightbox-close {
  position: fixed;
  top: 22px; right: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 0;
  font-size: 18px;
  display: grid; place-items: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  z-index: 1;
}
.lightbox-close:hover { background: var(--brand-red); }

@media (max-width: 900px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-btn { width: 44px; height: 44px; font-size: 16px; background: rgba(11,27,43,.6); }
}

/* ============================================================ */
/* ===== BLOG ================================================== */
/* ============================================================ */

/* Welcome banner — large pink-tinted card */
.blog-welcome {
  position: relative;
  background: linear-gradient(135deg, #FFF5F0 0%, #FDECEE 50%, #FFF8F0 100%);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}
.blog-welcome-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 320px;
}
.blog-welcome-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 65%;
  display: block;
}
.blog-welcome-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(11,27,43,.18), rgba(11,27,43,.45));
  text-align: center;
  padding: 30px;
  color: #fff;
}
.blog-welcome-overlay h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-shadow: 0 4px 20px rgba(0,0,0,.4);
  margin-bottom: 16px;
}
.blog-welcome-overlay .btn {
  background: #fff;
  color: var(--brand-red);
  font-size: 13px;
  padding: 11px 22px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}
.blog-welcome-overlay .btn:hover { background: var(--brand-red); color: #fff; }

/* 3 category cards row */
.blog-cat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
@media (max-width: 760px) { .blog-cat-row { grid-template-columns: 1fr; gap: 14px; } }

.blog-cat-card {
  position: relative;
  height: 150px;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  display: block;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.blog-cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-cat-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.blog-cat-card:hover img { transform: scale(1.06); }
.blog-cat-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,27,43,.5), rgba(11,27,43,.15));
}
.blog-cat-card .label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: rgba(11,27,43,.92);
  color: #fff;
  padding: 8px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background var(--t-fast);
}
.blog-cat-card:hover .label { background: var(--brand-red); }
.blog-cat-card .label i { font-size: 14px; }

/* Blog layout: posts (left) + sidebar (right) */
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
  gap: 40px;
  margin-top: 8px;
}
@media (max-width: 980px) { .blog-layout { grid-template-columns: 1fr; gap: 28px; } }

/* Post list item */
.post-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 22px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.post-item:first-child { padding-top: 0; }
.post-item:last-child  { border-bottom: 0; }
@media (max-width: 600px) { .post-item { grid-template-columns: 1fr; } }

.post-item .post-thumb {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 5 / 4;
  position: relative;
}
.post-item .post-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.post-item:hover .post-thumb img { transform: scale(1.05); }

.post-item h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.25;
}
.post-item h3 a { color: var(--text-1); text-decoration: none; }
.post-item h3 a:hover { color: var(--brand-red); }
.post-item .post-meta {
  font-size: 11.5px;
  color: var(--text-3);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}
.post-item .post-meta a { color: var(--text-3); }
.post-item .post-meta a:hover { color: var(--brand-red); }
.post-item .post-meta .sep { margin: 0 8px; opacity: .5; }
.post-item p {
  color: var(--text-2);
  font-size: 14.5px;
  margin: 0;
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
}
@media (max-width: 980px) { .blog-sidebar { position: static; } }

.sb-block {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.sb-block:first-child { padding-top: 0; }
.sb-block:last-child { border-bottom: 0; }
.sb-block h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: 18px;
  text-align: center;
}
.sb-block ul { list-style: none; padding: 0; margin: 0; }
.sb-block ul li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-2);
  text-align: center;
}
.sb-block ul li a {
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sb-block ul li a:hover { color: var(--brand-red); }
.sb-block ul li .count {
  color: var(--text-3);
  font-size: 12px;
}

.sb-about-img {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  display: block;
  border: 4px solid #fff;
  box-shadow: 0 8px 22px rgba(11, 27, 43, .12);
}
.sb-about-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  text-align: center;
  margin: 0;
}

.sb-search {
  display: flex;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 6px;
}
.sb-search input {
  flex: 1;
  border: 0;
  padding: 10px 16px;
  font: inherit;
  font-size: 13.5px;
  color: var(--text-1);
  background: transparent;
  outline: 0;
}
.sb-search button {
  background: var(--brand-navy);
  color: #fff;
  border: 0;
  padding: 0 20px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}
.sb-search button:hover { background: var(--brand-red); }

.sb-recent-list li {
  text-align: left !important;
  padding: 8px 0 !important;
  border-bottom: 1px solid var(--bg-soft);
}
.sb-recent-list li:last-child { border-bottom: 0; }
.sb-recent-list a {
  display: block !important;
  color: var(--text-1) !important;
  font-weight: 500;
}
.sb-recent-list a:hover { color: var(--brand-red) !important; }
.sb-recent-list .meta {
  display: block;
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 2px;
  letter-spacing: .04em;
}

/* Pagination */
.pagination-wrap { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--line); }
.pagination-wrap nav { display: flex; justify-content: center; gap: 6px; }
.pagination-wrap a, .pagination-wrap span {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  color: var(--text-2);
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.pagination-wrap a:hover { background: var(--brand-red); color: #fff; border-color: var(--brand-red); }
.pagination-wrap .active span, .pagination-wrap span[aria-current] {
  background: var(--brand-red); color: #fff; border-color: var(--brand-red);
}
.pagination-wrap .disabled span { opacity: .4; }

/* Single post */
.post-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.post-content {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--text-1);
}
.post-content h2 { font-size: 1.6rem; margin-top: 1.6em; margin-bottom: 0.6em; }
.post-content h3 { font-size: 1.3rem; margin-top: 1.4em; margin-bottom: 0.5em; }
.post-content p  { margin-bottom: 1.1em; color: var(--text-1); }
.post-content ul, .post-content ol { margin: 0 0 1.2em 1.5em; padding: 0; }
.post-content ul li, .post-content ol li { margin-bottom: .6em; line-height: 1.7; color: var(--text-1); }
.post-content blockquote {
  border-left: 4px solid var(--brand-red);
  padding: 12px 22px;
  margin: 1.5em 0;
  background: var(--brand-red-soft);
  font-style: italic;
  color: var(--brand-navy-dark);
  border-radius: 0 8px 8px 0;
  font-size: 17px;
}
.post-content img {
  border-radius: var(--radius);
  margin: 1.5em 0;
  max-width: 100%;
  height: auto;
}
.post-content a { color: var(--brand-red); text-decoration: underline; text-underline-offset: 3px; }

.post-share {
  display: flex; gap: 8px;
  padding: 18px 0 28px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  align-items: center;
}
.post-share strong { font-size: 13px; color: var(--text-3); letter-spacing: .12em; text-transform: uppercase; margin-right: 10px; }
.post-share a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
  color: var(--brand-navy);
  transition: all var(--t-fast);
}
.post-share a:hover { background: var(--brand-red); color: #fff; }

/* Print + reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
