/* ===== Contact Page Styles ===== */
.contact-page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.contact-hero {
  color: black;
  padding: 1px 0 3rem;
  width: 100%;
  text-align: center;
}

.contact-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1px;
}

.contact-hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  font-weight: 300;
  margin-top: 10px;
  margin-bottom: 1px;
}

/* Main Content - Remove background */
.contact-main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 0;
  background: transparent;
}

/* Rest of your CSS remains the same */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.vertical-contact-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 800px;
  width: 100%;
  align-items: center;
}

/* Contact Information Section - Centered */
.contact-info-section {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  width: 100%;
  text-align: center;
}

.contact-info-section h2 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.contact-intro {
  color: #6c757d;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Methods - Centered Grid */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  justify-items: center;
}

.contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease;
  max-width: 300px;
  width: 100%;
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-details h3 {
  color: #2c3e50;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.contact-details p {
  margin: 0.25rem 0;
  color: #495057;
}

.contact-details a {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 0.9rem;
  color: #6c757d;
  font-style: italic;
  margin-top: 0.5rem;
}

/* Business Hours - Centered */
.business-hours {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.business-hours h3 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  justify-items: center;
}

.hour-day {
  font-weight: 600;
  color: #495057;
  text-align: right;
  padding: 0.5rem;
  width: 100%;
}

.hour-time {
  color: #6c757d;
  text-align: left;
  padding: 0.5rem;
  width: 100%;
}

/* Contact Form Section - Centered */
.contact-form-section {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  width: 100%;
  text-align: center;
}

.contact-form-section h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 700;
}

.form-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Form Styles - Centered Layout */
.contact-inquiry-form {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 2rem;
  text-align: center;
}

.form-group h3 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  text-align: left;
  width: 100%;
  padding-left: 50px;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.form-column {
  flex: 1;
  min-width: 250px;
  max-width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-column.full-width {
  flex: 1 1 100%;
  max-width: 100%;
}

.form-column label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
  text-align: left;
  width: 300px;
}

.form-column input,
.form-column select,
.form-column textarea {
  width: 300px;
  padding: 0.75rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  text-align: left;
  margin: 0 auto;
}

.form-column.full-width input,
.form-column.full-width select,
.form-column.full-width textarea {
  width: 500px;
  max-width: 90%;
}

.form-column input:focus,
.form-column select:focus,
.form-column textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-column textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button - Centered */
.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.submit-btn {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.submit-btn:hover:not(:disabled) {
  background: #c0392b;
  transform: scale(1.05);
}

.submit-btn:disabled {
  background: #95a5a6;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  margin-top: 1rem;
  color: #6c757d;
  font-size: 0.9rem;
  text-align: center;
}

.hidden {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero-title {
    font-size: 2.2rem;
  }

  .contact-hero-subtitle {
    font-size: 1.1rem;
  }

  .contact-info-section,
  .contact-form-section {
    padding: 2rem;
  }

  .contact-container {
    padding: 0 1rem;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-method {
    max-width: 100%;
  }

  .form-row {
    flex-direction: column;
    gap: 1rem;
  }

  .form-column {
    min-width: 100%;
  }

  .form-column label {
    width: 100%;
    max-width: 300px;
  }

  .form-column input,
  .form-column select,
  .form-column textarea {
    width: 100%;
    max-width: 300px;
  }

  .form-column.full-width input,
  .form-column.full-width select,
  .form-column.full-width textarea {
    width: 100%;
    max-width: 300px;
  }

  .form-group h3 {
    padding-left: 0;
    text-align: center;
  }

  /* Business hours mobile fix */
  .hours-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    max-width: 100%;
  }

  .hour-day,
  .hour-time {
    text-align: center;
    padding: 0.5rem;
    border-bottom: 1px solid #dee2e6;
    width: 100%;
  }

  .hour-day:last-child,
  .hour-time:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .contact-info-section,
  .contact-form-section {
    padding: 1.5rem;
  }

  .contact-info-section h2,
  .contact-form-section h2 {
    font-size: 1.6rem;
  }

  .vertical-contact-layout {
    gap: 2rem;
  }

  .form-column input,
  .form-column select,
  .form-column textarea {
    max-width: 280px;
  }
}