/* =============================================
   LAMORA HEALTHCARE — MAIN STYLESHEET
   Warm & Approachable | Brand: Blue + Red
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --blue:       #1B4F8A;
  --blue-dark:  #143d6e;
  --blue-light: #e8f0f9;
  --blue-mid:   #d0e2f4;
  --red:        #C0392B;
  --red-light:  #fdf0ee;
  --warm-white: #fdfaf7;
  --cream:      #f7f2ec;
  --sand:       #ede8e0;
  --text:       #2c2c2c;
  --text-mid:   #555555;
  --text-light: #7a7a7a;
  --border:     #e0dbd3;
  --shadow:     0 4px 24px rgba(27,79,138,0.10);
  --shadow-sm:  0 2px 10px rgba(27,79,138,0.07);
  --radius:     10px;
  --radius-lg:  18px;
  --transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  --font-head:  'Lora', Georgia, serif;
  --font-body:  'Source Sans 3', 'Helvetica Neue', sans-serif;
  --max-width:  1160px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--blue-dark); }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--text);
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

/* ---- LAYOUT UTILITIES ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }
.text-center { text-align: center; }
.text-blue { color: var(--blue); }
.text-red { color: var(--red); }
.bg-cream { background: var(--cream); }
.bg-blue { background: var(--blue); }
.bg-blue-light { background: var(--blue-light); }
.bg-warm { background: var(--warm-white); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  color: var(--blue-dark);
  margin-bottom: 16px;
}
.section-intro {
  font-size: 1.12rem;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.8;
}
.section-intro.centered { margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,79,138,0.25);
}
.btn-secondary {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-secondary:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--cream);
  color: var(--blue-dark);
  transform: translateY(-2px);
}
.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-red:hover {
  background: #a93226;
  border-color: #a93226;
  color: #fff;
  transform: translateY(-2px);
}

/* ---- HEADER / NAV ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.site-logo img { height: 52px; width: auto; object-fit: contain; display: block; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--blue);
  background: var(--blue-light);
}
.nav-item.has-dropdown .dropdown { display: none; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 210px;
  overflow: hidden;
  z-index: 100;
  padding-top: 8px;
  margin-top: -4px;
}
/* Invisible bridge between nav link and dropdown to prevent gap */
.nav-item.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-item { position: relative; }
.dropdown a {
  display: block;
  padding: 11px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.dropdown a:hover { background: var(--blue-light); color: var(--blue); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.header-phone svg { width: 16px; height: 16px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #2563a8 100%);
  color: #fff;
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.hero-label span { width: 6px; height: 6px; background: #7ec8a0; border-radius: 50%; display: inline-block; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.18;
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: #a8cff0; }
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.12rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.trust-badge svg { width: 16px; height: 16px; color: #7ec8a0; flex-shrink: 0; }
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(10px);
}
.hero-card h3 { color: #fff; margin-bottom: 20px; font-size: 1.2rem; }
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-stat {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}
.hero-stat .num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat .lbl { font-size: 0.8rem; color: rgba(255,255,255,0.7); font-weight: 500; line-height: 1.3; }

/* ---- SERVICE CARDS ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { color: var(--blue-dark); margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { font-size: 0.95rem; margin-bottom: 20px; }
.service-card .link-arrow {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  display: flex; align-items: center; gap: 6px;
}
.service-card .link-arrow:hover { gap: 10px; }

/* ---- WHY CHOOSE ---- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.why-item {
  display: flex; gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  align-items: flex-start;
  transition: var(--transition);
}
.why-item:hover { box-shadow: var(--shadow-sm); }
.why-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.why-icon svg { width: 22px; height: 22px; }
.why-item h4 { color: var(--blue-dark); margin-bottom: 4px; }
.why-item p { font-size: 0.9rem; margin: 0; }

/* ---- TEAM ---- */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; gap: 28px;
  align-items: flex-start;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); }
.team-avatar {
  width: 80px; height: 80px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue);
}
.team-card h3 { color: var(--blue-dark); margin-bottom: 4px; }
.team-card .role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.team-card p { font-size: 0.95rem; }
.cred-list { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.cred-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--blue);
}
.cred-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ---- INFO CARDS ---- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}
.info-card:hover { box-shadow: var(--shadow); }
.info-card .icon {
  width: 60px; height: 60px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--red);
}
.info-card .icon svg { width: 28px; height: 28px; }
.info-card h3 { color: var(--blue-dark); margin-bottom: 8px; font-size: 1.1rem; }
.info-card p { font-size: 0.92rem; }

/* ---- CQC STRIP ---- */
.cqc-strip {
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 48px 0;
  flex-wrap: wrap;
}
.cqc-strip .cqc-label {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-dark);
  min-width: 200px;
}
.cqc-details { display: flex; gap: 32px; flex-wrap: wrap; flex: 1; }
.cqc-detail { display: flex; flex-direction: column; gap: 2px; }
.cqc-detail .dt { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); }
.cqc-detail .dd { font-size: 0.95rem; font-weight: 600; color: var(--blue-dark); }

