@charset "UTF-8";

/* ==========================================================================
   EASTLAND MEDSTAFF - COMPREHENSIVE DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* 1. CSS VARIABLES & PALETTE */
:root {
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Primary Brand Colors */
  --color-navy: #0B2234;
  --color-navy-dark: #071926;
  --color-navy-light: #163852;
  --color-terracotta: #BA533C;
  --color-terracotta-hover: #A74630;
  --color-terracotta-light: #FCEEE6;

  --color-sage: #768D6E;
  --color-sage-light: #E5EDE2;
  --color-sage-dark: #5C7255;
  --color-olive-bar: #7D8E77;

  --color-blue-tint: #E2EDF7;
  --color-cream-bg: #FAF7F2;
  --color-card-cream: #F4EFEB;
  --color-white: #FFFFFF;

  --color-text-dark: #122533;
  --color-text-muted: #606F7B;
  --color-border: #E8E2D8;

  --radius-pill: 50px;
  --radius-card: 16px;
  --radius-sm: 10px;

  --shadow-subtle: 0 4px 20px rgba(11, 34, 52, 0.05);
  --shadow-hover: 0 12px 30px rgba(11, 34, 52, 0.1);
}

/* 2. GLOBAL RESET & BASE STYLES */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-cream-bg);
  color: var(--color-text-dark);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 3. TYPOGRAPHY UTILITIES */
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-terracotta);
  text-transform: uppercase;
}

.section-serif-title {
  font-family: var(--font-serif);
  /* font-size: clamp(2rem, 3.8vw, 3rem); */
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.2;
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
}

.italic-serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-terracotta);
  font-weight: 400;
}

/* 4. BUTTONS & PILL CONTROLS */
.btn-terra-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-terracotta);
  color: var(--color-white) !important;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-terracotta);
  box-shadow: 0 4px 14px rgba(186, 83, 60, 0.25);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-terra-pill:hover {
  background-color: var(--color-terracotta-hover);
  border-color: var(--color-terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(186, 83, 60, 0.35);
}

.btn-outline-dark-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--color-navy) !important;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-navy);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-outline-dark-pill:hover {
  background-color: var(--color-navy);
  color: var(--color-white) !important;
  transform: translateY(-2px);
}

.btn-navy-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-navy);
  color: var(--color-white) !important;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-navy);
  box-shadow: 0 4px 14px rgba(11, 34, 52, 0.2);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-navy-pill:hover {
  background-color: var(--color-navy-dark);
  border-color: var(--color-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 34, 52, 0.3);
}

.btn-outline-light-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--color-white) !important;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-outline-light-pill:hover {
  background-color: var(--color-white);
  color: var(--color-navy) !important;
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-nav-request {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-navy);
  color: var(--color-white) !important;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-navy);
  transition: all 0.25s ease;
}

.btn-nav-request:hover {
  background-color: var(--color-terracotta);
  border-color: var(--color-terracotta);
  transform: translateY(-1px);
}

/* 5. HEADER & NAVBAR */
.site-header {
  background-color: var(--color-cream-bg);
  border-bottom: 1px solid rgba(11, 34, 52, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  padding: 6px 0;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 0;
  transition: transform 0.25s ease;
}

.brand-logo-wrap:hover {
  transform: scale(1.03);
}

.brand-logo-img {
  height: 60px;
  max-height: 62px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(11, 34, 52, 0.08));
  transition: filter 0.25s ease;
}

.brand-logo-wrap:hover .brand-logo-img {
  filter: drop-shadow(0 4px 12px rgba(186, 83, 60, 0.18));
}

.footer-logo-wrap .brand-logo-img {
  height: 65px;
  max-height: 68px;
}

.brand-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--color-navy);
  line-height: 1;
}

.brand-subtitle-main {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: var(--color-terracotta);
  line-height: 1.2;
}

.brand-subtext {
  font-family: var(--font-sans);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  font-weight: 600;
  line-height: 1;
}

.navbar-nav .nav-link {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-navy) !important;
  padding: 8px 14px !important;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-terracotta) !important;
}

.dropdown-chevron {
  font-size: 0.65rem;
  vertical-align: middle;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.75;
}

.dropdown-toggle::after {
  display: none !important;
}

