/* ============================================================
   DIVINE HEART CARE — main.css
   Converted from React/Tailwind to WordPress-compatible CSS
   Responsive: 320px → 1920px+
   ============================================================ */

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #F5F7FA;
  --dark:        #1A1A2E;
  --gray:        #64748B;
  --blue:        #003588;
  --blue-accent: #1a4fa0;
  --blue-muted:  #D6E4F7;
  --white:       #ffffff;
  --black:       #000000;

  --font-sans:    'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Inter Tight', ui-sans-serif, system-ui, sans-serif;

  --radius-lg:  0.75rem;
  --radius-xl:  1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,53,136,.10);

  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

::selection { background: rgba(0,53,136,.15); color: var(--blue); }

/* ── LAYOUT CONTAINER ────────────────────────────────────── */
.section-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .section-container { padding: 0 2rem; } }
@media (min-width: 768px)  { .section-container { padding: 0 3rem; } }
@media (min-width: 1024px) { .section-container { padding: 0 5rem; } }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  border-radius: 9999px;
  padding: 0.75rem 1.75rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
}
.btn-primary:hover { background: var(--blue-accent); border-color: var(--blue-accent); }

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 2px solid rgba(0,0,0,.18);
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.82rem; }
.btn-lg { padding: 0.9rem 2.2rem;  font-size: 1rem; }
.btn-full { width: 100%; }

/* ── BADGES / LABELS ─────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-sm);
}

/* ── HEADER / NAVBAR ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(245,247,250,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), padding var(--transition);
}
.site-header.scrolled {
  border-bottom-color: rgba(0,0,0,.06);
  padding: 0.65rem 0;
}
.site-header .section-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-left: 10px;
  padding-right: 1rem;
}
@media (min-width: 640px) { .site-header .section-container { padding-left: 10px; padding-right: 2rem; } }
@media (min-width: 1024px) { .site-header .section-container { padding-left: 10px; padding-right: 3rem; } }

.site-logo {
  flex-shrink: 0;
  margin-right: auto;
  display: flex;
  align-items: center;
}

.site-logo img,
.custom-logo-link img,
.custom-logo {
  height: 2.2rem !important;
  width: auto !important;
  object-fit: contain;
  border-radius: 0.3rem;
  transition: transform 0.2s;
  max-width: 140px;
}
.site-logo:hover img { transform: scale(1.05); }

/* Desktop nav */
.primary-nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .primary-nav { display: flex; } }

.primary-nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--dark);
  transition: color var(--transition);
}
.primary-nav a:hover,
.primary-nav a.active { color: var(--blue); }

.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: inline-flex; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background var(--transition);
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger:hover { background: rgba(0,0,0,.05); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(245,247,250,.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
  animation: slideDown 0.25s ease;
}
.mobile-menu.open { display: flex; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

.mobile-menu a {
  display: block;
  padding: 0.6rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu .btn { margin-top: 1rem; width: 100%; justify-content: center; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HERO SECTION ────────────────────────────────────────── */
.hero-section {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 4rem;
  background: var(--cream);
  overflow: hidden;
}
@media (min-width: 640px)  { .hero-section { padding-top: 7rem; padding-bottom: 5rem; } }
@media (min-width: 1024px) { .hero-section { padding-top: 9rem; padding-bottom: 5rem; } }

/* Decorative circles */
.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(0,53,136,.08);
}
.hero-section::before { width: 600px; height: 600px; top: -200px; left: -250px; }
.hero-section::after  { width: 900px; height: 900px; top: -350px; left: -380px; border-color: rgba(0,53,136,.04); }

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner { flex-direction: row; gap: 3rem; align-items: center; }
}

.hero-content { flex: 1; }

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.hero-content p {
  font-size: clamp(0.875rem, 1.5vw, 0.94rem);
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.hero-actions .btn-primary{
    flex:1;
    width:100%;
}

/* Hero image side */
.hero-image-wrap {
  position: relative;
  flex: 1;
  width: 100%;
  max-width: 26rem;
}
@media (min-width: 1024px) { .hero-image-wrap { max-width: none; } }

.hero-portrait {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; }

/* Floating info cards on hero */
.float-card {
  position: absolute;
  z-index: 10;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  max-width: 10rem;
}
.float-card.glass { background: rgba(255,255,255,.85); }
.float-card.orange { background: var(--blue); color: var(--white); }
.float-card.orange .float-card-title,
.float-card.orange .float-card-desc { color: var(--white); }

.float-card-icon {
  width: 2rem; height: 2rem;
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.4rem;
  background: var(--blue-muted);
  color: var(--blue);
  font-size: 0.9rem;
}
.float-card.orange .float-card-icon { background: rgba(255,255,255,.2); color: var(--white); }

.float-card-title { font-weight: 700; font-size: 0.78rem; color: var(--dark); }
.float-card-desc  { font-size: 0.7rem;  color: var(--gray); line-height: 1.4; margin-top: 0.2rem; }

.float-card-top-right {
  top: 1rem; right: -0.5rem;
}
.float-card-bottom-left {
  bottom: 1rem; left: -0.5rem;
}
@media (min-width: 640px) {
  .float-card-top-right  { top: 2rem;  right: -1rem; }
  .float-card-bottom-left{ bottom: 1.5rem; left: -1rem; }
}
@media (min-width: 1024px) {
  .float-card-top-right  { right: -3rem; }
  .float-card-bottom-left{ left: -3rem; }
  .float-card { max-width: 12rem; }
}

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about-section {
  padding: 4rem 0 5rem;
  background: var(--white);
  overflow: hidden;
}
@media (min-width: 640px) { .about-section { padding: 5rem 0 6rem; } }

.about-top-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .about-top-row { flex-direction: row; align-items: flex-start; justify-content: space-between; margin-bottom: 2.5rem; }
}
.about-top-row h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.about-top-row .about-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  display: block;
}
.about-top-row p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 24rem;
}
@media (min-width: 1024px) { .about-top-row p { padding-top: 2rem; } }

.about-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 1024px) { .about-bottom-row { flex-direction: row; align-items: stretch; } }

.about-card {
  flex: 1;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-2xl);
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
}

.about-team-avatars {
  display: flex;
  margin-bottom: 2rem;
}
.about-team-avatars img {
  width: 3rem; height: 3.5rem;
  border-radius: 0.5rem;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
  margin-left: -0.5rem;
}
.about-team-avatars img:first-child { margin-left: 0; }

.about-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--dark);
  margin-bottom: 2rem;
  flex: 1;
}

.about-portrait {
  flex: 1;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  min-height: 14rem;
}
@media (min-width: 640px) { .about-portrait { min-height: 18rem; } }
@media (min-width: 1024px) { .about-portrait { min-height: 20rem; } }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }

