/* Wellness Social Care Services — shared design system (blue & orange palette) */

:root {
  --blue: #0041cc;
  --blue-dark: #002d8f;
  --blue-light: #2563eb;
  --blue-bg: #eff6ff;
  --blue-muted: rgba(0, 65, 204, 0.08);
  --orange: #f7941d;
  --orange-hover: #ea7c0a;
  --white: #ffffff;
  --gray-900: #0f172a;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-200: #e2e8f0;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 2px rgba(0, 41, 204, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 41, 204, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 41, 204, 0.12);
  --transition: 200ms ease;
  --focus-ring: 0 0 0 3px rgba(0, 65, 204, 0.25);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, video, iframe, svg { max-width: 100%; height: auto; }

a { color: inherit; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: 0.65rem 1rem;
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
  outline: none;
  box-shadow: var(--focus-ring);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* —— Header —— */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(0, 41, 204, 0.1);
  padding: 0.85rem 0;
  box-shadow: 0 1px 0 rgba(0, 41, 204, 0.06);
}

.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--gray-900);
  min-width: 0;
  flex: 1 1 auto;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logo-text {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--blue);
  line-height: 1.2;
}

.logo-text sub {
  display: block;
  font-weight: 500;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-600);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--orange);
  color: var(--white) !important;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}

.header-cta:hover { background: var(--orange-hover); }
.header-cta:focus-visible { outline: none; box-shadow: var(--focus-ring); }

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: opacity var(--transition), background var(--transition);
  cursor: pointer;
}

.social-link:hover { opacity: 0.8; background: var(--blue-bg); }
.social-link:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.social-link svg { width: 22px; height: 22px; display: block; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle:hover { background: var(--blue-bg); }
.menu-toggle:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

body.drawer-open { overflow: hidden; }

/* —— Drawer —— */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.drawer-overlay.open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 92vw);
  background: var(--white);
  z-index: 201;
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  background: var(--blue-bg);
}

.drawer-head strong {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-dark);
}

.drawer-close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-900);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.drawer-close:hover { background: var(--gray-200); }

.drawer-inner { padding: 1.25rem 1.25rem 2rem; }

.drawer .btn-nav {
  display: block;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  min-height: 48px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(247, 148, 29, 0.35);
}

.drawer .btn-nav:hover { background: var(--orange-hover); }

.drawer a.drawer-link, .drawer .drawer-trigger {
  display: flex;
  align-items: center;
  padding: 0.85rem 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-900);
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
  min-height: 48px;
  border-bottom: 1px solid var(--gray-200);
}

.drawer a:hover, .drawer .drawer-trigger:hover { color: var(--blue); }
.drawer a:focus-visible, .drawer .drawer-trigger:focus-visible {
  outline: none;
  color: var(--blue);
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-sm);
}

.drawer-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-trigger::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: auto;
  transition: transform 0.2s;
}

.drawer-trigger.expanded::after { transform: rotate(-135deg); }

.drawer-sub {
  max-height: 0;
  overflow: hidden;
  padding-left: 1rem;
  transition: max-height 0.3s ease;
}

.drawer-sub.open { max-height: 220px; margin-bottom: 0.5rem; }
.drawer-sub a { padding: 0.45rem 0; font-size: 0.9rem; color: var(--gray-600); }
.drawer-sub a:hover { color: var(--blue); }

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(247, 148, 29, 0.35);
}

.btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  background: transparent;
  color: inherit;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid currentColor;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.12); }
.btn-secondary:focus-visible { outline: none; box-shadow: var(--focus-ring); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-primary:hover { background: var(--orange-hover); }

/* —— Hero —— */
.hero {
  position: relative;
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-dark) 55%, #001a5c 100%);
  color: var(--white);
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(247, 148, 29, 0.15), transparent),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255, 255, 255, 0.06), transparent);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .hero { padding: 4.5rem 0 5.5rem; }
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .hero .hero-content { text-align: left; }
}