.nav-item.dropdown:hover > .nav-link .dropdown-chevron,
.nav-item.dropdown.show > .nav-link .dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.modern-dropdown {
  background: var(--color-white, #ffffff);
  border: 1px solid rgba(11, 34, 52, 0.08);
  border-top: 3px solid var(--color-terracotta, #BA533C);
  border-radius: 14px;
  box-shadow: 0 16px 36px -6px rgba(11, 34, 52, 0.14), 0 6px 16px -3px rgba(11, 34, 52, 0.06);
  padding: 8px 6px;
  min-width: 240px;
  animation: dropdownFadeSlideIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: top center;
}

@keyframes dropdownFadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modern-dropdown .dropdown-item {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-navy, #0B2234);
  padding: 9px 14px;
  margin: 2px 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.modern-dropdown .dropdown-item i {
  font-size: 0.95rem;
  width: 22px;
  text-align: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.modern-dropdown .dropdown-item:hover,
.modern-dropdown .dropdown-item:focus {
  background-color: var(--color-cream-bg, #FAF7F2);
  color: var(--color-terracotta, #BA533C) !important;
  transform: translateX(4px);
}

.submenu-arrow {
  font-size: 0.68rem !important;
  opacity: 0.6;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.dropdown-submenu:hover .submenu-arrow {
  transform: translateX(3px);
  opacity: 1;
  color: var(--color-terracotta, #BA533C);
}

/* Dropdown Submenu */
.dropdown-submenu {
  position: relative;
}

@media (min-width: 992px) {
  .navbar-nav .nav-item.dropdown:hover > .modern-dropdown {
    display: block;
  }
  
  .dropdown-submenu > .modern-dropdown {
    top: 0;
    left: 100%;
    margin-left: 4px;
    margin-top: -8px;
    display: none;
  }

  .dropdown-submenu:hover > .modern-dropdown {
    display: block;
  }
}

/* Mobile Animated Hamburger to X Toggler */
.custom-toggler {
  width: 42px;
  height: 42px;
  position: relative;
  border: 1.5px solid var(--color-border) !important;
  border-radius: 10px;
  background-color: var(--color-white);
  padding: 0 !important;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(11, 34, 52, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.custom-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(186, 83, 60, 0.2) !important;
}

.custom-toggler:hover {
  background-color: var(--color-card-cream);
  border-color: var(--color-terracotta) !important;
}

.custom-toggler .toggler-icon {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-navy);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

/* Transform into "X" when navbar is open (when NOT collapsed) */
.custom-toggler:not(.collapsed) .top-bar,
.custom-toggler[aria-expanded="true"] .top-bar {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--color-terracotta);
}

.custom-toggler:not(.collapsed) .middle-bar,
.custom-toggler[aria-expanded="true"] .middle-bar {
  opacity: 0;
  transform: scale(0);
}

.custom-toggler:not(.collapsed) .bottom-bar,
.custom-toggler[aria-expanded="true"] .bottom-bar {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--color-terracotta);
}

/* 6. HERO SECTION (SCREEN 1) */
.hero-section {
  position: relative;
  background-color: var(--color-cream-bg);
  overflow: hidden;
  padding-bottom: 2rem;
}

.min-vh-hero {
  min-height: calc(88vh - 75px);
}

.hero-curved-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(circle at 75% 40%, rgba(229, 237, 226, 0.5) 0%, rgba(250, 247, 242, 0) 70%);
  pointer-events: none;
}

.hero-leaf-watermark {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 320px;
  opacity: 0.10;
  pointer-events: none;
  mix-blend-mode: multiply;
  transform: rotate(-10deg) translate(30px, 30px);
}

.hero-watermark-img {
  width: 100%;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.15;
}

.hero-lead-text {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 540px;
}

.hero-feature-item {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(11, 34, 52, 0.06);
}

.feature-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.icon-sage-circle {
  background-color: var(--color-sage-light);
  color: var(--color-sage);
}

.icon-navy-circle {
  background-color: var(--color-blue-tint);
  color: var(--color-navy);
}

.icon-terra-circle {
  background-color: var(--color-terracotta-light);
  color: var(--color-terracotta);
}

.feature-item-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.2;
}

.hero-emblem-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto;
}

.hero-emblem-svg {
  width: 100%;
  max-width: 440px;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(11, 34, 52, 0.08));
  animation: subtleFloat 6s ease-in-out infinite alternate;
}

@keyframes subtleFloat {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-8px);
  }
}

/* 7. THREE SPECIALTIES / OUR SERVICES SECTION (SCREEN 2) */
.specialties-section {
  background-color: var(--color-cream-bg);
  position: relative;
}

.specialty-card {
  background-color: var(--color-white);
  border-radius: 18px;
  padding: 40px 32px 32px;
  border: 1px solid rgba(11, 34, 52, 0.06);
  box-shadow: 0 4px 20px rgba(11, 34, 52, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.specialty-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 34, 52, 0.09);
}

.card-leaf-watermark {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 110px;
  opacity: 0.18;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.specialty-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box-navy {
  background-color: var(--color-blue-tint);
  color: var(--color-navy);
}

.icon-box-sage {
  background-color: var(--color-sage-light);
  color: var(--color-sage);
}

.icon-box-peach {
  background-color: var(--color-terracotta-light);
  color: var(--color-terracotta);
}

.specialty-fa-icon {
  font-size: 1.4rem;
}

.specialty-card-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--color-navy);
}

.specialty-card-desc {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.specialty-action-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-terracotta);
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.specialty-action-link:hover {
  color: var(--color-terracotta-hover);
  transform: translateX(4px);
}

/* 8. FOR EMPLOYERS SECTION (SCREEN 3) */
.employers-section {
  background-color: var(--color-cream-bg);
  position: relative;
}
.employers-content-wrap .section-eyebrow {
  display: block;
  text-align: center;
}
.employers-content-wrap .section-serif-title {
  text-align: center;
}
.employers-content-wrap .section-subtext {
  text-align: center;
}

/* ---- Timeline Container ---- */
.step-timeline-container {
  padding-left: 10px;
  position: relative;
}
.timeline-vertical-line {
  position: absolute;
  top: 20px;
  left: 28px;
  bottom: 30px;
  width: 2px;
  background-color: #D6DDD2;
  z-index: 0;
}

