.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
  padding-bottom: 60px;
}

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

.page-contact__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFF3E6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
  position: relative;
}

.page-contact__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFA53A 0%, #D96800 100%);
  margin: 10px auto 0;
  border-radius: 2px;
}

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

/* Hero Section */
.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-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-contact__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.page-contact__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-contact__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-contact__hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFF3E6; /* Text Main */
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 15px rgba(255, 140, 26, 0.4);
}

.page-contact__cta-button:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 140, 26, 0.6);
}

/* Intro Section */
.page-contact__intro-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

.page-contact__intro-content {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.page-contact__intro-text {
  flex: 1;
  font-size: 17px;
  line-height: 1.8;
  color: #f0f0f0;
}

.page-contact__intro-text p {
  margin-bottom: 15px;
}

.page-contact__intro-text strong {
  color: #FFA53A;
}

.page-contact__intro-image {
  flex: 0 0 40%;
  max-width: 40%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-contact__intro-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Contact Methods Section */
.page-contact__methods-section {
  padding: 80px 0;
  background-color: #17191F; /* Card BG */
}

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

.page-contact__method-card {
  background-color: #0D0E12; /* Background */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px #FFB04D; /* Glow */
}

.page-contact__method-title {
  font-size: 24px;
  color: #FFA53A;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-contact__method-description {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-contact__email-address, .page-contact__phone-number {
  font-size: 18px;
  font-weight: bold;
  color: #FFF3E6;
  margin-bottom: 25px;
}

.page-contact__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 3px 10px rgba(255, 140, 26, 0.3);
}

.page-contact__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 140, 26, 0.5);
}

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

.page-contact__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #FFA53A;
  color: #0D0E12;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__social-icon:hover {
  background-color: #FFF3E6;
  transform: scale(1.1);
}

/* FAQ Section */
.page-contact__faq-section {
  padding: 80px 0;
  background-color: #0D0E12;
}

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

details.page-contact__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #A84F0C;
  overflow: hidden;
  background: #17191F; /* Card BG */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

details.page-contact__faq-item summary.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF3E6;
}

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

details.page-contact__faq-item summary.page-contact__faq-question:hover {
  background: rgba(255, 140, 26, 0.1);
}

.page-contact__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF3E6;
}

.page-contact__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFA53A;
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
}

details.page-contact__faq-item .page-contact__faq-answer {
  padding: 0 25px 20px;
  background: #0D0E12; /* Background */
  border-radius: 0 0 10px 10px;
  color: #f0f0f0;
  font-size: 16px;
}

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

.page-contact__faq-answer strong {
  color: #FFA53A;
}

.page-contact__faq-image {
  margin-top: 60px;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-contact__faq-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

/* Commitment Section */
.page-contact__commitment-section {
  padding: 80px 0;
  background-color: #17191F; /* Card BG */
}

.page-contact__commitment-content {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.page-contact__commitment-text {
  flex: 1;
  font-size: 17px;
  line-height: 1.8;
  color: #f0f0f0;
}

.page-contact__commitment-text p {
  margin-bottom: 15px;
}

.page-contact__commitment-text strong {
  color: #FFA53A;
}

.page-contact__commitment-image {
  flex: 0 0 40%;
  max-width: 40%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-contact__commitment-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Bottom CTA Section */
.page-contact__cta-section--bottom {
  padding: 60px 0;
  background-color: #0D0E12;
  text-align: center;
}

.page-contact__cta-container {
  max-width: 900px;
}

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

.page-contact__btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: #FFA53A;
  text-decoration: none;
  border: 2px solid #FFA53A;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-contact__btn-secondary:hover {
  background: #FFA53A;
  color: #0D0E12;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 140, 26, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 40px;
  }
  .page-contact__section-title {
    font-size: 32px;
  }
  .page-contact__intro-content, .page-contact__commitment-content {
    flex-direction: column;
    text-align: center;
  }
  .page-contact__intro-image, .page-contact__commitment-image {
    max-width: 60%;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-contact {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-contact__container {
    padding: 0 15px !important;
  }
  .page-contact__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-contact__hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-contact__hero-description {
    font-size: 17px;
    margin-bottom: 25px;
  }
  .page-contact__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-contact__section-title {
    font-size: 28px;
    margin-top: 40px;
  }
  .page-contact__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-contact__intro-section, .page-contact__methods-section, .page-contact__faq-section, .page-contact__commitment-section, .page-contact__cta-section--bottom {
    padding: 40px 0;
  }
  .page-contact__intro-image, .page-contact__commitment-image {
    max-width: 100%;
  }
  .page-contact__method-card {
    padding: 25px;
  }
  .page-contact__method-title {
    font-size: 20px;
  }
  .page-contact__method-description {
    font-size: 15px;
  }
  .page-contact__email-address, .page-contact__phone-number {
    font-size: 16px;
  }
  .page-contact__btn-primary, .page-contact__btn-secondary {
    width: 100% !important;
    max-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 !important;
    gap: 15px;
  }
  details.page-contact__faq-item summary.page-contact__faq-question {
    padding: 15px 20px;
  }
  .page-contact__faq-qtext {
    font-size: 16px;
  }
  .page-contact__faq-toggle {
    font-size: 24px;
    margin-left: 15px;
  }
  details.page-contact__faq-item .page-contact__faq-answer {
    padding: 0 20px 15px;
  }
  /* Ensure all images are responsive */
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-contact__section, .page-contact__card, .page-contact__container, .page-contact__hero-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}