/* style/contact.css */
.page-contact {
  color: #ffffff; /* Body background is dark, so text should be light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #1a1a2e; /* Inherited from shared.css body, but ensure consistency */
}

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

.page-contact__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-contact__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 30px;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

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

.page-contact__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-contact__intro-text {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-contact__btn-primary,
.page-contact__btn-secondary,
.page-contact__btn-link,
.page-contact__social-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-contact__btn-primary:hover {
  background: #1e87b7;
  border-color: #1e87b7;
}

.page-contact__btn-secondary {
  background: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin-left: 15px;
}

.page-contact__btn-secondary:hover {
  background: #26A9E0;
  color: #ffffff;
}

.page-contact__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}

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

.page-contact__methods-section,
.page-contact__common-issues-section,
.page-contact__faq-section {
  padding: 60px 0;
  background-color: #1a1a2e;
}

.page-contact__dark-bg {
  background-color: #1a1a2e;
  color: #ffffff;
}

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

.page-contact__card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-contact__method-icon,
.page-contact__issue-icon {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-contact__method-title,
.page-contact__issue-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-contact__method-description,
.page-contact__issue-description {
  font-size: 0.95rem;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-contact__email-address {
  font-size: 1rem;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-contact__link-text {
  color: #26A9E0;
  text-decoration: none;
}

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

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

.page-contact__social-btn {
  background: #EA7C07;
  color: #ffffff;
  border: 2px solid #EA7C07;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.9rem;
}

.page-contact__social-btn:hover {
  background: #c26505;
  border-color: #c26505;
}

.page-contact__guide-section,
.page-contact__commitment-section,
.page-contact__cta-section {
  padding: 60px 0;
}

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

.page-contact__step-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-contact__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-contact__step-card p {
  color: #cccccc;
  margin-bottom: 10px;
}

.page-contact__step-list,
.page-contact__issue-list,
.page-contact__commitment-list {
  list-style-type: disc;
  padding-left: 20px;
  color: #cccccc;
}

.page-contact__step-list li,
.page-contact__issue-list li,
.page-contact__commitment-list li {
  margin-bottom: 8px;
}

.page-contact__btn-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: 500;
  display: block;
  margin-top: 15px;
  text-align: center;
}

.page-contact__btn-link:hover {
  text-decoration: underline;
}

.page-contact__commitment-list {
  list-style-type: none;
  padding-left: 0;
  text-align: center;
  margin-top: 30px;
}

.page-contact__commitment-list li {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  color: #f0f0f0;
  font-size: 1rem;
  border-left: 3px solid #26A9E0;
}

.page-contact__faq-list {
  margin-top: 40px;
}

.page-contact__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-contact__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.page-contact__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-contact__faq-qtext {
  flex-grow: 1;
}

.page-contact__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-contact__faq-item[open] .page-contact__faq-toggle {
  content: '−';
}

.page-contact__faq-answer {
  padding: 15px 25px 20px 25px;
  color: #cccccc;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-contact__faq-answer p {
  margin-bottom: 0;
}

.page-contact__cta-section {
  text-align: center;
  padding: 80px 0;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .page-contact__hero-image-wrapper {
    max-height: 500px;
  }
  .page-contact__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-contact__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
  .page-contact__method-grid,
  .page-contact__issue-grid,
  .page-contact__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__btn-secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-contact__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-contact__btn-primary,
  .page-contact__btn-secondary {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-contact__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-contact__hero-image-wrapper,
  .page-contact__method-card,
  .page-contact__step-card,
  .page-contact__issue-card,
  .page-contact__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-contact__method-icon {
    max-width: 150px;
  }

  .page-contact__btn-primary,
  .page-contact__btn-secondary,
  .page-contact a[class*="button"],
  .page-contact a[class*="btn"],
  .page-contact__social-btn {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-contact__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-contact__methods-section,
  .page-contact__common-issues-section,
  .page-contact__faq-section,
  .page-contact__guide-section,
  .page-contact__commitment-section,
  .page-contact__cta-section {
    padding: 30px 0;
  }

  .page-contact__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-contact__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-contact__intro-text,
  .page-contact__section-description,
  .page-contact__method-description,
  .page-contact__issue-description,
  .page-contact__step-card p,
  .page-contact__step-list li,
  .page-contact__issue-list li,
  .page-contact__commitment-list li,
  .page-contact__faq-answer p {
    font-size: 0.9rem;
  }
  .page-contact__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-contact__faq-answer {
    padding: 10px 20px 15px 20px;
  }
}