/* style/contact.css */
.page-contact {
  font-family: Arial, sans-serif;
  color: #f8f8f8; /* Light text for dark background */
  line-height: 1.6;
  background-color: #0d1a33; /* Slightly darker than main color for depth */
}

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

.page-contact-hero {
  background: linear-gradient(135deg, #1A2B5B, #0d1a33); /* Darker blue to match overall theme */
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,pattern]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-contact-hero > * {
  position: relative;
  z-index: 1;
}

.page-contact-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFD700; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-contact-btn-primary {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2B5B;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-contact-btn-primary:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

.page-contact-info-section {
  padding: 60px 0;
  background-color: #1A2B5B;
}

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

.page-contact-info-card {
  background-color: #0d1a33;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid #334770;
  transition: transform 0.3s ease;
}

.page-contact-info-card:hover {
  transform: translateY(-5px);
}

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

.page-contact-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-contact-card-text {
  color: #c0c0c0;
  margin-bottom: 20px;
}

.page-contact-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact-link:hover {
  color: #e5c100;
  text-decoration: underline;
}

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

.page-contact-social-icon-link {
  display: inline-block;
}

.page-contact-social-icon {
  width: 35px;
  height: 35px;
  filter: drop-shadow(0 0 3px #FFD700);
  transition: transform 0.3s ease;
}

.page-contact-social-icon:hover {
  transform: scale(1.1);
}

.page-contact-form-section {
  padding: 80px 0;
  background-color: #0d1a33;
  text-align: center;
}

.page-contact-section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-contact-section-description {
  font-size: 1.1em;
  color: #e0e0e0;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.page-contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #1A2B5B;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid #334770;
}

.page-contact-form-group {
  margin-bottom: 25px;
  text-align: left;
}

.page-contact-label {
  display: block;
  font-size: 1.1em;
  color: #FFD700;
  margin-bottom: 8px;
  font-weight: bold;
}

.page-contact-input, .page-contact-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #334770;
  border-radius: 5px;
  background-color: #0d1a33;
  color: #fff;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact-input::placeholder, .page-contact-textarea::placeholder {
  color: #a0a0a0;
}

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

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

.page-contact-btn-submit {
  background-color: #FFD700;
  color: #1A2B5B;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-contact-btn-submit:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

.page-contact-faq-section {
  padding: 60px 0 100px 0;
  background-color: #1A2B5B;
  text-align: center;
}

.page-contact-faq-item {
  background-color: #0d1a33;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #334770;
}

.page-contact-faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-contact-faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-contact-faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-contact-faq-answer {
  color: #c0c0c0;
  font-size: 1.1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.page-contact-faq-answer.active {
  max-height: 200px; /* Adjust as needed for content length */
  opacity: 1;
  margin-top: 10px;
}

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

  .page-contact-subtitle {
    font-size: 1.1em;
  }

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

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

  .page-contact-form {
    padding: 25px;
  }

  .page-contact-input, .page-contact-textarea {
    width: calc(100% - 20px);
  }
}

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

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

  .page-contact-btn-primary {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-contact-info-card {
    padding: 20px;
  }

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

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

  .page-contact-form {
    padding: 20px;
  }

  .page-contact-btn-submit {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}