.page-contact {
  color: #FFF5E1; /* Text Main */
  background-color: #0a0a0a; /* Body background is dark */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-contact__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles padding-top */
  text-align: center;
  overflow: hidden;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  max-height: 600px; /* Limit hero image height */
}

.page-contact__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 100px 20px 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  margin-top: 100px;
}

.page-contact__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F4D34D; /* Gold */
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.page-contact__intro-text {
  font-size: 1.1rem;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-contact__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
  color: #7A0E0E; /* Deep Red */
  border: none;
}

.page-contact__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-contact__text-block {
  padding: 60px 20px;
  background-color: #B71C1C; /* Background */
  color: #FFF5E1; /* Text Main */
}

.page-contact__dark-bg {
  background-color: #7A0E0E; /* Deep Red for contrast */
  color: #FFF5E1; /* Text Main */
}

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

.page-contact__section-title {
  font-size: 2.5rem;
  color: #F4D34D; /* Gold */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-contact__section-description {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__reason-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-contact__reason-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-contact__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.page-contact__method-card {
  background-color: #D32F2F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.page-contact__method-card .page-contact__card-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.page-contact__method-card > *:not(.page-contact__card-image) {
  position: relative;
  z-index: 1;
}

.page-contact__card-title {
  font-size: 1.8rem;
  color: #F4D34D; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-contact__card-text {
  font-size: 1rem;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-contact__contact-info {
  font-size: 1.1rem;
  color: #FFF5E1; /* Text Main */
  font-weight: 500;
  margin-bottom: 20px;
}

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

.page-contact__social-icon {
  color: #FFF5E1; /* Text Main */
  font-size: 1rem;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__social-icon:hover {
  background-color: #F4D34D; /* Gold */
  color: #7A0E0E; /* Deep Red */
}

.page-contact__contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.page-contact__form-group {
  text-align: left;
}

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #FFF5E1; /* Text Main */
  font-size: 1rem;
  box-sizing: border-box;
}

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

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  outline: none;
  border-color: #F4D34D; /* Gold */
  box-shadow: 0 0 0 3px rgba(244, 211, 77, 0.3);
}

.page-contact__submit-button {
  margin-top: 10px;
  width: 100%;
  padding: 12px 20px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 5px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
  color: #7A0E0E; /* Deep Red */
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-contact__submit-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

.page-contact__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-contact__faq-item details {
  padding: 0;
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F4D34D; /* Gold */
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}

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

.page-contact__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-contact__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-contact__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: #FFF5E1; /* Text Main */
  background-color: rgba(255, 255, 255, 0.02);
}

.page-contact__final-cta-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #C91F17; /* Main color */
  color: #FFF5E1; /* Text Main */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-contact__hero-image {
    max-height: 500px;
  }
  .page-contact__hero-content {
    padding-top: 80px;
  }
  .page-contact__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-contact__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-image {
    max-height: 400px;
  }
  .page-contact__hero-content {
    padding: 60px 15px 15px;
    margin-top: 60px;
  }
  .page-contact__main-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    line-height: 1.2;
  }
  .page-contact__intro-text {
    font-size: 1rem;
  }
  .page-contact__section-title {
    font-size: 1.8rem;
  }
  .page-contact__section-description {
    font-size: 0.95rem;
  }
  .page-contact__text-block, .page-contact__dark-bg {
    padding: 40px 0;
  }
  .page-contact__reason-list, .page-contact__methods-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__cta-button,
  .page-contact__btn-primary,
  .page-contact__submit-button,
  .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-wrap: wrap !important;
    gap: 10px;
  }
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-contact__section,
  .page-contact__card,
  .page-contact__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-contact__video-section {
    padding-top: 10px !important;
  }
  .page-contact video,
  .page-contact__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-contact__video-section,
  .page-contact__video-container,
  .page-contact__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-section {
    padding-bottom: 40px;
  }
  .page-contact__hero-content {
    margin-top: 40px;
    padding: 40px 10px 10px;
  }
  .page-contact__main-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
  .page-contact__cta-button {
    font-size: 0.95rem;
    padding: 12px 25px;
  }
  .page-contact__section-title {
    font-size: 1.6rem;
  }
  .page-contact__card-title {
    font-size: 1.5rem;
  }
  .page-contact__form-input, .page-contact__form-textarea {
    width: 100%;
  }
}