/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light gray for general text */
  background-color: #1a1a1a; /* Dark background */
  line-height: 1.6;
}

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

.page-contact__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFD70030, #8B000030), url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.page-contact__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-contact__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-contact__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-contact__hero-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-contact__hero-image-wrapper {
  display: none; /* Hide image on hero for cleaner look, or integrate into background */
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 15px;
  padding-top: 40px;
}

.page-contact__section-subtitle {
  font-size: 1.1em;
  color: #ccc;
  text-align: center;
  margin-bottom: 50px;
}

.page-contact__methods {
  padding: 60px 0;
  background-color: #222;
}

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

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

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

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

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

.page-contact__method-text {
  color: #e0e0e0;
  margin-bottom: 20px;
}

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

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

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

.page-contact__social-link img {
  width: 30px;
  height: 30px;
  filter: grayscale(100%) brightness(150%) sepia(1) hue-rotate(0deg) saturate(500%); /* Make social icons gold-ish */
  transition: filter 0.3s ease;
}

.page-contact__social-link:hover img {
  filter: none; /* Revert to original color on hover */
}

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

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

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px;
  border: 1px solid #555;
  border-radius: 5px;
  background-color: #3a3a3a;
  color: #f0f0f0;
  font-size: 1em;
  box-sizing: border-box;
}

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

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

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

.page-contact__btn {
  display: inline-block;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
}

.page-contact__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1a1a1a; /* Dark text for contrast */
}

.page-contact__btn--primary:hover {
  background-color: #e6c200;
}

.page-contact__btn--secondary {
  background-color: #8B0000; /* Dark Red */
  color: #ffffff; /* White text for contrast */
}

.page-contact__btn--secondary:hover {
  background-color: #6a0000;
}

.page-contact__faq {
  padding: 60px 0;
  background-color: #222;
}

.page-contact__accordion {
  max-width: 800px;
  margin: 0 auto;
}

.page-contact__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #444;
  border-radius: 8px;
  overflow: hidden;
}

.page-contact__accordion-header {
  background-color: #333;
  color: #FFD700; /* Gold */
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

.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: #2c2c2c;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

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

.page-contact__accordion-content a {
  color: #FFD700;
  text-decoration: underline;
}

.page-contact__accordion-content a:hover {
  color: #e6c200;
}

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

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

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

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

  .page-contact__form {
    padding: 30px;
  }

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

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

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

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

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

  .page-contact__form {
    padding: 20px;
  }

  .page-contact__btn {
    width: 100%;
    padding: 15px 0;
  }
}