/*=========================================================
    MIGARA CARE
    SERVICES PAGE
    PART 1 — HERO & FEATURED IMAGE
=========================================================*/

/*=========================================================
    SERVICES HERO
=========================================================*/

.services-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 40px !important;
  padding-bottom: 51px !important;
  background-position: 72% 25%;
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 249, 235, 0.98) 0%,
      rgba(255, 249, 235, 0.94) 28%,
      rgba(255, 249, 235, 0.72) 48%,
      rgba(255, 249, 235, 0.18) 72%,
      rgba(255, 249, 235, 0.02) 100%
    ),
    url("../images/services-banner.jpg");

  background-size: cover;
}

/*=========================================
        BACKGROUND DECORATION
=========================================*/

.services-hero::before {
  content: "";

  position: absolute;

  width: 650px;

  height: 650px;

  left: -250px;

  top: -230px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(184, 138, 27, 0.1), transparent 72%);
}

.services-hero::after {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05),
    transparent 70%
  );
}
/*=========================================================
    CONTAINER
=========================================================*/

.services-hero .container {
  position: relative;

  z-index: 4;
}
/*=========================================================
    HERO CONTENT
=========================================================*/

.services-hero-content {
  position: relative;

  width: 100%;

  max-width: 650px;

  margin: 0;

  text-align: left;

  z-index: 3;

  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.services-hero-content.show {
  opacity: 1;

  transform: translateY(0);
}

/*=========================================================
    BREADCRUMB
=========================================================*/

.services-hero .breadcrumb {
  display: flex;

  justify-content: flex-start;

  align-items: center;

  gap: 12px;

  margin-bottom: 7px;

  font-size: 15px;
}

.services-hero .breadcrumb a {
  color: #425b78;

  text-decoration: none;

  transition: 0.3s ease;
}

.services-hero .breadcrumb a:hover {
  color: var(--primary);
}

.services-hero .breadcrumb span {
  color: var(--primary);

  font-weight: 600;
}

/*=========================================================
    HERO TAG
=========================================================*/

.services-hero-tag {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 12px 24px;

  margin-bottom: 25px;

  border-radius: 50px;

  background: var(--primary);

  color: #ffffff;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}

.services-hero-tag::before {
  content: "";

  width: 28px;

  height: 2px;

  background: #ffffff;
}

/*=========================================================
    HERO HEADING
=========================================================*/

.services-hero-content h1 {
  max-width: 650px;

  margin: 0 0 25px;

  color: #06264c;

  font-size: 42px;

  font-weight: 800;

  line-height: 1.12;

  letter-spacing: -1px;
}

.services-hero-content h1 span {
  display: block;

  color: var(--primary);
}

/*=========================================================
    HERO DESCRIPTION
=========================================================*/

.services-hero-content p {
  max-width: 600px;

  margin: 0 0 32px;

  color: #4f6784;

  font-size: 16px;

  line-height: 1.8;
}

/*=========================================================
    HERO BUTTONS
=========================================================*/

.services-hero-buttons {
  display: flex;

  justify-content: flex-start;

  align-items: center;

  gap: 15px;

  flex-wrap: wrap;
}

.services-hero-buttons .btn {
  min-width: 190px;

  padding: 14px 22px;
}

.services-hero-buttons .btn i {
  margin-left: 7px;

  transition: transform 0.3s ease;
}

.services-hero-buttons .btn:hover i {
  transform: translateX(4px);
}

.services-hero-buttons .btn:first-child:hover i {
  transform: translateY(4px);
}

/*=========================================================
    FEATURED IMAGE SECTION
=========================================================*/

.services-hero-image {
  display: none;
}

/*=========================================================
    IMAGE WRAPPER
=========================================================*/

.services-hero-image-wrapper {
  position: relative;

  overflow: hidden;

  width: 100%;
  border-radius: 30px;

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

/*=========================================================
    IMAGE
=========================================================*/

.services-hero-image-wrapper img {
  display: block;

  width: 100%;
  height: 280px;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.services-hero-image-wrapper:hover img {
  transform: scale(1.03);
}

/*=========================================================
    IMAGE OVERLAY
=========================================================*/

.services-hero-image-wrapper::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent 45%);

  pointer-events: none;
}

/*=========================================================
    HERO IMAGE CAPTION
=========================================================*/

.hero-image-caption {
  position: absolute;

  left: 30px;

  bottom: 25px;

  display: flex;

  align-items: center;

  gap: 14px;

  padding: 14px 22px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.94);

  color: var(--secondary);

  font-size: 14px;

  font-weight: 700;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

  z-index: 2;

  backdrop-filter: blur(10px);
}

.hero-image-caption i {
  color: var(--primary);

  font-size: 18px;
}

/*=========================================================
    RESPONSIVE
=========================================================*/

@media (max-width: 1200px) {
  .services-hero-content h1 {
    font-size: 60px;
  }

  .services-hero-image-wrapper img {
    height: 480px;
  }

  .services-hero {
    min-height: 540px;

    padding: 105px 0 85px;
  }

  .services-hero-content {
    max-width: 670px;
  }
}

@media (max-width: 991px) {
  .services-hero {
    min-height: 500px;

    padding: 100px 0 75px;

    background-position: 65% center;

    background-image:
      linear-gradient(
        90deg,
        rgba(255, 249, 235, 0.98) 0%,
        rgba(255, 249, 235, 0.9) 45%,
        rgba(255, 249, 235, 0.45) 75%,
        rgba(255, 249, 235, 0.1) 100%
      ),
      url("../images/services-banner.jpg");
  }

  .services-hero-content {
    max-width: 600px;
  }

  .services-hero-content h1 {
    font-size: 48px;
  }

  .services-hero-image {
    padding-bottom: 80px;
  }

  .services-hero-image-wrapper img {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .services-hero {
    min-height: auto;

    padding: 100px 0 65px;

    background-position: 72% center;

    background-image:
      linear-gradient(
        90deg,
        rgba(255, 249, 235, 0.98) 0%,
        rgba(255, 249, 235, 0.94) 55%,
        rgba(255, 249, 235, 0.65) 100%
      ),
      url("../images/services-banner.jpg");
  }
  .services-hero-content {
    max-width: 100%;

    text-align: left;
  }

  .services-hero .breadcrumb {
    justify-content: flex-start;

    font-size: 13px;
  }

  .services-hero-content h1 {
    font-size: 40px;
    letter-spacing: -0.8px;
  }

  .services-hero-content p {
    font-size: 16px;

    max-width: 560px;
  }

  .services-hero-buttons {
    justify-content: flex-start;
  }

  .services-hero-buttons .btn {
    width: 100%;
  }

  .services-hero-image {
    padding-bottom: 70px;
  }

  .services-hero-image-wrapper {
    border-radius: 24px;
  }

  .services-hero-image-wrapper img {
    height: 360px;
  }
}

@media (max-width: 576px) {
  .services-hero {
    padding: 90px 0 55px;

    background-position: 70% center;
  }

  .services-hero-content h1 {
    font-size: 34px;
  }
  .services-hero-content p {
    font-size: 15px;

    line-height: 1.7;
  }
  .services-hero-buttons {
    flex-direction: column;

    align-items: stretch;
  }
  .services-hero-buttons .btn {
    width: 100%;
  }

  .services-hero-tag {
    padding: 10px 18px;

    font-size: 11px;
  }

  .services-hero .breadcrumb {
    font-size: 13px;
  }

  .services-hero-image-wrapper {
    border-radius: 20px;
  }

  .services-hero-image-wrapper img {
    height: 280px;
  }

  .hero-image-caption {
    left: 18px;

    bottom: 18px;

    padding: 12px 17px;

    font-size: 12px;
  }
}
/*=========================================================
    MIGARA CARE
    SERVICES PAGE
    PART 2 — SERVICES GRID & SERVICE CARDS
=========================================================*/

/*=========================================================
    SERVICES SECTION
=========================================================*/

.services-section {
  position: relative;

  padding: 110px 0;

  background: var(--light);

  overflow: hidden;
  padding-top: 90px;
}

.services-section::before {
  content: "";

  position: absolute;

  width: 600px;

  height: 600px;

  left: -250px;

  top: -220px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.07),
    transparent 72%
  );
}

