/* style/contact.css */
.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark background */
  background-color: #1A2C42; /* Primary dark background */
}

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

.page-contact__hero {
  background: linear-gradient(135deg, #1A2C42, #2B4058);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E0B147; /* Accent color for title */
  font-weight: bold;
}

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

.page-contact__methods,
.page-contact__form-section,
.page-contact__faq {
  padding: 60px 0;
  background-color: #1A2C42;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #E0B147;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-contact__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E0B147;
  margin: 15px auto 0;
  border-radius: 2px;
}

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

.page-contact__card {
  background-color: #2B4058; /* Slightly lighter dark background for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

.page-contact__card p {
  color: #ccc;
  margin-bottom: 25px;
}

.page-contact__button {
  display: inline-block;
  background-color: #E0B147; /* Accent color for buttons */
  color: #1A2C42;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__button:hover {
  background-color: #ffc966; /* Lighter accent on hover */
  transform: translateY(-2px);
}

.page-contact__social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.page-contact__social-icon img {
  width: 40px;
  height: 40px;
  filter: invert(80%) sepia(20%) saturate(600%) hue-rotate(-20deg) brightness(100%) contrast(100%); /* Adjust to gold-like tint */
  transition: transform 0.3s ease;
}

.page-contact__social-icon:hover img {
  transform: scale(1.1);
  filter: invert(90%) sepia(30%) saturate(800%) hue-rotate(-30deg) brightness(110%) contrast(110%);
}

.page-contact__form-description {
  text-align: center;
  color: #ccc;
  margin-bottom: 30px;
  font-size: 1.1em;
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #2B4058;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-contact__form-group input[type="text"],
.page-contact__form-group input[type="email"],
.page-contact__form-group textarea {
  width: calc(100% - 20px);
  padding: 12px;
  border: 1px solid #445b72;
  border-radius: 5px;
  background-color: #1A2C42;
  color: #f0f0f0;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

.page-contact__form-group input[type="text"]:focus,
.page-contact__form-group input[type="email"]:focus,
.page-contact__form-group textarea:focus {
  border-color: #E0B147;
  outline: none;
}

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

.page-contact__submit-button {
  width: 100%;
  background-color: #E0B147;
  color: #1A2C42;
  padding: 15px;
  border-radius: 5px;
  border: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__submit-button:hover {
  background-color: #ffc966;
  transform: translateY(-2px);
}

.page-contact__faq-items {
  margin-top: 30px;
}

.page-contact__faq-item {
  background-color: #2B4058;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__faq-question {
  font-size: 1.5em;
  color: #E0B147;
  margin-bottom: 10px;
}

.page-contact__faq-answer {
  color: #ccc;
}

.page-contact__faq-answer a {
  color: #E0B147;
  text-decoration: none;
  font-weight: bold;
}

.page-contact__faq-answer a:hover {
  text-decoration: underline;
}

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

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

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

  .page-contact__form {
    padding: 30px;
  }
}

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

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

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

  .page-contact__methods,
  .page-contact__form-section,
  .page-contact__faq {
    padding: 40px 0;
  }

  .page-contact__card {
    padding: 20px;
  }

  .page-contact__card-title {
    font-size: 1.5em;
  }

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

  .page-contact__form {
    padding: 20px;
  }

  .page-contact__form-group label {
    font-size: 0.9em;
  }

  .page-contact__form-group input,
  .page-contact__form-group textarea {
    padding: 10px;
    font-size: 0.9em;
  }

  .page-contact__submit-button {
    font-size: 1em;
  }

  .page-contact__faq-question {
    font-size: 1.2em;
  }
}