/* ── SERVICES SECTION ────────────────────────────────────── */
.services-section { padding: 4rem 0; }
@media (min-width: 640px) { .services-section { padding: 6rem 0; } }

.services-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .services-header { flex-direction: row; align-items: flex-end; justify-content: space-between; margin-bottom: 3.5rem; }
}

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.services-header p { font-size: 0.875rem; color: var(--gray); line-height: 1.7; max-width: 26rem; }

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
  transition: color var(--transition);
}
.view-all-link:hover { color: var(--blue-accent); }
.view-all-link svg { transition: transform 0.2s; }
.view-all-link:hover svg { transform: translateX(3px); }

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 640px) { .services-grid { flex-direction: row; flex-wrap: wrap; } }

.service-card {
  flex: 1 1 calc(50% - 0.65rem);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s;
}
@media (min-width: 1024px) { .service-card { flex: 1 1 calc(25% - 1rem); } }
.service-card:hover { transform: translateY(-4px); }

.service-card-image {
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin-bottom: 0;
}
.service-card-image img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transition: transform 0.5s;
}
@media (min-width: 640px) { .service-card-image img { height: 12rem; } }
@media (min-width: 768px) { .service-card-image img { height: 14rem; } }
.service-card:hover .service-card-image img { transform: scale(1.05); }

.service-card-body {
  background: var(--white);
  border: 1px solid #f1f1f1;
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  flex: 1;
}
.service-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.service-card-body p { font-size: 0.8rem; color: var(--gray); line-height: 1.65; }

/* ── VALUES SECTION ──────────────────────────────────────── */
.values-section {
  padding: 4rem 0;
  background: var(--cream);
}
@media (min-width: 640px) { .values-section { padding: 5rem 0; } }

.values-top-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .values-top-row { flex-direction: row; align-items: flex-start; justify-content: space-between; margin-bottom: 2.5rem; }
}
.values-top-row h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.values-top-row p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 24rem;
}
@media (min-width: 1024px) { .values-top-row p { padding-top: 2rem; } }

.values-banner {
  position: relative;
  width: 100%;
  height: 18rem;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}
@media (min-width: 640px) { .values-banner { height: 22rem; } }
@media (min-width: 768px) { .values-banner { height: 28rem; } }

.values-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.values-banner-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
}

.values-tabs {
  position: absolute;
  left: 1.5rem; bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 50%;
}
@media (min-width: 640px) {
  .values-tabs { flex-direction: column; gap: 0.6rem; left: 2rem; bottom: 2rem; max-width: none; }
}
@media (min-width: 768px) { .values-tabs { left: 3rem; bottom: 3rem; } }

.values-tab-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.15);
  color: var(--white);
  backdrop-filter: blur(4px);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}
@media (min-width: 640px) { .values-tab-btn { font-size: 0.8rem; padding: 0.35rem 1rem; } }
.values-tab-btn.active {
  background: var(--white);
  color: var(--dark);
  border-color: #e5e7eb;
}
.values-tab-btn:hover:not(.active) { background: rgba(255,255,255,.25); }

.values-content {
  position: absolute;
  right: 1.5rem; top: 1.5rem;
  max-width: 12rem;
}
@media (min-width: 640px) {
  .values-content { top: auto; bottom: 2rem; right: 2rem; max-width: 18rem; }
}
@media (min-width: 768px) {
  .values-content { right: 3rem; bottom: 3rem; max-width: 21rem; }
}

.values-content h3 {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.values-dots {
  display: flex; gap: 0.4rem; margin-bottom: 0.5rem;
}
.values-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transition: background 0.3s;
}
.values-dot.active { background: var(--white); }
.values-content p { font-size: 0.75rem; color: rgba(255,255,255,.7); line-height: 1.6; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section {
  padding: 4rem 0;
  background: var(--cream);
}
@media (min-width: 640px) { .testimonials-section { padding: 5rem 0; } }

.testimonials-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.testimonials-inner .badge { margin-bottom: 1.5rem; }

.testimonial-slider {
  position: relative;
  min-height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) { .testimonial-slider { min-height: 11rem; } }

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
  padding: 0 3rem;
  transition: opacity 0.35s, transform 0.35s;
}
@media (min-width: 640px) { .testimonial-quote { padding: 0 4rem; } }

.testimonial-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  font-size: 1rem;
}
.testimonial-arrow:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.testimonial-prev { left: 0; }
.testimonial-next { right: 0; }
@media (min-width: 768px) { .testimonial-prev { left: -1.5rem; } .testimonial-next { right: -1.5rem; } }
@media (min-width: 1024px){ .testimonial-prev { left: -4rem; } .testimonial-next { right: -4rem; } }

.testimonial-author {
  margin-top: 1.5rem;
  font-size: 0.875rem;
}
.testimonial-author strong { font-weight: 700; color: var(--dark); }
.testimonial-author span { color: var(--gray); margin-left: 0.25rem; font-size: 0.8rem; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section {
  padding: 4rem 0;
  background: var(--white);
}
@media (min-width: 640px) { .faq-section { padding: 6rem 0; } }

.faq-inner { max-width: 48rem; margin: 0 auto; }

.faq-header { text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .faq-header { margin-bottom: 3.5rem; } }

.faq-header .badge { margin-bottom: 1.25rem; }
.faq-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 1rem;
}
.faq-header p { font-size: 0.875rem; color: var(--gray); line-height: 1.7; max-width: 28rem; margin: 0 auto; }

.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
@media (min-width: 640px) { .faq-list { gap: 0.75rem; } }

.faq-item {
  border: 1px solid #f1f1f1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  text-align: left;
  gap: 1rem;
  transition: background var(--transition);
}
@media (min-width: 640px) { .faq-question { padding: 1.25rem 1.5rem; } }
.faq-question:hover { background: rgba(0,0,0,.015); }

.faq-question-text {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  font-weight: 600;
  color: var(--dark);
  flex: 1;
}

.faq-icon {
  width: 1.75rem; height: 1.75rem;
  border-radius: 50%;
  background: rgba(0,53,136,.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
  font-size: clamp(0.8rem, 1.3vw, 0.875rem);
  color: var(--gray);
  line-height: 1.75;
}
@media (min-width: 640px) { .faq-answer { padding: 0 1.5rem 1.25rem; } }
.faq-item.open .faq-answer { display: block; }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-section {
  padding: 4rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 640px) { .cta-section { padding: 6rem 0; } }

.cta-scribble {
  position: absolute;
  pointer-events: none;
  color: var(--blue);
  opacity: 0.7;
}
.cta-scribble-left {
  left: 1rem; top: 50%; transform: translateY(-50%);
  width: 3rem;
}
@media (min-width: 640px) { .cta-scribble-left { width: 4rem; left: 1.5rem; } }
@media (min-width: 1024px){ .cta-scribble-left { width: 6rem; left: 4rem; } }
.cta-scribble-right {
  right: 1rem; top: 1.5rem;
  width: 2.5rem;
}
@media (min-width: 640px) { .cta-scribble-right { width: 3.5rem; right: 1.5rem; } }
@media (min-width: 1024px){ .cta-scribble-right { width: 5rem; right: 4rem; } }

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .cta-inner h2 { margin-bottom: 1.5rem; } }