.services-section::after {
  content: "";

  position: absolute;

  width: 450px;

  height: 450px;

  right: -200px;

  bottom: -220px;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.05);
}

/*=========================================================
    SECTION HEADER
=========================================================*/

.services-section .section-header {
  position: relative;

  max-width: 800px;

  margin: 0 auto 70px;

  text-align: center;

  z-index: 2;
  opacity: 1;
  margin-bottom: 55px;
  transform: none;
}

.services-section .section-tag {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 12px 24px;

  margin-bottom: 22px;

  border-radius: 50px;

  background: rgba(184, 138, 27, 0.1);

  color: var(--primary);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.services-section .section-tag::before {
  content: "";

  width: 30px;

  height: 2px;

  background: var(--primary);
}

.services-section .section-header h2 {
  margin-bottom: 22px;

  color: var(--secondary);

  font-size: 48px;

  line-height: 1.2;
}

.services-section .section-header h2 span {
  display: block;

  color: var(--primary);
}

.services-section .section-header p {
  margin: 0 auto;

  max-width: 720px;

  color: #667085;

  font-size: 17px;

  line-height: 1.9;
}

/*=========================================================
    SERVICES GRID
=========================================================*/

.services-grid {
  position: relative;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 28px;

  z-index: 2;
}

/*=========================================================
    SERVICE CARD
=========================================================*/

.service-card {
  position: relative;

  display: flex;

  flex-direction: column;

  min-height: 430px;

  padding: 32px 28px;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.05);

  border-radius: 25px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);

  overflow: hidden;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;

  opacity: 0;

  transform: translateY(40px);
}

.service-card.show {
  opacity: 1;

  transform: translateY(0);
}

.service-card::before {
  content: "";

  position: absolute;

  width: 180px;

  height: 180px;

  right: -90px;

  top: -90px;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.07);

  transition: 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);

  border-color: rgba(184, 138, 27, 0.2);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
  width: 230px;

  height: 230px;
}

/*=========================================================
    CARD TOP
=========================================================*/

.service-card-top {
  position: relative;

  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  margin-bottom: 28px;

  z-index: 2;
}

/*=========================================================
    SERVICE ICON
=========================================================*/

