/* Quote Page */
.quote-form-section {
  padding: 6rem 0 4rem !important;
  background-color: #fff;
}

.quote-header {
  text-align: center;
  margin-bottom: 3rem;
}

.quote-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.quote-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Mobile Form Enhancements */
@media (max-width: 768px) {
  .quote-form-section {
    padding: 5rem 1rem 2rem;
  }

  .quote-header h1 {
    font-size: 2rem;
  }

  .quote-header p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  /* Enhanced mobile form styling */
  .contact-form-container {
    margin: 0 0.5rem;
    padding: 1rem;
    border-radius: 8px;
  }

  /* Larger touch targets for mobile */
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 0.75rem;
    border-radius: 8px;
    min-height: 44px; /* Smaller but still accessible */
  }

  .form-group textarea {
    min-height: 80px;
    padding: 0.75rem;
  }

  /* Better spacing on mobile */
  .form-group {
    margin-bottom: 0.75rem !important;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }

  /* Enhanced button for mobile */
  .btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    min-height: 44px;
    border-radius: 8px;
    width: 100%;
    max-width: 250px;
  }

  /* Better checkbox styling for mobile */
  .checkbox-container {
    text-align: left;
    padding: 0.5rem 0;
  }

  .checkbox-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
  }

  .consent-text {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  /* Error messages */
  .error {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
}

/* Additional mobile improvements for very small screens */
@media (max-width: 480px) {
  .quote-form-section {
    padding: 3rem 0.25rem 1rem;
  }

  .contact-form-container {
    margin: 0 0.25rem;
    padding: 0.75rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.5rem;
    min-height: 40px;
  }

  .form-group textarea {
    min-height: 60px;
  }

  .form-group {
    margin-bottom: 0.5rem !important;
  }

  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    min-height: 40px;
  }

  .checkbox-container {
    padding: 0.25rem 0;
  }

  .consent-text {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .quote-header h1 {
    font-size: 1.75rem;
  }

  .quote-header p {
    font-size: 1rem;
  }
}