.hero .hero-content { text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 0.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-intro {
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: 0.95;
  max-width: 520px;
  margin: 0 auto 1.75rem;
}

@media (min-width: 768px) {
  .hero-intro { margin-left: 0; margin-right: 0; }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: stretch;
}

@media (min-width: 768px) {
  .hero-actions { justify-content: flex-start; }
}

.hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-slider {
  position: relative;
  min-height: 280px;
  background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  .hero-slider { min-height: 340px; }
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Trust strip below hero */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 0;
}

.trust-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .trust-strip-inner {
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
  }
}

.trust-strip-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  white-space: nowrap;
}

.trust-strip-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
}

.trust-strip-logos img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(20%);
  transition: opacity var(--transition);
}

.trust-strip-logos img:hover { opacity: 1; }

/* —— Sections —— */
.section { padding: 4rem 0; }
.section--alt { background: var(--blue-bg); }

.section-eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 0 2rem;
  line-height: 1.65;
}

.section-head--center {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head--center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* —— Trust cards —— */
.trust-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 1rem;
  padding-bottom: 0.75rem;
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  -webkit-overflow-scrolling: touch;
}

.trust-grid::-webkit-scrollbar { height: 6px; }
.trust-grid::-webkit-scrollbar-thumb {
  background: rgba(0, 41, 204, 0.2);
  border-radius: 3px;
}

@media (min-width: 768px) {
  .trust-grid {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Stats bar */
.stats-bar {
  background: var(--blue-dark);
  color: var(--white);
  padding: 1.25rem 0;
  border-bottom: 3px solid var(--orange);
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .stats-bar-inner { grid-template-columns: repeat(4, 1fr); }
}

.stat-item strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.2;
}

.stat-item span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.3;
}

.trust-card {
  flex: 0 0 min(82vw, 300px);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--blue-muted);
  border-top: 4px solid var(--blue);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.trust-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.trust-card .logo-wrap {
  height: 52px;
  border-radius: var(--radius-sm);
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.trust-card .logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.trust-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.trust-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.55;
  flex: 1;
}

.trust-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.trust-cta {
  margin-top: 2rem;
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.trust-cta p {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  font-weight: 600;
}

/* —— Services preview —— */
.services-preview {
  padding: 4rem 0;
  background: var(--white);
}

.services-preview-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .services-preview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .services-preview-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-link-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--blue-muted);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 65, 204, 0.2);
}

.service-link-card:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  background: var(--blue-bg);
  color: var(--blue);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-link-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.service-link-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
  flex: 1;
}

.service-link-card .more {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
}

.services-preview-all {
  text-align: center;
  margin-top: 2rem;
}

.services-preview-all a {
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  cursor: pointer;
}

.services-preview-all a:hover { text-decoration: underline; }

/* —— Contact section (homepage) —— */
.contact {
  background: linear-gradient(145deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.contact .section-title { color: var(--white); }
.contact .section-desc {
  color: rgba(255, 255, 255, 0.9);
  margin-left: auto;
  margin-right: auto;
}

.contact-cards {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 1rem;
  padding-bottom: 0.75rem;
  margin: 0 -1rem 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: left;
  -webkit-overflow-scrolling: touch;
}

.contact-cards::-webkit-scrollbar { height: 6px; }
.contact-cards::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 3px;
}

@media (min-width: 768px) {
  .contact-cards {
    margin: 0 auto 1.5rem;
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
  }
}

.contact-card {
  flex: 0 0 min(78vw, 260px);
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.25rem;
  backdrop-filter: blur(8px);
}

.contact-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--white);
  font-size: 0.9rem;
}

.contact-card a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
}

.contact-card a:hover { text-decoration: underline; }
.contact-address {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0 0 1.25rem;
}

/* —— Page hero (inner pages) —— */
.page-hero {
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 3rem 0 3.5rem;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
}

.page-hero p {
  margin: 0 auto;
  font-size: 1.05rem;
  opacity: 0.92;
  max-width: 520px;
}

/* —— Services grid (services page) —— */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--blue-muted);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--blue-bg);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-body { padding: 1.35rem; }

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.services-cta {
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-bg) 0%, var(--white) 100%);
  border: 1px solid var(--blue-muted);
  text-align: center;
}