/* ---- Step Item (Mobile default = Vertical) ---- */
.step-timeline-container .timeline-step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.step-timeline-container .timeline-step-item:last-child {
  margin-bottom: 0;
}
.step-timeline-container .timeline-step-text {
  margin-left: 1rem;
}

.timeline-circle-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}
.circle-navy { background-color: var(--color-navy); }
.circle-sage { background-color: var(--color-sage); }
.circle-terra { background-color: var(--color-terracotta); }
.circle-sand { background-color: #A39682; }

.step-item-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-navy);
}
.step-item-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  max-width: 360px;
}

/* ---- Desktop / Web: Horizontal Timeline ---- */
@media (min-width: 992px) {
  .step-timeline-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding-left: 0;
  }

  /* Hide the mobile vertical line on desktop */
  .step-timeline-container .timeline-vertical-line {
    display: none;
  }

  .step-timeline-container .timeline-step-item {
    flex: 1 1 0;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
    padding: 0 14px;
    position: relative;
  }

  /* Line drawn from center of previous circle to center of current circle */
  .step-timeline-container .timeline-step-item:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 19px; /* half of 38px circle height */
    /*left: -50%;*/
    width: 100%;
    height: 2px;
    background-color: #D6DDD2;
    z-index: 0;
  }

  .step-timeline-container .timeline-step-text {
    margin-left: 0;
    margin-top: 0.75rem;
  }
  .step-item-desc {
    max-width: 220px;
    margin: 0 auto;
  }
}

.employer-image-frame-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.employer-curved-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(11, 34, 52, 0.12);
  border: 4px solid var(--color-white);
  max-width: 520px;
  width: 100%;
}
.employer-desk-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.employer-curved-img-wrap:hover .employer-desk-img {
  transform: scale(1.03);
}



/* 10. OUR TEAM SECTION (SCREEN 5) */
.team-section {
  background-color: var(--color-cream-bg);
}

.team-profile-card {
  background-color: var(--color-card-cream);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(11, 34, 52, 0.05);
  border-top: 4px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(11, 34, 52, 0.09);
  background-color: var(--color-white);
}

/* Top accent line colors (matches timeline brand palette) */
.team-profile-card.accent-navy {
  border-top-color: var(--color-navy);
}
.team-profile-card.accent-sage {
  border-top-color: var(--color-sage);
}
.team-profile-card.accent-terra {
  border-top-color: var(--color-terracotta);
}

.team-info-box {
  width: 100%;
}
.team-member-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: 0.01em;
}
.team-member-role {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ---- Mobile Responsive ---- */
@media (max-width: 575.98px) {
  .team-info-box {
    padding: 1.75rem 1rem;
  }
  .team-member-name {
    font-size: 1.05rem;
  }
  .team-member-role {
    font-size: 0.82rem;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .team-member-name {
    font-size: 1rem;
  }
  .team-member-role {
    font-size: 0.8rem;
  }
}

.why-eastland-section {
  background-color: var(--color-cream-bg);
}

.why-eastland-card {
  background-color: var(--color-card-cream);
  border-radius: 16px;
  padding: 2.25rem 1.5rem;
  border: 1px solid rgba(11, 34, 52, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.why-eastland-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(11, 34, 52, 0.09);
  background-color: var(--color-white);
}

.why-eastland-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-white);
  background-color: var(--color-navy);
  box-shadow: 0 6px 16px rgba(11, 34, 52, 0.15);
  transition: transform 0.3s ease;
}
.why-eastland-card:hover .why-eastland-icon {
  transform: scale(1.08);
}

/* Rotate accent colors across the 4 cards */
.col-lg-3:nth-child(1) .why-eastland-icon {
  background-color: var(--color-navy);
}
.col-lg-3:nth-child(2) .why-eastland-icon {
  background-color: var(--color-sage);
}
.col-lg-3:nth-child(3) .why-eastland-icon {
  background-color: var(--color-terracotta);
}
.col-lg-3:nth-child(4) .why-eastland-icon {
  background-color: #A39682;
}

.why-eastland-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.6rem;
}

.why-eastland-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.55;
}

/* ---- Mobile Responsive ---- */
@media (max-width: 767.98px) {
  .why-eastland-card {
    padding: 2rem 1.25rem;
  }
  .why-eastland-icon {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }
  .why-eastland-title {
    font-size: 1.05rem;
  }
  .why-eastland-desc {
    font-size: 0.87rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .why-eastland-icon {
    width: 60px;
    height: 60px;
  }
}

/* 11. CTA SUPPORT BANNER (SCREEN 6 TOP) */
.cta-support-banner {
  background: linear-gradient(135deg, #091D2C 0%, #0C2B40 100%);
  color: var(--color-white);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-decor-leaf {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  width: 240px;
  opacity: 0.15;
  pointer-events: none;
  filter: brightness(2);
}

.cta-support-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 6px;
}

.cta-support-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* 12. SITE MAIN FOOTER (SCREEN 6 BOTTOM) */
.site-main-footer {
  background-color: var(--color-cream-bg);
  position: relative;
  overflow: hidden;
}

.footer-decor-leaf {
  position: absolute;
  bottom: 40px;
  right: 20px;
  width: 180px;
  opacity: 0.2;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-navy);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-nav-list li {
  margin-bottom: 10px;
}

.footer-nav-list a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.footer-nav-list a:hover {
  color: var(--color-terracotta);
  padding-left: 2px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-navy);
  color: var(--color-white) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.25s ease;
}

.social-icon-btn:hover {
  background-color: var(--color-terracotta);
  transform: translateY(-2px);
}

.footer-bottom-sage-bar {
  background-color: var(--color-olive-bar);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.85rem;
  font-weight: 400;
}

/* 13. ABOUT US PAGE SPECIFIC STYLES */
.custom-breadcrumb {
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--color-border);
}