.cta-inner p {
  font-size: clamp(0.875rem, 1.5vw, 0.94rem);
  color: var(--gray);
  line-height: 1.75;
  max-width: 30rem;
  margin: 0 auto 2rem;
}
@media (min-width: 640px) { .cta-inner p { margin-bottom: 2.5rem; } }

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 640px) { .cta-actions { flex-direction: row; justify-content: center; } }

/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact-section {
  padding: 4rem 0;
  background: var(--white);
}
@media (min-width: 640px) { .contact-section { padding: 5rem 0; } }

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .contact-grid { flex-direction: row; gap: 3.5rem; } }

.contact-info { flex: 1; }

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 2rem;
}

.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 640px) { .contact-items { gap: 1.75rem; } }

.contact-item { display: flex; align-items: flex-start; gap: 1rem; }

.contact-icon {
  width: 2.25rem; height: 2.25rem;
  background: rgba(0,53,136,.08);
  color: var(--blue);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
@media (min-width: 640px) { .contact-icon { width: 2.5rem; height: 2.5rem; } }

.contact-item-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--blue);
  margin-bottom: 0.2rem;
}
.contact-item-value {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 700;
  color: var(--dark);
}
.contact-item-sub {
  font-size: 0.78rem;
  color: var(--gray);
}

/* Contact form */
.contact-form-wrap { flex: 1; }

.contact-form-box {
  background: var(--cream);
  border: 1px solid #f1f1f1;
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) { .contact-form-box { padding: 2rem; } }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
}

.form-control {
  width: 100%;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--blue); }
.form-control::placeholder { color: #aaa; }

textarea.form-control { resize: none; }

.form-fields { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .form-fields { gap: 1.25rem; } }

/* Form status messages */
.form-success, .form-error {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: none;
}
.form-success { background: #d1fae5; color: #065f46; }
.form-error   { background: #fee2e2; color: #991b1b; }
.form-success.show, .form-error.show { display: block; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--black); color: var(--white); }

.footer-main {
  padding: 4rem 0 3.5rem;
}
@media (min-width: 640px) { .footer-main { padding: 6rem 0 5rem; } }

.footer-main .section-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 1024px) { .footer-main .section-container { flex-direction: row; justify-content: space-between; gap: 6rem; } }

.footer-logo img {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
  border-radius: 0.35rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .footer-logo img { height: 4rem; } }

.footer-right { max-width: 36rem; }
.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.footer-headline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
.footer-details { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-details p {
  font-size: clamp(0.95rem, 1.5vw, 1.3rem);
  color: var(--white);
  line-height: 1.6;
}

.footer-nav-row {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 2rem 0;
}
.footer-nav-row nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 640px) { .footer-nav-row nav { gap: 2.5rem; } }
.footer-nav-row a {
  font-size: clamp(0.85rem, 1.3vw, 0.94rem);
  font-weight: 500;
  color: var(--white);
  transition: opacity var(--transition);
}
.footer-nav-row a:hover { opacity: 0.65; }

.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}
.footer-bottom-bar p {
  font-size: clamp(0.73rem, 1.2vw, 0.8rem);
  color: var(--white);
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom-bar p { text-align: left; } }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-page-hero {
  padding-top: 7rem;
  padding-bottom: 4rem;
}
@media (min-width: 640px) { .about-page-hero { padding-top: 9rem; padding-bottom: 6rem; } }
@media (min-width: 1024px){ .about-page-hero { padding-top: 10rem; } }

.about-page-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.about-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark);
  max-width: 38rem;
  margin-bottom: 1.25rem;
}
.about-page-hero p {
  font-size: clamp(0.875rem, 1.5vw, 0.94rem);
  color: var(--gray);
  line-height: 1.75;
  max-width: 36rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .about-page-hero p { margin-bottom: 3.5rem; } }

.about-hero-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}
@media (min-width: 640px) { .about-hero-card { border-radius: var(--radius-3xl); } }

.about-hero-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.about-hero-card-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.50);
}
.about-hero-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.5rem;
  min-height: 26rem;
}
@media (min-width: 640px) { .about-hero-card-content { padding: 3rem 2.5rem; min-height: 32rem; } }
@media (min-width: 768px) { .about-hero-card-content { padding: 3.5rem; min-height: 38rem; } }

.about-hero-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  max-width: 29rem;
  opacity: 1;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2rem;
  padding-top: 0;
  max-width: 44rem;
  margin-top: auto;
}
@media (min-width: 640px) {
  .about-stats-row { display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; padding-top: 0; }
}
.about-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  opacity: 1;
}
.about-stat-label { font-size: 0.78rem; color: rgba(255,255,255,.70); margin-top: 0.25rem; opacity: 1; }

/* Mission / Vision */
.mission-section {
  padding: 4rem 0;
  background: var(--cream);
}
@media (min-width: 640px) { .mission-section { padding: 6rem 0; } }

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .mission-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }

.mission-card {
  background: var(--white);
  border: 1px solid #f1f1f1;
  border-radius: var(--radius-2xl);
  padding: 1.75rem 2rem;
  transition: box-shadow var(--transition);
}
@media (min-width: 640px) { .mission-card { padding: 2.5rem 3rem; } }
.mission-card:hover { box-shadow: var(--shadow-lg); }

.mission-card-icon {
  width: 2.75rem; height: 2.75rem;
  background: rgba(0,53,136,.08);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
  transition: background var(--transition);
}
.mission-card:hover .mission-card-icon { background: rgba(0,53,136,.14); }

.mission-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.mission-card p {
  font-size: clamp(0.875rem, 1.3vw, 0.94rem);
  color: var(--gray);
  line-height: 1.8;
}

/* Why Choose Us */
.why-section { padding: 4rem 0; }
@media (min-width: 640px) { .why-section { padding: 6rem 0; } }

.why-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .why-box { padding: 3.5rem 2rem; } }
@media (min-width: 768px) { .why-box { padding: 5rem 4rem; } }

