/* style/contact.css */

.page-contact {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light grey for general text on dark background */
  background-color: #1a1a1a; /* Very dark grey background */
  line-height: 1.6;
}

.page-contact__hero {
  background: linear-gradient(135deg, #B22222 0%, #FFD700 100%); /* Main to auxiliary color gradient */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-contact__title {
  font-size: 3.5em;
  color: #FFFFFF; /* White for main title */
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-contact__subtitle {
  font-size: 1.5em;
  color: #FFFACD; /* Light gold for subtitle */
  margin-bottom: 30px;
}

.page-contact__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}

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

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 25px;
  padding-top: 20px;
}

.page-contact__section-description {
  font-size: 1.1em;
  color: #cccccc; /* Lighter grey for descriptions */
  text-align: center;
  margin-bottom: 40px;
}

.page-contact__form-section {
  background-color: #2a2a2a; /* Slightly lighter dark grey for form section */
  padding: 60px 0;
}

.page-contact__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  background-color: #333333; /* Darker grey for form background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-contact__form-group {
  display: flex;
  flex-direction: column;
}

.page-contact__form-label {
  font-size: 1em;
  color: #FFD700; /* Gold for form labels */
  margin-bottom: 8px;
  font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
  padding: 12px 15px;
  border: 1px solid #555555;
  border-radius: 5px;
  background-color: #444444;
  color: #FFFFFF; /* White text in inputs */
  font-size: 1em;
  transition: border-color 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: #aaaaaa;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFD700; /* Gold border on focus */
  outline: none;
}

.page-contact__submit-btn {
  background-color: #B22222; /* Main color for submit button */
  color: #FFFFFF; /* White text for submit button */
  padding: 15px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: fit-content;
  justify-self: center;
}

.page-contact__submit-btn:hover {
  background-color: #c93e3e; /* Lighter red on hover */
  transform: translateY(-2px);
}

.page-contact__info-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

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

.page-contact__detail-item {
  background-color: #2a2a2a; /* Dark grey for detail items */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-contact__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px #FFD700); /* Gold glow for icons */
}

.page-contact__detail-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for detail titles */
  margin-bottom: 10px;
}

.page-contact__detail-text {
  font-size: 1.1em;
  color: #f0f0f0; /* Light grey for detail text */
}

.page-contact__email-link {
  color: #FFD700; /* Gold for email link */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-contact__email-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-contact__action-text {
  text-align: center;
  font-size: 1.2em;
  color: #f0f0f0;
  margin-top: 50px;
}

.page-contact__action-link {
  color: #FFD700; /* Gold for action link */
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-contact__action-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-contact__faq-section {
  background-color: #2a2a2a;
  padding: 60px 0;
}

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

.page-contact__faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Gold for FAQ questions */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-contact__faq-answer {
  font-size: 1em;
  color: #cccccc; /* Lighter grey for FAQ answers */
  padding-left: 15px;
  border-left: 3px solid #B22222; /* Red accent for answers */
  margin-top: 15px;
}

.page-contact__faq-link {
  color: #FFD700; /* Gold for FAQ links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__faq-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-contact .highlight {
  color: #FFD700; /* Highlight keywords with gold */
  font-weight: bold;
}

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

  .page-contact__subtitle {
    font-size: 1.2em;
  }

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

  .page-contact__form {
    padding: 30px;
  }

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

  .page-contact__hero {
    padding: 60px 15px;
  }

  .page-contact__container {
    padding: 30px 15px;
  }
}

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

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

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

  .page-contact__form {
    padding: 20px;
  }

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

  .page-contact__icon {
    width: 50px;
    height: 50px;
  }

  .page-contact__detail-title {
    font-size: 1.3em;
  }

  .page-contact__detail-text {
    font-size: 1em;
  }

  .page-contact__action-text {
    font-size: 1em;
  }
}