/* Contact Form Styles */
.contact-form label {
  font-weight: bold;
  margin-top: 1rem;
}
.contact-form .required {
  color: #FF6B35;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background-color: #1A1A2E !important;
  border: 1px solid #444 !important;
  color: #FFFFFF !important;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
}
.contact-form select {
  height: auto;
  min-height: 2.5rem;
  line-height: 1.5;
  overflow: visible;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background-color: #252540 !important;
  border-color: #00D4FF !important;
  color: #FFFFFF !important;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888 !important;
}
.panel {
  background-color: #1A1A2E;
  border: 1px solid #333;
  padding: 1.5rem;
  border-radius: 4px;
}
.panel h4 {
  color: #00D4FF;
  margin-bottom: 1rem;
}
.small-text {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.file-upload-wrapper {
  margin-bottom: 10px;
}
.custom-file-input {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  min-height: 180px;
  background-color: #1A1A2E !important;
  border: 2px dashed #444 !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}
.custom-file-input:hover {
  border-color: #00D4FF !important;
  background-color: #1f1f35 !important;
}
.custom-file-input.drag-over {
  border-color: #00D4FF !important;
  background-color: rgba(0, 212, 255, 0.1) !important;
  border-style: solid;
}
.custom-file-input:focus-within {
  background-color: #252540 !important;
  border-color: #00D4FF !important;
  box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}
.drop-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: #888;
  text-align: center;
  pointer-events: none;
}
.drop-indicator svg {
  color: #00D4FF;
  opacity: 0.6;
}
.drop-indicator p {
  margin: 0;
  font-size: 0.95rem;
  color: #999;
}
.custom-file-input.drag-over .drop-indicator svg {
  opacity: 1;
  transform: scale(1.1);
  transition: all 0.2s ease;
}
.custom-file-input.drag-over .drop-indicator p {
  color: #00D4FF;
}
.file-upload-label {
  color: #888;
  font-size: 0.9rem;
  text-align: center;
  z-index: 1;
  margin-top: 0.5rem;
}
.file-upload-wrapper input[type="file"] {
  display: none;
}
.file-preview {
  margin-top: 10px;
}
.file-preview-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  margin: 5px;
  background-color: #252540;
  border: 1px solid #00D4FF;
  border-radius: 4px;
  font-size: 0.85rem;
}
.file-preview-item .file-name {
  flex: 1;
  color: #fff;
}
.file-preview-item .file-size {
  margin-left: auto;
  margin-right: 10px;
  color: #888;
  font-size: 0.75rem;
}
.file-preview-item .remove-file {
  cursor: pointer;
  color: #ff6b6b;
  font-weight: bold;
  padding: 0 5px;
}
.file-preview-item .remove-file:hover {
  color: #ff4444;
}
.t20 {
  margin-top: 20px;
}