/* ---- PROCESS STEPS ---- */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 36px;
}
.step:last-child { padding-bottom: 0; }
.step::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--blue-mid);
}
.step:last-child::after { display: none; }
.step-num {
  width: 42px; height: 42px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.step-body h4 { color: var(--blue-dark); margin-bottom: 6px; }
.step-body p { font-size: 0.95rem; margin: 0; }

/* ---- CONTACT FORM ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,79,138,0.10);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-block {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.contact-block .ci-icon {
  width: 42px; height: 42px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff;
}
.contact-block .ci-icon svg { width: 20px; height: 20px; }
.contact-block h4 { color: var(--blue-dark); margin-bottom: 4px; font-size: 1rem; }
.contact-block p { font-size: 0.92rem; margin: 0; }
.contact-block a { color: var(--blue); font-weight: 600; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 64px 0 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; margin: 0; }

/* ---- BULLET LISTS ---- */
.feature-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.feature-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.97rem; color: var(--text-mid);
}
.feature-list li::before {
  content: '';
  width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B4F8A' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0; margin-top: 2px;
}

/* ---- COMMISSIONER TABLE ---- */
.comm-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.comm-table th {
  background: var(--blue);
  color: #fff;
  padding: 14px 18px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-body);
}
.comm-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  vertical-align: top;
}
.comm-table tr:nth-child(even) td { background: var(--blue-light); }
.comm-table tr:hover td { background: var(--cream); }

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 64px 0;
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-band .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand img { height: 56px; margin-bottom: 18px; opacity: 0.95; background: #fff; padding: 6px 10px; border-radius: 6px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 16px; }
.footer-heading {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.9rem; color: rgba(255,255,255,0.65);
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: rgba(255,255,255,0.4); margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: rgba(255,255,255,0.85); }
.reg-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.reg-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

/* ---- CONTENT BLOCKS ---- */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-section.reverse .split-content { order: 2; }
.split-section.reverse .split-image { order: 1; }
.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--blue-light);
  min-height: 360px;
  display: flex; align-items: center; justify-content: center;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.image-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 48px;
  color: var(--blue);
  text-align: center;
  min-height: 320px;
}
.image-placeholder svg { width: 64px; height: 64px; opacity: 0.3; }
.image-placeholder p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ---- VALUES GRID ---- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.value-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--blue);
}
.value-icon svg { width: 26px; height: 26px; }
.value-card h4 { color: var(--blue-dark); margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; }

/* ---- ACCORDION ---- */
.accordion { display: flex; flex-direction: column; gap: 8px; }
.acc-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.acc-header {
  width: 100%; background: #fff; border: none; cursor: pointer;
  padding: 18px 24px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--text);
  text-align: left; transition: var(--transition);
}
.acc-header:hover { background: var(--blue-light); color: var(--blue); }
.acc-header.open { background: var(--blue); color: #fff; }
.acc-header svg { width: 20px; height: 20px; transition: transform 0.25s; flex-shrink: 0; }
.acc-header.open svg { transform: rotate(180deg); }
.acc-body { display: none; padding: 20px 24px; background: #fff; border-top: 1px solid var(--border); }
.acc-body.open { display: block; }
.acc-body p { font-size: 0.95rem; margin: 0; }

/* ---- ALERT ---- */
.alert-info {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
  display: flex; gap: 12px; align-items: flex-start;
}
.alert-info svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.alert-info p { font-size: 0.92rem; margin: 0; }

/* ---- MOBILE RESPONSIVE ---- */
@media (max-width: 960px) {
  .services-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner, .split-section { grid-template-columns: 1fr; }
  .hero-inner .hero-card { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .services-grid, .values-grid, .info-grid { grid-template-columns: 1fr; }
  .site-nav, .header-cta .btn { display: none; }
  .nav-toggle { display: flex; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cqc-strip { flex-direction: column; gap: 20px; }
  .hero { padding: 60px 0; }
  .section { padding: 56px 0; }
}
/* Mobile nav open */
body.nav-open .site-nav {
  display: flex; flex-direction: column; align-items: flex-start;
  position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
  background: #fff; padding: 24px;
  z-index: 999; gap: 4px;
  overflow-y: auto;
}
body.nav-open .nav-link { font-size: 1.1rem; padding: 12px 16px; width: 100%; }
body.nav-open .dropdown {
  display: flex; flex-direction: column;
  position: static; box-shadow: none; border: none;
  border-left: 3px solid var(--blue-mid);
  margin-left: 16px; border-radius: 0;
  background: var(--blue-light);
}

/* ---- SOCIAL MEDIA ---- */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  font-weight: 500;
}
.social-links a:hover {
  color: #fff;
  padding-left: 4px;
}
.social-links a svg {
  flex-shrink: 0;
  opacity: 0.8;
}
.social-links a:hover svg { opacity: 1; }

/* Social icons in footer bottom bar */
.footer-social-bar {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-social-bar a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.footer-social-bar a svg { width: 16px; height: 16px; }

/* ---- PRINT / SEO helpers ---- */
.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; }