.custom-breadcrumb .breadcrumb-item a {
  color: var(--color-navy);
}

.custom-breadcrumb .breadcrumb-item.active {
  color: var(--color-terracotta);
  font-weight: 600;
}

.min-vh-about-hero {
  min-height: 52vh;
}

.hero-tag-pill {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-navy);
  box-shadow: 0 2px 8px rgba(11, 34, 52, 0.04);
}

.about-hero-visual-card {
  max-width: 440px;
  margin: 0 auto;
}

.about-logo-frame {
  background: var(--color-white);
  border-radius: 24px;
  border: 1px solid rgba(11, 34, 52, 0.08);
  box-shadow: 0 15px 40px rgba(11, 34, 52, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.about-hero-logo-img {
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(11, 34, 52, 0.08));
}

.about-floating-badge {
  position: absolute;
  bottom: -15px;
  right: 10px;
  background: var(--color-white);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 25px rgba(11, 34, 52, 0.12);
  border: 1px solid var(--color-border);
}

.badge-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-sage-light);
  color: var(--color-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.badge-main-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.1;
}

.badge-sub-text {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.story-lead-para {
  font-size: 1.1rem;
  color: var(--color-navy);
  font-weight: 500;
  line-height: 1.6;
}

.story-image-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(11, 34, 52, 0.1);
  border: 4px solid var(--color-white);
}

.story-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.story-image-card:hover .story-img {
  transform: scale(1.03);
}

.stat-counter-card {
  background: var(--color-card-cream);
  border-radius: 16px;
  border: 1px solid rgba(11, 34, 52, 0.05);
  transition: all 0.25s ease;
}

.stat-counter-card:hover {
  background: var(--color-white);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(11, 34, 52, 0.08);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-terracotta);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--color-navy);
}

.stat-sub {
  font-size: 0.74rem;
  color: var(--color-text-muted);
}

/* Mission & Vision */
.mission-vision-card {
  background: var(--color-white);
  border-radius: 20px;
  border: 1px solid rgba(11, 34, 52, 0.06);
  box-shadow: 0 6px 25px rgba(11, 34, 52, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(11, 34, 52, 0.09);
}

.mv-icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.badge-terra {
  background: var(--color-terracotta-light);
  color: var(--color-terracotta);
}

.badge-navy {
  background: var(--color-blue-tint);
  color: var(--color-navy);
}

.mv-card-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-navy);
}

.mv-card-desc {
  font-size: 0.98rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Core Values */
.value-feature-card {
  background: var(--color-card-cream);
  border-radius: 16px;
  border: 1px solid rgba(11, 34, 52, 0.05);
  transition: all 0.3s ease;
}

.value-feature-card:hover {
  background: var(--color-white);
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(11, 34, 52, 0.08);
}

.value-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.icon-sand-circle {
  background-color: #EFE8DD;
  color: #8C7B65;
}

.value-title {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--color-navy);
}

.value-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* 14. CONTACT US PAGE SPECIFIC STYLES */
.contact-card {
  background: var(--color-white);
  border-radius: 18px;
  border: 1px solid rgba(11, 34, 52, 0.06);
  box-shadow: 0 4px 20px rgba(11, 34, 52, 0.04);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(11, 34, 52, 0.09);
}

.contact-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-fa-icon {
  font-size: 1.4rem;
}

.contact-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-navy);
}

.contact-card-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.contact-highlight-link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  transition: color 0.2s ease;
}

.contact-highlight-link:hover {
  color: var(--color-terracotta);
}

.contact-sub-link {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.contact-sub-link:hover {
  color: var(--color-navy);
}

.contact-form-card {
  background: var(--color-white);
  border-radius: 22px;
  border: 1px solid rgba(11, 34, 52, 0.06);
  box-shadow: 0 10px 35px rgba(11, 34, 52, 0.06);
}

.form-section-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-navy);
}

.custom-radio-pill {
  position: relative;
  margin: 0;
}

.custom-radio-pill .form-check-input {
  display: none;
}

.custom-radio-pill .form-check-label {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-card-cream);
  color: var(--color-navy);
  border: 1.5px solid var(--color-border);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-radio-pill .form-check-input:checked+.form-check-label {
  background-color: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
  box-shadow: 0 4px 12px rgba(11, 34, 52, 0.15);
}

.custom-input {
  background-color: #FAF8F5;
  border: 1.5px solid #E5DFD5;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--color-navy);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-input:focus {
  background-color: var(--color-white);
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(186, 83, 60, 0.12);
  outline: none;
}

.form-privacy-note {
  font-size: 0.78rem;
}

