:root {
  --primary: #318FBE;
  --primary-dark: #164B68;
  --primary-light: #EAF7FD;
  --accent: #318FBE;
  --ink: #164B68;
  --muted: #526A7B;
  --white: #fff;
  --bg: #F6FCFF;
  --border: #D7EAF3;
  --shadow: 0 18px 50px rgba(74, 169, 216, 0.12);
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1200px;
}
.section-pad {
  padding: 100px 0;
}
.topbar {
  background: var(--primary);
  color: #fff;
  font-size: 0.86rem;
}
.topbar a {
  color: #fff;
}
.navbar {
  padding: 15px 0;
  background: #fff;
  transition: 0.3s;
  z-index: 1000;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 9px 0;
  box-shadow: 0 8px 28px rgba(74, 169, 216, 0.1);
  border-color: var(--border);
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 8px 20px rgba(74, 169, 216, 0.18);
}
.brand-title {
  font-family: Georgia, serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1;
}
.brand-sub {
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  color: var(--primary);
  text-transform: uppercase;
}
.navbar-toggler {
  box-shadow: none !important;
}
.nav-link {
  font-weight: 700;
  color: #164B68 !important;
  margin: 0 4px;
  padding: 10px 11px !important;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}
.dropdown-menu {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow);
  min-width: 270px;
}
.dropdown-item {
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.93rem;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--primary-light);
  color: var(--primary);
}
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .navbar .dropdown-toggle::after {
    transition: 0.2s;
  }
  .navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}
.btn-brand {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  padding: 13px 23px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s;
  box-shadow: 0 10px 22px rgba(74, 169, 216, 0.18);
}
.btn-brand:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}
.success-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(6, 29, 42, 0.52);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 2000;
}
.success-modal.show {
  opacity: 1;
  visibility: visible;
}
.success-modal-card {
  width: min(100%, 440px);
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
  border-radius: 28px;
  padding: 28px 24px 22px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(12, 43, 60, 0.18);
  border: 1px solid rgba(49, 143, 190, 0.14);
  transform: translateY(18px);
  transition: transform 0.25s ease;
  position: relative;
  overflow: hidden;
}
.success-modal-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, #6cc8eb 100%);
}
.success-modal.show .success-modal-card {
  transform: translateY(0);
}
.success-modal-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  background: linear-gradient(180deg, rgba(49, 143, 190, 0.14), rgba(49, 143, 190, 0.06));
  border: 1px solid rgba(49, 143, 190, 0.18);
  color: var(--primary);
  margin: 0 auto 18px;
  box-shadow: inset 0 0 0 8px rgba(49, 143, 190, 0.04);
}
.success-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(49, 143, 190, 0.08);
  color: var(--primary);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.success-modal-title {
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.success-modal-text {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
  font-size: 0.98rem;
}
.success-modal .btn-brand {
  width: 100%;
  padding: 14px 20px;
  font-size: 0.98rem;
}
body.modal-open {
  overflow: hidden;
}
.btn-outline-brand {
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s;
}
.btn-outline-brand:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(246, 252, 255, 0.98) 0%,
      rgba(246, 252, 255, 0.94) 43%,
      rgba(246, 252, 255, 0.35) 72%,
      rgba(246, 252, 255, 0.08) 100%
    ),
    url("https://images.unsplash.com/photo-1576765608866-5b51046452be?auto=format&fit=crop&w=1800&q=85")
      center/cover;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 90px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-bottom: 18px;
}
.eyebrow:before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--primary);
}
.hero h1 {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  margin-bottom: 22px;
  color: var(--ink);
}
.hero h1 em {
  color: var(--primary);
  font-style: normal;
}
.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 610px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 35px;
  font-size: 0.9rem;
  font-weight: 700;
}
.hero-trust span {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-trust i {
  color: var(--primary);
}
.section-kicker {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2.35rem, 4vw, 4rem);
  margin-bottom: 18px;
  color: var(--ink);
}
.section-text {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.03rem;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.photo-card {
  position: relative;
}
.photo-card img {
  border-radius: 32px;
  min-height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.photo-badge {
  position: absolute;
  left: -24px;
  bottom: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 23px;
  box-shadow: var(--shadow);
  max-width: 270px;
}
.photo-badge strong {
  font-family: Georgia, serif;
  font-size: 1.45rem;
  display: block;
  color: var(--primary);
}
.photo-badge span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 5px;
}
.feature-strip {
  background: var(--primary);
  color: #fff;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.feature {
  padding: 30px 25px;
  background: var(--primary);
}
.feature i {
  font-size: 1.75rem;
  margin-bottom: 13px;
  display: block;
}
.feature h3 {
  font-size: 1.35rem;
  margin-bottom: 7px;
}
.feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.6;
}
.services-bg {
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #F1FAFD 0%, #E7F6FB 100%);
  border: 1px solid #CBE7F1;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(22, 75, 104, 0.045);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #A9D8E9;
  box-shadow: 0 18px 38px rgba(22, 75, 104, 0.11);
}

.service-image {
  position: relative;
  height: 190px;
  flex: 0 0 190px;
  overflow: hidden;
  background: #D8EEF6;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 75, 104, 0.02) 40%, rgba(22, 75, 104, 0.24) 100%);
  pointer-events: none;
}

.service-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.045);
}

.service-index {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: #164B68;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  backdrop-filter: blur(8px);
}

.service-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px 27px 27px;
}

.service-card h3 {
  margin: 0 0 10px;
  color: #164B68;
  font-size: 1.38rem;
  line-height: 1.28;
}

.service-card p {
  margin: 0;
  color: #526A7B;
  line-height: 1.7;
  font-size: .93rem;
}

