/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-contact__hero-section {
  background: linear-gradient(135deg, #FFD700, #1E90FF);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-contact__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-contact__info-section {
  padding: 60px 0;
  background-color: #fff;
}

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

.page-contact__info-card {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__info-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-contact__card-title {
  font-size: 1.6em;
  color: #1E90FF; /* Deep Blue */
  margin-bottom: 10px;
}

.page-contact__card-text {
  font-size: 1em;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.page-contact__card-detail {
  font-size: 1.1em;
  font-weight: bold;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
}

.page-contact__btn {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #333; /* Dark text for contrast */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__btn:hover {
  background-color: #e6c200; /* Slightly darker gold */
  color: #000;
}

.page-contact__form-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #1E90FF; /* Deep Blue */
  text-align: center;
  margin-bottom: 20px;
}

.page-contact__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-contact__contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  color: #333;
  transition: border-color 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #1E90FF; /* Deep Blue */
  outline: none;
}

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

.page-contact__submit-btn {
  display: block;
  width: 100%;
  background-color: #1E90FF; /* Deep Blue */
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-contact__submit-btn:hover {
  background-color: #1565b3; /* Darker Deep Blue */
}

.page-contact__faq-section {
  padding: 60px 0;
  background-color: #fff;
}

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

.page-contact__faq-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-contact__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Gold */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-contact__faq-answer {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
}

.page-contact__faq-answer a {
  color: #1E90FF; /* Deep Blue */
  text-decoration: none;
  font-weight: bold;
}

.page-contact__faq-answer a:hover {
  text-decoration: underline;
}

.page-contact__cta-section {
  background: linear-gradient(90deg, #1E90FF, #FFD700);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.page-contact__cta-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-contact__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.page-contact__cta-btn {
  display: inline-block;
  background-color: #333; /* Dark contrast for visibility */
  color: #FFD700; /* Gold text */
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-contact__cta-btn:hover {
  background-color: #000;
  color: #fff;
  border-color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__cta-title {
    font-size: 2.2em;
  }
  .page-contact__info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-description,
  .page-contact__section-description,
  .page-contact__cta-description {
    font-size: 1em;
  }
  .page-contact__card-title {
    font-size: 1.4em;
  }
  .page-contact__btn,
  .page-contact__submit-btn,
  .page-contact__cta-btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-contact__faq-question {
    font-size: 1.2em;
  }
}