/* Form Styles */
.contact-section {
  background-color: var(--white);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--black);
}

.contact-subtitle {
  font-size: 18px;
  color: var(--gray-dark);
  margin-bottom: 32px;
}

.contact-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-feature {
  display: flex;
  align-items: center;
}

.contact-feature-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  font-size: 20px;
}

.contact-feature-text {
  font-weight: 600;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background-color: var(--gray-light);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

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

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray);
  border-radius: var(--border-radius);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.2);
}

.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray);
  border-radius: var(--border-radius);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background-color: var(--primary);
  color: var(--black);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Source Sans Pro', sans-serif;
}

.error-message {
  color: red;
  font-size: 0.875rem;
  margin-top: 4px;
}

.form-submit:hover {
  background-color: #e6ac00;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}

.hidden {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .contact-features {
    grid-template-columns: 1fr;
  }
}