/* thankyou.css */

.thankyou-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #0d0d0d;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.thankyou-card {
  max-width: 750px;
  background: #181818;
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
  line-height: 1.8;
}

.thankyou-card h1 {
  color: #ff6600;
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.thankyou-card p {
  color: #e0e0e0;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.thankyou-divider {
  width: 100%;
  height: 1px;
  background: #333;
  margin: 30px 0;
}

.thankyou-message {
  color: #ffb56b;
  font-weight: 600;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 25px 0;
}

.social-icons a {
  color: #ff6600;
  font-size: 1.7rem;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  transform: translateY(-3px);
  color: #ff8533;
}

/* Button back */
.next-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.next-btn:hover {
  background: linear-gradient(135deg, #ff8533, #ff6600);
  transform: translateY(-2px);
}


.feedback-section {
  margin-top: 50px;
  text-align: center;
}

.feedback-section h2 {
  color: #ff6600;
  margin-bottom: 10px;
}

.rating {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  font-size: 2rem;
  margin: 15px 0;
}

.rating span {
  cursor: pointer;
  color: #555;
  transition: color 0.2s;
}

.rating span.active,
.rating span:hover,
.rating span:hover ~ span {
  color: #ffcc00;
}

textarea {
  width: 100%;
  max-width: 500px;
  background: #111;
  color: #fff;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px;
  resize: none;
  margin-bottom: 15px;
}

.submit-btn {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.submit-btn:hover {
  background: #ff8533;
}

#feedback-result {
  margin-top: 10px;
  color: #00c985;
  font-weight: 600;
}
