/* ============================================
   VOYAGER SUPPORT
   ============================================ */

.support-section {
  padding: 55px 0 45px;
  background: #fff;
}


/* Heading */

.support-heading {
  max-width: 1050px;
  margin: 0 auto 80px;
  text-align: center;
}

.support-heading h2 {
  margin: 0 0 14px;

  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;

  color: var(--navy-900);
}

.support-heading p {
  margin: 0 auto;
  max-width: 1050px;

  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.4;

  color: #777;
}


/* ============================================
   GRID
   ============================================ */

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  max-width: 990px;
  margin: 0 auto;

  gap: 12px;
}


/* ============================================
   CARD
   ============================================ */

.support-card {
  display: flex;
  flex-direction: column;
  align-items: center;

  min-height: 265px;

  padding: 0 5px 25px;

  text-align: center;

  background: #fff;

  border: none;

  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.13);
}


/* ============================================
   ICON
   ============================================ */

.support-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 50px;
  margin-bottom: 3px;

  color: #05013d;
}

.support-icon i {
  font-size: 2.7rem;
}


/* ============================================
   TITLE
   ============================================ */

.support-card h3 {
  margin: 0 0 24px;

  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 700;

  color: #008eae;
}


/* ============================================
   DESCRIPTION
   ============================================ */

.support-card p {
  max-width: 470px;
  margin: 0 auto 20px;

  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.4;

  color: #777;
}


/* ============================================
   BUTTON
   ============================================ */

.support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 5px;

  margin-top: auto;

  padding: 9px 22px;

  background: #0879f9;
  color: #fff;

  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;

  text-decoration: none;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.support-btn:hover {
  background: #0568dc;
  color: #fff;
  text-decoration: none;

  transform: translateY(-2px);
}

.support-btn span {
  font-size: 1.1rem;
}

/* ============================================
   ALL SERVICES OVERVIEW
============================================ */

.all-services-section {
  padding: 75px 0 90px;
  background: #ffffff;
}

.all-services-section .wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


/* 6 columns */

.all-services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
}


/* Column */

.services-column {
  min-width: 0;
}


/* Category title */

.services-column-title {
  margin: 0 0 34px;

  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.3;
  font-weight: 500;

  color: #273246;
  text-transform: uppercase;
}


/* Service item */

.services-list-item {
  margin-bottom: 26px;
}


/* Link */

.services-list-title {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: #0085ad;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}


.services-list-title:hover {
  color: var(--blue-500);
}

.service-icon {
  width: 17px;
  min-width: 17px;
  font-size: 14px;
  line-height: 1.3;
  color: #4775e8;
}

.services-list-description {
  margin: 7px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: #6b7280;
}

/* Circle icon */

.service-dot {
  width: 15px;
  height: 15px;
  min-width: 15px;

  margin-top: 1px;

  border-radius: 50%;
  background: #4678ef;
}


/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 1100px) {

  .all-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
  }

}


@media (max-width: 768px) {

  .all-services-section {
    padding: 55px 0;
  }

  .all-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 30px;
  }

}


@media (max-width: 500px) {

  .all-services-grid {
    grid-template-columns: 1fr;
  }

}


/* ============================================
   TABLET / MOBILE
   ============================================ */

@media (max-width: 768px) {

  .support-heading {
    margin-bottom: 50px;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 25px;

    max-width: 600px;
  }

  .support-card {
    min-height: auto;
    padding: 25px 20px;
  }
}


@media (max-width: 500px) {

  .support-section {
    padding: 40px 0;
  }

  .support-heading h2 {
    font-size: 1.7rem;
  }

  .support-heading p {
    font-size: 0.85rem;
  }

  .support-card h3 {
    font-size: 1.05rem;
  }

  .support-card p {
    font-size: 0.85rem;
  }
}