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

.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 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;
  background-color: #7A0E0E; /* Deep Red for hero background */
  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;
  z-index: 1;
}

.page-contact__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-contact__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-contact__hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFF5E1; /* Text Main */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-contact__hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 30px;
  color: #FFF5E1; /* Text Main */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
  color: #7A0E0E; /* Deep Red for text on gold button */
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-contact__cta-button:hover {
  background: linear-gradient(180deg, #F4D34D 0%, #FFCC66 100%); /* Gold / Glow on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-contact__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F4D34D; /* Gold for section titles */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-contact__info-section {
  padding: 80px 0;
  background-color: #B71C1C; /* Background */
}

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

.page-contact__info-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #F2B544; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__info-card img {
  width: 100%;
  height: auto;
  max-width: 350px;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-contact__info-card p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #FFF5E1; /* Text Main */
}

.page-contact__contact-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 20px;
}

.page-contact__contact-list li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #FFF5E1; /* Text Main */
}

.page-contact__contact-list li strong {
  color: #F4D34D; /* Gold */
}

.page-contact__contact-list li a {
  color: #FFD86A; /* Lighter gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-contact__contact-list li a:hover {
  color: #FFF5E1; /* Text Main on hover */
  text-decoration: underline;
}

.page-contact__contact-form {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-top: 20px;
}

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

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

.page-contact__contact-form input[type="text"],
.page-contact__contact-form input[type="email"],
.page-contact__contact-form textarea {
  width: calc(100% - 20px);
  padding: 10px;
  border: 1px solid #F2B544; /* Border */
  border-radius: 5px;
  background-color: #7A0E0E; /* Deep Red for input background */
  color: #FFF5E1; /* Text Main */
  font-size: 16px;
  box-sizing: border-box;
}

.page-contact__contact-form input::placeholder,
.page-contact__contact-form textarea::placeholder {
  color: rgba(255, 245, 225, 0.7); /* Lighter placeholder text */
}

.page-contact__contact-form input:focus,
.page-contact__contact-form textarea:focus {
  outline: none;
  border-color: #FFD86A; /* Button gradient start color on focus */
  box-shadow: 0 0 8px rgba(255, 216, 106, 0.5);
}

.page-contact__btn-submit {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
  color: #7A0E0E; /* Deep Red for text on gold button */
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__btn-submit:hover {
  background: linear-gradient(180deg, #F4D34D 0%, #FFCC66 100%); /* Gold / Glow on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__faq-section {
  padding: 80px 0;
  background-color: #7A0E0E; /* Deep Red */
}

.page-contact__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details.page-contact__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #F2B544; /* Border */
  overflow: hidden;
  background: #D32F2F; /* Card BG */
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

details.page-contact__faq-item summary.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF5E1; /* Text Main */
  font-weight: 600;
}

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: #E53935; /* Auxiliary color on hover */
}

.page-contact__faq-qtext {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}

.page-contact__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD86A; /* Button gradient start color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-contact__faq-item .page-contact__faq-answer {
  padding: 0 20px 20px;
  background: #B71C1C; /* Background */
  border-radius: 0 0 5px 5px;
  color: #FFF5E1; /* Text Main */
}

details.page-contact__faq-item .page-contact__faq-answer p {
  margin: 0;
  font-size: 15px;
  color: #FFF5E1;
}

.page-contact__social-section {
  padding: 80px 0;
  text-align: center;
  background-color: #B71C1C; /* Background */
}

.page-contact__social-section p {
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 17px;
  color: #FFF5E1; /* Text Main */
}

.page-contact__social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.page-contact__social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #FFF5E1; /* Text Main */
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.page-contact__social-icon img {
  
  
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-contact__social-icon:hover {
  color: #FFD86A; /* Button gradient start color */
  transform: translateY(-5px);
}

.page-contact__social-icon:hover img {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive styles */
@media (max-width: 992px) {
  .page-contact__hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-contact__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  }
  .page-contact__info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-contact__hero-image img {
    border-radius: 4px;
  }
  
  .page-contact__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-contact__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-contact__info-section, .page-contact__faq-section, .page-contact__social-section {
    padding: 50px 0;
  }

  .page-contact__info-card {
    padding: 20px;
  }

  .page-contact__card-title {
    font-size: 20px;
  }

  .page-contact__info-card img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-contact__contact-form input,
  .page-contact__contact-form textarea {
    width: 100%;
  }

  .page-contact__btn-submit {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  details.page-contact__faq-item summary.page-contact__faq-question { padding: 15px; }
  .page-contact__faq-qtext { font-size: 15px; }
  details.page-contact__faq-item .page-contact__faq-answer { padding: 0 15px 15px; }

  .page-contact__social-links {
    gap: 20px;
  }
  .page-contact__social-icon img {
    
    
  }

  .page-contact p, .page-contact li {
    font-size: 16px;
  }
}

/* General image responsiveness for all images within .page-contact */
.page-contact img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure containers of images are responsive */
.page-contact__hero-image,
.page-contact__info-card,
.page-contact__social-icon {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !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;
  }
}