/* =========================================
   REVIEW + CONTACT SECTION
========================================= */

#reviewContactSection {
  width: 100%;
}

#reviewContactSection .rc-wrapper {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding: 30px 18px 40px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}


/* =========================================
   REVIEW TITLE
========================================= */

#reviewContactSection .rc-review-title {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 600;
  color: #111;
}


/* =========================================
   IMAGE
========================================= */

#reviewContactSection .rc-review-image {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto 10px;
}


/* =========================================
   RATING
========================================= */

#reviewContactSection .rc-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 7px 15px;
  background: #050505;
  border-radius: 30px;

  margin: 5px auto 25px;
}

#reviewContactSection .rc-rating i {
  color: #ffb000;
  font-size: 18px;
}


/* =========================================
   FEEDBACK BUTTON
========================================= */

#reviewContactSection .rc-feedback-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: #001b13;
  color: #fff;
  border-radius: 35px;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  margin: 0 auto 10px;
  transition: all 0.3s ease;
}

#reviewContactSection .rc-feedback-btn:hover {
  background: #003d2d;
  transform: translateY(-2px);
}


/* =========================================
   CONTACT TITLE
========================================= */

#reviewContactSection .rc-contact-title {
  margin: 0 0 25px;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 500;
  color: #111;
}


/* =========================================
   SOCIAL ICONS
========================================= */

#reviewContactSection .rc-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}


/* =========================================
   SOCIAL BUTTON
========================================= */

#reviewContactSection .rc-social-link {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 34px;
  transition: all 0.3s ease;
}

#reviewContactSection .rc-social-link:hover {
  transform: translateY(-5px) scale(1.05);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  #reviewContactSection .rc-wrapper {
    padding: 25px 15px 35px;
  }

  #reviewContactSection .rc-review-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  #reviewContactSection .rc-review-image {
    max-width: 300px;
  }

  #reviewContactSection .rc-rating {
    padding: 6px 12px;
  }

  #reviewContactSection .rc-rating i {
    font-size: 16px;
  }

  #reviewContactSection .rc-feedback-btn {
    font-size: 18px;
    padding: 5px;
    border-radius: 20px;
  }

  #reviewContactSection .rc-contact-title {
    font-size: 25px;
  }

  #reviewContactSection .rc-social-icons {
    gap: 0px;
  }

  #reviewContactSection .rc-social-link {
    width: 55px;
    height: 55px;
    font-size: 27px;
  }
}

.rc-social-image {
  width: 60px;
  height: 60px;
  display: block;
  object-fit: contain;
}

.rc-social-link {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .25s ease;
}

.rc-social-link:hover {
  transform: scale(1.08);
}