.page-contact {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Main text color for Black Gold theme */
  background-color: #0A0A0A; /* Page background */
}

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

.page-contact__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: #F2C14E; /* Primary color for titles */
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

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

/* 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 */
  background: #0A0A0A;
}

.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;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.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-content h1 {
  color: #F2C14E; /* Primary color for H1 */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.7);
  font-size: clamp(28px, 4vw, 48px); /* Responsive font size */
}

.page-contact__hero-description {
  font-size: 19px;
  color: #FFF6D6;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #1a1a1a; /* Dark text for bright button */
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

/* Info Section */
.page-contact__info-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

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

.page-contact__card {
  background-color: #111111; /* Card BG color */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  padding: 30px;
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-contact__card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-contact__card-title {
  font-size: 24px;
  color: #FFD36B; /* Auxiliary color for card titles */
  margin-bottom: 15px;
}

.page-contact__card-text {
  font-size: 16px;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-contact__card-detail {
  font-size: 18px;
  font-weight: bold;
  color: #F2C14E;
  margin-bottom: 25px;
}

.page-contact__card-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__card-button:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* Form Section */
.page-contact__form-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

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

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

.page-contact__form-group label {
  display: block;
  font-size: 17px;
  color: #F2C14E;
  margin-bottom: 8px;
  font-weight: bold;
}

.page-contact__contact-form input[type="text"],
.page-contact__contact-form input[type="email"],
.page-contact__contact-form textarea {
  width: 100%;
  padding: 15px;
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 5px;
  color: #FFF6D6;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.page-contact__contact-form input[type="text"]:focus,
.page-contact__contact-form input[type="email"]:focus,
.page-contact__contact-form textarea:focus {
  border-color: #F2C14E;
  outline: none;
}

.page-contact__contact-form textarea {
  resize: vertical;
}

.page-contact__submit-button {
  display: block;
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

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

details.page-contact__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #3A2A12;
  overflow: hidden;
  background-color: #111111; /* Card BG */
  box-shadow: 0 4px 10px 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: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

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-color: #1a1a1a;
}

.page-contact__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2C14E; /* Primary color for question text */
}

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

details.page-contact__faq-item .page-contact__faq-answer {
  padding: 0 25px 25px;
  background-color: #0A0A0A;
  border-top: 1px solid #3A2A12;
  border-radius: 0 0 10px 10px;
  color: #FFF6D6;
  font-size: 16px;
}

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

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

.page-contact__social-icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #111111;
  border: 1px solid #3A2A12;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.7);
}

.page-contact__social-icon img {
  
  
  object-fit: contain;
}

.page-contact__follow-text {
  font-size: 18px;
  color: #FFF6D6;
  margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-contact__section-title {
    font-size: 32px;
  }
  .page-contact__section-description {
    font-size: 17px;
  }
  .page-contact__hero-content h1 {
    font-size: clamp(26px, 5vw, 42px);
  }
  .page-contact__hero-description {
    font-size: 18px;
  }
  .page-contact__card {
    max-width: 45%;
  }
}

@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__hero-content h1 {
    font-size: clamp(24px, 6vw, 36px);
  }
  .page-contact__hero-description {
    font-size: 16px;
  }
  .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__section-title {
    font-size: 28px;
  }
  .page-contact__section-description {
    font-size: 16px;
  }
  .page-contact__contact-cards {
    flex-direction: column;
    align-items: center;
  }
  .page-contact__card {
    max-width: 90%;
    width: 100%;
    padding: 25px;
  }
  .page-contact__card img {
    height: 200px;
  }
  .page-contact__contact-form {
    padding: 30px 20px;
  }
  .page-contact__form-group label {
    font-size: 16px;
  }
  .page-contact__contact-form input,
  .page-contact__contact-form textarea {
    font-size: 15px;
    padding: 12px;
  }
  .page-contact__submit-button {
    padding: 12px 25px;
    font-size: 16px;
    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 20px;
  }
  .page-contact__faq-qtext {
    font-size: 16px;
  }
  .page-contact__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  details.page-contact__faq-item .page-contact__faq-answer {
    padding: 0 20px 20px;
  }
  .page-contact__social-links {
    gap: 20px;
  }
  .page-contact__social-icon {
    width: 60px;
    height: 60px;
  }
  .page-contact__social-icon img {
    
    
  }
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-contact__hero-container,
  .page-contact__info-section,
  .page-contact__form-section,
  .page-contact__faq-section,
  .page-contact__social-section,
  .page-contact__contact-form,
  .page-contact__faq-list,
  .page-contact__social-links,
  .page-contact__card-button,
  .page-contact__cta-button,
  .page-contact__submit-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-contact__contact-cards {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-section,
  .page-contact__info-section,
  .page-contact__form-section,
  .page-contact__faq-section,
  .page-contact__social-section {
    padding: 50px 0;
  }
  .page-contact__section-title {
    font-size: 24px;
  }
  .page-contact__section-description {
    font-size: 15px;
  }
  .page-contact__contact-form {
    padding: 25px 15px;
  }
  .page-contact__social-links {
    gap: 15px;
  }
  .page-contact__social-icon {
    width: 50px;
    height: 50px;
  }
  .page-contact__social-icon img {
    
    
  }
}