.why-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}
.why-header-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) { .why-header-row { flex-direction: row; align-items: flex-start; justify-content: space-between; margin-bottom: 3.5rem; } }
.why-header-row h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
  max-width: 26rem;
}
.why-header-row p {
  font-size: clamp(0.875rem, 1.5vw, 0.94rem);
  color: var(--gray);
  line-height: 1.75;
  max-width: 22rem;
}
@media (min-width: 1024px) { .why-header-row p { padding-top: 0.5rem; } }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  background: #f7f7f7;
  border-radius: var(--radius-2xl);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 640px) { .why-card { padding: 2rem 2.25rem; } }

.why-card h3 {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .why-card h3 { margin-bottom: 4rem; } }
.why-card p { font-size: 0.84rem; color: var(--gray); line-height: 1.75; }

.why-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  min-height: 20rem;
  order: -1;
  position: relative;
}
@media (min-width: 640px) { .why-image { grid-column: span 2; min-height: 18rem; order: 0; } }
@media (min-width: 768px) { .why-image { grid-column: span 1; min-height: 0; } }

.why-image img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Decorative arc */
.why-box::after {
  content: '';
  position: absolute;
  bottom: -6rem; left: -6rem;
  width: 12rem; height: 12rem;
  border: 4px solid var(--blue);
  border-radius: 50%;
  pointer-events: none;
}
@media (min-width: 640px) { .why-box::after { width: 18rem; height: 18rem; bottom: -9rem; left: -9rem; } }

/* ── SERVICES PAGE ───────────────────────────────────────── */
.services-page-hero {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 5rem;
  background: var(--black);
  overflow: hidden;
}
@media (min-width: 640px) { .services-page-hero { padding-top: 9rem; padding-bottom: 7rem; } }
@media (min-width: 1024px){ .services-page-hero { padding-top: 10rem; } }

.services-page-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.services-page-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
}
.services-page-hero .section-container { position: relative; z-index: 1; }

.services-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 38rem;
  margin-bottom: 1.25rem;
}
.services-page-hero p {
  font-size: clamp(0.875rem, 1.5vw, 0.94rem);
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  max-width: 36rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .services-page-hero p { margin-bottom: 2.5rem; } }

/* ── CARE PROCESS ────────────────────────────────────────── */
.care-process-section {
  padding: 4rem 0;
  background: var(--white);
}
@media (min-width: 640px) { .care-process-section { padding: 6rem 0; } }

.care-process-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}
@media (min-width: 640px) { .care-process-header { margin-bottom: 4rem; } }