.explore-service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  padding: 11px 17px;
  border: 1px solid #4AA9D8;
  border-radius: 10px;
  background: #4AA9D8;
  color: #fff !important;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 7px 16px rgba(74,169,216,.18);
  transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.explore-service-btn:hover {
  background: #318FBE;
  border-color: #318FBE;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(49,143,190,.22);
}

.explore-service-btn i {
  font-size: .9rem;
  transition: transform .25s ease;
}

.explore-service-btn:hover i {
  transform: translateX(3px);
}

.process {
  background: #318FBE;
  color: #fff;
}
.process .section-title {
  color: #fff;
}
.process .section-text {
  color: #fff;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.05);
  height: 100%;
}
.process-number {
  font-size: 3rem;
  font-family: Georgia, serif;
  color: #9ED8EF;
  text-shadow: 0 2px 8px rgba(22, 75, 104, 0.35);
}
.process-card p {
  color: #fff;
  line-height: 1.7;
}
.promise {
  background: var(--primary-light);
}
.promise-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 55px;
  box-shadow: var(--shadow);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.check-list li {
  display: flex;
  gap: 12px;
  margin: 15px 0;
  color: #526A7B;
}
.check-list i {
  color: var(--primary);
  margin-top: 4px;
}
.cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}
.cta .section-title {
  color: #fff;
}
.cta .section-text {
  color: rgba(255, 255, 255, 0.82);
}
.cta-box {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.cta .btn-light {
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  color: var(--primary);
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(74, 169, 216, 0.04);
}
.stars {
  color: #4AA9D8;
  letter-spacing: 2px;
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: #D7EAF3;
  line-height: 0.7;
}
.footer {
  background: #164B68;
  color: #fff;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  color: #fff;
}
.footer-brand {
  color: #fff;
}
.footer p {
  color: #fff;
  line-height: 1.7;
}
.footer-title {
  font-weight: 800;
  margin-bottom: 16px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  margin-top: 45px;
  color: #fff;
  font-size: 0.85rem;
}

.site-footer,
.site-footer p,
.site-footer a,
.site-footer .footer-bottom {
  color:#fff;
}
.page-hero {
  background:
    linear-gradient(90deg, rgba(22, 75, 104, 0.94), rgba(74, 169, 216, 0.58)),
    url("https://images.unsplash.com/photo-1559234938-b60fff04894d?auto=format&fit=crop&w=1800&q=85")
      center/cover;
  min-height: 430px;
  display: flex;
  align-items: end;
  color: #fff;
}
.page-hero-inner {
  padding: 80px 0;
}
.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  color: #fff;
}
.page-hero .eyebrow {
  color: #4AA9D8;
}
.page-hero .eyebrow:before {
  background: #4AA9D8;
}
.service-detail {
  background: var(--bg);
}
.service-detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 50px;
  box-shadow: var(--shadow);
}
.service-detail-icon {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin-bottom: 22px;
}
.service-detail-card h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}
.service-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.service-point {
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #F6FCFF;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.service-point i {
  color: var(--primary);
  margin-top: 3px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(74, 169, 216, 0.05);
}
.contact-item {
  display: flex;
  gap: 15px;
  margin: 22px 0;
}
.contact-item i {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex: 0 0 44px;
}
.form-control,
.form-select {
  border: 1px solid #D7EAF3;
  border-radius: 13px;
  padding: 13px 15px;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(74, 169, 216, 0.1);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item button {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  font-weight: 800;
  padding: 0;
  color: var(--ink);
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--primary);
  color: #fff;
  display: none;
  z-index: 999;
  box-shadow: var(--shadow);
}
.back-top.show {
  display: grid;
  place-items: center;
}
@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    background:
      linear-gradient(
        90deg,
        rgba(246, 252, 255, 0.97),
        rgba(246, 252, 255, 0.88)
      ),
      url("https://images.unsplash.com/photo-1576765608866-5b51046452be?auto=format&fit=crop&w=1400&q=80")
        center/cover;
  }
  .hero-content {
    padding: 100px 0 110px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  .service-image {
    height: 175px;
    flex-basis: 175px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .navbar-collapse {
    padding-top: 12px;
  }
  .dropdown-menu {
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 12px;
  }
  .dropdown-item {
    padding: 9px 10px;
  }
}
@media (max-width: 575.98px) {
  .section-pad {
    padding: 72px 0;
  }
  .hero h1 {
    font-size: 3.1rem;
  }
  .hero-content {
    padding: 78px 0 90px;
  }
  .feature-grid,
  .services-grid,
  .service-points {
    grid-template-columns: 1fr;
  }
  .service-image {
    height: 205px;
    flex-basis: 205px;
  }
  .service-card-content {
    padding: 23px 22px 24px;
  }
  .feature {
    padding: 24px 20px;
  }
  .photo-badge {
    left: 15px;
    bottom: 15px;
  }
  .promise-box,
  .service-detail-card {
    padding: 30px 23px;
  }
  .hero-trust {
    gap: 13px;
    flex-direction: column;
  }
  .topbar .container {
    justify-content: center !important;
  }
  .brand-title {
    font-size: 1.05rem;
  }
  .brand-sub {
    font-size: 0.56rem;
  }
}
/* =========================================
   CARE SOURCE INDY LOGO
   ========================================= */

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
  color: #164B68;
}

.brand-text small {
  margin-top: 6px;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #318FBE;
}

/* Mobile Logo */
@media (max-width: 767px) {
  .brand-logo {
    gap: 9px;
  }

  .brand-logo img {
    width: 48px;
    height: 48px;
  }

  .brand-text span {
    font-size: 17px;
  }

  .brand-text small {
    font-size: 8px;
    letter-spacing: 1px;
    margin-top: 4px;
  }
}

