.page-contact {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  line-height: 1.6;
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

.page-contact__hero-contact-section {
  position: relative;
  padding: 180px 0 80px; /* Desktop padding-top to clear fixed header */
  background: linear-gradient(135deg, #FFD700, #1A1A1A);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-contact__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-contact__hero-title .highlight {
  color: #FFD700;
}

.page-contact__hero-description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-contact__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-contact__cta-button--primary {
  background: #FFD700;
  color: #1A1A1A;
  border-color: #FFD700;
}

.page-contact__cta-button--primary:hover {
  background: #FFA500;
  color: #000000;
  border-color: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__cta-button--secondary {
  background: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-contact__cta-button--secondary:hover {
  background: #FFD700;
  color: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-contact__section-title .highlight {
  color: #ffffff;
}

.page-contact__section-description {
  font-size: 16px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-contact__form-section, .page-contact__direct-contact-section, .page-contact__social-media-section, .page-contact__faq-section {
  padding: 60px 0;
  background-color: #1A1A1A;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.page-contact__form-input, .page-contact__form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #444444;
  border-radius: 8px;
  background: #3a3a3a;
  color: #ffffff;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 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;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
  outline: none;
}

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

.page-contact__submit-button {
  display: block;
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #1A1A1A;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.page-contact__submit-button:hover {
  background: linear-gradient(135deg, #FFA500, #FFD700);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-contact__contact-card {
  background: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__contact-icon {
  width: 80px; /* Min size 200x200 requirement, but these are decorative icons, so I'll use a smaller size here */
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-contact__contact-card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-contact__contact-text {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 10px;
}

.page-contact__contact-link {
  display: inline-block;
  font-size: 16px;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.page-contact__contact-link:hover {
  color: #FFA500;
  text-decoration: underline;
}

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

.page-contact__social-link {
  display: inline-flex;
  width: 60px;
  height: 60px;
  background: #3a3a3a;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-contact__social-link:hover {
  background: #FFD700;
  transform: translateY(-3px) scale(1.05);
}

.page-contact__social-icon {
  width: 32px;
  height: 32px;
  filter: invert(1);
}

.page-contact__social-link:hover .page-contact__social-icon {
  filter: invert(0);
}

.page-contact__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-contact__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #2a2a2a;
  border: 1px solid #444444;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-contact__faq-question:hover {
  background: #3a3a3a;
  border-color: #FFD700;
}

.page-contact__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700;
  pointer-events: none;
}

.page-contact__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #f0f0f0;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #1A1A1A;
  border: 1px solid #444444;
}

.page-contact__faq-item.active .page-contact__faq-toggle {
  color: #FFD700;
  transform: rotate(45deg);
  background: #3a3a3a;
}

.page-contact__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #1A1A1A;
  border-radius: 0 0 10px 10px;
  color: #f0f0f0;
}

.page-contact__faq-item.active .page-contact__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border: 1px solid #444444;
  border-top: none;
}

.page-contact__faq-answer p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 42px;
  }
  .page-contact__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-contact-section {
    padding-top: 140px !important; /* Mobile padding-top override */
    padding-bottom: 60px;
  }
  .page-contact__hero-title {
    font-size: 36px;
  }
  .page-contact__hero-description {
    font-size: 16px;
  }
  .page-contact__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__cta-button {
    width: 80%;
    margin: 0 auto;
    font-size: 16px;
    padding: 12px 25px;
  }
  .page-contact__section-title {
    font-size: 28px;
  }
  .page-contact__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-contact__form-section, .page-contact__direct-contact-section, .page-contact__social-media-section, .page-contact__faq-section {
    padding: 40px 0;
  }
  .page-contact__form {
    padding: 25px;
  }
  .page-contact__form-input, .page-contact__form-textarea, .page-contact__submit-button {
    font-size: 15px;
    padding: 12px;
  }
  .page-contact__contact-details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-contact__contact-icon {
    width: 60px;
  }
  .page-contact__contact-card-title {
    font-size: 20px;
  }
  .page-contact__contact-text, .page-contact__contact-link {
    font-size: 15px;
  }
  .page-contact__social-link {
    width: 50px;
    height: 50px;
  }
  .page-contact__social-icon {
    width: 28px;
    height: 28px;
  }
  .page-contact__faq-question {
    padding: 15px 20px;
  }
  .page-contact__faq-question h3 {
    font-size: 16px;
  }
  .page-contact__faq-toggle {
    font-size: 24px;
    width: 30px;
    height: 30px;
    margin-left: 15px;
  }
  .page-contact__faq-answer {
    padding: 0 20px;
  }
  .page-contact__faq-item.active .page-contact__faq-answer {
    padding: 15px 20px !important;
  }
  .page-contact__faq-answer p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 30px;
  }
  .page-contact__section-title {
    font-size: 24px;
  }
  .page-contact__cta-button {
    width: 90%;
  }
  .page-contact__form {
    padding: 20px;
  }
  .page-contact__contact-card {
    padding: 20px;
  }
  .page-contact__social-links {
    gap: 15px;
  }
  .page-contact__social-link {
    width: 45px;
    height: 45px;
  }
  .page-contact__social-icon {
    width: 24px;
    height: 24px;
  }
}

/* Ensure all images are responsive and prevent overflow */
.page-contact img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-contact__section,
  .page-contact__card,
  .page-contact__container,
  .page-contact__form,
  .page-contact__contact-card,
  .page-contact__social-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  /* Adjust padding for specific elements that might have different default padding */
  .page-contact__form {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .page-contact__faq-item {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-contact__faq-question {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-contact__faq-answer {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}