/* ============================================================
   Hero CPR & First Aid LLC — Shared Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --red:        #c0392b;
  --red-dark:   #922b21;
  --red-light:  #e74c3c;
  --navy:       #0d1b2a;
  --navy-mid:   #1a2d42;
  --white:      #ffffff;
  --off-white:  #f7f8fa;
  --light-gray: #e8eaed;
  --mid-gray:   #6c757d;
  --text:       #1f2d3d;
  --gold:       #f0a500;

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.10);
  --shadow-md: 0 6px 20px rgba(0,0,0,.14);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.18);

  --radius:    10px;
  --radius-lg: 18px;
  --transition: .25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ---------- Utility ---------- */
.container {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
}
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center { text-align: center; }
.tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.tag.gold { background: var(--gold); color: var(--navy); }

/* Section headings */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--mid-gray);
  max-width: 640px;
  margin: 0 auto 40px;
}

/* Divider */
.divider {
  width: 56px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 0 auto 20px;
}

/* CTA buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .5px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-mid); }

/* ---------- NAVBAR ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: var(--navy);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: .5px;
  line-height: 1.2;
}
.nav-logo .logo-icon {
  width: 46px;
  height: 46px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,.88);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  padding: 9px 20px !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 12px 0 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.85);
  padding: 12px 24px;
  font-weight: 600;
  letter-spacing: .5px;
  font-size: .95rem;
  transition: background var(--transition);
}
.mobile-nav a:hover { background: rgba(255,255,255,.08); color: var(--white); }

/* ---------- HERO SECTION ---------- */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, #1e3a5f 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(192,57,43,.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(240,165,0,.08) 0%, transparent 60%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 60px 0;
}
.hero-left .tag { margin-bottom: 18px; }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title span { color: var(--red-light); }
.hero-desc {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 30px;
  padding: 7px 15px;
  color: rgba(255,255,255,.85);
  font-size: .83rem;
  font-weight: 600;
}
.hero-badge i { color: var(--gold); font-size: .95rem; }

/* Hero right - floating cards */
.hero-right { display: flex; justify-content: center; align-items: center; }
.hero-card-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
}
.hero-main-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.hero-card-top {
  background: var(--red);
  padding: 22px 26px;
}
.hero-card-top h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-card-top p { color: rgba(255,255,255,.85); font-size: .88rem; margin-top: 4px; }
.hero-card-body { padding: 22px 26px; }
.course-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.course-item:last-child { border-bottom: none; }
.course-item i {
  width: 34px; height: 34px;
  background: rgba(192,57,43,.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red-light);
  font-size: .95rem;
  flex-shrink: 0;
}
.course-item span {
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 600;
}
.float-badge {
  position: absolute;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: .78rem;
  border-radius: 10px;
  padding: 8px 14px;
  box-shadow: var(--shadow-md);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.float-badge.top-right { top: -14px; right: -14px; }
.float-badge.bottom-left { bottom: -14px; left: -14px; }

/* ---------- STATS BAR ---------- */
#stats-bar {
  background: var(--red);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.stat-label {
  font-size: .82rem;
  opacity: .85;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ---------- SERVICES SECTION ---------- */
#services { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--light-gray);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-top {
  padding: 30px 28px 22px;
}
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(192,57,43,.35);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card p {
  color: var(--mid-gray);
  font-size: .93rem;
  line-height: 1.65;
}
.service-card-footer {
  border-top: 1px solid var(--light-gray);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: .85rem;
  font-weight: 700;
}
.service-badge {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: auto;
}
.service-badge.online  { background: #e3f2fd; color: #1565c0; }
.service-badge.blended { background: #e8f5e9; color: #2e7d32; }
.service-badge.inperson{ background: #fff3e0; color: #e65100; }

/* ---------- ABOUT SECTION ---------- */
#about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 440px;
  box-shadow: var(--shadow-lg);
}
.about-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--red);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-accent-2 {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  z-index: -1;
  opacity: .6;
}
.about-text .section-title { text-align: left; }
.about-text .divider { margin-left: 0; }
.about-text p {
  color: var(--mid-gray);
  margin-bottom: 18px;
  font-size: .97rem;
}
.about-features { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-feature i {
  color: var(--red);
  font-size: 1.15rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.about-feature strong { display: block; color: var(--text); margin-bottom: 2px; font-size: .95rem; }
.about-feature p { color: var(--mid-gray); font-size: .88rem; margin: 0; }
.discount-box {
  background: linear-gradient(135deg, #fff5f5, #ffe8e8);
  border: 1.5px solid rgba(192,57,43,.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}
.discount-box i { font-size: 1.6rem; color: var(--red); flex-shrink: 0; }
.discount-box strong { color: var(--text); font-size: .95rem; display: block; margin-bottom: 2px; }
.discount-box span { color: var(--mid-gray); font-size: .85rem; }

/* ---------- CERTIFICATIONS ---------- */
#certifications { background: var(--navy); }
.cert-inner { text-align: center; }
.cert-inner .section-title { color: var(--white); }
.cert-inner .section-sub { color: rgba(255,255,255,.65); }
.cert-inner .divider { background: var(--red); }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.cert-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px 20px;
  transition: background var(--transition), transform var(--transition);
}
.cert-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.cert-card i {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.cert-card h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cert-card p { color: rgba(255,255,255,.6); font-size: .82rem; line-height: 1.5; }

/* ---------- HOURS / CONTACT BAND ---------- */
#contact-band { background: var(--off-white); }
.contact-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hours-list { margin-top: 20px; }
.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: .95rem;
}
.hours-item:last-child { border-bottom: none; }
.hours-item .day { font-weight: 700; color: var(--text); }
.hours-item .time { color: var(--mid-gray); }
.hours-item .closed { color: var(--red); font-weight: 600; }
.contact-info-list { margin-top: 20px; display: flex; flex-direction: column; gap: 18px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-item .ci-icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(192,57,43,.3);
}
.contact-info-item strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--mid-gray); margin-bottom: 2px; }
.contact-info-item a, .contact-info-item span { font-size: 1rem; font-weight: 600; color: var(--text); }
.contact-info-item a:hover { color: var(--red); }

/* ---------- TESTIMONIALS ---------- */
#testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--light-gray);
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: .95rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p {
  color: var(--text);
  font-style: italic;
  font-size: .93rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.author-name { font-weight: 700; font-size: .9rem; color: var(--text); }
.author-role { font-size: .78rem; color: var(--mid-gray); }

/* ---------- CTA BANNER ---------- */
#cta-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  text-align: center;
  padding: 70px 0;
}
#cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 14px;
}
#cta-banner p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 34px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy);
  padding: 60px 0 0;
  color: rgba(255,255,255,.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .88rem;
}
.footer-contact-item i { color: var(--red-light); font-size: .9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover { color: var(--white); }
.veteran-tag {
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: .72rem;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 8px;
  letter-spacing: .5px;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e3a5f 100%);
  padding: 130px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(192,57,43,.15) 0%, transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 14px;
}
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: .83rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: .65rem; }

/* ---------- CONTACT PAGE ---------- */
.contact-form-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--text);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .85rem;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: .3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #2e7d32;
  font-weight: 600;
  margin-top: 14px;
  text-align: center;
}

