/* Hero */
#index-hero {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.index-hero-container {
  padding: 2rem;
  background-color: var(--white);
  border-radius: 2rem;
  box-shadow: 0 5px 20px rgba(143, 201, 13, 0.3);
}

.index-hero-desc h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 3rem;
  background-image: linear-gradient(90deg, rgb(136, 189, 22), rgba(86, 121, 8));
  background-clip: text;
  color: transparent;
}

.index-hero-desc h2 {
  margin-bottom: none;
  padding-bottom: none;
  color: var(--dark);
  font-weight: 600;
}

.index-hero-desc-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 992px) {
  .index-hero-desc h1 {
    font-size: 2rem;
  }
}

/* Values */
#values {
  position: relative;
  padding-block: 0 3.6875rem;
}

.values-container {
  margin-inline: auto;
  gap: 1rem;
  margin-block: 1rem;
  padding-inline: 3rem;
  width: 100%;
  height: 10rem;
  background-color: var(--white);
  border-radius: 2rem;
}

.values-item {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.values-item span:nth-child(2) {
  font-size: 1.5rem;
  font-weight: 700;
}

@media (max-width: 992px) {
  .values-item {
    flex-direction: column;
    padding-block: 2rem;
    text-align: center;
    border-right: none;
  }

  .values-item span:nth-child(1) {
    font-size: .875rem;
  }

  .values-item span:nth-child(2) {
    font-size: 1.125rem;
  }
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
}

.services-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 2rem;
}

.services-item img {
  border-radius: inherit;
}

.services-item::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15));
  border-radius: 0 0 2rem 2rem;
  z-index: 5;
}

.services-item::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.15));
  border-radius: 2rem 2rem 0 0;
  z-index: 5;
}

.services-item-desc {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--white);
  z-index: 10;
}

.services-item-desc span {
  font-size: 0.925rem;
}

.services-item-desc a {
  max-width: 150px;
  margin-inline: auto;
}

/* Process */
.process-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding-inline: 3rem;
  height: 20rem;
  background-color: var(--white);
  border: 1px solid var(--primario);
  border-radius: 2rem;
}

.process-item i {
  color: var(--primario);
  font-size: 3rem;
}

/* Why Us */
.why-us-grid {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
  gap: 2rem;
}

.why-us-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-us-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(to right, rgb(115, 151, 36), rgba(86, 121, 8));
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
  border-radius: 1rem;
}

.why-us-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Areas of Service */
#goldcoast-areas li a {
  color: var(--dark);
}

#goldcoast-areas li a:hover {
  color: var(--primario);
}