.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background: #0A0A0A; /* Background */
}

/* Fixed Header Spacing */
.page-contact__hero-section {
  padding-top: var(--header-offset, 120px); /* Desktop padding for fixed header */
  background: #0A0A0A; /* Ensure consistent background */
}

.page-contact__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFD36B; /* Glow for emphasis */
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-contact__hero-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 20px;
}

.page-contact__hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
}

.page-contact__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-contact__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E; /* Main Color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

.page-contact__card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-contact__method-title,
.page-contact__commitment-card-title {
  font-size: 1.5rem;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
}

.page-contact__method-text,
.page-contact__commitment-card-text {
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-contact__phone-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: #F2C14E;
    margin-bottom: 15px;
}

.page-contact__btn-primary,
.page-contact__btn-secondary,
.page-contact__btn-small {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button Color */
  color: #ffffff; /* Button text always white */
  border: none;
}

.page-contact__btn-primary:hover {
  background: linear-gradient(180deg, #FFE48A 0%, #E6AE2D 100%);
}

.page-contact__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Main Color */
  border: 2px solid #F2C14E; /* Main Color */
}

.page-contact__btn-secondary:hover {
  background: #F2C14E;
  color: #0A0A0A;
}

.page-contact__btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #ffffff;
    border: none;
    margin-top: 10px;
}

.page-contact__btn-small:hover {
    background: linear-gradient(180deg, #FFE48A 0%, #E6AE2D 100%);
}

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

.page-contact__social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3A2A12; /* Border color for background */
    color: #FFD36B; /* Glow for icon */
    font-size: 1.2rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__social-icon:hover {
    background: #F2C14E; /* Main Color */
    color: #0A0A0A;
}


/* FAQ Section */
.page-contact__faq-list {
  margin-top: 40px;
}

.page-contact__faq-item {
  margin-bottom: 20px;
  overflow: hidden;
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  background: #111111; /* Card BG */
  border-bottom: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.page-contact__faq-question:hover {
  background: rgba(242, 193, 78, 0.1); /* Light hover for main color */
}

.page-contact__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #F2C14E; /* Main Color */
}

.page-contact__faq-item.active .page-contact__faq-toggle {
  transform: rotate(45deg);
}

.page-contact__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
}

.page-contact__faq-item.active .page-contact__faq-answer {
  max-height: 1000px !important;
  padding: 15px 20px 20px;
}

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

/* Commitment Section */
.page-contact__commitment-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Contact Form Section */
.page-contact__form-section {
  background: #0A0A0A; /* Background */
  padding: 60px 0;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 40px auto 0 auto;
  padding: 30px;
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-contact__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #FFD36B; /* Glow */
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #3A2A12; /* Border */
  border-radius: 5px;
  background: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
  font-size: 1rem;
  box-sizing: border-box;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: rgba(255, 246, 214, 0.6);
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  outline: none;
  border-color: #F2C14E; /* Main Color */
  box-shadow: 0 0 5px rgba(242, 193, 78, 0.5);
}

.page-contact__form-submit-btn {
  width: auto;
  padding: 15px 30px;
  font-size: 1.1rem;
  cursor: pointer;
}

/* CTA Section */
.page-contact__cta-section {
  padding: 60px 0;
  text-align: center;
  background: #0A0A0A; /* Background */
}

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


/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-contact__hero-description {
    font-size: 1rem;
  }
  .page-contact__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-contact {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Mobile padding for fixed header */
  .page-contact__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-contact__hero-content-wrapper {
    padding: 40px 15px 15px;
  }

  .page-contact__container {
    padding: 30px 15px;
  }

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

  .page-contact__hero-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-contact__section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
    margin-bottom: 15px;
  }

  .page-contact__section-description {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .page-contact__methods-grid,
  .page-contact__commitment-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-contact__card {
    padding: 25px;
  }

  /* Images 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__contact-form {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons responsive */
  .page-contact__btn-primary,
  .page-contact__btn-secondary,
  .page-contact__btn-small,
  .page-contact a[class*="button"],
  .page-contact a[class*="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,
  .page-contact__button-group,
  .page-contact__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important;
    gap: 10px;
  }

  .page-contact__faq-question {
    padding: 12px 15px;
    font-size: 1rem;
  }

  .page-contact__faq-answer {
    padding: 0 15px;
  }
  .page-contact__faq-item.active .page-contact__faq-answer {
    padding: 15px 15px 15px;
  }

  .page-contact__contact-form {
    padding: 20px 15px;
  }

  .page-contact__form-input,
  .page-contact__form-textarea {
    padding: 10px;
    font-size: 0.95rem;
  }
}