/* Contact Page Custom Styles */

/* Contact Grid Layout */
.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  grid-template-columns: 1fr;
}


/* Online Form Section */
.online-quote-form {
  /* background: #ffffff; */
  padding: 0.5rem;
  border-radius: 8px;
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); */
  font-family: 'AntartidaMedium', sans-serif;
  width: 100%;
  max-width: 600px;
}

.online-quote-form .form-group {
  margin-bottom: 1.5rem;
}

.online-quote-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #4b0082;
}

.online-quote-form input,
.online-quote-form textarea,
.online-quote-form select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #4b0082;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
  background: transparent;
}

.online-quote-form textarea {
  resize: vertical;
}

.alert {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  font-weight: bold;
}
.alert.success {
  background-color: #d4edda;
  color: #155724;
  text-align: center;
}
.alert.error {
  background-color: #f8d7da;
  color: #721c24;
}

/* Responsive Section Heading */
.section-heading {
  font-size: 2rem;
  color: #4b0082;
  font-family: 'AntartidaBold', sans-serif;
  margin-bottom: 1rem;
}

/* Override Section Subtext */
.section-subtext {
  color: #6b7280;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem auto;
}



@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  /* Online Form Section */
    .online-quote-form {
      background: #ffffff;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      font-family: 'AntartidaMedium', sans-serif;
      width: 100%;
      max-width: 600px;
    }
    
    .online-quote-form .form-group {
      margin-bottom: 1.5rem;
    }
    
    .online-quote-form label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: bold;
      color: #4b0082;
    }
    
    .online-quote-form input,
    .online-quote-form textarea,
    .online-quote-form select {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-family: inherit;
      font-size: 1rem;
      box-sizing: border-box;
    }
    
    .online-quote-form textarea {
      resize: vertical;
    }

}