/* style/contact.css */

/* Base styles for the contact page */
.page-contact {
  font-family: Arial, sans-serif;
  color: #f5e6d0; /* Light text for dark background */
  background-color: #0A192F; /* Primary dark background */
  line-height: 1.6;
}

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

.page-contact__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a2a44 100%); /* Dark gradient for hero */
  padding: 80px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700; /* Accent border */
}

.page-contact__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Accent color for title */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-contact__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #e0e0e0;
}

.page-contact__hero-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-contact__hero-description a:hover {
  text-decoration: underline;
}

.page-contact__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Accent color for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-contact__section-subtitle {
  font-size: 1.1em;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 40px;
}

.page-contact__contact-methods {
  padding: 60px 0;
  background-color: #1a2a44; /* Slightly lighter dark background */
}

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

.page-contact__method-card {
  background-color: #0A192F; /* Primary dark background for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-contact__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-contact__card-text {
  color: #cccccc;
  margin-bottom: 25px;
}

.page-contact__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
}

.page-contact__btn--email,
.page-contact__btn--phone {
  background-color: #334455; /* Darker grey for secondary buttons */
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-contact__btn--email:hover,
.page-contact__btn--phone:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-contact__btn--live-chat {
  background-color: #FFD700; /* Accent color for primary action */
  color: #0A192F;
}

.page-contact__btn--live-chat:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-contact__contact-form-section {
  background-color: #0A192F;
  padding: 60px 0;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #1a2a44;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #445566;
  border-radius: 5px;
  background-color: #0A192F;
  color: #f5e6d0;
  font-size: 1em;
  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 8px rgba(255, 215, 0, 0.5);
  outline: none;
}

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

.page-contact__btn--submit {
  background-color: #FFD700;
  color: #0A192F;
  width: 100%;
  padding: 15px;
  font-size: 1.1em;
}

.page-contact__btn--submit:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

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

.page-contact__faq-item {
  background-color: #0A192F;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-contact__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-contact__faq-question a {
  color: #FFD700;
  text-decoration: none;
}

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

.page-contact__faq-answer {
  color: #cccccc;
}

.page-contact__faq-answer a {
  color: #FFD700;
  text-decoration: none;
}

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

.page-contact__btn--view-all-faq {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  background-color: #334455;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-contact__btn--view-all-faq:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-contact__cta-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a2a44 100%);
  padding: 80px 0;
  text-align: center;
  border-top: 2px solid #FFD700;
}

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

.page-contact__highlight {
  color: #FFD700;
}

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

.page-contact__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-contact__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-contact__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-contact__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-contact__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

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

  .page-contact__section-title {
    font-size: 2em;
  }

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

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

  .page-contact__cta-buttons {
    flex-direction: column;
  }

  .page-contact__btn--primary,
  .page-contact__btn--secondary {
    width: 80%;
    margin: 0 auto;
  }
}

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

  .page-contact__hero-description {
    font-size: 1em;
  }

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

  .page-contact__contact-form {
    padding: 20px;
  }

  .page-contact__card-title {
    font-size: 1.5em;
  }

  .page-contact__faq-question {
    font-size: 1.2em;
  }

  .page-contact__btn--primary,
  .page-contact__btn--secondary {
    width: 100%;
  }
}