.care-process-header .badge { margin-bottom: 1.25rem; }
.care-process-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 1rem;
}
.care-process-header p { font-size: 0.875rem; color: var(--gray); line-height: 1.7; max-width: 28rem; margin: 0 auto; }

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px){ .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-card {
  background: var(--white);
  border: 1px solid #f1f1f1;
  border-radius: var(--radius-2xl);
  padding: 1.5rem 2rem;
  position: relative;
  transition: box-shadow var(--transition);
}
@media (min-width: 640px) { .process-card { padding: 2rem; } }
.process-card:hover { box-shadow: 0 8px 24px rgba(0,53,136,.07); }

.process-step-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 700;
  color: rgba(0,53,136,.1);
  position: absolute;
  top: 1rem; right: 1.5rem;
  line-height: 1;
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.process-card p { font-size: 0.84rem; color: var(--gray); line-height: 1.7; }

/* ── CAREERS PAGE ────────────────────────────────────────── */
.careers-section {
  padding: 7rem 0 4rem;
  background: var(--white);
}
@media (min-width: 640px) { .careers-section { padding: 9rem 0 5rem; } }

.careers-header { max-width: 48rem; margin: 0 auto 2.5rem; }
.careers-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.careers-header p { font-size: 0.84rem; color: var(--gray); }

.positions-wrap { max-width: 72rem; margin: 0 auto; }
.positions-group-title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 700;
  color: var(--dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.positions-list { border-top: 1px solid #f1f1f1; }

.position-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #f1f1f1;
  transition: background var(--transition);
  text-decoration: none;
  color: inherit;
}
.position-item:hover { background: rgba(0,0,0,.015); }
.position-item:hover .position-title { color: var(--blue); }

.position-title {
  font-size: clamp(0.875rem, 1.5vw, 0.94rem);
  font-weight: 700;
  color: var(--dark);
  transition: color var(--transition);
}
.position-location {
  font-size: 0.75rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.2rem;
}

.careers-cta {
  max-width: 48rem;
  margin: 4rem auto 0;
  text-align: center;
}
.careers-cta h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.careers-cta p { font-size: 0.84rem; color: var(--gray); margin-bottom: 1.5rem; }

/* ── APPLICATION PAGE ────────────────────────────────────── */
.application-page {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background: var(--cream);
  min-height: 100vh;
}
@media (min-width: 640px) { .application-page { padding-top: 9rem; } }

.application-wrap { max-width: 40rem; margin: 0 auto; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}
.back-link:hover { color: var(--dark); }
.back-link svg { transition: transform 0.2s; }
.back-link:hover svg { transform: translateX(-3px); }

.application-box {
  background: var(--white);
  border-radius: var(--radius-3xl);
  padding: 1.5rem;
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
  border: 1px solid rgba(0,0,0,.03);
}
@media (min-width: 640px) { .application-box { padding: 2.5rem; } }

.application-box h1 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.875rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.application-box .subtitle {
  font-size: 0.84rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.file-upload-box {
  border: 2px dashed #e5e7eb;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition);
  background: #fafafa;
}
.file-upload-box:hover { border-color: rgba(0,53,136,.4); }
.file-upload-box .upload-icon {
  font-size: 1.25rem;
  color: var(--blue);
  margin-bottom: 0.4rem;
}
.file-upload-box .upload-title { font-size: 0.84rem; font-weight: 600; color: var(--dark); }
.file-upload-box .upload-hint  { font-size: 0.7rem; color: #aaa; margin-top: 0.2rem; }

.success-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
  min-height: 60vh;
}
.success-screen.show { display: flex; }
.success-icon {
  width: 4rem; height: 4rem;
  background: rgba(0,53,136,.08);
  color: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
.success-screen h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.success-screen p { font-size: 0.875rem; color: var(--gray); line-height: 1.7; max-width: 26rem; margin-bottom: 2rem; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-page-wrap { padding-top: 7rem; }
@media (min-width: 640px) { .contact-page-wrap { padding-top: 9rem; } }

/* ── ANIMATE ON SCROLL ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── UTILITY CLASSES ─────────────────────────────────────── */
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.hidden { display: none !important; }
.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;
}

/* ── CONTACT PAGE SPECIFIC ───────────────────────────────── */
.page-contact .contact-section { padding-top: 7rem; }
@media (min-width: 640px) { .page-contact .contact-section { padding-top: 9rem; } }

/* ── SELECT ELEMENT STYLING ─────────────────────────────── */
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ── BUTTON LOADING STATE ────────────────────────────────── */
.btn.loading {
  opacity: 0.75;
  pointer-events: none;
  position: relative;
}
.btn.loading::after {
  content: '';
  position: absolute;
  right: 1rem; top: 50%;
  width: 1rem; height: 1rem;
  margin-top: -0.5rem;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: rgba(255,255,255,.9);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── VALUES CONTENT TRANSITION ───────────────────────────── */
.values-content h3,
.values-content p {
  transition: opacity 0.2s ease;
}

/* ── FOCUS STYLES (ACCESSIBILITY) ────────────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── SKIP TO CONTENT ─────────────────────────────────────── */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--blue);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 0.5rem 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-to-content:focus { top: 0; }

/* ── SCROLL MARGIN FOR ANCHOR LINKS ─────────────────────── */
#about-us,
#services,
#contact,
#faq,
#careers {
  scroll-margin-top: 5rem;
}

/* ── HERO IMAGE ASPECT RATIO FIX ON SMALL SCREENS ───────── */
@media (max-width: 639px) {
  .hero-portrait { aspect-ratio: 4/3; }
  .hero-image-wrap { max-width: 100%; }
}

/* ── ABOUT-PAGE HERO CARD MIN-HEIGHT FIX ─────────────────── */
@media (max-width: 479px) {
  .about-hero-card-content { min-height: 22rem !important; padding: 1.5rem 1rem; }
  .about-stats-row { grid-template-columns: repeat(2,1fr); gap: 1rem 1.5rem; }
}

/* ── WHY BOX ARC — ENSURE IT DOESN'T OVERFLOW ON MOBILE ─── */
@media (max-width: 479px) {
  .why-box::after { width: 10rem; height: 10rem; bottom: -5rem; left: -5rem; }
  .why-box { overflow: hidden; }
}

/* ── CAREERS PAGE — MOBILE POSITION ITEM ─────────────────── */
@media (max-width: 479px) {
  .position-item { gap: 0.5rem; }
  .position-item > svg { display: none; }
}

/* ── APPLICATION BOX — EXTRA SMALL ───────────────────────── */
@media (max-width: 374px) {
  .application-box { padding: 1.25rem 1rem; border-radius: var(--radius-2xl); }
}

/* ── FOOTER SIGNATURE SVG RESPONSIVE ─────────────────────── */
@media (max-width: 479px) {
  .footer-headline { font-size: 1.1rem; margin-bottom: 1.5rem; }
  .footer-details p { font-size: 0.95rem; }
}

/* ── PRINT STYLES ────────────────────────────────────────── */
@media print {
  .site-header,
  .site-footer,
  .hamburger,
  .mobile-menu,
  .cta-section,
  .hero-actions,
  .contact-form-wrap,
  .float-card,
  .values-tabs,
  .testimonial-arrow { display: none !important; }

  body { background: white; color: black; font-size: 12pt; }
  h1,h2,h3 { color: black; page-break-after: avoid; }
  section { page-break-inside: avoid; padding: 1rem 0; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #555; }
  .hero-section,
  .about-page-hero { padding-top: 1rem; }
}

/* ── SMOOTH SCROLL POLYFILL FOR OLDER BROWSERS ───────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-up { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn { transition: none; }
  .service-card { transition: none; }
  .site-header { transition: none; }
}

/* ═══════════════════════════════════════════════════════════
   FULL APPLICATION PAGE
═══════════════════════════════════════════════════════════ */

.application-page-full {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: var(--cream);
  min-height: 100vh;
}
@media (min-width: 640px) { .application-page-full { padding-top: 10rem; } }

/* Page header */
.app-page-header {
  max-width: 52rem;
  margin: 0 auto 3rem;
  text-align: center;
}
.app-page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 1rem 0;
}
.app-page-header p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 44rem;
  margin: 0 auto;
}

/* Form container */
.app-form-container {
  max-width: 56rem;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Sections */
.app-section {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid #f1f1f1;
}
@media (min-width: 640px) { .app-section { padding: 2.5rem 2.5rem; } }
.app-section:last-of-type { border-bottom: none; }

.app-section-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--blue);
  display: inline-block;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.app-section-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

/* Grids */
.app-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .app-grid-2 { grid-template-columns: repeat(2, 1fr); } }

.app-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .app-grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* Employer blocks */
.app-employer-block {
  background: #fafafa;
  border: 1px solid #f1f1f1;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.app-employer-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

/* Checkbox and radio rows */
.app-checkbox-row,
.app-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.app-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--dark);
  cursor: pointer;
  font-weight: 500;
}
.app-check input[type="checkbox"],
.app-check input[type="radio"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--blue);
  cursor: pointer;
}

/* Days of week */
.app-days-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.app-day-check {
  cursor: pointer;
}
.app-day-check input { display: none; }
.app-day-check span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
  transition: all var(--transition);
  background: var(--white);
}
.app-day-check input:checked + span {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* Education table */
.app-edu-table {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-xl);
  overflow: hidden;
  font-size: 0.8rem;
}
.app-edu-header {
  display: none;
  grid-template-columns: 1fr 1.5fr 1fr 1.5fr 1.5fr;
  gap: 0;
  background: var(--blue);
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}
@media (min-width: 900px) { .app-edu-header { display: grid; } }

.app-edu-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-bottom: 1px solid #f1f1f1;
  background: var(--white);
}
.app-edu-row:last-child { border-bottom: none; }
.app-edu-row:nth-child(even) { background: #fafafa; }
@media (min-width: 900px) {
  .app-edu-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr 1.5fr 1.5fr;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
  }
}
.app-edu-level {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.8rem;
}
.app-edu-row .form-control {
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem;
}

