/* 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, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-contact__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 1;
}

.page-contact__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.page-contact__keyword {
  font-weight: bold;
  color: #ffc107;
}

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

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

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

.page-contact__section-subtitle {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-contact__method-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.page-contact__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-contact__method-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-contact__method-text {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.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;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-contact__btn--primary {
  background-color: #007bff;
  color: #fff;
}

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

.page-contact__btn--accent {
  background-color: #ffc107;
  color: #333;
}

.page-contact__btn--accent:hover {
  background-color: #e0a800;
}

.page-contact__contact-form .page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.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: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #007bff;
  outline: none;
}

.page-contact__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.page-contact__faq-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.page-contact__faq-link {
  display: block;
  background-color: #e9ecef;
  color: #007bff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.95em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #dee2e6;
}

.page-contact__faq-link:hover {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

.page-contact__more-info {
  margin-top: 40px;
  font-size: 1.1em;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }

  .page-contact__hero-description {
    font-size: 1em;
  }

  .page-contact__section-title {
    font-size: 2em;
  }

  .page-contact__methods-grid {
    grid-template-columns: 1fr;
  }

  .page-contact__contact-form .page-contact__form {
    padding: 30px 20px;
  }

  .page-contact__faq-links {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }

  .page-contact__hero-description {
    font-size: 0.9em;
  }

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

  .page-contact__section-title {
    font-size: 1.8em;
  }

  .page-contact__method-card {
    padding: 20px;
  }

  .page-contact__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}