/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-contact__hero {
  background: linear-gradient(135deg, #007bff, #ffc107);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-contact__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-contact__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  color: #f8f9fa;
}

.page-contact__section {
  padding: 60px 0;
}

.page-contact__section:nth-of-type(even) {
  background-color: #f8f9fa;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-contact__methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-contact__method-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-contact__method-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  color: #007bff;
}

.page-contact__card-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-contact__card-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
}

.page-contact__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-contact__btn--primary {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-contact__btn--primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-contact__btn--secondary {
  background-color: #f8f9fa;
  color: #007bff;
  border: 2px solid #007bff;
}

.page-contact__btn--secondary:hover {
  background-color: #e2e6ea;
  color: #0056b3;
  border-color: #0056b3;
}

.page-contact__btn--center {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

.page-contact__faq-intro {
  text-align: center;
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555;
}

.page-contact__form-section {
  background-color: #ffffff;
}

.page-contact__form-description {
  text-align: center;
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #555;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-contact__form-group {
  margin-bottom: 20px;
}

.page-contact__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #ced4da;
  border-radius: 5px;
  font-size: 1em;
  color: #333;
  box-sizing: border-box;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-contact__form-textarea {
  resize: vertical;
}

.page-contact__form-submit {
  width: 100%;
  padding: 15px;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-contact__cta-banner {
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-contact__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-contact__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f8f9fa;
}

.page-contact__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
  border-width: 3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__methods-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-description,
  .page-contact__faq-intro,
  .page-contact__form-description,
  .page-contact__cta-description {
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__card-title {
    font-size: 1.5em;
  }
  .page-contact__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-contact__btn--large {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact__contact-form {
    padding: 20px;
  }
  .page-contact__form-input,
  .page-contact__form-textarea {
    width: 100%;
  }
}