/* General info questions */
.app-question-list { display: flex; flex-direction: column; gap: 1.25rem; }
.app-question p {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

/* Agreement section */
.app-agreement-section { background: #f8faff; }
.app-agreement-text {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.app-agreement-text p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.75;
}
.app-agree-check {
  align-items: flex-start !important;
  gap: 0.75rem !important;
}
.app-agree-check span {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--dark);
  font-weight: 500;
}

/* Required marker */
.req { color: #e53e3e; margin-left: 2px; }

/* Submit */
.app-submit-wrap {
  padding: 2rem 2.5rem;
  text-align: center;
  background: var(--cream);
  border-top: 1px solid #e5e7eb;
}
.app-submit-btn { min-width: 14rem; }
.app-submit-note {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 0.75rem;
}

/* Success screen */
.app-success-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1rem;
  max-width: 36rem;
  margin: 0 auto;
}
.app-success-screen.show { display: flex; }
.app-success-icon {
  width: 5rem; height: 5rem;
  background: rgba(0,53,136,.1);
  color: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.app-success-screen h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.app-success-screen p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Error message */
.app-error-msg {
  display: none;
  background: #fee2e2;
  color: #991b1b;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.app-error-msg.show { display: block; }

/* Ref rows */
.app-ref-row { margin-bottom: 0.75rem; }

/* ── FULL APPLICATION FORM ───────────────────────────────── */
.application-wrap-full {
  max-width: 56rem;
  margin: 0 auto;
}

.app-form-card {
  background: var(--white);
  border-radius: var(--radius-3xl);
  padding: 2rem 1.5rem;
  box-shadow: 0 16px 48px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.04);
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .app-form-card { padding: 3rem; } }

.app-form-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f1f1f1;
}
@media (min-width: 640px) {
  .app-form-header { flex-direction: row; align-items: flex-start; justify-content: space-between; }
}
.app-form-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.875rem);
  font-weight: 800;
  color: var(--dark);
  margin: 0.75rem 0 0.75rem;
}
.app-form-header p {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 36rem;
}
.app-header-logo {
  height: 5rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Sections */
.app-section {
  padding: 1.75rem 0;
  border-bottom: 1px solid #f1f1f1;
}
.app-section:last-of-type { border-bottom: none; }

.app-section-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.app-section-desc {
  font-size: 0.84rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

/* Three-column form row */
.form-row-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-row-3 .form-group { flex: 1 1 10rem; }

/* Employer blocks */
.app-employer-block {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid #e5e7eb;
}
.app-block-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 1rem;
}

/* Radio / checkbox groups */
.radio-group {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 0.4rem;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
}
.radio-label input { cursor: pointer; accent-color: var(--blue); }

/* Education table */
.app-edu-table {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  overflow: hidden;
  overflow-x: auto;
}
.app-edu-header {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr 2fr 2fr;
  gap: 0;
  background: var(--blue);
  padding: 0.75rem 1rem;
}
.app-edu-header span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}
.app-edu-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr 2fr 2fr;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid #f1f1f1;
  align-items: center;
  background: var(--white);
}
.app-edu-row:nth-child(even) { background: var(--cream); }
.edu-level-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
}
@media (max-width: 767px) {
  .app-edu-header { display: none; }
  .app-edu-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 1rem;
  }
  .edu-level-label { grid-column: 1 / -1; font-size: 0.85rem; color: var(--blue); }
}

/* General info grid */
.app-general-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .app-general-grid { grid-template-columns: repeat(2, 1fr); } }

.app-general-item {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  border: 1px solid #e5e7eb;
}
.app-general-item label:first-child {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* Days grid */
.days-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.day-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.day-label:hover { border-color: var(--blue); }
.day-label input { accent-color: var(--blue); }

/* Agreement section */
.agreement-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.agreement-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--cream);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: border-color var(--transition);
  font-size: 0.875rem;
  color: var(--dark);
  line-height: 1.6;
}
.agreement-item:hover { border-color: var(--blue); }
.agreement-item input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--blue);
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

/* ── NAVBAR APPLICATION BUTTON ───────────────────────────── */
.header-apply-btn {
  display: none;
}
@media (min-width: 1024px) {
  .header-apply-btn {
    display: inline-flex;
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
    align-items: center;
    gap: 0.35rem;
  }
  .header-apply-btn:hover {
    background: var(--blue);
    color: var(--white);
  }
}

/* ── HEADER ACTIONS (Apply + Contact buttons) ────────────── */
.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 1024px) { .header-actions { display: flex; } }

/* ── APPLICATION PAGE EXTRA CSS ─────────────────────────── */
.application-wrap-full {
  max-width: 58rem;
  margin: 0 auto;
}

.app-form-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.04);
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .app-form-card { padding: 2.5rem; } }
@media (min-width: 1024px) { .app-form-card { padding: 3rem; } }

.app-form-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2rem;
  margin-bottom: 0;
  border-bottom: 2px solid var(--cream);
  align-items: flex-start;
}
@media (min-width: 640px) {
  .app-form-header { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}
.app-form-header-text { flex: 1; }
.app-form-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin: 0.75rem 0 0.75rem;
  line-height: 1.2;
}
.app-form-header p {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 36rem;
}
.app-header-logo {
  height: 4.5rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0.5rem;
}
@media (max-width: 639px) { .app-header-logo { height: 3.5rem; } }

/* Sections */
.app-section {
  padding: 2rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.app-section:last-of-type { border-bottom: none; }

.app-section-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.app-title-note {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray);
}
.app-section-desc {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Employer blocks */
.app-employer-block {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid #e5e7eb;
}
@media (min-width: 640px) { .app-employer-block { padding: 1.5rem; } }

.app-block-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--blue);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0,53,136,.1);
}

/* Radio / Checkbox */
.radio-group {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
}
.radio-label input { accent-color: var(--blue); cursor: pointer; }

/* Education grid */
.app-edu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .app-edu-grid { grid-template-columns: repeat(2, 1fr); } }

.app-edu-card {
  background: var(--cream);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-xl);
  padding: 1.25rem;
}

/* General info grid */
.app-general-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .app-general-grid { grid-template-columns: repeat(2, 1fr); } }

.app-general-item {
  background: var(--cream);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
}
.app-general-q {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

/* Days */
.days-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.day-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.day-label:hover { border-color: var(--blue); }
.day-label input { accent-color: var(--blue); cursor: pointer; }

/* Agreement */
.agreement-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.agreement-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--cream);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: border-color var(--transition);
  font-size: 0.875rem;
  color: var(--dark);
  line-height: 1.6;
}
.agreement-item:hover { border-color: var(--blue); }
.agreement-item input[type="checkbox"] {
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--blue);
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

/* Submit row */
.app-submit-row {
  padding: 1.5rem 0 0.5rem;
  display: flex;
  justify-content: center;
}
.app-submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-xl);
}
@media (min-width: 640px) {
  .app-submit-btn { width: auto; min-width: 20rem; }
}

/* Form row 3-col */
.form-row-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.form-row-3 .form-group { flex: 1 1 10rem; }

/* Header actions (Apply + Contact buttons) */
.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 1024px) { .header-actions { display: flex; } }

.header-apply-btn {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-display);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.header-apply-btn:hover {
  background: var(--blue);
  color: var(--white);
}

/* ── FINAL OVERRIDES ─────────────────────────────────────── */

/* Logo — small and pinned left */
.site-logo,
.custom-logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: auto;
}
.site-logo img,
.custom-logo-link img,
.custom-logo {
  height: 2rem !important;
  width: auto !important;
  max-width: 130px !important;
  object-fit: contain !important;
  border-radius: 0.25rem;
}

