/* Contact Page Specific Styles */

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius);
  font-family: var(--font-main);
  transition: 0.3s;
  background: #f8fafc;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.contact-info {
  background: var(--bg-gradient);
  color: white;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-info h3,
.contact-info p,
.contact-info a {
  color: white;
}
