/* =========================================
   SERVICE PAGE BANNER
========================================= */

.service-page-banner {
  min-height: 330px;

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

  padding: 70px 20px;

  text-align: center;

  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 0, 85, 0.16),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 204, 112, 0.08),
      transparent 35%
    ),
    #05000a;
}

.service-page-banner-content {
  max-width: 750px;
}

.service-page-banner-content span {
  display: inline-block;

  color: #ff0055;

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

  letter-spacing: 2px;
}

.service-page-banner-content h1 {
  margin: 12px 0;

  color: #fff;

  font-size: 48px;
  line-height: 1.15;
}

.service-page-banner-content p {
  max-width: 650px;

  margin: 0 auto;

  color: #cfcfcf;

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


/* MOBILE */

@media (max-width: 768px) {

  .service-page-banner {
    min-height: 270px;
    padding: 55px 20px;
  }

  .service-page-banner-content h1 {
    font-size: 36px;
  }

  .service-page-banner-content p {
    font-size: 14px;
  }

}

.service-intro-section {
  padding: 85px 20px;
  background: #05000a;
}

.service-intro-wrap {
  max-width: 1250px;
  margin: auto;
}

.service-intro-heading {
  max-width: 720px;
  margin: 0 auto 45px;
  text-align: center;
}

.service-intro-heading span {
  color: #ff0055;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.service-intro-heading h2 {
  margin: 12px 0 0;
  color: #fff;
  font-size: 38px;
  line-height: 1.25;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 35px;
  align-items: stretch;
}

.service-intro-content {
  padding: 35px;
  border-left: 2px solid #ff0055;
  background: rgba(255,255,255,0.025);
  border-radius: 14px;
}

.service-intro-content p {
  margin: 0 0 20px;
  color: #c9c5cf;
  font-size: 15px;
  line-height: 1.9;
}

.service-intro-content p:last-child {
  margin-bottom: 0;
}

.service-highlight-box {
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  border-radius: 16px;

  background:
    linear-gradient(
      145deg,
      rgba(255,0,85,0.10),
      rgba(255,255,255,0.025)
    );

  border: 1px solid rgba(255,0,85,0.20);

  text-align: center;
}

.highlight-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;

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

  border-radius: 50%;

  background: rgba(255,0,85,0.10);
  color: #ffcc70;

  font-size: 20px;
}

.service-highlight-box h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 22px;
}

.service-highlight-box p {
  margin: 0;
  color: #bdb7c8;
  font-size: 14px;
  line-height: 1.8;
}

.highlight-line {
  width: 45px;
  height: 2px;
  margin: 22px auto;

  background: linear-gradient(
    90deg,
    #ff0055,
    #ffcc70
  );
}

.service-highlight-box > span {
  color: #888;
  font-size: 10px;
  letter-spacing: 1.5px;
}


/* MOBILE */

@media (max-width: 768px) {

  .service-intro-section {
    padding: 60px 16px;
  }

  .service-intro-heading {
    margin-bottom: 30px;
  }

  .service-intro-heading h2 {
    font-size: 29px;
  }

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

  .service-intro-content {
    padding: 25px 20px;
  }

  .service-highlight-box {
    padding: 28px 20px;
  }

}

.service-feature-section {
  padding: 85px 20px;
  background: #05000a;
}

.service-feature-wrap {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 60% 40%;
  gap: 50px;
  align-items: center;
}

.service-feature-content {
  padding-right: 20px;
}

.service-feature-content > span {
  display: inline-block;
  margin-bottom: 12px;

  color: #ff0055;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.service-feature-content h2 {
  margin: 0 0 22px;

  color: #fff;
  font-size: 38px;
  line-height: 1.2;
}

.service-feature-content p {
  margin: 0 0 18px;

  color: #c5c0cc;
  font-size: 15px;
  line-height: 1.85;
}

.service-feature-image {
  height: 630px;
  overflow: hidden;
  border-radius: 18px;

  border: 1px solid rgba(255,255,255,.08);
}

.service-feature-image img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;

  transition: transform .5s ease;
}

.service-feature-image:hover img {
  transform: scale(1.03);
}


/* MOBILE */

