/* Google Reviews Section */
.google-reviews-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
}

.google-reviews-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(230, 126, 34, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.google-reviews-box {
  position: relative;
  z-index: 1;
}

.google-reviews-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.google-reviews-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(230, 126, 34, 0.2);
}

.reviews-header {
  text-align: center;
  margin-bottom: 30px;
}

.star-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.star-rating i {
  color: #e67e22;
  font-size: 24px;
}

.rating-text {
  display: inline-block;
  margin-left: 15px;
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

.review-count {
  color: #666;
  font-size: 14px;
  margin: 0;
  margin-top: 8px;
}

.review-description {
  text-align: center;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin: 20px 0 30px 0;
}

.reviews-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.google-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px !important;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.google-reviews-btn i {
  font-size: 18px;
}

.button-one.google-reviews-btn {
  background-color: #e67e22;
  color: white;
}

.button-one.google-reviews-btn:hover {
  background-color: #d4651a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
}

.button-two.google-reviews-btn {
  background-color: #ffffff;
  color: #e67e22;
  border: 2px solid #e67e22;
}

.button-two.google-reviews-btn:hover {
  background-color: #e67e22;
  color: white;
  transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .google-reviews-section {
    padding: 50px 0;
  }

  .google-reviews-card {
    padding: 30px 20px;
  }

  .star-rating {
    flex-direction: row;
    gap: 1px;
  }

  .rating-text {
    margin-left: 0;
  }

  .review-description {
    font-size: 14px;
  }

  .reviews-buttons {
    flex-direction: column;
  }

  .google-reviews-btn {
    width: 100%;
    justify-content: center;
  }
}
