/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #F5F5F5; /* Light grey for general text on dark background */
  background-color: #0A0F18; /* Main dark background */
  line-height: 1.6;
}

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

.page-contact__hero {
  background: linear-gradient(135deg, #0A0F18 0%, #2a3a5a 100%); /* Gradient from dark to slightly lighter dark blue */
  padding: 80px 0;
  text-align: center;
  color: #F5F5F5;
}

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

.page-contact__subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #CCCCCC; /* Lighter grey for subtitle */
}

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

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

.page-contact__button--primary {
  background-color: #FFD700; /* Gold for primary action */
  color: #0A0F18; /* Dark text on gold */
}

.page-contact__button--primary:hover {
  background-color: #E5C100; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-contact__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary action */
  border: 2px solid #FFD700;
}

.page-contact__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

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

.page-contact__methods,
.page-contact__form-section,
.page-contact__faq,
.page-contact__closing-cta {
  padding: 60px 0;
  text-align: center;
}

.page-contact__heading {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section headings */
  margin-bottom: 25px;
  font-weight: bold;
}

.page-contact__description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #B0B0B0; /* Medium grey for descriptions */
}

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

.page-contact__card {
  background-color: #1A212E; /* Slightly lighter dark blue for cards */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  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.4);
}

.page-contact__card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-contact__card-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
}

.page-contact__card-text {
  font-size: 1em;
  color: #F5F5F5;
  margin-bottom: 20px;
}

.page-contact__card-info {
  font-size: 1.1em;
  color: #FFD700;
  margin-bottom: 10px;
}

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

.page-contact__link:hover {
  color: #E5C100; /* Slightly darker gold on hover */
  text-decoration: underline;
}

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

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #1A212E;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #444;
  border-radius: 6px;
  background-color: #0A0F18;
  color: #F5F5F5;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFD700;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
  outline: none;
}

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

.page-contact__accordion {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-contact__accordion-item {
  background-color: #1A212E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__accordion-header {
  width: 100%;
  background-color: #2A3A5A; /* Slightly lighter dark blue for accordion header */
  color: #FFD700; /* Gold for accordion header text */
  padding: 18px 25px;
  border: none;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-contact__accordion-header:hover {
  background-color: #3B4E70;
}

.page-contact__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-contact__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-contact__accordion-content {
  padding: 0 25px;
  background-color: #1A212E;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-contact__accordion-content p {
  padding: 15px 0;
  color: #F5F5F5;
}

.page-contact__closing-cta {
  background-color: #0A0F18;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-contact__closing-cta .page-contact__container {
  position: relative;
  z-index: 1;
}

.page-contact__cta-image {
  width: 100%;
  max-width: 600px;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.page-contact__cta-image:hover {
  opacity: 1;
}

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

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

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

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

  .page-contact__card {
    padding: 25px;
  }

  .page-contact__form {
    padding: 30px;
  }

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

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

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

  .page-contact__heading {
    font-size: 1.8em;
  }

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

  .page-contact__button {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .page-contact__form {
    padding: 20px;
  }

  .page-contact__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-contact__accordion-content p {
    padding: 10px 0;
  }
}