* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #fff5f0 0%, #ffffff 50%, #fff8f3 100%);
  min-height: 100vh;
}

/* Section Styling */
#feedback {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

/* Animated Background Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.08), rgba(249, 115, 22, 0.05));
  backdrop-filter: blur(10px);
  animation: float 20s infinite ease-in-out;
}

.shape-circle {
  width: 400px;
  height: 400px;
  bottom: -200px;
  left: -200px;
}

.shape:nth-child(2) {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation-delay: -5s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(50px, -50px) rotate(90deg); }
  50% { transform: translate(0, -100px) rotate(180deg); }
  75% { transform: translate(-50px, -50px) rotate(270deg); }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Header Styling */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #f07f42, #f07f42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.title-underline {
  height: 4px;
  width: 100px;
  background: linear-gradient(90deg, #f07f42, #fdba74);
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(251, 146, 60, 0.3);
}

.section-description {
  margin-top: 1.5rem;
  color: #78716c;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Review Form Card */
.review-form-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(251, 146, 60, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 3rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(251, 146, 60, 0.1);
}

.review-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(251, 146, 60, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.form-title {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ea580c, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

/* Form Inputs */
.review-input {
  width: 100%;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  border: 2px solid #fed7aa;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  background: #fffbf5;
  color: #292524;
}

.review-input:focus {
  outline: none;
  border-color: #fb923c;
  background: white;
  box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.1);
}

.review-input::placeholder {
  color: #a8a29e;
}

textarea.review-input {
  min-height: 120px;
  resize: vertical;
}

select.review-input {
  cursor: pointer;
}

/* Star Rating */
.rating-container {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.rating-label {
  font-weight: 600;
  color: #57534e;
  font-size: 1rem;
}

.stars-wrapper {
  display: flex;
  gap: 0.25rem;
}

.star-icon {
  font-size: 1.75rem;
  color: #e7e5e4;
  cursor: pointer;
  transition: all 0.2s ease;
}

.star-icon:hover,
.star-icon.active {
  color: #fb923c;
  transform: scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(251, 146, 60, 0.3));
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ea580c 0%, #fb923c 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 146, 60, 0.4);
  background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn i {
  margin-right: 0.5rem;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.review-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 15px rgba(251, 146, 60, 0.06), 0 1px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border-top: 4px solid #fb923c;
  border: 1px solid rgba(251, 146, 60, 0.1);
  border-top: 4px solid #fb923c;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(251, 146, 60, 0.12), 0 4px 10px rgba(0, 0, 0, 0.06);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.reviewer-name {
  font-weight: 700;
  color: #292524;
  font-size: 1.1rem;
}

.review-rating {
  display: flex;
  gap: 0.15rem;
}

.review-rating i {
  color: #fb923c;
  font-size: 0.9rem;
}

.review-service {
  display: inline-block;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  color: #ea580c;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(251, 146, 60, 0.2);
}

.review-comment {
  color: #57534e;
  line-height: 1.6;
  font-size: 0.95rem;
}

.review-timestamp {
  color: #a8a29e;
  font-size: 0.75rem;
  margin-top: 0.75rem;
  font-style: italic;
}

/* Action Buttons */
.action-buttons {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.action-btn {
  padding: 0.875rem 2.5rem;
  background: white;
  color: #ea580c;
  border: 2px solid #fb923c;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(251, 146, 60, 0.1);
}

.action-btn:hover {
  background: linear-gradient(135deg, #ea580c, #fb923c);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
}

.action-btn.hidden {
  display: none;
}

.action-btn i {
  margin-right: 0.5rem;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #78716c;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(251, 146, 60, 0.06);
  border: 1px solid rgba(251, 146, 60, 0.1);
}

.empty-state i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #fb923c;
  opacity: 0.3;
}

.empty-state p {
  font-size: 1.2rem;
  color: #a8a29e;
}

/* Responsive Design */
@media (max-width: 768px) {
  #feedback {
    padding: 3rem 0;
  }

  .review-form-card {
    padding: 2rem 1.5rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .rating-container {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .action-btn {
    width: 100%;
  }
}
.skeleton-review {
  height: 120px;
  border-radius: 12px;
  background: #f0f0f0;
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
}

.skeleton-review::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: loading 1.4s infinite;
}

@keyframes loading {
  100% { left: 100%; }
}