/* Sidebar Info Card */
.sidebar-info-card {
  background: var(--color-white);
  border-radius: 18px;
  border: 1px solid rgba(11, 34, 52, 0.06);
  box-shadow: 0 4px 20px rgba(11, 34, 52, 0.04);
}

.sidebar-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-sage-light);
  color: var(--color-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.sidebar-card-title {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--color-navy);
}

.sidebar-card-sub {
  font-size: 0.76rem;
  color: var(--color-text-muted);
}

.hours-schedule-list {
  font-size: 0.88rem;
}

.hours-schedule-list .day-label {
  color: var(--color-text-muted);
  font-weight: 500;
}

.hours-schedule-list .time-label {
  color: var(--color-navy);
  font-weight: 600;
}

.custom-contact-accordion .accordion-item {
  background: #FAF8F5;
  border: 1px solid var(--color-border);
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.custom-contact-accordion .accordion-button {
  background: #FAF8F5;
  color: var(--color-navy);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 14px 16px;
  box-shadow: none !important;
}

.custom-contact-accordion .accordion-button:not(.collapsed) {
  background: var(--color-white);
  color: var(--color-terracotta);
}

.custom-contact-accordion .accordion-body {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  padding: 12px 16px 16px;
  background: var(--color-white);
}

.sidebar-map-card {
  border-radius: 18px;
  border: 1px solid rgba(11, 34, 52, 0.08);
  box-shadow: 0 4px 20px rgba(11, 34, 52, 0.05);
}

/* 15. FAQ PAGE SPECIFIC STYLES */
.faq-search-wrapper {
  max-width: 580px;
}

.search-input-group {
  background: var(--color-white);
  border: 2px solid #E2DDD5;
  border-radius: var(--radius-pill);
  padding: 4px 8px;
  box-shadow: 0 6px 20px rgba(11, 34, 52, 0.06);
  transition: all 0.25s ease;
}

.search-input-group:focus-within {
  border-color: var(--color-terracotta);
  box-shadow: 0 8px 25px rgba(186, 83, 60, 0.15);
}

.search-icon-wrap {
  background: transparent;
  border: none;
  color: var(--color-terracotta);
  font-size: 1.1rem;
  padding-left: 14px;
}

.faq-search-input {
  border: none !important;
  box-shadow: none !important;
  font-size: 0.95rem;
  padding: 10px 14px;
  color: var(--color-navy);
}

.faq-filter-tabs {
  position: relative;
}

.faq-filter-btn {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  color: var(--color-navy);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  cursor: pointer;
}

.faq-filter-btn:hover {
  background: var(--color-card-cream);
  color: var(--color-terracotta);
}

.faq-filter-btn.active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(11, 34, 52, 0.18);
}

.faq-cat-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.faq-cat-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--color-navy);
}

.faq-cat-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.custom-faq-accordion .accordion-item {
  background: var(--color-white);
  border: 1px solid rgba(11, 34, 52, 0.07);
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(11, 34, 52, 0.02);
  transition: all 0.25s ease;
}

.custom-faq-accordion .accordion-item:hover {
  box-shadow: 0 6px 18px rgba(11, 34, 52, 0.06);
  border-color: rgba(186, 83, 60, 0.25);
}

.custom-faq-accordion .accordion-button {
  background: var(--color-white);
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 600;
  padding: 18px 22px;
  box-shadow: none !important;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
  background: #FAF8F5;
  color: var(--color-terracotta);
}

.custom-faq-accordion .accordion-body {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  padding: 14px 22px 22px;
  background: #FAF8F5;
}

.still-questions-card {
  background: var(--color-white);
  border-radius: 24px;
  border: 1px solid rgba(11, 34, 52, 0.07);
  box-shadow: 0 10px 30px rgba(11, 34, 52, 0.06);
}

/* 16. CAREERS PAGE SPECIFIC STYLES */
.careers-hero-visual-card {
  max-width: 460px;
  margin: 0 auto;
}

.career-hero-img-wrap {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(11, 34, 52, 0.1);
  border: 4px solid var(--color-white);
  background: var(--color-white);
}

.career-hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.career-hero-img-wrap:hover .career-hero-img {
  transform: scale(1.03);
}

.benefit-card {
  background: var(--color-card-cream);
  border-radius: 18px;
  border: 1px solid rgba(11, 34, 52, 0.05);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: var(--color-white);
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(11, 34, 52, 0.08);
}

.benefit-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.benefit-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-navy);
}

.benefit-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Job Board */
.job-tab-btn {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  color: var(--color-navy);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  cursor: pointer;
}

.job-tab-btn:hover {
  background: var(--color-card-cream);
  color: var(--color-terracotta);
}

.job-tab-btn.active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(11, 34, 52, 0.18);
}

.job-listing-card {
  background: var(--color-white);
  border-radius: 18px;
  border: 1px solid rgba(11, 34, 52, 0.07);
  box-shadow: 0 4px 20px rgba(11, 34, 52, 0.04);
  transition: all 0.3s ease;
}

.job-listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(11, 34, 52, 0.09);
  border-color: rgba(186, 83, 60, 0.25);
}

.job-badge {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.badge-healthcare {
  background-color: var(--color-blue-tint);
  color: var(--color-navy);
}

.badge-caregiver {
  background-color: var(--color-sage-light);
  color: var(--color-sage-dark);
}

.badge-education {
  background-color: var(--color-terracotta-light);
  color: var(--color-terracotta);
}

.job-pay-tag {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-terracotta);
}

