@import url("global.css");
@import url("mobileNav.css");
@import url("header.css");
@import url("cta.css");
@import url("footer.css");

/* SERVICES PAGE STYLES */
section {
  padding: 1.5rem;
  line-height: 1.5;
}

.section-1,
.section-2,
.section-3 {
  font-weight: 400;
}

/* SECTION 1 - TOP SECTION STYLES: INCLUDES ALL SERVICES */
.section-1 {
  padding: 4rem 2.5rem;
}

.section--intro {
  max-width: 55rem;
  margin: auto;
}

.section--title {
  font-size: 2.3rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2rem;
  line-height: 1.2;
  color: var(--dark-purple);
}

.section--description {
  font-size: 1.8rem;
}

.services {
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service {
  margin: 2rem 0;
  padding: 2rem;
  border: 0.1rem solid var(--light-gray);
  /*height: 20rem;*/
  height: 400px;
    
  display: flex;
  flex-direction: column;
  justify-content: center;

  position: relative;
}

.service--icon {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 0.5rem;
  width: 5rem;
  height: 5rem;
}

.service--title {
  margin: 0.5rem;
  font-size: 1.8rem;
}

.service--description {
  margin: 0.5rem;
  font-size: 1.4rem;
}

/* SECTION 2 - WHY CHOOSE US STYLES */
.section-2 {
  padding: 0;
}

.section-2 .section--title {
  max-width: 120rem;
  margin: 0 auto 2.5rem;
  padding: 0 2.5rem;
  font-weight: 500;
}

.section--details {
  padding: 0 2.5rem;
  background-color: var(--light-gray);
}

.section-2 .section--description {
  margin: 0;
  padding-top: 3rem;
}

.reasons {
  margin-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.reason {
  display: grid;
  grid-template-columns: 4rem auto;
  gap: 0.3rem;
  font-size: 1.4rem;
}

.reason--icon {
  width: 4rem;
  height: 4rem;
}

.reason--title {
  margin: 0;
}

.reason--text {
  margin: 0;
}

.reasons + div {
  display: none;
  background-color: var(--dark-purple);
}

/* SECTION 3 - PACKAGES STYLES */
.section-3 {
  padding: 3rem 2.5rem 5rem;

  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.packages {
  max-width: 120rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.package {
  border: 0.1rem solid var(--light-gray);
  border-radius: 0.5rem;
  padding: 1.5rem;
  font-size: 1.4rem;

  position: relative;
}

.package--price {
  width: max-content;
  border-radius: 50%;
  width: 6.5rem;
  height: 6.5rem;
  background-color: var(--light-purple);
  display: flex;
  justify-content: center;
  align-items: center;

  position: absolute;
  top: 0;
  right: 0;
  transform: translate(1.5rem, -1.5rem);
}

.package--price > span {
  font-size: 2.2rem;
  font-weight: 300;
  color: #fff;
}

.package--title {
  font-size: 1.8rem;
  color: var(--dark-purple);
}

.bonuses {
  border: 0.1rem solid var(--light-gray);
  border-radius: 0.5rem;
  padding: 2.5rem;

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

  font-size: 1.4rem;
}

.bonuses > div {
  text-align: center;
}

.bonuses--img {
  width: 6rem;
  height: 6rem;
}

.bonuses--title {
  margin: 0;
  color: var(--dark-purple);
}

.bonuses--summary {
  font-weight: 600;
  font-size: large;
}

.bonus--arrow {
  display: none;
}

.bonuses--list {
  text-align: left;
  margin: 0;
  padding: 2rem;
  font-size: large;
}

.bonus::marker {
  font-size: 1rem;
}

/* CTA BORDER STYLE REMOVED */
.cta > div {
  border: none;
}

@media screen and (min-width: 640px) {
  .services {
    max-width: 120rem;
    margin: 0 auto;
    flex-flow: row wrap;
  }

  .service {
    width: 48%;
      height: 400px;
  }

  .bonuses {
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;

    font-size: 1.4rem;
  }

  .bonuses > * {
    width: 33.33%;
  }

  .bonuses > div {
    border-right: 0.1rem solid var(--light-gray);
  }

  .bonus--arrow {
    width: 5rem;
    height: auto;
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .section-2--grid-container {
    max-width: 120rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: max-content max-content;
  }

  .section-2 .section--description {
    padding-top: 5rem;
    grid-column: 1 / span 7;
  }

  .reasons {
    padding-bottom: 5rem;
    grid-column: 1 / span 7;
    grid-row: 2;
  }

  .reasons + div {
    display: block;
    margin-left: 2.5rem;
    grid-column: span 5;
    grid-row: 1 / -1;
  }
}

@media screen and (min-width: 1024px) {
  .service {
    width: 32%;
      height: 400px;
  }

  .packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .package {
    height: max-content;
  }

  .bonuses {
    grid-column: 1 / -1;
  }
}

@media screen and (min-width: 1280px) {
  .section--intro {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .services {
    gap: 3rem;
  }

  .service {
    width: 30%;
    /*height: 25rem;*/
      height: 400px;
  }

  .service--description {
    font-size: 1.6rem;
  }

  .reasons + div {
    grid-column: span 5;
    grid-row: 1 / -1;
  }
}

@media screen and (min-width: 1366px) {
  .section-2 .section--title {
    padding: 0;
  }
}