/* Header container — logo flush left with 10px gap */
.site-header .section-container {
  padding-left: 10px !important;
  padding-right: 1rem !important;
  justify-content: space-between;
}
@media (min-width: 768px)  { .site-header .section-container { padding-right: 1.5rem !important; } }
@media (min-width: 1024px) { .site-header .section-container { padding-right: 2rem !important; } }

/* Mobile menu — Contact us white text centered */
.mobile-menu .btn-primary {
  color: #ffffff !important;
  text-align: center;
  justify-content: center;
}

/* Section titles on application page */
/*.app-section-title { color: var(--dark); }*/

/* ── APPLICATION FORM SPACING & ALIGNMENT FIXES ─────────── */

/* Consistent label spacing */
.app-form-card .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.app-form-card .form-group label,
.app-form-card .app-general-q {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 0.15rem;
}

/* Form rows — consistent spacing */
.app-form-card .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) {
  .app-form-card .form-row { grid-template-columns: 1fr 1fr; }
}

/* Radio groups — ALWAYS on one line, never wrap */
.app-form-card .radio-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.5rem;
  align-items: center;
  margin-top: 0.35rem;
}

.app-form-card .radio-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  white-space: nowrap;
}

.app-form-card .radio-label input[type="radio"],
.app-form-card .radio-label input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
}

/* General info items */
.app-general-item {
  background: var(--cream);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.app-general-item .app-general-q {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  margin: 0;
}

/* Employer blocks — tighter spacing */
.app-employer-block .form-group {
  margin-bottom: 0.5rem;
}

/* Section titles — dark not white */
.app-section-title {
  color: var(--white) !important;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

/* Agreement items — fix checkbox alignment */
.agreement-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}
.agreement-item input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Days grid wraps neatly */
.days-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

/* Work type checkboxes on one line */
.work-type-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.4rem;
}

/* Textarea consistent */
.app-form-card textarea.form-control {
  resize: vertical;
  min-height: 5rem;
}

/* ── APPLICATION FORM SPACING & ALIGNMENT FIXES ─────────── */

/* Consistent spacing between all form groups */
.app-form-card .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.app-form-card .form-group:last-child { margin-bottom: 0; }

/* Labels — consistent size and spacing */
.app-form-card .form-group label,
.app-form-card .app-general-q {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  display: block;
  margin-bottom: 0.25rem;
}

/* form-row consistent gap */
.app-form-card .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .app-form-card .form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .app-form-card .form-row.form-row-3cols { grid-template-columns: 1fr 1fr 1fr; }
}

/* Radio groups — ALWAYS on one line, never wrap */
.app-form-card .radio-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
  margin-top: 0.25rem;
}

.app-form-card .radio-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.app-form-card .radio-label input[type="radio"],
.app-form-card .radio-label input[type="checkbox"] {
  accent-color: var(--blue);
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  flex-shrink: 0;
}

/* General info items — consistent padding */
.app-general-item {
  background: var(--cream);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Employer block internal spacing */
.app-employer-block .form-group {
  margin-bottom: 0.75rem;
}
.app-employer-block .form-row {
  margin-bottom: 0.75rem;
}

/* Section spacing */
.app-section {
  padding: 1.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.app-section > *:last-child { margin-bottom: 0; }

/* Controls consistent height */
.app-form-card .form-control {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  width: 100%;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
  font-family: var(--font-sans);
}
.app-form-card .form-control:focus { border-color: var(--blue); }


/* Force about hero text fully visible and white */
.about-hero-card .fade-up,
.about-hero-card-content,
.about-hero-card-content * {
  opacity: 1 !important;
  transform: none !important;
  color: #ffffff !important;
}

.about-stat-label {
  color: rgba(255,255,255,0.70) !important;
}

.about-hero-card-content {
  min-height: 42rem !important;
}

@media (max-width: 768px) {
  .about-hero-card-content {
    min-height: 28rem !important;
  }
}

@media (max-width: 480px) {
  .about-hero-card-content {
    min-height: 22rem !important;
  }
}


/* About hero quote — bigger text */
.about-hero-quote {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  opacity: 1 !important;
}

/* Stats — tight 5px gap, pushed to bottom */
.about-stats-row {
  margin-top: auto !important;
  padding-top: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1.5rem 3rem !important;
  align-items: flex-end !important;
}

.about-stat-value {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  opacity: 1 !important;
  line-height: 1 !important;
  margin-bottom: 5px !important;
}

.about-stat-label {
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.75) !important;
  opacity: 1 !important;
  margin-top: 0 !important;
  line-height: 1 !important;
}


/* Fix Yes/No radio alignment */
.app-general-item .radio-group {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 1.5rem !important;
  margin-top: 0.5rem !important;
}

.app-general-item .radio-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.4rem !important;
  white-space: nowrap !important;
}

.app-general-item .radio-label input[type="radio"] {
  width: 1rem !important;
  height: 1rem !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
  vertical-align: middle !important;
  position: relative !important;
  top: 0 !important;
}


.radio-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
  line-height: 1 !important;
}

.radio-label input[type="radio"] {
  display: inline-block !important;
  width: 1rem !important;
  height: 1rem !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
  vertical-align: middle !important;
  position: static !important;
  top: auto !important;
  transform: none !important;
}


/* ── ABOUT STATS MOBILE FIX ─────────────────────────────── */
@media (max-width: 639px) {
  .about-stats-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .about-stat-value {
    font-size: 1.6rem !important;
  }

  .about-stat-label {
    font-size: 0.72rem !important;
  }
}

