.notification-modal {
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 0;
}

.notification-modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  text-align: center;
  border-radius: 12px 12px 0 0;
}

.notification-modal-header h2 {
  margin: 0 0 10px 0;
  font-size: 1.8em;
}

.notification-modal-header p {
  margin: 0;
  opacity: 0.95;
  font-size: 1.05em;
}

.notification-form {
  padding: 30px;
}

.form-section {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e5e7eb;
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section h3 {
  color: #1f2937;
  font-size: 1.2em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-description {
  color: #6b7280;
  font-size: 0.95em;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #374151;
}

.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="text"],
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1em;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group small {
  display: block;
  color: #6b7280;
  font-size: 0.85em;
  margin-top: 5px;
}

.checkbox-group,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-label,
.radio-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.checkbox-label:hover,
.radio-label:hover {
  background-color: #f9fafb;
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label span,
.radio-label span {
  flex: 1;
  font-weight: 400;
}

.privacy-notice {
  background: #f0f9ff;
  border-left: 4px solid #0ea5e9;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 15px;
}

.privacy-notice p {
  margin: 0;
  font-size: 0.9em;
  color: #0c4a6e;
  line-height: 1.6;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.05em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  flex: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: white;
  color: #6b7280;
  border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
  background: #f9fafb;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1em;
}

.notification-success {
  text-align: center;
  padding: 50px 30px;
}

.success-icon {
  font-size: 4em;
  margin-bottom: 20px;
}

.notification-success h3 {
  color: #059669;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.notification-success p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 15px;
}

.notification-success ul {
  text-align: left;
  max-width: 400px;
  margin: 20px auto;
  color: #374151;
}

.notification-success li {
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .notification-modal {
    max-width: 95%;
    margin: 20px auto;
  }

  .notification-modal-header {
    padding: 20px;
  }

  .notification-modal-header h2 {
    font-size: 1.4em;
  }

  .notification-form {
    padding: 20px;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/* RTL Support */
[dir="rtl"] .checkbox-label,
[dir="rtl"] .radio-label {
  flex-direction: row-reverse;
}

[dir="rtl"] .privacy-notice {
  border-left: none;
  border-right: 4px solid #0ea5e9;
}
