* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

/* === */

.breadcrumb {
  font-size: 14px;
  padding: 20px 100px;
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #001542;
}

.breadcrumb li:last-child {
  font-weight: bold;
  color: #333;
}

@media (max-width: 480px) {
  .breadcrumb {
    padding: 20px;
  }
}

/* === */

.service-detail {
  padding: 20px 100px;
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 20px;
}

.service-left,
.service-right {
  width: 50%;
}

.service-left .main-image {
  width: 400px;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
}

.service-left .more-images {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 30px;
  margin-top: 10px;
}

.service-left .more-images img {
  width: 100px;
  border-radius: 8px;
  cursor: pointer;
}

.service-left .more-images img.active {
  border: 2px solid #ccc;
  transform: scale(1.05);
  transition: 0.3s;
}

@media (max-width: 480px) {
  .service-detail {
    padding: 20px;
    flex-direction: column;
  }

  .service-left,
  .service-right {
    width: 100%;
  }

  .service-left .main-image {
    width: 330px;
    height: 400px;
  }

  .service-left .more-images {
    gap: 20px;
  }

  .service-left .more-images img {
    width: 80px;
    border-radius: 4px;
  }
}

/* === */

.service-info {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 30px;
}

.service-info h2 {
  font-weight: 600;
  font-size: 24px;
}

.service-info p {
  color: #444;
  margin-top: -20px;
}

.appointment-status {
  display: flex;
  justify-content: start;
  align-items: start;
}

.appointment-status i.available {
  color: green;
  font-size: 22px;
}

.appointment-status i.not-available {
  color: red;
}

.appointment-status p {
  /* margin-left: 10px; */
  font-weight: 500;
}

.social-share {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}

.social-share i {
  text-decoration: none;
  font-size: 20px;
  transition: transform 0.3s;
}

.social-share .social-icon.fb {
  color: #1877f2;
}

.social-share .social-icon.ig {
  color: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.social-share .social-icon.wa {
  color: #25d366;
}

.social-share .social-icon.tw {
  color: #1da1f2;
}

.social-share .social-icon:hover {
  transform: scale(1.1);
}

.include-service ul li {
  list-style: none;
  font-size: 16px;
}

.include-service h3 {
  font-size: 16px;
  font-weight: 600;
}

li i {
  margin-right: 10px;
}

.service-price p {
  font-size: 24px;
  color: #000;
}

.service-price p b {
  color: #001542;
}

.book-appointment a {
  text-decoration: none;
  color: #fff;
  background-color: #001542;
  padding: 10px 25px;
  border-radius: 4px;
  font-size: 14px;
}

@media (max-width: 480px) {
  .service-info h2 {
    font-size: 20px;
  }

  .service-info p {
    font-size: 14px;
  }

  .include-service h3 {
    font-weight: 500;
  }

  .include-service ul li {
    font-size: 14px;
  }

  .service-price p {
    font-size: 20px;
  }
}

/* === */

.overview-section {
  margin-top: 50px;
  padding: 20px 100px;
}

.overview-section .tab-menu button {
  background-color: transparent;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  margin-right: 20px;
  border: none;
  outline: none;
  border-bottom: 2px solid #ccc;
  margin-bottom: 30px;
  transition: all 0.3s;
}

.description-box h3 {
  font-size: 20px;
  font-weight: 600;
}

.description-box ul {
  margin: 20px 0;
}

.description-box p {
  margin-bottom: 20px;
}

.tab-menu button.active {
  border-bottom: 2px solid #001542;
}

.description-box,
.service-reviews {
  display: none;
}

.description-box.active,
.service-reviews.active {
  display: block;
}

@media (max-width: 480px) {
  .overview-section {
    padding: 20px;
  }

  .description-box h3 {
    font-size: 18px;
  }

  .description-box p {
    font-size: 14px;
  }

  .description-box ul li {
    font-size: 14px;
  }
}

/* === */
.client-feedback h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.review-card {
  margin-bottom: 30px;
}

.review-card h4 {
  font-weight: 600;
}

.review-card p {
  font-size: 14px;
}

.submit-review {
  width: 50%;
}

.submit-review h3 {
  font-size: 20px;
  font-weight: 600;
}

.submit-review i {
  font-size: 20px;
  cursor: pointer;
}

.review-form-fields {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 15px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.review-form-fields input {
  width: 100%;
}

.submit-review input {
  width: 80%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

.submit-review input[type="submit"] {
  width: fit-content;
  background-color: #001542;
  color: #fff;
  border: none;
  cursor: pointer;
}

@media (max-width: 480px) {
  .client-feedback h3,
  .submit-review h3 {
    font-size: 18px;
  }

  .submit-review {
    width: 100%;
    /* margin-top: 10px; */
  }

  .review-form-fields input {
    width: 100%;
  }

  .submit-review input[type="submit"] {
    margin-top: 10px;
  }
}
