/* =========================================
   SERVICE INTRO SECTION (RESPONSIVE)
========================================= */

html,
body {
  overflow-x: hidden;
}

.service-intro {
  padding: 80px 0 40px;
}

/* -----------------------------------------
   INNER WRAPPER
----------------------------------------- */

.service-intro-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  box-sizing: border-box;
}

/* -----------------------------------------
   LEFT COLUMN
----------------------------------------- */

.service-intro-heading {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #ff6a00;
  margin-bottom: 20px;
}

.service-intro-text p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 16px;
  color: #333;
}

.service-intro-highlight {
  font-weight: 600;
  color: #ff6a00;
  margin-top: 10px;
}

.btn-orange {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  background: #ff6a00;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* -----------------------------------------
   RIGHT COLUMN
----------------------------------------- */

.service-intro-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-cap-title {
  font-weight: 700;
  margin-bottom: 15px;
}

.service-cap-box {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 12px;
  width: 100%;
  box-sizing: border-box;
}

.service-cap-list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-cap-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

/* Bullet */
.service-cap-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #3bb5a8;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}

/* -----------------------------------------
   QUOTE
----------------------------------------- */

.service-quote {
  margin-top: 40px;
  max-width: 520px;
  font-size: 18px;
	font-weight: 700;
  line-height: 26px;
  color: #3bb5a8;
  position: relative;
}

.service-quote::before {
  content: "“";
  position: absolute;
  left: -40px;
  top: -40px;
  font-size: 96px;
  line-height: 1;
  color: #3bb5a8;
}

/* -----------------------------------------
   QUOTE ALIGNMENT FIX
----------------------------------------- */

.service-quote {
  margin-top: 40px;
  max-width: 90%;      /* remove width restriction */
  width: 90%;          /* match grey box width */
}

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

@media (max-width: 1024px) {
  .service-intro-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 30px;
  }

  .service-cap-list {
    grid-template-columns: 1fr;
  }

  .service-quote::before {
    left: 0;
  }
}

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

@media (max-width: 600px) {
  .service-intro {
    padding: 60px 0 30px;
  }

  .service-intro-inner {
    padding: 0 20px;
  }

  .service-quote {
    max-width: 100%;
  }
}