.job-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-navy);
}

.job-meta-info {
  font-size: 0.82rem;
  font-weight: 500;
}

.job-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.skill-tag {
  background: #FAF8F5;
  border: 1px solid var(--color-border);
  color: var(--color-navy);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* 17. OUR TEAM PAGE SPECIFIC STYLES */
.team-detailed-card {
  background: var(--color-white);
  border-radius: 20px;
  border: 1px solid rgba(11, 34, 52, 0.07);
  box-shadow: 0 4px 20px rgba(11, 34, 52, 0.04);
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-detailed-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 34, 52, 0.09);
  border-color: rgba(186, 83, 60, 0.2);
}

.team-card-image-wrap {
  height: 280px;
  background-color: #E8E1D7;
  overflow: hidden;
}

.team-exec-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.team-detailed-card:hover .team-exec-img {
  transform: scale(1.04);
}

.team-role-floating-badge {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-leadership {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.badge-operations {
  background-color: var(--color-sage-dark);
  color: var(--color-white);
}

.badge-talent {
  background-color: var(--color-terracotta);
  color: var(--color-white);
}

.team-exec-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--color-navy);
}

.team-exec-position {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-terracotta);
}

.team-exec-bio {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.team-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-card-cream);
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.team-social-btn:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

/* Coordination Departments */
.team-dept-card {
  background: var(--color-card-cream);
  border-radius: 18px;
  border: 1px solid rgba(11, 34, 52, 0.05);
  transition: all 0.3s ease;
}

.team-dept-card:hover {
  background: var(--color-white);
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(11, 34, 52, 0.08);
}

.dept-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.dept-title {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--color-navy);
}

.dept-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.team-culture-card {
  background: var(--color-white);
  border-radius: 24px;
  border: 1px solid rgba(11, 34, 52, 0.07);
  box-shadow: 0 10px 30px rgba(11, 34, 52, 0.06);
  overflow: hidden;
}

.team-values-checklist {
  background: #FAF8F5;
  border-radius: 18px;
  border: 1px solid var(--color-border);
}

/* 18. RESPONSIVE DESIGN BREAKPOINTS */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 16px 20px;
    margin-top: 12px;
    box-shadow: 0 12px 30px rgba(11, 34, 52, 0.08);
  }

  .navbar-nav .nav-link {
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(11, 34, 52, 0.05);
    font-size: 0.95rem;
  }

  .modern-dropdown {
    box-shadow: none !important;
    border: 1px solid rgba(11, 34, 52, 0.08) !important;
    border-top: 1px solid rgba(11, 34, 52, 0.08) !important;
    background-color: var(--color-cream-bg, #FAF7F2) !important;
    border-radius: 12px !important;
    margin: 6px 0 10px 0 !important;
    padding: 6px !important;
    animation: none !important;
  }

  .modern-dropdown .dropdown-item {
    padding: 10px 14px !important;
    font-size: 0.92rem !important;
  }

  .dropdown-submenu .modern-dropdown {
    margin-left: 12px !important;
    background-color: var(--color-white, #ffffff) !important;
  }

  .nav-cta-wrapper {
    margin-top: 12px;
    width: 100%;
  }

  .btn-nav-request {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
}

@media (max-width: 991.98px) {
  .hero-curved-backdrop {
    width: 100%;
    opacity: 0.3;
  }

  .employer-curved-img-wrap {
    margin-top: 20px;
  }

  .timeline-vertical-line {
    display: none;
  }

  .cta-support-btns {
    justify-content: flex-start !important;
  }

  .about-floating-badge {
    position: static;
    margin-top: 15px;
    display: inline-block;
  }
}

@media (max-width: 575.98px) {
  .brand-logo-img {
    height: 48px;
    max-height: 50px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch !important;
  }

  .hero-features-row {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .cta-support-btns {
    flex-direction: column;
    align-items: stretch !important;
  }

  .faq-filter-btn,
  .job-tab-btn {
    width: 100%;
  }
}

/* ===== MOBILE RESPONSIVE: ALL INNER PAGES ===== */
@media (max-width: 767.98px) {

  /* General section spacing */
  section {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  /* Hero sections */
  .about-hero-section,
  .contact-hero-section,
  .faq-hero-section,
  .careers-hero-section,
  .team-hero-section {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .hero-heading {
    font-size: clamp(1.8rem, 7vw, 2.8rem) !important;
    line-height: 1.2 !important;
  }

  .section-serif-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem) !important;
  }

  .section-subtext {
    font-size: 0.9rem !important;
  }

  /* About page */
  .about-story-image-wrap,
  .career-hero-img-wrap {
    margin-top: 2rem;
  }

  .about-stat-card {
    text-align: center;
  }

  .about-floating-badge {
    position: static !important;
    margin-top: 1rem;
  }

  /* Contact page */
  .contact-card {
    margin-bottom: 1rem;
  }

  .contact-form-card,
  .sidebar-info-card,
  .sidebar-map-card {
    margin-top: 1.5rem;
  }

  /* FAQ page */
  .faq-search-wrapper {
    max-width: 100% !important;
  }

  .faq-filter-tabs {
    gap: 0.5rem !important;
  }

  .custom-faq-accordion .accordion-button {
    font-size: 0.95rem !important;
    padding: 14px 16px !important;
  }

  .faq-cat-title {
    font-size: 1.1rem !important;
  }

  /* Careers page */
  .job-filter-bar .row {
    gap: 0.75rem;
  }

  .job-listing-card {
    margin-bottom: 0;
  }

  .benefit-card {
    margin-bottom: 0;
  }

  .careers-hero-visual-card {
    margin-top: 2rem;
  }

  /* Team page */
  .team-card-image-wrap {
    height: 220px !important;
  }

  .team-exec-name {
    font-size: 1.2rem !important;
  }

  .team-dept-card {
    margin-bottom: 0;
  }

  .team-values-checklist {
    margin-top: 1.5rem;
  }

  /* Navbar mobile open menu  */
  .navbar-collapse {
    max-height: 80vh;
    overflow-y: auto;
  }
}

@media (max-width: 480px) {

  .hero-heading {
    font-size: clamp(1.6rem, 8vw, 2rem) !important;
  }

  .section-serif-title {
    font-size: clamp(1.3rem, 7vw, 1.8rem) !important;
  }


  .brand-logo-img {
    height: 44px !important;
  }

  .team-card-image-wrap {
    height: 200px !important;
  }

  .contact-card .p-4 {
    padding: 1rem !important;
  }

  .contact-form-card.p-4,
  .contact-form-card.p-lg-5 {
    padding: 1.25rem !important;
  }

  .sidebar-info-card.p-4 {
    padding: 1rem !important;
  }

  .job-listing-card.p-4 {
    padding: 1rem !important;
  }

  .btn-terra-pill,
  .btn-outline-dark-pill,
  .btn-outline-light-pill,
  .btn-navy-pill {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ==========================================================================
   EMPLOYER PAGE SPECIFIC STYLES
   ========================================================================== */
.employers-hero-section {
  background-color: var(--color-cream-bg);
  min-height: 520px;
  display: flex;
  align-items: center;
}

.employer-hero-img-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 4px solid var(--color-white);
  height: 380px;
}

.employer-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.employer-hero-img-wrap:hover .employer-hero-img {
  transform: scale(1.03);
}

.stats-counter-strip {
  background-color: var(--color-navy);
  border-radius: var(--radius-card);
  color: var(--color-white);
  box-shadow: 0 10px 30px rgba(11, 34, 52, 0.15);
}

.stat-counter-box .stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-terracotta);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-counter-box .stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.staffing-model-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.staffing-model-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-terracotta);
}

.model-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-navy);
}