/* =========================================
   MOBILE BUTTONS - PREMIUM & COMPACT
   ========================================= */

@media (max-width: 767px) {
  /* All main buttons */
  .btn,
  .hero-buttons .btn,
  .cta-buttons .btn {
    min-height: 46px;
    height: 46px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    max-width: 100%;
  }

  /* Hero buttons */
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }

  .hero-buttons .btn {
    flex: 0 0 auto;
  }

  /* Get Started / Request Care type buttons */
  .btn-primary {
    padding-left: 21px;
    padding-right: 21px;
  }

  /* Outline buttons */
  .btn-outline-primary {
    padding-left: 19px;
    padding-right: 19px;
  }

  /* CTA section buttons */
  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  /* Navbar button */
  .navbar .btn {
    min-height: 42px;
    height: 42px;
    padding: 0 18px;
    font-size: 13px;
  }

  /* Service page CTA */
  .service-cta .btn {
    min-height: 45px;
    height: 45px;
    padding: 0 20px;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .btn,
  .hero-buttons .btn,
  .cta-buttons .btn {
    min-height: 44px;
    height: 44px;
    padding: 0 17px;
    font-size: 13px;
    border-radius: 23px;
  }

  .hero-buttons {
    gap: 8px;
  }

  .hero-buttons .btn {
    flex: 1 1 auto;
  }

  .navbar .btn {
    min-height: 40px;
    height: 40px;
    padding: 0 16px;
    font-size: 12.5px;
  }
}

/* =========================================
   PREMIUM BUTTON SIZING - DESKTOP
   ========================================= */

@media (min-width: 768px) {
  .btn,
  .hero-buttons .btn,
  .cta-buttons .btn {
    min-height: 48px;
    height: 48px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
  }

  /* Primary buttons */
  .btn-primary {
    padding-left: 24px;
    padding-right: 24px;
  }

  /* Outline buttons */
  .btn-outline-primary {
    padding-left: 22px;
    padding-right: 22px;
  }

  /* Navbar button */
  .navbar .btn {
    height: 44px;
    min-height: 44px;
    padding: 0 21px;
    font-size: 13px;
    border-radius: 22px;
  }

  /* Hero button spacing */
  .hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* CTA buttons */
  .cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
}

/* =========================================
   MOBILE - EVEN MORE REFINED
   ========================================= */

@media (max-width: 767px) {
  .btn,
  .hero-buttons .btn,
  .cta-buttons .btn {
    min-height: 44px;
    height: 44px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 22px;
  }

  .hero-buttons {
    gap: 9px;
  }

  .cta-buttons {
    gap: 9px;
  }

  .navbar .btn {
    height: 40px;
    min-height: 40px;
    padding: 0 17px;
    font-size: 12.5px;
    border-radius: 20px;
  }
}

/* =========================================
   SMALL PHONES
   ========================================= */

@media (max-width: 480px) {
  .btn,
  .hero-buttons .btn,
  .cta-buttons .btn {
    min-height: 42px;
    height: 42px;
    padding: 0 16px;
    font-size: 12.5px;
    border-radius: 21px;
  }
}

/* =========================================
   CARE SOURCE INDY - LOGO
   ========================================= */

.brand-logo img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  display: block;

  /* Black logo ko professional blue tone */
  filter: invert(25%) sepia(35%) saturate(1800%) hue-rotate(170deg)
    brightness(82%) contrast(105%);
}

/* Desktop */
@media (min-width: 992px) {
  .brand-logo img {
    width: 82px;
    height: 82px;
  }

  .brand-logo {
    gap: 14px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .brand-logo img {
    width: 70px;
    height: 70px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .brand-logo img {
    width: 62px;
    height: 62px;
  }

  .brand-logo {
    gap: 9px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .brand-logo img {
    width: 57px;
    height: 57px;
  }
}

/* =========================================================
   CARE SOURCE INDY
   MAIN STYLESHEET
   ========================================================= */

:root {
    --blue: #318FBE;
    --blue-dark: #164B68;
    --blue-light: #EAF7FD;
    --navy: #164B68;
    --text: #526A7B;
    --white: #ffffff;
    --border: #D7EAF3;
    --shadow: 0 12px 35px rgba(22, 75, 104, 0.08);
}


/* =========================================================
   GLOBAL
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* =========================================================
   TOP BAR
   ========================================================= */

.top-bar {
    background: #4AA9D8;
    color: #ffffff;
    font-size: 13px;
}

.top-bar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-right {
    gap: 10px;
}

.top-right a {
    color: #ffffff;
}

.top-right a:hover {
    opacity: 0.8;
}

.top-divider {
    opacity: 0.65;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.main-navbar {
    background: #ffffff;
    position: relative;
    z-index: 1000;
    box-shadow: 0 5px 22px rgba(22, 75, 104, 0.06);
}

.navbar-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Logo */

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--navy);
}

.brand-logo img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--navy);
}

.brand-text small {
    margin-top: 5px;
    color: var(--blue);
    font-size: 9px;
    letter-spacing: 1.6px;
    font-weight: 700;
}


/* Desktop nav */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav > a,
.services-nav-button {
    color: #164B68;
    font-size: 15px;
    font-weight: 700;
    transition: 0.25s ease;
}

.desktop-nav > a:hover,
.services-nav-button:hover {
    color: var(--blue);
}


/* Services */

.services-nav {
    position: relative;
}

.services-nav-button {
    background: transparent;
    border: 0;
    padding: 15px 0;
    cursor: pointer;
}

