.journey_section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.journey_wrapper {
  background: linear-gradient(135deg, #066a80 0%, #0b8aa6 50%, #044f60 100%);
  border-radius: 30px;
  padding: 70px;
  display: flex;
  gap: 60px;
  position: relative;
  overflow: hidden;
  align-items: center;
}

.journey_wrapper::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -250px;
  top: -250px;
  border-radius: 50%;
  background: rgba(200, 155, 60, 0.08);
}

.journey_content {
  flex: 0 0 35%;
  position: relative;
  z-index: 2;
}

.subtitle {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 15px;
  display: block;
}

.journey_content h2 {
  font-size: 52px;
  line-height: 1.15;
  color: var(--secondary);
  margin-bottom: 25px;
  font-family: "Playfair Display", serif;
}

.journey_content h2 span {
  color: var(--accent);
}

.journey_content p {
  color: rgba(248, 245, 238, 0.8);
  line-height: 1.9;
  max-width: 450px;
}

.journey_btn {
  margin-top: 30px;
  border: none;
  background: linear-gradient(135deg, #c89b3c, #e2b85a);
  color: #063948;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.4s ease;
}

.journey_btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(201, 162, 107, 0.25);
}

.journey_stats {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(200, 155, 60, 0.25);
  display: flex;
  gap: 20px;
  align-items: center;
}

.journey_stats h3 {
  font-size: 44px;
  color: var(--accent);
  margin: 0;
  font-family: "Playfair Display", serif;
}

.journey_stats p {
  margin: 0;
  color: var(--secondary);
}

.journey_stats span {
  color: rgba(248, 243, 238, 0.65);
  font-size: 14px;
}

.journey_grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.journey_card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200, 155, 60, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 30px;
  min-height: 230px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.journey_card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 155, 60, 0.15), transparent);
  opacity: 0;
  transition: 0.4s;
}

.journey_card:hover::before {
  opacity: 1;
}

.journey_card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 155, 60, 0.6);
}

.card_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card_icon {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(200, 155, 60, 0.12);
  border: 1px solid rgba(200, 155, 60, 0.3);
  color: var(--accent);
  font-size: 22px;
  transition: 0.4s;
}

.journey_card:hover .card_icon {
  transform: scale(1.08);
  background: rgba(200, 155, 60, 0.2);
}

.card_number {
  font-size: 42px;
  font-weight: 700;
  color: rgba(200, 155, 60, 0.5);
  font-family: "Playfair Display", serif;
}

.journey_card .card_title {
  color: var(--secondary);
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.journey_card .card_text {
  color: rgba(248, 243, 238, 0.7);
  line-height: 1.8;
  margin: 0;
}

/* ======================= Media Queries ================== */

@media (min-width: 0px) and (max-width: 575px) {
  .journey_section {
    padding: 40px 0;
  }

  .journey_card .card_title {
    font-size: 20px;
  }

  .journey_content p {
    font-size: 15px;
  }

  .journey_card .card_text {
    font-size: 14px;
  }

  .journey_wrapper {
    flex-direction: column;
    padding: 30px 20px;
  }

  .journey_content {
    flex: 100%;
  }

  .journey_grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .journey_content h2 {
    font-size: 42px;
  }

  .journey_stats {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .journey_section {
    padding: 50px 0;
  }
  .journey_wrapper {
    padding: 30px 20px;
    flex-direction: column;
  }

  .journey_grid {
    /* grid-template-columns: 1fr; */
  }

  .journey_card .card_title {
    font-size: 20px;
  }

  .journey_card .card_text {
    font-size: 14px;
    text-align: justify;
  }
  .journey_content h2 {
    font-size: 34px;
  }

  /* .journey_stats {
    flex-direction: column;
    align-items: flex-start;
  } */
}

@media (min-width: 768px) and (max-width: 991px) {
  .journey_wrapper {
    flex-direction: column;
    padding: 40px;
  }

  .journey_content {
    flex: 100%;
  }

  .journey_grid {
    width: 100%;
  }

  .journey_content h2 {
    font-size: 42px;
  }
}
