.feedback-section {
  padding: 120px 0 60px;
  min-height: 100vh;
  background: #f5f5f5;
}

/* Main Card */
.feedback-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Card Header */
.card-header-custom {
  text-align: center;
  margin-bottom: 30px;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #007bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.icon-circle i {
  font-size: 28px;
  color: #fff;
}

.card-header-custom h2 {
  font-size: 26px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.card-header-custom p {
  color: #666;
  font-size: 14px;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Form Styling */
.feedback-form .form-group {
  margin-bottom: 20px;
}

.feedback-form label {
  font-weight: 600;
  color: #333;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

.feedback-form label i {
  margin-right: 8px;
  color: #007bff;
}

.feedback-form .form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: #fff;
}

.feedback-form .form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  outline: none;
}

.feedback-form .form-control::placeholder {
  color: #aaa;
}

.feedback-form textarea.form-control {
  resize: none;
  min-height: 120px;
}

/* Star Rating */
.rating-label {
  font-weight: 600;
  color: #333;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

.rating-label i {
  margin-right: 8px;
  color: #007bff;
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5px;
}

.star-rating input {
  display: none;
}

.star-rating label {
  cursor: pointer;
  font-size: 28px;
  color: #ddd;
  transition: color 0.2s ease, transform 0.2s ease;
  margin-bottom: 0;
}

.star-rating label i {
  color: inherit;
  margin: 0;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input:checked~label {
  color: #ffc107;
}

.star-rating label:hover {
  transform: scale(1.1);
}

.rating-text {
  font-size: 13px;
  color: #999;
  margin-top: 8px;
}

.rating-text.selected {
  color: #f5a623;
  font-weight: 600;
}

/* Submit Button */
.btn-submit {
  background-color: #f5a623;
  border: none;
  color: #fff;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 100%;
  margin-top: 10px;
}

.btn-submit:hover {
  background-color: #e09500;
  color: #fff;
}

/* Alert Styling */
.feedback-card .alert {
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 20px;
  font-size: 14px;
}

.feedback-card .alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.feedback-card .alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

/* Responsive Design */
@media (max-width: 767.98px) {
  .feedback-section {
    padding: 100px 15px 40px;
  }

  .feedback-card {
    padding: 30px 25px;
  }

  .card-header-custom h2 {
    font-size: 22px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
  }

  .icon-circle i {
    font-size: 24px;
  }

  .star-rating label {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .feedback-card {
    padding: 25px 20px;
  }

  .card-header-custom h2 {
    font-size: 20px;
  }

  .card-header-custom p {
    font-size: 13px;
  }

  .btn-submit {
    padding: 12px 25px;
    font-size: 15px;
  }

  .star-rating label {
    font-size: 22px;
  }
}