.showcase-section {
  background: #f3f9fe;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.showcase-section::after {
  transform: rotate(-3deg);
  bottom: -90px;
  right: -6px;
  z-index: 0;
  width: 104%;
  height: 140px;
  background: #ffffff;
  position: absolute;
  content: "";
}
.showcase-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #111;
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.showcase-accent {
  color: #cf2128;
  font-weight: 700;
}

.showcase-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.showcase-btn {
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  background-color: #cf2128 !important;
  border-color: #cf2128 !important;
  color: #fff !important;
}

.showcase-btn:hover {
  background-color: #dc454d !important;
  border-color: #dc454d !important;
}

.showcase-image {
  max-width: 95%;
  position: relative;
  z-index: 2;
}

.showcase-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: url("wave-shape.svg") no-repeat bottom center;
  background-size: cover;
}

.showcase-text-block {
  padding-left: 100px;
  padding-top: 50px;
}

@media (max-width: 991px) {
  .showcase-text-block {
    padding-left: 40px;
    padding-top: 30px;
    text-align: center;
  }

  .showcase-title {
    font-size: 2rem;
  }

  .showcase-image {
    max-width: 80%;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .showcase-text-block {
    padding-left: 20px;
    padding-top: 20px;
    text-align: center;
  }

  .showcase-title {
    font-size: 1.6rem;
  }

  .showcase-description {
    font-size: 14px;
  }

  .showcase-image {
    max-width: 90%;
    margin: 20px auto 0;
  }
}

.our-services {
  padding: 0px 0;
  background: #fff;
}

.our-services-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
}

.our-services-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.our-service-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.our-service-icon {
  width: 50px;
  height: 50px;
  border: 2px solid #cf2128;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.our-service-icon img {
  width: 24px;
  height: 24px;
}

.our-service-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
}

.our-service-title em {
  font-style: italic;
}

.our-service-text {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.our-services-image img {
  max-width: 300px;
  border-radius: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

@media (min-width: 992px) {
  .our-services-container {
    flex-direction: row;
  }

  .our-services-column:first-child .our-service-item {
    flex-direction: row-reverse;
    text-align: right;
  }

  .our-services-column:first-child .our-service-item div {
    text-align: right;
  }
}

@media (max-width: 991px) {
  .our-services-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .our-services-column.left {
    order: 1;
  }

  .our-services-image.center {
    order: 2;
  }

  .our-services-column.right {
    order: 3;
  }

  .our-service-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .our-service-item > div {
    text-align: center;
  }

  .our-services-image img {
    max-width: 200px;
  }
  .section-title h2 {
    font-size: 22px;
  }
}

.promo-bg-section {
  position: relative;
  padding: 0px 9px;
  background: #fff url("../img/homes/banner-bg.jpg") no-repeat right center;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* min-height: 450px; */
}

.promo-bg-content {
  max-width: 700px;
  z-index: 1;
}

.promo-bg-content h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
}

.promo-bg-content .highlight {
  color: #cf2128;
  font-weight: 600;
  /* font-style: italic; */
}

.promo-bg-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.promo-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #cf2128;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.promo-btn:hover {
  background: #d83c41;
  color: #fff;
}

@media (max-width: 768px) {
  .promo-bg-section {
    background: #fff;
    text-align: center;
  }
  .promo-bg-content {
    max-width: 100%;
  }
}

.our-service-icon i {
  font-size: 20px;
  color: #cf2128;
  transition: transform 0.3s ease, color 0.3s ease;
}

.our-service-item:hover .our-service-icon i {
  transform: scale(1.2);
  color: #000;
}
