/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #1A202C;
  line-height: 1.6;
}

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

/* Hero Section */
.page-contact__hero {
  background: linear-gradient(135deg, #1A202C 0%, rgba(26, 32, 44, 0.8) 50%, #FFD700 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-contact__hero .page-contact__container {
  position: relative;
  z-index: 1;
}

.page-contact__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
}

.page-contact__subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

/* General Headings */
.page-contact__heading {
  font-size: 2.5em;
  color: #1A202C;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-contact__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-contact__description {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
  color: #4a5568;
}

/* Contact Methods Section */
.page-contact__methods {
  background-color: #f7f7f7;
  padding: 60px 0;
}

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

.page-contact__method-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-contact__method-title {
  font-size: 1.5em;
  color: #1A202C;
  margin-bottom: 10px;
}

.page-contact__method-text {
  color: #4a5568;
  margin-bottom: 20px;
}

.page-contact__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__link:hover {
  color: #b39700;
}

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

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background-color: #fcfcfc;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.page-contact__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #1A202C;
  font-size: 1.1em;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1em;
  color: #2d3748;
  background-color: #edf2f7;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFD700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
  outline: none;
}

.page-contact__form-textarea {
  resize: vertical;
}

/* Buttons */
.page-contact__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  text-align: center;
  border: none;
}

.page-contact__button--primary {
  background-color: #FFD700;
  color: #1A202C;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-contact__button--primary:hover {
  background-color: #e0b800;
  transform: translateY(-2px);
}

.page-contact__button--chat {
  background-color: #1A202C;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 10px rgba(26, 32, 44, 0.3);
}

.page-contact__button--chat:hover {
  background-color: #0d1219;
  color: #FFD700;
  transform: translateY(-2px);
}

.page-contact__button--submit {
  background-color: #1A202C;
  color: #FFD700;
  width: 100%;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(26, 32, 44, 0.3);
}

.page-contact__button--submit:hover {
  background-color: #0d1219;
  transform: translateY(-2px);
}

/* CTA Banner */
.page-contact__cta-banner {
  background-color: #1A202C;
  color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-contact__cta-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-contact__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

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

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

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

.page-contact__faq-question {
  display: block;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #1A202C;
  cursor: pointer;
  position: relative;
  user-select: none;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-contact__faq-question:hover {
  background-color: #f0f0f0;
}

.page-contact__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-contact__faq-item[open] .page-contact__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-contact__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #4a5568;
  border-top: 1px solid #e2e8f0;
  margin-top: -1px; /* Overlap border */
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__title {
    font-size: 2.5em;
  }

  .page-contact__subtitle {
    font-size: 1em;
  }

  .page-contact__heading {
    font-size: 2em;
  }

  .page-contact__methods-grid {
    grid-template-columns: 1fr;
  }

  .page-contact__form {
    padding: 20px;
  }

  .page-contact__cta-title {
    font-size: 1.8em;
  }

  .page-contact__cta-text {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-contact__title {
    font-size: 2em;
  }

  .page-contact__subtitle {
    font-size: 0.9em;
  }

  .page-contact__heading {
    font-size: 1.8em;
  }

  .page-contact__button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-contact__form-input, .page-contact__form-textarea {
    padding: 12px;
  }
}