.model-text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.model-feature-list li {
  font-size: 0.88rem;
  color: var(--color-text-dark);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.bg-white-contrast {
  background-color: var(--color-white);
}

.bg-cream-contrast {
  background-color: var(--color-card-cream);
}

.discipline-sector-card {
  background-color: var(--color-cream-bg);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.discipline-sector-card:hover {
  border-color: var(--color-navy);
  box-shadow: var(--shadow-hover);
}

.sector-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
}

.sector-subtitle {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-terracotta);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sector-description {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.discipline-roles-list .role-pill-item {
  background: var(--color-white);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 0.4rem;
  border: 1px solid var(--color-border);
}

.compliance-intro-card {
  padding-right: 1.5rem;
}

.compliance-highlight-box {
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  border-left: 4px solid var(--color-terracotta);
  box-shadow: var(--shadow-subtle);
}

.compliance-step-item {
  background: var(--color-white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-subtle);
  transition: transform 0.25s ease;
}

.compliance-step-item:hover {
  transform: translateX(6px);
  border-color: var(--color-terracotta);
}

.step-badge {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background-color: var(--color-navy);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-navy);
}

.step-desc {
  font-size: 0.88rem;
  line-height: 1.5;
}

.workflow-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  position: relative;
  transition: all 0.3s ease;
}

.workflow-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.workflow-step-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(186, 83, 60, 0.2);
  line-height: 1;
  position: absolute;
  top: 15px;
  right: 20px;
}

.workflow-title {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-navy);
}

.workflow-text {
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-sidebar-card {
  background-color: var(--color-card-cream);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
}

.contact-pill-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-subtle);
}

.sidebar-guarantee-box {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.staff-request-form-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-subtle);
}

.modern-input {
  border-radius: 8px;
  border: 1.5px solid var(--color-border);
  padding: 0.65rem 0.95rem;
  font-size: 0.92rem;
  background-color: #FAFCFE;
  transition: all 0.2s ease;
}

.modern-input:focus {
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(186, 83, 60, 0.12);
  background-color: var(--color-white);
}

