/* Feedback Form Styles */

:root {
    --primary-color: #ff6b00;
    --primary-hover: #e05e00;
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --bg-input: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-tertiary: #777777;
    --border-color: #333333;
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-strong: 0 8px 20px rgba(0, 0, 0, 0.3);
    --transition-speed: 0.3s;
    --border-radius-sm: 6px;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
    --border-radius-xl: 25px;
    --border-radius-circle: 50%;
  }
  
.feedback-container {
    max-width: 700px;
    margin: 40px auto;
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid var(--border-color);
  }
  
  .feedback-header {
    background: linear-gradient(135deg, #ff6b00 0%, #e05e00 100%);
    padding: 30px;
    text-align: center;
    color: white;
  }
  
  .feedback-header h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .feedback-header p {
    font-size: 1rem;
    opacity: 0.9;
  }
  
  .feedback-form {
    padding: 30px;
  }
  
  .form-group {
    margin-bottom: 25px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  
  .form-group input[type="text"]:focus,
  .form-group input[type="email"]:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
    outline: none;
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  /* Rating Stars */
  .rating-container {
    display: flex;
    align-items: center;
  }
  
  .stars {
    display: inline-block;
    position: relative;
    height: 30px;
    line-height: 30px;
    font-size: 30px;
    margin-right: 15px;
  }
  
  .stars input[type="radio"] {
    opacity: 0;
    display: none;
  }
  
  .stars label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    cursor: pointer;
  }
  
  .stars label:last-child {
    position: static;
  }
  
  .stars label:nth-child(1) {
    z-index: 5;
  }
  
  .stars label:nth-child(2) {
    z-index: 4;
  }
  
  .stars label:nth-child(3) {
    z-index: 3;
  }
  
  .stars label:nth-child(4) {
    z-index: 2;
  }
  
  .stars label:nth-child(5) {
    z-index: 1;
  }
  
  .stars label:nth-child(6) {
    z-index: 0;
  }
  
  .stars label:nth-child(7) {
    z-index: -1;
  }
  
  .stars label:nth-child(8) {
    z-index: -2;
  }
  
  .stars label:nth-child(9) {
    z-index: -3;
  }
  
  .stars label:nth-child(10) {
    z-index: -4;
  }
  
  .stars label:before {
    content: "★";
    display: block;
    background: linear-gradient(90deg, #333 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .stars label:after {
    content: "★";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .stars input:checked ~ label:after,
  .stars:not(:hover) input:checked ~ label:after {
    opacity: 1;
  }
  
  .stars label:hover:after,
  .stars label:hover ~ label:after,
  .stars:hover > input:checked ~ label:after {
    opacity: 1;
  }
  
  .rating-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
  }
  
  /* Submit Button */
  .submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
  }
  
  .submit-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
  }
  
  .submit-button:active {
    transform: translateY(0);
  }
  
  .button-text {
    margin-right: 10px;
  }
  
  .button-icon {
    display: flex;
    align-items: center;
  }
  
  .button-icon svg {
    width: 18px;
    height: 18px;
  }
  
  /* Notification styles */
  .notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: white;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-width: 300px;
  }
  
  .notification.show {
    transform: translateY(0);
    opacity: 1;
  }
  
  .notification-content {
    display: flex;
    align-items: center;
    padding: 15px;
  }
  
  .notification-icon {
    background-color: #ff6b00;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
  }
  
  .notification.error .notification-icon {
    background-color: #ff4d4d;
  }
  
  .notification-message {
    font-size: 0.9rem;
  }
  
  /* Loading state */
  .submit-button.loading {
    background-color: #a54800;
    pointer-events: none;
  }
  
  .submit-button.loading .button-text {
    visibility: hidden;
  }
  
  .submit-button.loading .button-icon {
    position: absolute;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .feedback-container {
      margin: 20px;
    }
  
    .feedback-header {
      padding: 20px;
    }
  
    .feedback-header h1 {
      font-size: 1.5rem;
    }
  
    .feedback-form {
      padding: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .feedback-header h1 {
      font-size: 1.3rem;
    }
  
    .rating-container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .stars {
      margin-bottom: 10px;
    }
  }
  
  