.service-icon {
  width: 68px;

  height: 68px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 18px;

  background: rgba(184, 138, 27, 0.11);

  color: var(--primary);

  transition: 0.4s ease;
}

.service-icon i {
  font-size: 27px;

  transition: 0.4s ease;
}

.service-card:hover .service-icon {
  background: var(--primary);

  transform: translateY(-3px);
}

.service-card:hover .service-icon i {
  color: #ffffff;

  transform: scale(1.08);
}

/*=========================================================
    SERVICE NUMBER
=========================================================*/

.service-number {
  color: rgba(19, 37, 68, 0.18);

  font-size: 18px;

  font-weight: 800;

  letter-spacing: 1px;
}

/*=========================================================
    CARD TITLE
=========================================================*/

.service-card h3 {
  position: relative;

  margin-bottom: 16px;

  color: var(--secondary);

  font-size: 23px;

  line-height: 1.35;

  z-index: 2;

  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary);
}

/*=========================================================
    CARD LINE
=========================================================*/

.service-line {
  width: 45px;

  height: 3px;

  margin-bottom: 20px;

  border-radius: 10px;

  background: var(--primary);

  transition: width 0.4s ease;
}

.service-card:hover .service-line {
  width: 75px;
}

/*=========================================================
    CARD DESCRIPTION
=========================================================*/

.service-card p {
  position: relative;

  margin-bottom: 25px;

  color: #667085;

  font-size: 15px;

  line-height: 1.8;

  z-index: 2;
}

/*=========================================================
    SERVICE LINK
=========================================================*/

.service-link {
  position: relative;

  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-top: auto;

  width: fit-content;

  color: var(--secondary);

  font-size: 15px;

  font-weight: 700;

  text-decoration: none;

  z-index: 2;

  transition: color 0.3s ease;
}

.service-link span {
  width: 34px;

  height: 34px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: rgba(184, 138, 27, 0.1);

  color: var(--primary);

  transition: 0.35s ease;
}

.service-link i {
  font-size: 13px;

  transition: transform 0.3s ease;
}

.service-link:hover {
  color: var(--primary);
}

.service-link:hover span {
  background: var(--primary);

  color: #ffffff;
}

.service-link:hover i {
  transform: translateX(4px);
}

/*=========================================================
    RESPONSIVE
=========================================================*/

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .services-section {
    padding: 90px 0;
  }

  .services-section .section-header {
    margin-bottom: 55px;
  }

  .services-section .section-header h2 {
    font-size: 42px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 75px 0;
  }

  .services-section .section-header h2 {
    font-size: 36px;
  }

  .services-section .section-header p {
    font-size: 16px;
  }

  .service-card {
    min-height: 400px;

    padding: 28px 25px;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-section .section-header h2 {
    font-size: 30px;
  }

  .service-card {
    min-height: auto;
  }
}
/*=========================================================
    MIGARA CARE
    SERVICES PAGE
    PART 3 — WHY CHOOSE & SUPPORT JOURNEY
=========================================================*/

/*=========================================================
    WHY CHOOSE SECTION
=========================================================*/

.services-why {
  position: relative;

  padding: 110px 0;

  background: #ffffff;

  overflow: hidden;
}

.services-why::before {
  content: "";

  position: absolute;

  width: 600px;

  height: 600px;

  right: -260px;

  top: -220px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.07),
    transparent 72%
  );
}

/*=========================================================
    WHY CHOOSE GRID
=========================================================*/

.services-why-grid {
  position: relative;

  display: grid;

  grid-template-columns: 0.95fr 1.05fr;

  gap: 80px;

  align-items: center;

  z-index: 2;
  opacity: 1;

  transform: none;
}

/*=========================================================
    IMAGE
=========================================================*/

.services-why-image {
  position: relative;
}

.services-why-image-main {
  position: relative;

  overflow: hidden;

  border-radius: 30px;

  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.12);
}

.services-why-image-main::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(19, 37, 68, 0.15), transparent 50%);
}