.services-cta h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  color: var(--blue-dark);
}

.services-cta p {
  margin: 0 0 1.25rem;
  color: var(--gray-600);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.services-cta-actions { margin-bottom: 1.5rem; }

.services-cta-phone { max-width: 400px; margin: 0 auto; }

.services-cta-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.services-cta-select {
  width: 100%;
  margin-bottom: 0.75rem;
  padding: 0.65rem 0.85rem;
  min-height: 48px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(0, 41, 204, 0.2);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  color: var(--gray-900);
  cursor: pointer;
}

.services-cta-select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: var(--focus-ring);
}

.services-cta-call-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  border-color: var(--blue);
  color: var(--blue);
  background: var(--white);
}

.services-cta-call-btn:hover {
  background: var(--blue-bg);
}

.services-cta-call-btn.is-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

/* —— About —— */
.about-photo {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (min-width: 768px) {
  .about-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3rem;
    align-items: start;
  }
  .about-photo { margin: 0; max-width: none; }
}

.about-block { margin-bottom: 2rem; }
.about-block:last-child { margin-bottom: 0; }

.about-block h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.about-block p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.about-block p:last-child { margin-bottom: 0; }

/* —— Contact page —— */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.info-panel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.75rem;
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
  .info-panel {
    flex-direction: column;
    overflow: visible;
    margin: 0;
    padding: 0;
  }
}

.info-card {
  flex: 0 0 min(82vw, 300px);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--blue-muted);
}

@media (min-width: 768px) {
  .info-card { flex: none; width: 100%; }
}

.info-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card h3 svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--blue); }

.info-card p, .info-card address {
  margin: 0;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.phone-list { list-style: none; margin: 0; padding: 0; }

.phone-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
}

.phone-list li:last-child { border-bottom: none; }
.phone-list .council-name { font-weight: 600; color: var(--gray-900); }

.phone-list a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.phone-list a:hover { text-decoration: underline; }

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0.55rem 1rem;
  min-height: 44px;
  border-radius: var(--radius-sm);
  background: var(--blue);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition);
}

.directions-btn:hover { background: var(--blue-dark); }

.map-card { padding: 0.5rem; }
.map-wrap { border-radius: var(--radius-md); overflow: hidden; min-height: 200px; }
.map-wrap iframe { display: block; min-height: 200px; }

.next-steps {
  max-width: 720px;
  margin: 0 auto 2rem;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--blue);
  box-shadow: var(--shadow-md);
}

.next-steps h2 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: var(--blue-dark);
}

.next-steps ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.65;
}

.next-steps li { margin-bottom: 0.35rem; }

/* —— Forms —— */
.form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--blue-muted);
}

.form-wrap h2 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.form-wrap .form-intro,
.section-sub {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.form-row { margin-bottom: 1.15rem; }

.form-row label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray-900);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  min-height: 48px;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 16px;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row textarea {
  min-height: 100px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: var(--focus-ring);
}

.form-row select { appearance: auto; cursor: pointer; }

.req { color: #dc2626; }

.form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: var(--radius-md);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.form-btn:hover { background: var(--orange-hover); }
.form-btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }

.success-msg {
  display: none;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  background: #d1fae5;
  color: #065f46;
  font-weight: 600;
  font-size: 1rem;
}

/* —— Jobs —— */
.jobs-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
}

.job-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--blue-muted);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.job-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.badge-pt { background: #dbeafe; color: var(--blue-dark); }
.badge-ft { background: #ffedd5; color: #9a3412; }

.job-title {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.job-details {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.job-details li { margin-bottom: 0.35rem; }
.job-details strong { color: var(--gray-900); }

.job-cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--orange);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  pointer-events: none;
}

/* —— Footer —— */
.footer {
  padding: 2.5rem 1.5rem;
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 0.85rem;
}

.footer-address { margin-bottom: 0.35rem; opacity: 0.85; }

.footer-links {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover { text-decoration: underline; }
.footer-links a:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--orange); border-radius: 4px; }

@media (min-width: 480px) {
  .header-cta { font-size: 0.85rem; padding: 0.55rem 1rem; }
}
