/* Contact page styles */

#contact-section {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  border: 2px solid rgba(90, 90, 95, 0.55);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  color: #111;
}

#contact-section h2 {
  margin-top: 0;
  color: #111;
  text-align: center;
}

#contact-section p {
  text-align: center;
  margin-bottom: 24px;
  color: #333;
}

/* Fieldset reset for form groups */
.form-group {
  margin-bottom: 20px;
  border: none;
  padding: 0;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7b2cff;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #7b2cff, #9d5cff);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 44, 255, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.contact-info {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  text-align: center;
}

.contact-info p {
  margin: 8px 0;
}

.contact-info a {
  color: #0c59e7;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info i {
  margin-right: 6px;
}