.services-why-image-main img {
  display: block;

  width: 100%;

  min-height: 620px;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.services-why-image:hover img {
  transform: scale(1.04);
}

/*=========================================================
    IMAGE BADGE
=========================================================*/

.services-why-badge {
  position: absolute;

  right: -35px;

  bottom: 45px;

  display: flex;

  align-items: center;

  gap: 15px;

  min-width: 250px;

  padding: 20px 25px;

  border-radius: 20px;

  background: #ffffff;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);

  z-index: 3;
}

.services-why-badge > i {
  width: 55px;

  height: 55px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  border-radius: 16px;

  background: rgba(184, 138, 27, 0.11);

  color: var(--primary);

  font-size: 22px;
}

.services-why-badge strong {
  display: block;

  margin-bottom: 5px;

  color: var(--secondary);

  font-size: 17px;
}

.services-why-badge span {
  color: #667085;

  font-size: 13px;
}

/*=========================================================
    WHY CONTENT
=========================================================*/

.services-why-content .section-tag {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 12px 24px;

  margin-bottom: 22px;

  border-radius: 50px;

  background: rgba(184, 138, 27, 0.1);

  color: var(--primary);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.services-why-content .section-tag::before {
  content: "";

  width: 30px;

  height: 2px;

  background: var(--primary);
}

.services-why-content h2 {
  margin-bottom: 25px;

  color: var(--secondary);

  font-size: 48px;

  line-height: 1.2;
}

.services-why-content h2 span {
  display: block;

  color: var(--primary);
}

.services-why-content > p {
  margin-bottom: 18px;

  color: #667085;

  font-size: 16px;

  line-height: 1.9;
}

/*=========================================================
    WHY FEATURES
=========================================================*/

.why-features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;

  margin: 35px 0;
}

.why-feature {
  display: flex;

  align-items: flex-start;

  gap: 15px;
}

.why-feature-icon {
  width: 52px;

  height: 52px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  border-radius: 15px;

  background: rgba(184, 138, 27, 0.1);

  color: var(--primary);

  transition: 0.35s ease;
}

.why-feature:hover .why-feature-icon {
  background: var(--primary);

  color: #ffffff;

  transform: translateY(-3px);
}

.why-feature h4 {
  margin-bottom: 6px;

  color: var(--secondary);

  font-size: 17px;
}

.why-feature p {
  margin: 0;

  color: #667085;

  font-size: 14px;

  line-height: 1.7;
}

/*=========================================================
    WHY BUTTON
=========================================================*/

.services-why-button {
  margin-top: 10px;
}

/*=========================================================
    SUPPORT JOURNEY
=========================================================*/

.services-journey {
  position: relative;

  padding: 110px 0;

  background: var(--light);

  overflow: hidden;
}

.services-journey::before {
  content: "";

  position: absolute;

  width: 550px;

  height: 550px;

  left: -220px;

  bottom: -220px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.07),
    transparent 72%
  );
}

/*=========================================================
    JOURNEY HEADER
=========================================================*/

.services-journey .section-header {
  position: relative;

  max-width: 760px;

  margin: 0 auto 70px;

  text-align: center;

  z-index: 2;
  opacity: 1;

  transform: none;
}

.services-journey .section-tag {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 12px 24px;

  margin-bottom: 22px;

  border-radius: 50px;

  background: rgba(184, 138, 27, 0.1);

  color: var(--primary);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.services-journey .section-tag::before {
  content: "";

  width: 30px;

  height: 2px;

  background: var(--primary);
}

.services-journey .section-header h2 {
  margin-bottom: 20px;

  color: var(--secondary);

  font-size: 48px;

  line-height: 1.2;
}

.services-journey .section-header h2 span {
  display: block;

  color: var(--primary);
}

.services-journey .section-header p {
  max-width: 700px;

  margin: 0 auto;

  color: #667085;

  line-height: 1.9;
}

/*=========================================================
    JOURNEY GRID
=========================================================*/

.journey-grid {
  position: relative;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;

  z-index: 2;
}

/*=========================================================
    JOURNEY ITEM
=========================================================*/

.journey-item {
  position: relative;

  padding: 35px 28px;

  text-align: center;

  background: #ffffff;

  border-radius: 25px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  opacity: 1;

  transform: none;
}

.journey-item:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.1);
}

/*=========================================================
    JOURNEY NUMBER
=========================================================*/

.journey-number {
  position: absolute;

  top: 20px;

  right: 22px;

  color: rgba(19, 37, 68, 0.12);

  font-size: 18px;

  font-weight: 800;
}

/*=========================================================
    JOURNEY ICON
=========================================================*/

.journey-icon {
  width: 72px;

  height: 72px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 25px;

  border-radius: 20px;

  background: rgba(184, 138, 27, 0.11);

  color: var(--primary);

  font-size: 27px;

  transition: 0.35s ease;
}

.journey-item:hover .journey-icon {
  background: var(--primary);

  color: #ffffff;

  transform: translateY(-4px);
}

/*=========================================================
    JOURNEY CONTENT
=========================================================*/

.journey-item h3 {
  margin-bottom: 14px;

  color: var(--secondary);

  font-size: 21px;
}

.journey-item p {
  margin: 0;

  color: #667085;

  font-size: 14px;

  line-height: 1.8;
}

/*=========================================================
    RESPONSIVE
=========================================================*/

@media (max-width: 1200px) {
  .services-why-grid {
    gap: 55px;
  }

  .services-why-content h2 {
    font-size: 42px;
  }

  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .services-why,
  .services-journey {
    padding: 90px 0;
  }

  .services-why-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .services-why-image {
    max-width: 700px;

    margin: 0 auto;

    width: 100%;
  }

  .services-why-content {
    text-align: center;
  }

  .services-why-content .section-tag {
    justify-content: center;
  }

  .why-features {
    text-align: left;
  }

  .services-why-button {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .services-why,
  .services-journey {
    padding: 75px 0;
  }

  .services-why-image-main img {
    min-height: 450px;
  }

  .services-why-badge {
    right: 20px;

    bottom: 25px;
  }

  .services-why-content h2,
  .services-journey .section-header h2 {
    font-size: 36px;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .services-why-image-main {
    border-radius: 22px;
  }

  .services-why-image-main img {
    min-height: 350px;
  }

  .services-why-badge {
    position: relative;

    right: auto;

    bottom: auto;

    width: 100%;

    margin-top: 20px;
  }

  .services-why-content h2,
  .services-journey .section-header h2 {
    font-size: 30px;
  }

  .journey-item {
    padding: 30px 22px;
  }
}
/*=========================================================
    MIGARA CARE
    SERVICES PAGE
    PART 3 — WHY CHOOSE & SUPPORT JOURNEY
=========================================================*/

/*=========================================================
    WHY CHOOSE SECTION
=========================================================*/

.services-why {
  position: relative;

  padding: 110px 0;

  background: #ffffff;

  overflow: hidden;
}

.services-why::before {
  content: "";

  position: absolute;

  width: 600px;

  height: 600px;

  right: -260px;

  top: -220px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.07),
    transparent 72%
  );
}

