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

.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;
}

.page-contact__title {
  font-size: 3.5em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
}

.page-contact__subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

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

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

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

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

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

.page-contact__info-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-contact__info-item h3 {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-contact__info-item p {
  color: #555;
  margin-bottom: 20px;
}

.page-contact__link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-contact__link--primary {
  background-color: #ffc107;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__link--primary:hover {
  background-color: #e0a800;
  color: #000;
  text-decoration: none;
}

.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.1);
  text-align: left;
}

.page-contact__form-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555;
}

.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 #ccc;
  border-radius: 5px;
  font-size: 1em;
  color: #333;
  box-sizing: border-box;
}

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

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: #999;
  opacity: 1;
}

.page-contact__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

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

.page-contact__button--primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-contact__button--secondary {
  background-color: #ffc107;
  color: #333;
  margin-left: 20px;
}

.page-contact__button--secondary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-contact__cta-section {
  background-color: #007bff;
  color: #fff;
  padding: 80px 0;
}

.page-contact__cta-section .page-contact__section-title {
  color: #fff;
}

.page-contact__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

.page-contact__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__hero {
    padding: 60px 0;
  }

  .page-contact__title {
    font-size: 2.5em;
  }

  .page-contact__subtitle,
  .page-contact__cta-description {
    font-size: 1em;
  }

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

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

  .page-contact__form {
    padding: 30px;
  }

  .page-contact__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-contact__button--secondary {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-contact__hero {
    padding: 40px 0;
  }

  .page-contact__title {
    font-size: 2em;
  }

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

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

  .page-contact__form {
    padding: 20px;
  }

  .page-contact__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}