.services-nav-button i {
    font-size: 11px;
    margin-left: 3px;
}


/* Services dropdown */

.services-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);

    width: 300px;
    max-height: 520px;
    overflow-y: auto;

    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;

    padding: 10px;

    box-shadow:
        0 20px 50px rgba(22, 75, 104, 0.14);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}


/* Hover opens dropdown */

.services-nav:hover .services-dropdown,
.services-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


/* Dropdown links */

.services-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 13px;

    color: #164B68;
    font-size: 13px;
    font-weight: 600;

    border-radius: 11px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        padding-left 0.25s ease;
}

.services-dropdown a i {
    width: 24px;
    color: var(--blue);
    font-size: 16px;
}

.services-dropdown a:hover {
    background: var(--blue-light);
    color: var(--blue);
    padding-left: 17px;
}


/* Navbar CTA */

.nav-cta {
    background: var(--blue) !important;
    color: #ffffff !important;

    padding: 14px 25px;
    border-radius: 28px;

    box-shadow: 0 8px 22px rgba(74, 169, 216, 0.20);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.nav-cta:hover {
    background: var(--blue-dark) !important;
    transform: translateY(-2px);
}


/* Mobile menu button */

.mobile-menu-button {
    display: none;

    width: 45px;
    height: 45px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: #ffffff;
    color: var(--blue);

    font-size: 22px;
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.mobile-menu {
    display: none;
}


/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero {
    background:
        linear-gradient(
            110deg,
            #F6FCFF 0%,
            #ffffff 75%
        );

    padding: 105px 0 100px;

    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;

    width: 430px;
    height: 430px;

    right: -180px;
    top: -180px;

    background: rgba(74, 169, 216, 0.06);

    border-radius: 50%;
}

.page-hero-content {
    max-width: 820px;
    position: relative;
    z-index: 2;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--blue);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.section-eyebrow > span {
    width: 38px;
    height: 2px;
    background: var(--blue);
}

.section-eyebrow.centered {
    justify-content: center;
}

.page-hero h1 {
    margin-top: 22px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(50px, 6vw, 82px);
    line-height: 0.98;

    color: var(--navy);
}

.page-hero h1 span {
    color: var(--blue);
}

.page-hero p {
    max-width: 680px;

    margin-top: 27px;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   SERVICES SECTION
   ========================================================= */

.services-section {
    padding: 110px 0;
    background: #ffffff;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 60px;
}

.section-heading h2 {
    margin-top: 18px;

    font-family: Georgia, "Times New Roman", serif;

    color: var(--navy);

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.1;
}

.section-heading h2 span {
    color: var(--blue);
}

.section-heading p {
    max-width: 650px;
    margin: 20px auto 0;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   LANGUAGE SECTION
   ========================================================= */

.language-section {
    padding: 30px 0 110px;
}

.language-box {
    display: flex;
    align-items: center;
    gap: 30px;

    padding: 45px;

    background: var(--blue-light);

    border: 1px solid rgba(74, 169, 216, 0.10);

    border-radius: 28px;
}

.language-icon {
    width: 76px;
    height: 76px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--blue);
    color: #ffffff;

    border-radius: 20px;

    font-size: 31px;
}

.mini-label {
    color: var(--blue);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.language-box h2 {
    margin: 9px 0 12px;

    font-family: Georgia, "Times New Roman", serif;

    color: var(--navy);

    font-size: 36px;
}

.language-box h2 span {
    color: var(--blue);
}

.language-box p {
    max-width: 750px;

    margin: 0;

    line-height: 1.75;
}


/* =========================================================
   CTA
   ========================================================= */

.services-cta {
    padding: 105px 0;

    background: var(--blue);
}

.services-cta-inner {
    max-width: 850px;
    margin: auto;

    text-align: center;
}

.section-eyebrow.light {
    color: #ffffff;
}

.section-eyebrow.light > span {
    background: #ffffff;
}

.services-cta h2 {
    margin-top: 20px;

    font-family: Georgia, "Times New Roman", serif;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.1;
}

.services-cta h2 span {
    color: #EAF7FD;
}

.services-cta p {
    max-width: 650px;

    margin: 20px auto 0;

    color: rgba(255,255,255,0.82);

    line-height: 1.8;
}

.cta-buttons {
    margin-top: 30px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 12px;
}

.primary-light-btn,
.outline-light-btn {
    min-height: 48px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border-radius: 26px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.primary-light-btn {
    background: #ffffff;
    color: var(--blue);
}

.primary-light-btn:hover {
    transform: translateY(-2px);
    background: #EAF7FD;
    color: var(--blue-dark);
}

.outline-light-btn {
    border: 1px solid rgba(255,255,255,0.75);
    color: #ffffff;
}

.outline-light-btn:hover {
    background: #ffffff;
    color: var(--blue);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 75px 0 25px;

    background: #164B68;

    color: rgba(255,255,255,0.72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 45px;
}

.footer-logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.footer-brand h3 {
    margin-top: 14px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 24px;
}

.footer-brand p {
    max-width: 320px;

    margin-top: 14px;

    font-size: 14px;
    line-height: 1.8;
}

.footer-column h4 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: 15px;
}

.footer-column a {
    display: block;

    margin-bottom: 11px;

    color: rgba(255,255,255,0.72);

    font-size: 14px;

    transition: 0.25s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-column a i {
    margin-right: 6px;
}

.footer-address {
    font-size: 14px;
    line-height: 1.7;
}

.footer-address i {
    margin-right: 6px;
}

.footer-bottom {
    margin-top: 55px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,0.12);

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 12px;
}


/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(28px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .desktop-nav {
        gap: 18px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .top-bar {
        font-size: 11px;
    }

    .top-bar-inner {
        min-height: 38px;
    }

    .top-right {
        display: none;
    }


    /* Navbar */

    .navbar-inner {
        min-height: 78px;
    }

    .brand-logo {
        gap: 9px;
    }

    .brand-logo img {
        width: 62px;
        height: 62px;
    }

    .brand-text span {
        font-size: 17px;
    }

    .brand-text small {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }


    /* Mobile menu */

    .mobile-menu {
        display: block;

        position: absolute;

        left: 0;
        right: 0;

        z-index: 999;

        background: #ffffff;

        padding: 12px 20px 20px;

        box-shadow:
            0 20px 35px rgba(22, 75, 104, 0.12);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition: 0.3s ease;
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-menu > a,
    .mobile-services-toggle {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 13px 10px;

        background: transparent;

        border: 0;

        border-bottom: 1px solid #D7EAF3;

        color: var(--navy);

        font-size: 14px;
        font-weight: 700;

        text-align: left;
    }

    .mobile-services-toggle {
        cursor: pointer;
    }

    .mobile-services-toggle i {
        transition: transform 0.3s ease;
    }

    .mobile-services-toggle.active i {
        transform: rotate(180deg);
    }

    .mobile-services-list {
        display: none;

        padding: 5px 10px 8px;

        background: #F6FCFF;

        border-radius: 10px;
    }

    .mobile-services-list.active {
        display: block;
    }

    .mobile-services-list a {
        display: block;

        padding: 9px 10px;

        color: #526A7B;

        font-size: 13px;

        border-bottom: 1px solid rgba(74,169,216,0.06);
    }

    .mobile-menu-cta {
        margin-top: 12px;

        justify-content: center !important;

        background: var(--blue) !important;
        color: #ffffff !important;

        border-radius: 25px !important;

        border: 0 !important;
    }


    /* Hero */

    .page-hero {
        padding: 75px 0 70px;
    }

    .page-hero h1 {
        font-size: 50px;
    }

    .page-hero p {
        font-size: 15px;
    }


    /* Services */

    .services-section {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading h2 {
        font-size: 39px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        min-height: 0;

        padding: 27px 23px 25px;

        border-radius: 21px;
    }

    .service-icon {
        width: 62px;
        height: 62px;

        margin-bottom: 22px;

        font-size: 26px;
    }

    .service-card h3 {
        font-size: 21px;
        margin-bottom: 11px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .explore-service-btn {
        margin-top: 25px;

        min-width: 160px;

        padding: 11px 20px;

        font-size: 13px;
    }


    /* Language */

    .language-section {
        padding: 10px 0 75px;
    }

    .language-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 30px 24px;

        border-radius: 22px;
    }

    .language-icon {
        width: 62px;
        height: 62px;

        font-size: 25px;

        border-radius: 16px;
    }

    .language-box h2 {
        font-size: 31px;
    }


    /* CTA */

    .services-cta {
        padding: 75px 0;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .primary-light-btn,
    .outline-light-btn {
        width: 100%;
        max-width: 280px;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;

        text-align: center;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .brand-logo img {
        width: 57px;
        height: 57px;
    }

    .brand-text span {
        font-size: 16px;
    }

    .page-hero {
        padding: 65px 0 60px;
    }

    .page-hero h1 {
        font-size: 43px;
    }

    .service-card {
        padding: 24px 20px 23px;
    }

    .service-icon {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .explore-service-btn {
        width: 100%;
        max-width: 180px;

        padding: 11px 18px;
    }

}

/* Final accessibility + mobile refinement */
body{color:#526A7B;}
.section-text,.lead,.small,.text-muted{color:#526A7B !important;}
.page-hero .section-text{color:#fff !important;}
a{color:#318FBE;}
a:hover{color:#164B68;}
.form-label{color:#164B68;font-weight:700;}
.form-control,.form-select{color:#164B68;background:#fff;border-color:#D7EAF3;}
.form-control::placeholder{color:#718596;opacity:1;}
.btn-brand{color:#fff !important;background:#4AA9D8;border-color:#4AA9D8;}
.btn-brand:hover{color:#fff !important;background:#318FBE;border-color:#318FBE;}

@media (max-width: 991.98px){
  .navbar .container{padding-left:18px;padding-right:18px;}
  .navbar-brand img{max-width:180px;height:auto;}
  .navbar-collapse{max-height:calc(100vh - 88px);overflow-y:auto;}
  .navbar-nav{padding:12px 0 18px;gap:2px;}
  .navbar-nav .nav-link{padding:12px 14px;line-height:1.25;}
  .dropdown-menu{position:static !important;transform:none !important;width:100%;box-shadow:none;margin:4px 0 8px;border-radius:14px;}
  .hero h1,.page-hero h1{font-size:clamp(2.15rem,7vw,3.5rem);line-height:1.08;}
  .section-pad{padding:68px 0;}
  .section-title{font-size:clamp(1.9rem,5vw,2.7rem);line-height:1.15;}
  .hero .row,.page-hero .row{--bs-gutter-y:2rem;}
  .card-grid{grid-template-columns:1fr !important;}
}
@media (max-width: 767.98px){
  body{font-size:15.5px;overflow-x:hidden;}
  .container{width:100%;padding-left:18px;padding-right:18px;}
  .topbar{font-size:12px;}
  .topbar .container{gap:8px;flex-wrap:wrap;}
  .hero{padding:70px 0 54px;}
  .hero h1{font-size:clamp(2rem,10vw,3rem);}
  .hero p,.section-text{font-size:1rem;line-height:1.7;}
  .page-hero{padding:72px 0 52px;}
  .page-hero-inner{max-width:100%;}
  .page-hero h1{font-size:clamp(2rem,10vw,2.8rem);}
  .section-pad{padding:54px 0;}
  .contact-card,.feature-card{padding:24px 20px;}
  .btn{width:auto;min-height:46px;}
  .hero .btn,.cta .btn{width:100%;}
  .footer-grid{grid-template-columns:1fr !important;gap:30px;}
  .footer{padding-top:50px;}
  table{display:block;overflow-x:auto;white-space:nowrap;}
}
@media (max-width: 480px){
  .navbar-brand img{max-width:155px;}
  .section-kicker,.eyebrow{font-size:.75rem;letter-spacing:.12em;}
  .section-title{font-size:1.85rem;}
  .service-card h3,.feature-card h3{font-size:1.2rem;}
  .service-card p,.feature-card p{font-size:.95rem;}
  .contact-item{align-items:flex-start;}
}


/* =========================================================
   FINAL SERVICE CARDS — CARE SOURCE INDY
   ========================================================= */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
  align-items:stretch;
}

.services-grid .service-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-width:0;
  min-height:0;
  height:100%;
  padding:0 !important;
  overflow:hidden;
  background:linear-gradient(180deg,#F2FBFE 0%,#E5F5FA 100%);
  border:1px solid #C9E6F0;
  border-radius:24px;
  box-shadow:0 8px 24px rgba(22,75,104,.055);
  transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}

.services-grid .service-card::before{
  content:none;
}

.services-grid .service-card:hover{
  transform:translateY(-6px);
  border-color:#A7D5E5;
  box-shadow:0 18px 40px rgba(22,75,104,.12);
}

.services-grid .service-image{
  position:relative;
  width:100%;
  height:190px;
  flex:0 0 190px;
  overflow:hidden;
  background:#D7EEF6;
}

.services-grid .service-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(22,75,104,.02) 38%,rgba(22,75,104,.28) 100%);
  pointer-events:none;
}

.services-grid .service-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .45s ease;
}

.services-grid .service-card:hover .service-image img{
  transform:scale(1.045);
}

.services-grid .service-index{
  display:none;
  position:absolute;
  z-index:2;
  left:18px;
  bottom:15px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  height:28px;
  padding:0 10px;
  border:1px solid rgba(255,255,255,.7);
  border-radius:999px;
  background:rgba(255,255,255,.88);
  color:#164B68;
  font-size:.7rem;
  font-weight:800;
  letter-spacing:.08em;
  backdrop-filter:blur(8px);
}

.services-grid .service-card-content{
  display:flex;
  flex:1;
  flex-direction:column;
  padding:25px 27px 27px;
}

.services-grid .service-card h3{
  margin:0 0 10px;
  color:#164B68;
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.4rem;
  font-weight:500;
  line-height:1.3;
}

.services-grid .service-card p{
  margin:0;
  color:#526A7B;
  font-size:.93rem;
  line-height:1.72;
}

.services-grid .explore-service-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  align-self:flex-start;
  margin-top:auto;
  padding:11px 17px;
  min-width:0;
  border:1px solid #4AA9D8;
  border-radius:10px;
  background:#4AA9D8;
  color:#fff !important;
  text-decoration:none;
  font-size:.83rem;
  font-weight:800;
  line-height:1;
  box-shadow:0 7px 16px rgba(74,169,216,.18);
  transition:background .25s ease,border-color .25s ease,transform .25s ease,box-shadow .25s ease;
}

.services-grid .explore-service-btn:hover{
  background:#318FBE;
  border-color:#318FBE;
  color:#fff !important;
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(49,143,190,.22);
}

.services-grid .explore-service-btn i{
  display:none;
  font-size:.9rem;
  transition:transform .25s ease;
}

.services-grid .explore-service-btn:hover i{
  transform:translateX(3px);
}

@media (max-width:991px){
  .services-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:22px;
  }
  .services-grid .service-image{
    height:175px;
    flex-basis:175px;
  }
}

@media (max-width:767px){
  .services-grid{
    grid-template-columns:1fr;
    gap:18px;
  }
  .services-grid .service-image{
    height:205px;
    flex-basis:205px;
  }
  .services-grid .service-card-content{
    padding:23px 22px 24px;
  }
  .services-grid .service-card h3{
    font-size:1.3rem;
  }
  .services-grid .explore-service-btn{
    width:auto;
    max-width:none;
  }
}

@media (max-width:480px){
  .services-grid .service-image{
    height:185px;
    flex-basis:185px;
  }
  .services-grid .service-card-content{
    padding:21px 20px 22px;
  }
}

.footer-logo-img {
  width:42px;
  height:42px;
  flex:0 0 42px;
  object-fit:contain;
}

@media (max-width:480px){
  .footer-logo-img{
    width:38px;
    height:38px;
    flex-basis:38px;
  }
}

.page-hero[class*="hero-"]{
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  background-image:linear-gradient(90deg,rgba(246,252,255,.98) 0%,rgba(246,252,255,.93) 43%,rgba(246,252,255,.42) 72%,rgba(246,252,255,.12) 100%),url("https://images.unsplash.com/photo-1559234938-b60fff04894d?auto=format&fit=crop&w=1800&q=85");
}

.page-hero.hero-about{background-image:linear-gradient(90deg,rgba(246,252,255,.98) 0%,rgba(246,252,255,.93) 43%,rgba(246,252,255,.42) 72%,rgba(246,252,255,.12) 100%),url("https://images.unsplash.com/photo-1576765608866-5b51046452be?auto=format&fit=crop&w=1800&q=85");}
.page-hero.hero-careers{background-image:linear-gradient(90deg,rgba(246,252,255,.98) 0%,rgba(246,252,255,.93) 43%,rgba(246,252,255,.42) 72%,rgba(246,252,255,.12) 100%),url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1800&q=85");}
.page-hero.hero-contact{background-image:linear-gradient(90deg,rgba(246,252,255,.98) 0%,rgba(246,252,255,.93) 43%,rgba(246,252,255,.42) 72%,rgba(246,252,255,.12) 100%),url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1800&q=85");}
.page-hero.hero-services{background-image:linear-gradient(90deg,rgba(246,252,255,.98) 0%,rgba(246,252,255,.93) 43%,rgba(246,252,255,.42) 72%,rgba(246,252,255,.12) 100%),url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=1800&q=85");}
.page-hero.hero-availability{background-image:linear-gradient(90deg,rgba(246,252,255,.98) 0%,rgba(246,252,255,.93) 43%,rgba(246,252,255,.42) 72%,rgba(246,252,255,.12) 100%),url("../images/availability.jpg");}
.page-hero.hero-attendant{background-image:linear-gradient(90deg,rgba(246,252,255,.98) 0%,rgba(246,252,255,.93) 43%,rgba(246,252,255,.42) 72%,rgba(246,252,255,.12) 100%),url("https://images.unsplash.com/photo-1559234938-b60fff04894d?auto=format&fit=crop&w=1800&q=85");}
.page-hero.hero-companionship{background-image:linear-gradient(90deg,rgba(246,252,255,.98) 0%,rgba(246,252,255,.93) 43%,rgba(246,252,255,.42) 72%,rgba(246,252,255,.12) 100%),url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1800&q=85");}
.page-hero.hero-housekeeping{background-image:linear-gradient(90deg,rgba(246,252,255,.98) 0%,rgba(246,252,255,.93) 43%,rgba(246,252,255,.42) 72%,rgba(246,252,255,.12) 100%),url("../images/housekeeping.jpg");}
.page-hero.hero-in-home{background-image:linear-gradient(90deg,rgba(246,252,255,.98) 0%,rgba(246,252,255,.93) 43%,rgba(246,252,255,.42) 72%,rgba(246,252,255,.12) 100%),url("../images/in-home-support.jpg");}
.page-hero.hero-meals{background-image:linear-gradient(90deg,rgba(246,252,255,.98) 0%,rgba(246,252,255,.93) 43%,rgba(246,252,255,.42) 72%,rgba(246,252,255,.12) 100%),url("https://images.unsplash.com/photo-1547592180-85f173990554?auto=format&fit=crop&w=1800&q=85");}
.page-hero.hero-medication{background-image:linear-gradient(90deg,rgba(246,252,255,.98) 0%,rgba(246,252,255,.93) 43%,rgba(246,252,255,.42) 72%,rgba(246,252,255,.12) 100%),url("https://images.unsplash.com/photo-1505751172876-fa1923c5c528?auto=format&fit=crop&w=1800&q=85");}
.page-hero.hero-care-plans{background-image:linear-gradient(90deg,rgba(246,252,255,.98) 0%,rgba(246,252,255,.93) 43%,rgba(246,252,255,.42) 72%,rgba(246,252,255,.12) 100%),url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=85");}
.page-hero.hero-respite{background-image:linear-gradient(90deg,rgba(246,252,255,.98) 0%,rgba(246,252,255,.93) 43%,rgba(246,252,255,.42) 72%,rgba(246,252,255,.12) 100%),url("https://images.unsplash.com/photo-1504150558240-0b4fd8946624?auto=format&fit=crop&w=1800&q=85");}
.page-hero.hero-sitters{background-image:linear-gradient(90deg,rgba(246,252,255,.98) 0%,rgba(246,252,255,.93) 43%,rgba(246,252,255,.42) 72%,rgba(246,252,255,.12) 100%),url("../images/sitters.jpg");}
.page-hero.hero-specialized{background-image:linear-gradient(90deg,rgba(246,252,255,.98) 0%,rgba(246,252,255,.93) 43%,rgba(246,252,255,.42) 72%,rgba(246,252,255,.12) 100%),url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?auto=format&fit=crop&w=1800&q=85");}
.page-hero.hero-tbi{background-image:linear-gradient(90deg,rgba(246,252,255,.98) 0%,rgba(246,252,255,.93) 43%,rgba(246,252,255,.42) 72%,rgba(246,252,255,.12) 100%),url("https://images.unsplash.com/photo-1559757148-5c350d0d3c56?auto=format&fit=crop&w=1800&q=85");}
.page-hero.hero-transportation{background-image:linear-gradient(90deg,rgba(246,252,255,.98) 0%,rgba(246,252,255,.93) 43%,rgba(246,252,255,.42) 72%,rgba(246,252,255,.12) 100%),url("https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?auto=format&fit=crop&w=1800&q=85");}

@media (max-width:767.98px){
  .page-hero[class*="hero-"]{
    background-position:62% center;
  }
}

.section-kicker[style],
.services-bg .service-icon{
  color:#318FBE !important;
}

.process-number{
  color:#9ED8EF !important;
}

.services-grid .explore-service-btn,
.explore-service-btn{
  background:#318FBE;
  border-color:#318FBE;
}

.services-grid .explore-service-btn:hover,
.explore-service-btn:hover{
  background:#164B68;
  border-color:#164B68;
}

.btn-brand{
  background:#318FBE !important;
  border-color:#318FBE !important;
}

.btn-brand:hover{
  background:#164B68 !important;
  border-color:#164B68 !important;
}

.btn-brand,
.btn-outline-brand,
.cta .btn-light,
.service-detail-card .btn,
.primary-light-btn,
.outline-light-btn{
  min-height:42px;
  padding:10px 18px;
  font-size:.88rem;
  line-height:1.2;
}

.hero-actions{
  align-items:center;
}

@media (max-width:767.98px){
  .hero-actions,
  .cta-box,
  .service-detail-card .mt-4.d-flex,
  .cta-buttons{
    justify-content:center;
    align-items:center;
  }

  .hero-actions{
    flex-direction:column;
    gap:10px;
  }

  .hero-actions .btn,
  .cta .btn,
  .service-detail-card .btn,
  .primary-light-btn,
  .outline-light-btn{
    width:auto;
    min-width:190px;
    max-width:250px;
  }

  .cta-box{
    flex-direction:column;
    text-align:center;
  }

  .cta-box > .d-flex{
    justify-content:center;
  }

  .service-detail-card .mt-4.d-flex{
    width:100%;
  }
}

/* Homepage service links use the compact card variation. */
.services-bg .services-grid > a.service-card{
  justify-content:flex-start;
  padding:27px 25px 24px !important;
  text-decoration:none;
}

.services-bg .services-grid > a.service-card .service-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:58px;
  height:58px;
  flex:0 0 58px;
  margin-bottom:19px;
  border-radius:16px;
  background:#D5EFF7;
  color:#318FBE;
  font-size:1.55rem;
}

.services-bg .services-grid > a.service-card h3{
  margin-bottom:10px;
}

.services-bg .services-grid > a.service-card p{
  flex:1;
  margin-bottom:22px;
}

.services-bg .services-grid > a.service-card .service-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  align-self:flex-start;
  color:#318FBE;
  font-size:.84rem;
  font-weight:800;
}

.services-bg .services-grid > a.service-card .service-link i{
  transition:transform .25s ease;
}

.services-bg .services-grid > a.service-card:hover .service-link i{
  transform:translateX(4px);
}

@media (max-width:991px){
  .services-bg .services-grid{
    gap:22px;
  }
}

@media (max-width:767px){
  .services-bg .services-grid{
    grid-template-columns:1fr;
    gap:16px;
  }
  .services-bg .services-grid > a.service-card{
    min-height:0;
    padding:23px 21px 22px !important;
    border-radius:20px;
  }
  .services-bg .services-grid > a.service-card .service-icon{
    width:54px;
    height:54px;
    flex-basis:54px;
    margin-bottom:16px;
    font-size:1.4rem;
  }
  .services-bg .services-grid > a.service-card p{
    margin-bottom:18px;
    font-size:.95rem;
    line-height:1.65;
  }
}

/* Refined services navigation panel. */
@media (min-width:992px){
  .navbar .dropdown-menu{
    display:grid;
    grid-template-columns:repeat(2,minmax(190px,1fr));
    gap:4px;
    width:460px;
    min-width:460px;
    margin-top:12px;
    padding:12px;
    border:1px solid #D7EAF3;
    border-radius:18px;
    background:rgba(255,255,255,.98);
    box-shadow:0 20px 45px rgba(22,75,104,.16);
    animation:services-menu-in .2s ease both;
  }

  .navbar .dropdown-menu::before{
    content:"";
    position:absolute;
    top:-7px;
    right:42px;
    width:13px;
    height:13px;
    background:#fff;
    border-top:1px solid #D7EAF3;
    border-left:1px solid #D7EAF3;
    transform:rotate(45deg);
  }

  .navbar .dropdown-menu .dropdown-item{
    position:relative;
    display:flex;
    align-items:center;
    min-height:42px;
    padding:10px 12px 10px 16px;
    border-radius:10px;
    color:#164B68;
    font-size:.84rem;
    font-weight:700;
    line-height:1.25;
    transition:background .2s ease,color .2s ease,transform .2s ease;
  }

  .navbar .dropdown-menu .dropdown-item::before{
    content:"";
    position:absolute;
    left:7px;
    width:3px;
    height:0;
    border-radius:3px;
    background:#318FBE;
    transition:height .2s ease;
  }

  .navbar .dropdown-menu .dropdown-item:hover,
  .navbar .dropdown-menu .dropdown-item:focus{
    background:#EAF7FD;
    color:#164B68;
    transform:translateX(2px);
  }

  .navbar .dropdown-menu .dropdown-item:hover::before,
  .navbar .dropdown-menu .dropdown-item:focus::before{
    height:20px;
  }
}

@keyframes services-menu-in{
  from{opacity:0;transform:translateY(-5px);}
  to{opacity:1;transform:translateY(0);}
}

@media (max-width:991.98px){
  .navbar .dropdown-menu .dropdown-item{
    min-height:42px;
    padding:10px 14px;
    font-size:.9rem;
  }
}

/* Keep the desktop Services menu closed until the navbar item is hovered. */
@media (min-width:992px){
  .navbar .dropdown-menu{
    display:none;
  }

  .navbar .dropdown:hover > .dropdown-menu{
    display:grid;
  }
}

/* The hero overlay is light on the text side, so use dark readable copy. */
.page-hero[class*="hero-"] h1,
.page-hero[class*="hero-"] h1 span{
  color:#164B68 !important;
  text-shadow:0 1px 1px rgba(255,255,255,.35);
}

.page-hero[class*="hero-"] p,
.page-hero[class*="hero-"] .section-text{
  color:#526A7B !important;
}

.page-hero[class*="hero-"] .eyebrow,
.page-hero[class*="hero-"] .section-eyebrow{
  color:#318FBE;
}

.page-hero[class*="hero-"] .eyebrow:before,
.page-hero[class*="hero-"] .section-eyebrow > span{
  background:#318FBE;
}