/*=========================================================
    WHY CHOOSE GRID
=========================================================*/

.services-why-grid {
  position: relative;

  display: grid;

  grid-template-columns: 0.95fr 1.05fr;

  gap: 80px;

  align-items: center;

  z-index: 2;
}

/*=========================================================
    IMAGE
=========================================================*/

.services-why-image {
  position: relative;
}

.services-why-image-main {
  position: relative;

  overflow: hidden;

  border-radius: 30px;

  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.12);
}

.services-why-image-main::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(19, 37, 68, 0.15), transparent 50%);
}

.services-why-image-main img {
  display: block;

  width: 100%;

  min-height: 620px;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.services-why-image:hover img {
  transform: scale(1.04);
}

/*=========================================================
    IMAGE BADGE
=========================================================*/

.services-why-badge {
  position: absolute;

  right: -35px;

  bottom: 45px;

  display: flex;

  align-items: center;

  gap: 15px;

  min-width: 250px;

  padding: 20px 25px;

  border-radius: 20px;

  background: #ffffff;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);

  z-index: 3;
}

.services-why-badge > i {
  width: 55px;

  height: 55px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  border-radius: 16px;

  background: rgba(184, 138, 27, 0.11);

  color: var(--primary);

  font-size: 22px;
}

.services-why-badge strong {
  display: block;

  margin-bottom: 5px;

  color: var(--secondary);

  font-size: 17px;
}

.services-why-badge span {
  color: #667085;

  font-size: 13px;
}

/*=========================================================
    WHY CONTENT
=========================================================*/

.services-why-content .section-tag {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 12px 24px;

  margin-bottom: 22px;

  border-radius: 50px;

  background: rgba(184, 138, 27, 0.1);

  color: var(--primary);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.services-why-content .section-tag::before {
  content: "";

  width: 30px;

  height: 2px;

  background: var(--primary);
}

.services-why-content h2 {
  margin-bottom: 25px;

  color: var(--secondary);

  font-size: 48px;

  line-height: 1.2;
}

.services-why-content h2 span {
  display: block;

  color: var(--primary);
}

.services-why-content > p {
  margin-bottom: 18px;

  color: #667085;

  font-size: 16px;

  line-height: 1.9;
}

/*=========================================================
    WHY FEATURES
=========================================================*/

.why-features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;

  margin: 35px 0;
}

.why-feature {
  display: flex;

  align-items: flex-start;

  gap: 15px;
}

.why-feature-icon {
  width: 52px;

  height: 52px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  border-radius: 15px;

  background: rgba(184, 138, 27, 0.1);

  color: var(--primary);

  transition: 0.35s ease;
}

.why-feature:hover .why-feature-icon {
  background: var(--primary);

  color: #ffffff;

  transform: translateY(-3px);
}

.why-feature h4 {
  margin-bottom: 6px;

  color: var(--secondary);

  font-size: 17px;
}

.why-feature p {
  margin: 0;

  color: #667085;

  font-size: 14px;

  line-height: 1.7;
}

/*=========================================================
    WHY BUTTON
=========================================================*/

.services-why-button {
  margin-top: 10px;
}

/*=========================================================
    SUPPORT JOURNEY
=========================================================*/

.services-journey {
  position: relative;

  padding: 110px 0;

  background: var(--light);

  overflow: hidden;
}

.services-journey::before {
  content: "";

  position: absolute;

  width: 550px;

  height: 550px;

  left: -220px;

  bottom: -220px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 138, 27, 0.07),
    transparent 72%
  );
}

/*=========================================================
    JOURNEY HEADER
=========================================================*/

.services-journey .section-header {
  position: relative;

  max-width: 760px;

  margin: 0 auto 70px;

  text-align: center;

  z-index: 2;
}

.services-journey .section-tag {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 12px 24px;

  margin-bottom: 22px;

  border-radius: 50px;

  background: rgba(184, 138, 27, 0.1);

  color: var(--primary);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.services-journey .section-tag::before {
  content: "";

  width: 30px;

  height: 2px;

  background: var(--primary);
}

.services-journey .section-header h2 {
  margin-bottom: 20px;

  color: var(--secondary);

  font-size: 48px;

  line-height: 1.2;
}

.services-journey .section-header h2 span {
  display: block;

  color: var(--primary);
}

.services-journey .section-header p {
  max-width: 700px;

  margin: 0 auto;

  color: #667085;

  line-height: 1.9;
}

/*=========================================================
    JOURNEY GRID
=========================================================*/

.journey-grid {
  position: relative;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;

  z-index: 2;
}

/*=========================================================
    JOURNEY ITEM
=========================================================*/

.journey-item {
  position: relative;

  padding: 35px 28px;

  text-align: center;

  background: #ffffff;

  border-radius: 25px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.journey-item:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.1);
}