/* ── VALUES SECTION MOBILE FIX ───────────────────────────── */
@media (max-width: 639px) {
  .values-banner {
    height: auto !important;
    min-height: 32rem !important;
  }

  .values-tabs {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    max-width: 100% !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    padding: 1rem !important;
    gap: 0.4rem !important;
    z-index: 10 !important;
  }

  .values-content {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    max-width: 100% !important;
    padding: 1rem !important;
  }

  .values-banner-overlay {
    position: absolute !important;
    inset: 0 !important;
  }

  .values-banner img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .values-banner {
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .values-content h3 {
    font-size: 1rem !important;
  }

  .values-content p {
    display: block !important;
    font-size: 0.75rem !important;
  }
}


/* ── VALUES SECTION MOBILE FIX ───────────────────────────── */
@media (max-width: 639px) {
  .values-banner {
    height: 22rem !important;
    position: relative !important;
  }

  .values-tabs {
    position: absolute !important;
    left: 1rem !important;
    bottom: 1rem !important;
    top: auto !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0.4rem !important;
    max-width: 60% !important;
  }

  .values-content {
    position: absolute !important;
    right: 1rem !important;
    top: 1rem !important;
    bottom: auto !important;
    max-width: 55% !important;
  }

  .values-content h3 {
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
  }

  .values-content p {
    font-size: 0.7rem !important;
    display: block !important;
  }

  .values-dot { display: none !important; }
}

/* ── VALUES SECTION MOBILE FIX ───────────────────────────── */
@media (max-width: 639px) {
  .values-banner {
    height: 12rem !important;
  }

  .values-content {
    top: 0.75rem !important;
    right: 0.75rem !important;
    left: 0.75rem !important;
    max-width: 100% !important;
    bottom: auto !important;
  }

  .values-content h3 {
    font-size: 0.9rem !important;
    line-height: 1.3 !important;
  }

  .values-content p {
    display: none !important;
  }

  .values-tabs {
    left: 0.75rem !important;
    bottom: 0.75rem !important;
    max-width: 90% !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0.35rem !important;
  }

  .values-tab-btn {
    font-size: 0.65rem !important;
    padding: 0.25rem 0.65rem !important;
  }
}

@media (max-width: 639px) {
  .values-banner {
    height: 16rem !important;
    width: 100% !important;
    border-radius: var(--radius-xl) !important;
  }

  .values-content {
    top: 0.75rem !important;
    right: 0.75rem !important;
    left: auto !important;
    max-width: 55% !important;
    bottom: auto !important;
  }

  .values-content h3 {
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
    text-align: right !important;
  }

  .values-content p {
    display: none !important;
  }

  .values-tabs {
    left: 0.75rem !important;
    bottom: 0.75rem !important;
    right: auto !important;
    max-width: 55% !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0.35rem !important;
  }

  .values-tab-btn {
    font-size: 0.65rem !important;
    padding: 0.25rem 0.65rem !important;
  }

  .values-dots { display: none !important; }
}

@media (max-width: 639px) {
  .values-banner {
    height: 12rem !important;
    width: calc(100% + 2rem) !important;
    margin-left: -1rem !important;
    margin-right: -1rem !important;
    border-radius: 0 !important;
  }
}

@media (max-width: 639px) {
  .values-banner {
    height: 14rem !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: var(--radius-xl) !important;
  }
}


@media (max-width: 639px) {
  .float-card {
    display: block !important;
    max-width: 8rem !important;
    padding: 0.5rem 0.65rem !important;
  }

  .float-card-top-right {
    top: 0.5rem !important;
    right: 0.5rem !important;
    left: auto !important;
  }

  .float-card-bottom-left {
    bottom: 0.5rem !important;
    left: 0.5rem !important;
    right: auto !important;
  }

  .float-card-title {
    font-size: 0.7rem !important;
    font-weight: 700 !important;
  }

  .float-card-desc {
    font-size: 0.62rem !important;
    line-height: 1.3 !important;
  }

  .float-card-icon {
    width: 1.5rem !important;
    height: 1.5rem !important;
    margin-bottom: 0.25rem !important;
  }

  .float-card-icon svg {
    width: 12px !important;
    height: 12px !important;
  }
}


@media (max-width: 639px) {
  .float-card.glass {
    background: rgba(255,255,255,0.55) !important;
    backdrop-filter: blur(6px) !important;
  }

  .float-card.orange {
    background: rgba(0,53,136,0.65) !important;
    backdrop-filter: blur(6px) !important;
  }
}


@media (max-width: 639px) {
  .values-banner {
    height: 18rem !important;
    width: 100% !important;
    border-radius: var(--radius-xl) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}


@media (max-width: 639px) {
  .cta-actions {
    flex-direction: column !important;
    width: 100% !important;
  }

  .cta-actions .btn,
  .cta-actions a {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    display: flex !important;
  }
}

@media (max-width: 639px) {
  .about-page-hero h1 {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
  }
}

/* About page h1 - all screen sizes */
.about-page-hero h1 {
  font-size: clamp(1.75rem, 3vw, 2.2rem) !important;
  line-height: 1.2 !important;
}

@media (max-width: 1023px) {
  .mobile-menu .current-menu-item a,
  .mobile-menu .current_page_item a,
  .mobile-menu a.active {
    color: var(--blue) !important;
    font-weight: 700 !important;
    border-left: 3px solid var(--blue) !important;
    padding-left: 0.75rem !important;
  }
}

.service-card-image img {
  width: 100% !important;
  height: 12rem !important;
  object-fit: cover !important;
  max-width: 100% !important;
}

@media (min-width: 640px) {
  .service-card-image img { height: 13rem !important; }
}

@media (min-width: 768px) {
  .service-card-image img { height: 14rem !important; }
}


.about-hero-quote {
  font-size: clamp(0.95rem, 2vw, 1.4rem) !important;
  -webkit-line-clamp: 3 !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  line-height: 1.4 !important;
}

/* Application page section title badges */
.app-section-title {
  display: flex !important;
  justify-content: center !important;
  width: fit-content !important;
  margin: 0 auto 1.25rem auto !important;
  padding: 0.6rem 2rem !important;
  background: var(--blue) !important;
  color: #ffffff !important;
  border-radius: 9999px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-align: center !important;
}

@media (max-width: 639px) {
  .about-page-hero h1 {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
  }
}

/* About page h1 - all screen sizes */
.about-page-hero h1 {
  font-size: clamp(1.4rem, 3vw, 2.2rem) !important;
  line-height: 1.2 !important;
}

.service-card-image img {
  height: 16rem !important;
  object-position: center center !important;
}

@media (min-width: 640px) {
  .service-card-image img { height: 18rem !important; }
}

@media (min-width: 1024px) {
  .service-card-image img { height: 20rem !important; }
}

@media (max-width: 639px) {
  .hero-portrait {
    aspect-ratio: 3/4 !important;
    min-height: 24rem !important;
  }

  .hero-portrait img {
    object-position: center top !important;
  }

  .float-card-bottom-left {
    bottom: -1rem !important;
    left: 0.5rem !important;
  }
}

.hero-portrait {
  aspect-ratio: 9/10 !important;
}

.hero-portrait img {
  object-fit: cover !important;
  object-position: 30% center !important;
}

@media (min-width: 1024px) {
  .hero-portrait {
    aspect-ratio: 4/5 !important;
  }
}

.hero-image-wrap {
  flex: 1.5 !important;
}

.hero-portrait {
  aspect-ratio: 4/3 !important;
}

.hero-portrait img {
  object-fit: cover !important;
  object-position: center center !important;
}

@media (max-width: 639px) {
  /* Hide Assisted Living card on mobile */
  .float-card-top-right {
    display: none !important;
  }

  /* Fix image not filling screen width */
  .hero-image-wrap {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .hero-portrait {
    width: 100% !important;
    border-radius: var(--radius-xl) !important;
    aspect-ratio: 4/3 !important;
  }

  .hero-portrait img {
    object-position: center top !important;
  }
}