/* Contact Modal Styles */
.contact-modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  overflow-y: auto;
}

.modal-hidden {
  display: none !important;
}

.contact-modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.contact-modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.contact-modal-close:hover,
.contact-modal-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.contact-modal-title {
  color: #1f2937;
  margin-bottom: 15px;
  font-size: 22px;
}

.contact-form-group {
  margin-bottom: 12px;
}

.contact-form-group-last {
  margin-bottom: 15px;
}

.contact-form-label {
  display: block;
  margin-bottom: 4px;
  color: #374151;
  font-weight: 500;
  font-size: 13px;
}

.required-indicator {
  color: #dc2626;
}

.contact-form-input {
  width: 100%;
  padding: 8px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 13px;
}

.contact-form-textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 13px;
  font-family: inherit;
  resize: vertical;
}

.email-error {
  display: none;
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
}

.contact-button-group {
  display: flex;
  gap: 10px;
}

.contact-submit-btn {
  flex: 1;
  padding: 10px;
  background: #4f46e5;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
}

.contact-submit-btn:hover {
  background: #4338ca;
}

.contact-modal-close-btn {
  flex: 1;
  padding: 10px;
  background: #e5e7eb;
  color: #374151;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
}

.contact-modal-close-btn:hover {
  background: #d1d5db;
}