/*=========================================================
    JOURNEY NUMBER
=========================================================*/

.journey-number {
  position: absolute;

  top: 20px;

  right: 22px;

  color: rgba(19, 37, 68, 0.12);

  font-size: 18px;

  font-weight: 800;
}

/*=========================================================
    JOURNEY ICON
=========================================================*/

.journey-icon {
  width: 72px;

  height: 72px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 25px;

  border-radius: 20px;

  background: rgba(184, 138, 27, 0.11);

  color: var(--primary);

  font-size: 27px;

  transition: 0.35s ease;
}

.journey-item:hover .journey-icon {
  background: var(--primary);

  color: #ffffff;

  transform: translateY(-4px);
}

/*=========================================================
    JOURNEY CONTENT
=========================================================*/

.journey-item h3 {
  margin-bottom: 14px;

  color: var(--secondary);

  font-size: 21px;
}

.journey-item p {
  margin: 0;

  color: #667085;

  font-size: 14px;

  line-height: 1.8;
}

/*=========================================================
    RESPONSIVE
=========================================================*/

@media (max-width: 1200px) {
  .services-why-grid {
    gap: 55px;
  }

  .services-why-content h2 {
    font-size: 42px;
  }

  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .services-why,
  .services-journey {
    padding: 90px 0;
  }

  .services-why-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .services-why-image {
    max-width: 700px;

    margin: 0 auto;

    width: 100%;
  }

  .services-why-content {
    text-align: center;
  }

  .services-why-content .section-tag {
    justify-content: center;
  }

  .why-features {
    text-align: left;
  }

  .services-why-button {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .services-why,
  .services-journey {
    padding: 75px 0;
  }

  .services-why-image-main img {
    min-height: 450px;
  }

  .services-why-badge {
    right: 20px;

    bottom: 25px;
  }

  .services-why-content h2,
  .services-journey .section-header h2 {
    font-size: 36px;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .services-why-image-main {
    border-radius: 22px;
  }

  .services-why-image-main img {
    min-height: 350px;
  }

  .services-why-badge {
    position: relative;

    right: auto;

    bottom: auto;

    width: 100%;

    margin-top: 20px;
  }

  .services-why-content h2,
  .services-journey .section-header h2 {
    font-size: 30px;
  }

  .journey-item {
    padding: 30px 22px;
  }
}
/*=========================================================
    MIGARA CARE
    SERVICES PAGE
    PART 5 — ANIMATIONS, UTILITIES & FINAL RESPONSIVE
=========================================================*/

/*=========================================================
    SCROLL REVEAL
=========================================================*/

.services-section .section-header,
.services-why-grid,
.services-journey .section-header,
.journey-item,
.opportunity-box {
  opacity: 1;

  transform: translateY(40px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.services-section .section-header.show,
.services-why-grid.show,
.services-journey .section-header.show,
.journey-item.show,
.opportunity-box.show {
  opacity: 1;

  transform: translateY(0);
}

.opportunity-box {
  position: relative;

  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  min-height: 500px;

  overflow: hidden;

  border-radius: 30px;

  background: linear-gradient(135deg, #fdf8ed 0%, #f8efdc 100%);

  border: 1px solid rgba(198, 146, 20, 0.12);

  box-shadow: 0 20px 55px rgba(24, 36, 58, 0.08);

  opacity: 1;

  transform: none;
}

.opportunity-content {
  position: relative;

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 65px 60px;

  z-index: 2;
}

.opportunity-content::before {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  left: -170px;
  bottom: -170px;

  border-radius: 50%;

  border: 1px solid rgba(198, 146, 20, 0.15);

  pointer-events: none;
}

/*=========================================================
    SECTION TAG
=========================================================*/

.opportunity-content .section-tag {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  width: fit-content;

  margin-bottom: 20px;

  padding: 10px 20px;

  border-radius: 50px;

  background: rgba(198, 146, 20, 0.1);

  color: #a8780f;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1.8px;

  text-transform: uppercase;
}

/* Gold line */

.opportunity-content .section-tag::before {
  content: "";

  width: 25px;

  height: 2px;

  background: #c69214;
}

/*=========================================================
    OPPORTUNITY TITLE
=========================================================*/

.opportunity-content h2 {
  max-width: 650px;

  margin: 0 0 20px;

  color: #18243a;

  font-size: clamp(38px, 4vw, 58px);

  font-weight: 800;

  line-height: 1.12;

  letter-spacing: -1.5px;
}

/* Gold line inside title */

.opportunity-content h2 span {
  color: #c69214;
}

/*=========================================================
    OPPORTUNITY DESCRIPTION
=========================================================*/

.opportunity-content > p {
  max-width: 650px;

  margin: 0 0 28px;

  color: #667085;

  font-size: 16px;

  line-height: 1.85;
}

/*=========================================================
    OPPORTUNITY FEATURES
=========================================================*/
.opportunity-feature {
  display: flex;

  align-items: center;

  gap: 13px;

  color: #475569;

  font-size: 15px;

  font-weight: 500;
}
.opportunity-features {
  display: flex;

  flex-direction: column;

  gap: 13px;

  margin-bottom: 30px;
}

/*---------------------------------------------------------
    FEATURE ICON
---------------------------------------------------------*/

.opportunity-feature i {
  width: 38px;

  height: 38px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: #ffffff;

  color: #c69214;

  font-size: 15px;

  box-shadow: 0 6px 18px rgba(24, 36, 58, 0.06);
}

/*=========================================================
    STAGGERED SERVICE CARDS
=========================================================*/

.service-card:nth-child(1) {
  transition-delay: 0.05s;
}

.service-card:nth-child(2) {
  transition-delay: 0.1s;
}

.service-card:nth-child(3) {
  transition-delay: 0.15s;
}

.service-card:nth-child(4) {
  transition-delay: 0.2s;
}

.service-card:nth-child(5) {
  transition-delay: 0.25s;
}

.service-card:nth-child(6) {
  transition-delay: 0.3s;
}

.service-card:nth-child(7) {
  transition-delay: 0.35s;
}

.service-card:nth-child(8) {
  transition-delay: 0.4s;
}

/*=========================================================
    STAGGERED JOURNEY ITEMS
=========================================================*/

.journey-item:nth-child(1) {
  transition-delay: 0.05s;
}

.journey-item:nth-child(2) {
  transition-delay: 0.12s;
}

.journey-item:nth-child(3) {
  transition-delay: 0.19s;
}

.journey-item:nth-child(4) {
  transition-delay: 0.26s;
}

/*=========================================================
    GENERAL IMAGE HOVER
=========================================================*/

.services-why-image-main,
.opportunity-image,
.services-hero-image-wrapper {
  overflow: hidden;
}
/*=========================================================
    BUTTON BASE
=========================================================*/

.services-cta-buttons .btn {
  min-height: 54px;

  padding: 13px 27px;

  border-radius: 999px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  font-size: 14px;

  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/*=========================================================
    PRIMARY BUTTON
=========================================================*/

.services-cta-buttons .btn-primary {
  background: #c69214;

  border: 2px solid #c69214;

  color: #ffffff;

  box-shadow: 0 8px 20px rgba(198, 146, 20, 0.18);
}

.services-cta-buttons .btn-primary:hover {
  background: #a8780f;

  border-color: #a8780f;

  transform: translateY(-3px);

  box-shadow: 0 12px 25px rgba(198, 146, 20, 0.22);
}

/*=========================================================
    OUTLINE BUTTON
=========================================================*/

.services-cta-buttons .btn-outline {
  background: #ffffff;

  border: 2px solid #c69214;

  color: #a8780f;
}

.services-cta-buttons .btn-outline:hover {
  background: #c69214;

  border-color: #c69214;

  color: #ffffff;

  transform: translateY(-3px);
}

/*=========================================================
    BUTTON ICON
=========================================================*/

.services-cta-buttons .btn i {
  transition: transform 0.3s ease;
}

.services-cta-buttons .btn:hover i {
  transform: translateX(4px);
}

/*=========================================================
    BUTTON INTERACTION
=========================================================*/

.services-why-button .btn,
.opportunity-buttons .btn {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.services-why-button .btn:hover,
.opportunity-buttons .btn:hover,
.services-cta-buttons .btn:hover {
  transform: translateY(-4px);
}

/*=========================================================
    SERVICE CARD ACCESSIBILITY
=========================================================*/

.service-card:focus-within {
  border-color: rgba(184, 138, 27, 0.35);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
}

/*=========================================================
    SMOOTH SCROLL
=========================================================*/

html {
  scroll-behavior: smooth;
}

/*=========================================================
    SECTION SCROLL OFFSET
=========================================================*/
.services-cta-box {
  position: relative;

  width: 100%;

  max-width: 1180px;

  margin: 0 auto;

  padding: 58px 65px;

  background: linear-gradient(135deg, #fffdf8 0%, #faf4e5 100%);

  border: 1px solid rgba(198, 146, 20, 0.12);

  border-radius: 28px;

  box-shadow: 0 18px 45px rgba(24, 36, 58, 0.06);

  overflow: hidden;

  text-align: left;

  opacity: 1;

  transform: none;
}

/*=========================================================
    DECORATIVE GOLD CIRCLE
=========================================================*/

.services-cta-box::before {
  content: "";

  position: absolute;

  width: 380px;

  height: 380px;

  right: -190px;

  top: -220px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(198, 146, 20, 0.13),
    transparent 70%
  );

  pointer-events: none;
}

.services-cta-box::after {
  content: "";

  position: absolute;

  width: 240px;

  height: 240px;

  left: -150px;

  bottom: -170px;

  border-radius: 50%;

  border: 1px solid rgba(198, 146, 20, 0.12);

  pointer-events: none;
}

/*=========================================================
    CTA CONTENT
=========================================================*/

.services-cta-content {
  position: relative;

  z-index: 2;

  max-width: 1050px;

  margin: 0;

  text-align: left;
}

/*=========================================================
    SMALL GOLD LABEL
=========================================================*/

.services-cta-content .sub-title {
  display: block;

  margin: 0 0 14px;

  padding: 0;

  background: transparent;

  color: #c69214;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2.5px;

  line-height: 1.4;

  text-transform: uppercase;
}

/*=========================================================
    CTA HEADING
=========================================================*/

.services-cta-content h2 {
  margin: 0 0 14px;

  color: #18243a;

  font-size: clamp(38px, 4vw, 54px);

  font-weight: 800;

  line-height: 1.12;

  letter-spacing: -1.5px;
}

/*=========================================================
    TABLET
=========================================================*/

@media (max-width: 991px) {
  .services-cta {
    padding: 60px 0 70px;
  }

  .services-cta-box {
    padding: 50px 45px;
  }

  .services-cta-content h2 {
    font-size: 44px;
  }
}

/*=========================================================
    MOBILE
=========================================================*/

@media (max-width: 768px) {
  .services-cta {
    padding: 50px 0 60px;
  }

  .services-cta-box {
    padding: 45px 30px;

    border-radius: 24px;
  }

  .services-cta-content h2 {
    font-size: 36px;

    letter-spacing: -0.8px;
  }

  .services-cta-content p {
    font-size: 15px;

    line-height: 1.7;
  }
}

/*=========================================================
    SMALL MOBILE
=========================================================*/

@media (max-width: 576px) {
  .services-cta {
    padding: 40px 0 50px;
  }

  .services-cta-box {
    padding: 38px 22px;

    border-radius: 20px;
  }

  .services-cta-content h2 {
    font-size: 30px;
  }

  .services-cta-buttons {
    flex-direction: column;

    align-items: stretch;
  }

  .services-cta-buttons .btn {
    width: 100%;
  }
}

/*=========================================================
    GOLD EMPHASIS
=========================================================*/

.services-cta-content h2 span {
  display: inline;

  color: #c69214;
}

/*=========================================================
    CTA DESCRIPTION
=========================================================*/

.services-cta-content p {
  max-width: 1000px;

  margin: 0 0 27px;

  color: #647084;

  font-size: 16px;

  line-height: 1.75;
}
/*=========================================================
    CTA BUTTONS
=========================================================*/

.services-cta-buttons {
  display: flex;

  align-items: center;

  justify-content: flex-start;

  gap: 12px;

  flex-wrap: wrap;
}

.services-section,
.services-why,
.services-journey,
.services-opportunities,
.services-cta {
  scroll-margin-top: 110px;
}

.services-cta {
  position: relative;

  width: 100%;

  padding: 70px 0 80px;

  background: #ffffff;

  overflow: hidden;
}

.services-opportunities {
  position: relative;
  padding: 60px 0;
  background: #ffffff;
  overflow: hidden;
}

.services-opportunities::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -240px;
  top: -200px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(198, 146, 20, 0.09),
    transparent 70%
  );

  pointer-events: none;
}

/*=========================================================
    TEXT SELECTION
=========================================================*/

::selection {
  background: var(--primary);

  color: #ffffff;
}

/*=========================================================
    ACCESSIBILITY
=========================================================*/

.services-hero-buttons a:focus,
.service-link:focus,
.services-why-button a:focus,
.opportunity-buttons a:focus,
.services-cta-buttons a:focus {
  outline: 3px solid rgba(184, 138, 27, 0.28);

  outline-offset: 4px;
}

/*=========================================================
    REDUCED MOTION
=========================================================*/

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }

  .services-section .section-header,
  .service-card,
  .services-why-grid,
  .services-journey .section-header,
  .journey-item,
  .opportunity-box,
  .services-cta-box {
    opacity: 1;

    transform: none;
  }
}

/*=========================================================
    LARGE DESKTOP
=========================================================*/

@media (min-width: 1400px) {
  .services-grid {
    gap: 32px;
  }

  .services-why-grid {
    gap: 90px;
  }

  .journey-grid {
    gap: 30px;
  }
}

/*=========================================================
    TABLET
=========================================================*/

@media (max-width: 991px) {
  .services-section .section-header,
  .services-journey .section-header {
    margin-bottom: 55px;
  }

  .services-why-grid {
    opacity: 1;

    transform: none;
  }
}

/*=========================================================
    MOBILE
=========================================================*/

@media (max-width: 768px) {
  .services-section,
  .services-why,
  .services-journey,
  .services-opportunities {
    scroll-margin-top: 90px;
  }

  .service-card {
    transition-delay: 0s !important;
  }

  .journey-item {
    transition-delay: 0s !important;
  }
}

/*=========================================================
    SMALL MOBILE
=========================================================*/

@media (max-width: 576px) {
  .services-hero,
  .services-section,
  .services-why,
  .services-journey,
  .services-opportunities {
    overflow-x: hidden;
  }

  .services-why-grid,
  .opportunity-box {
    transform: none;
  }
}

/*=========================================================
    PRINT
=========================================================*/

@media print {
  .top-announcement-bar,
  .contact-info-bar,
  .main-header,
  .services-hero-buttons,
  .services-why-button,
  .opportunity-buttons,
  .services-cta,
  .footer {
    display: none !important;
  }

  .services-hero,
  .services-section,
  .services-why,
  .services-journey,
  .services-opportunities {
    padding: 30px 0;

    background: #ffffff;
  }

  .service-card,
  .journey-item,
  .opportunity-box {
    box-shadow: none;

    border: 1px solid #ddd;

    opacity: 1;

    transform: none;
  }
}
