* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contact-section {
  height: 100vh;
  background: #65319E;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 40px;
}

.contact-pill {
  position: relative;
  width: 85%;
  max-width: 1100px;
  height: 90px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0 25px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.contact-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../../images/whyus/whyus.jpeg") center / cover no-repeat;
  z-index: 0;
}

.contact-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 1;
}

.contact-text,
.contact-phone {
  position: relative;
  z-index: 2;
}

.contact-text {
  color: #65319E;
  font-size: 20px;
  font-weight: 500;
}

.contact-phone {
  background: #65319E;
  color: #fff;
  height: 44px;
  padding: 0 22px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}

.contact-phone i {
  font-size: 20px;
}

@media (max-width: 768px) {
  .contact-pill {
    flex-direction: column;
    height: auto;
    gap: 12px;
    padding: 15px;
    width: 90%;
  }

  .contact-text {
    font-size: 15px;
  }

  .contact-phone {
    width: 100%;
    height: 35px;
    justify-content: center;
    padding: 0 20px;
    font-size: 18px;
  }
}