.checkbox-group-wrap {
  background-color: var(--color-cream-bg);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.custom-check .form-check-label {
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
}

.custom-check .form-check-input:checked {
  background-color: var(--color-terracotta);
  border-color: var(--color-terracotta);
}

.modern-custom-accordion .accordion-item {
  border: 1px solid var(--color-border);
  border-radius: 12px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.modern-custom-accordion .accordion-button {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--color-navy);
  background-color: var(--color-white);
  padding: 1.15rem 1.4rem;
}

.modern-custom-accordion .accordion-button:not(.collapsed) {
  background-color: var(--color-card-cream);
  color: var(--color-terracotta);
  box-shadow: none;
}

.modern-custom-accordion .accordion-body {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  padding: 1.25rem 1.4rem;
  background-color: var(--color-white);
}

/* ==========================================================================
   CAREGIVER PAGE SPECIFIC STYLES
   ========================================================================== */
.caregivers-hero-section {
  background-color: var(--color-cream-bg);
  min-height: 520px;
  display: flex;
  align-items: center;
}

.caregiver-hero-img-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 4px solid var(--color-white);
  height: 380px;
  background: var(--color-card-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.caregiver-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.caregiver-hero-img-wrap:hover .caregiver-hero-img {
  transform: scale(1.03);
}

.caregiver-role-card {
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.caregiver-role-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-sage);
}

.role-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.role-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
}

.role-badge-tag {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--color-terracotta);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.role-card-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.pay-range-pill {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-navy);
  background-color: var(--color-card-cream);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.apply-text-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-terracotta);
  transition: all 0.2s ease;
}

.apply-text-link:hover {
  color: var(--color-terracotta-hover);
  transform: translateX(3px);
}

.caregiver-perks-visual {
  border-radius: var(--radius-card);
}

.perks-img-frame {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 4px solid var(--color-white);
  height: 360px;
}

.perks-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.perks-quote-box {
  background-color: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-card);
  margin-top: -40px;
  position: relative;
  z-index: 2;
  margin-left: 20px;
  margin-right: 20px;
  box-shadow: 0 10px 30px rgba(11, 34, 52, 0.2);
}

.perks-quote-box .quote-text {
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.6;
}

.perks-quote-box .quote-author {
  font-size: 0.82rem;
  color: var(--color-terracotta-light);
}

.benefit-item-card {
  background-color: var(--color-cream-bg);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  transition: all 0.25s ease;
}

.benefit-item-card:hover {
  background-color: var(--color-white);
  border-color: var(--color-terracotta);
  box-shadow: var(--shadow-subtle);
  transform: translateY(-2px);
}

.benefit-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-navy);
}

.benefit-text {
  font-size: 0.86rem;
  line-height: 1.5;
}

/* ==========================================================================
   SERVICE PAGES (HEALTHCARE, CAREGIVING/DSP, EDUCATION) SPECIFIC STYLES
   ========================================================================== */
.service-hero-section {
  background-color: var(--color-cream-bg);
  min-height: 520px;
  display: flex;
  align-items: center;
}

.service-hero-img-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 4px solid var(--color-white);
  height: 380px;
  background: var(--color-card-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-hero-img-wrap:hover .service-hero-img {
  transform: scale(1.03);
}

.service-role-card {
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-role-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-terracotta);
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
}

.service-card-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.service-sub-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.badge-micro {
  font-size: 0.72rem;
  font-weight: 600;
  background-color: var(--color-cream-bg);
  color: var(--color-navy);
  border: 1px solid var(--color-border);
  padding: 3px 8px;
  border-radius: 6px;
}

.card-action-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-navy);
}

.facility-guarantee-card {
  background: linear-gradient(145deg, var(--color-navy-dark), var(--color-navy-light));
  border-radius: var(--radius-card);
  color: var(--color-white);
  box-shadow: 0 12px 35px rgba(11, 34, 52, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.credential-checklist li {
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.facility-check-item {
  padding: 0.75rem 1rem;
  background: var(--color-cream-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  transition: transform 0.2s ease;
}

.facility-check-item:hover {
  transform: translateX(4px);
  border-color: var(--color-navy);
  background: var(--color-white);
}

.check-icon-wrap {
  width: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   SITE PRELOADER STYLES & ANIMATIONS
   ========================================================================== */
.site-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-cream-bg);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s ease;
  overflow: hidden;
}

.site-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-backdrop-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(186, 83, 60, 0.08) 0%, rgba(118, 141, 110, 0.06) 50%, transparent 70%);
  border-radius: 50%;
  animation: preloaderPulseGlow 3s ease-in-out infinite alternate;
}

.preloader-inner {
  max-width: 320px;
  padding: 20px;
}

.preloader-logo-container {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-ring-spin-outer {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--color-terracotta);
  border-right-color: var(--color-terracotta);
  animation: preloaderSpin 1.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.preloader-ring-spin-inner {
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: var(--color-sage);
  border-left-color: var(--color-navy);
  animation: preloaderSpinReverse 1.8s linear infinite;
}

.preloader-logo-circle {
  width: 76px;
  height: 76px;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-border);
  position: relative;
  z-index: 3;
  animation: preloaderLogoPulse 2s ease-in-out infinite;
}

.preloader-logo-img {
  width: 48px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.preloader-brand-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.preloader-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-terracotta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.preloader-progress-track {
  width: 140px;
  height: 3px;
  background-color: rgba(11, 34, 52, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.preloader-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-sage));
  border-radius: 10px;
  animation: preloaderProgressBar 1.4s ease-in-out infinite;
}

/* Animations */
@keyframes preloaderSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes preloaderSpinReverse {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes preloaderLogoPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes preloaderPulseGlow {
  0% {
    transform: scale(0.85);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes preloaderProgressBar {
  0% {
    left: -40%;
    width: 30%;
  }

  50% {
    width: 60%;
  }

  100% {
    left: 100%;
    width: 30%;
  }
}



