.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
  padding-bottom: 40px;
}

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

/* Hero Section */
.page-contact__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* As per rule, 10px top padding for hero section */
  padding-bottom: 40px;
  text-align: center;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1920px; /* Max width for large screens */
  margin-bottom: 20px;
  object-fit: cover;
}

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

.page-contact__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp for H1 font size */
  font-weight: 700;
  line-height: 1.2;
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
}

.page-contact__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF1E8; /* Text Main */
}

/* General Section Styling */
.page-contact__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #F3C54D; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-contact__section-description {
  font-size: 1.05em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #FFF1E8; /* Text Main */
}

.page-contact__dark-section {
  background-color: #2A1212; /* Card BG */
  padding: 60px 0;
  margin-top: 40px;
}

/* Contact Info Section */
.page-contact__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-contact__method-card {
  background-color: #140C0C; /* Background */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact__method-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-contact__method-text {
  font-size: 1em;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1; /* Ensures text takes available space */
}

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

.page-contact__method-link:hover {
  color: #FFB04A; /* Lighter gold for hover */
}

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

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 5px;
  background-color: #140C0C; /* Background */
  color: #FFF1E8; /* Text Main */
  font-size: 1em;
  box-sizing: border-box;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: rgba(255, 241, 232, 0.7); /* Lighter placeholder text */
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  outline: none;
  border-color: #E53030; /* Auxiliary color */
  box-shadow: 0 0 0 2px rgba(229, 48, 48, 0.3);
}

.page-contact__form-submit-btn {
  width: auto; /* Allow button to size naturally */
  padding: 12px 30px;
  display: block; /* Make it a block element to center with margin auto */
  margin: 30px auto 0 auto; /* Center the button */
}

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

.page-contact__faq-item {
  background-color: #140C0C; /* Background */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-contact__faq-item summary {
  list-style: none; /* Hide default marker */
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  color: #E53030; /* Auxiliary color */
  background-color: #2A1212; /* Card BG */
  transition: background-color 0.3s ease;
}

.page-contact__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-contact__faq-item summary:hover {
  background-color: #3f1a1a; /* Slightly darker hover */
}

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

.page-contact__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #F3C54D; /* Gold */
}

.page-contact__faq-item[open] .page-contact__faq-toggle {
  content: "−"; /* Change to minus when open */
}

.page-contact__faq-answer {
  padding: 15px 25px 20px;
  background-color: #140C0C; /* Background */
  color: #FFF1E8; /* Text Main */
  font-size: 0.95em;
  border-top: 1px solid #6A1E1E; /* Border */
}

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

.page-contact__faq-answer a {
  color: #F3C54D; /* Gold */
  text-decoration: underline;
}

.page-contact__faq-answer a:hover {
  color: #FFB04A; /* Lighter gold for hover */
}

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

.page-contact__cta-image {
  width: 100%;
  height: auto;
  max-width: 800px; /* Adjust as needed */
  display: block;
  margin: 0 auto 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-contact__cta-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #E53030; /* Auxiliary color */
  margin-bottom: 20px;
}

.page-contact__cta-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #FFF1E8; /* Text Main */
}

.page-contact__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.page-contact__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Crucial for responsive buttons */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text break */
}

.page-contact__btn--primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Custom button color */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(216, 106, 20, 0.4);
}

.page-contact__btn--primary:hover {
  background: linear-gradient(180deg, #FFB04A 0%, #b85a11 100%);
  box-shadow: 0 6px 15px rgba(216, 106, 20, 0.6);
  transform: translateY(-2px);
}

.page-contact__btn--secondary {
  background-color: transparent;
  color: #F3C54D; /* Gold */
  border: 2px solid #F3C54D; /* Gold border */
}

.page-contact__btn--secondary:hover {
  background-color: #F3C54D; /* Gold background on hover */
  color: #140C0C; /* Background text color */
}

/* General image styling to ensure responsiveness */
.page-contact img {
  max-width: 100%;
  height: auto;
  display: block; /* Remove extra space below images */
  object-fit: cover; /* Ensure images cover their area well */
}

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

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

  /* Hero Section */
  .page-contact__hero-section {
    padding-top: 10px !important; /* Fixed top padding for hero section */
    padding-bottom: 30px;
  }
  .page-contact__hero-image {
    margin-bottom: 15px;
  }
  .page-contact__hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .page-contact__hero-description {
    font-size: 0.95em;
    margin-bottom: 20px;
  }

  /* General Section Styles */
  .page-contact__section-title,
  .page-contact__cta-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    padding-top: 30px;
  }
  .page-contact__section-description {
    font-size: 0.9em;
    margin-bottom: 30px;
  }
  .page-contact__dark-section {
    padding: 40px 0;
  }

  /* Contact Methods */
  .page-contact__contact-methods {
    grid-template-columns: 1fr; /* Single column for mobile */
    gap: 20px;
    margin-top: 30px;
  }
  .page-contact__method-card {
    padding: 25px;
  }
  .page-contact__method-icon {
    width: 80px;
    height: 80px;
  }
  .page-contact__method-title {
    font-size: 1.3em;
  }
  .page-contact__method-text {
    font-size: 0.9em;
  }

  /* Contact Form */
  .page-contact__form-section {
    padding: 40px 0;
  }
  .page-contact__contact-form {
    padding: 30px 20px;
  }
  .page-contact__form-label {
    font-size: 0.95em;
  }
  .page-contact__form-input,
  .page-contact__form-textarea {
    padding: 10px 12px;
    font-size: 0.95em;
  }
  .page-contact__form-submit-btn {
    width: 100%; /* Full width for mobile button */
    padding: 12px 20px;
    margin-top: 20px;
  }

  /* FAQ Section */
  .page-contact__faq-list {
    margin-top: 30px;
  }
  .page-contact__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-contact__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.9em;
  }

  /* CTA Section */
  .page-contact__cta-section {
    padding: 40px 0;
  }
  .page-contact__cta-image {
    margin-bottom: 30px;
  }
  .page-contact__cta-description {
    font-size: 0.95em;
    margin-bottom: 25px;
  }
  .page-contact__cta-buttons {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 15px;
    padding: 0 15px !important; /* Add padding to container */
  }

  /* General Images and Containers for Mobile (Crucial) */
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important; /* Ensure images take full width of their container */
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-contact__section,
  .page-contact__card,
  .page-contact__container,
  .page-contact__hero-content,
  .page-contact__contact-form,
  .page-contact__faq-list,
  .page-contact__cta-content,
  .page-contact__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important; /* Add padding to prevent content from touching edges */
    padding-right: 15px !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* Buttons mobile specific */
  .page-contact__btn,
  .page-contact__btn--primary,
  .page-contact__btn--secondary,
  .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 !important;
    padding-right: 15px !important;
  }
}