/* ---------- ABOUT PAGE ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.value-card i {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 14px;
}
.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.value-card p { color: var(--mid-gray); font-size: .9rem; }

/* ---------- MEET THE OWNERS ---------- */
.owner-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 380px 1fr;
  margin-bottom: 40px;
  border: 1px solid var(--light-gray);
}
.owner-img-wrap {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 30px;
  flex-direction: column;
  gap: 20px;
}
.owner-avatar-lg {
  width: 140px; height: 140px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--white);
  border: 5px solid rgba(255,255,255,.15);
}
.owner-img-wrap .owner-name {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
}
.owner-img-wrap .owner-title {
  color: var(--gold);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.owner-body { padding: 40px; }
.owner-body p {
  color: var(--mid-gray);
  margin-bottom: 16px;
  font-size: .97rem;
  line-height: 1.75;
}
.owner-quals {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.qual-chip {
  background: #fff5f5;
  border: 1px solid rgba(192,57,43,.2);
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
}

/* ---------- UPDATES PAGE ---------- */
.updates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.update-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: transform var(--transition), box-shadow var(--transition);
}
.update-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.update-card-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.update-date {
  background: var(--red);
  border-radius: 8px;
  padding: 10px 14px;
  text-align: center;
  color: var(--white);
  flex-shrink: 0;
}
.update-date .month { font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; display: block; }
.update-date .day   { font-size: 1.5rem; font-weight: 900; line-height: 1; }
.update-card-header h3 { color: var(--white); font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; }
.update-card-body { padding: 24px; }
.update-card-body p { color: var(--mid-gray); font-size: .93rem; }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
.fade-up-d1 { animation-delay: .1s; }
.fade-up-d2 { animation-delay: .22s; }
.fade-up-d3 { animation-delay: .34s; }
.fade-up-d4 { animation-delay: .46s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner       { grid-template-columns: 1fr; }
  .hero-right       { display: none; }
  .about-inner      { grid-template-columns: 1fr; }
  .about-img-wrap   { display: none; }
  .services-grid    { grid-template-columns: 1fr 1fr; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .contact-band-inner { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr 1fr; }
  .values-grid        { grid-template-columns: 1fr 1fr; }
  .owner-card         { grid-template-columns: 1fr; }
  .owner-img-wrap     { padding: 36px; }
  .contact-grid       { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .updates-grid       { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links          { display: none; }
  .hamburger          { display: flex; }
  .services-grid      { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .cert-grid          { grid-template-columns: 1fr 1fr; }
  .values-grid        { grid-template-columns: 1fr; }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid        { grid-template-columns: 1fr; }
  .footer-bottom      { flex-direction: column; gap: 10px; text-align: center; }
  .hero-btns          { flex-direction: column; }
  .section-pad        { padding: 60px 0; }
}
