﻿/* Contact Section Layout */
.contact-section {
  padding: 40px 20px;
  background-color: #f9f8f6; /* Soft neutral tone */
  font-family: system-ui, -apple-system, sans-serif;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-container h2 {
  margin-top: 0;
  color: #2c3e50;
  font-size: 1.8rem;
}

.contact-container p {
  color: #666;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

/* Form Fields */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

label {
  font-weight: 600;
  font-size: 0.85rem;
  color: #333;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #4a6b5d; /* Sage green focus accent */
}

/* Button */
.submit-btn {
  background-color: #2c3e50; /* Slate blue/grey */
  color: white;
  padding: 14px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #1a252f;
}

/* Anti-Spam Field Hide */
.hidden-field {
  display: none !important;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}