@media (max-width: 991px) {

  .service-feature-wrap {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .service-feature-content {
    padding-right: 0;
  }

  .service-feature-image {
    height: 420px;
  }

}

@media (max-width: 768px) {

  .service-feature-section {
    padding: 60px 16px;
  }

  .service-feature-content h2 {
    font-size: 30px;
  }

  .service-feature-content p {
    font-size: 14px;
  }

  .service-feature-image {
    height: 550px;
  }

}

/* =========================================
   SERVICE LIST
========================================= */

.service-list-section {
  padding: 75px 20px;
  background: #080312;
}

.service-list-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}


/* HEADING */

.service-list-heading {
  max-width: 650px;
  margin: 0 auto 32px;
  text-align: center;
}

.service-list-heading span {
  display: inline-block;

  color: #ff0055;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.service-list-heading h2 {
  margin: 10px 0 12px;

  color: #fff;
  font-size: 34px;
  line-height: 1.2;
}

.service-list-heading p {
  margin: 0;

  color: #aaa4b2;
  font-size: 14px;
  line-height: 1.7;
}


/* SERVICE BUTTONS */

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.service-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 40px;

  padding: 8px 15px;

  border-radius: 8px;

  color: #e8e5eb;
  text-decoration: none;

  font-size: 13px;
  font-weight: 500;

  background: rgba(255,255,255,.035);

  border: 1px solid rgba(255,255,255,.09);

  transition:
    background .25s ease,
    border-color .25s ease,
    color .25s ease,
    transform .25s ease;
}

.service-list a:hover {
  color: #fff;

  background: rgba(255,0,85,.08);

  border-color: rgba(255,0,85,.35);

  transform: translateY(-2px);
}


/* MOBILE */

@media (max-width: 768px) {

  .service-list-section {
    padding: 55px 16px;
  }

  .service-list-heading h2 {
    font-size: 29px;
  }

  .service-list {
    gap: 8px;
  }

  .service-list a {
    min-height: 37px;
    padding: 7px 11px;
    font-size: 12px;
  }

}

/* =========================================
   SERVICE BENEFITS
========================================= */

.service-benefits-section {
  padding: 80px 20px;
  background:
    linear-gradient(
      135deg,
      #080312,
      #0d020b
    );
}

.service-benefits-wrap {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 55% 45%;
  gap: 55px;

  align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.service-benefits-content {
  padding-right: 20px;
}

.service-benefits-content > span {
  display: inline-block;
  margin-bottom: 12px;

  color: #ff0055;

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

  letter-spacing: 2px;
}

.service-benefits-content h2 {
  margin: 0 0 22px;

  color: #ffffff;

  font-size: 38px;
  line-height: 1.2;
}

.service-benefits-content p {
  margin: 0 0 18px;

  color: #c5c0cc;

  font-size: 15px;
  line-height: 1.85;
}

.service-benefits-content p:last-child {
  margin-bottom: 0;
}


/* =========================================
   2 x 2 GRID
========================================= */

.service-benefits-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 14px;
}


/* =========================================
   BENEFIT CARD
========================================= */

.service-benefit-card {
  min-height: 175px;

  padding: 24px 20px;

  box-sizing: border-box;

  border-radius: 14px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.045),
      rgba(255,255,255,0.015)
    );

  border: 1px solid rgba(255,255,255,0.08);

  transition:
    transform .25s ease,
    border-color .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.service-benefit-card:hover {
  transform: translateY(-4px);

  border-color:
    rgba(255,0,85,0.32);

  background:
    rgba(255,0,85,0.055);

  box-shadow:
    0 12px 30px rgba(0,0,0,.25);
}


/* ICON */

.benefit-icon {
  width: 44px;
  height: 44px;

  margin-bottom: 18px;

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

  border-radius: 10px;

  background:
    rgba(255,0,85,.08);

  border: 1px solid
    rgba(255,0,85,.15);

  color: #ffcc70;

  font-size: 16px;
}

.service-benefit-card h3 {
  margin: 0 0 8px;

  color: #ffffff;

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

.service-benefit-card p {
  margin: 0;

  color: #9993a2;

  font-size: 12.5px;
  line-height: 1.65;
}


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

@media (max-width: 991px) {

  .service-benefits-wrap {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .service-benefits-content {
    padding-right: 0;
  }

}


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

@media (max-width: 768px) {

  .service-benefits-section {
    padding: 60px 16px;
  }

  .service-benefits-content h2 {
    font-size: 30px;
  }

  .service-benefits-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .service-benefits-grid {
    gap: 10px;
  }

  .service-benefit-card {
    min-height: 155px;

    padding: 20px 16px;
  }

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

  .service-benefit-card p {
    font-size: 12px;
  }

}