* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0f0f0f;
  color: #111;
}

.feedback-page {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.85)),
    url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.feedback-overlay {
  position: absolute;
  inset: 0;
}

.feedback-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.feedback-left {
  color: #fff;
  padding: 30px 10px;
}

.section-tag {
  display: inline-block;
  color: #f7a600;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.feedback-left h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.feedback-left p {
  font-size: 17px;
  line-height: 1.8;
  color: #e6e6e6;
  max-width: 580px;
  margin-bottom: 35px;
}

.info-cards {
  display: grid;
  gap: 18px;
  max-width: 550px;
}

.info-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  backdrop-filter: blur(6px);
}

.info-card h3 {
  color: #f7a600;
  font-size: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.info-card p {
  color: #f4f4f4;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.feedback-right {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.feedback-form h2 {
  font-size: 32px;
  margin-bottom: 28px;
  color: #111;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
  border-color: #f7a600;
  box-shadow: 0 0 0 3px rgba(247, 166, 0, 0.14);
}

.rating-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.rating-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.rating-options input[type="radio"] {
  accent-color: #f7a600;
}

.submit-btn {
  width: 100%;
  background: #f7a600;
  color: #111;
  border: none;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #e39700;
}

.form-message {
  margin-top: 18px;
  font-size: 15px;
  font-weight: 700;
}

.form-message.success {
  color: green;
}

.form-message.error {
  color: #c62828;
}

@media (max-width: 991px) {
  .feedback-container {
    grid-template-columns: 1fr;
  }

  .feedback-left h1 {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .feedback-right {
    padding: 24px 18px;
  }

  .feedback-left h1 {
    font-size: 32px;
  }

  .feedback-form h2 {
    font-size: 26px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .rating-options {
    flex-direction: column;
  }
}