/* style/contact.css */

.page-contact {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-contact-hero {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Accent color for title */
  font-weight: bold;
}

.page-contact-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact-hero-image-wrapper {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.page-contact-hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-contact-methods, .page-contact-form-section, .page-contact-faq, .page-contact-cta {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-contact-methods {
  background-color: #fff;
}

.page-contact-section-title {
  font-size: 2.5em;
  color: #003366; /* Main color for section titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact-section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-contact-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

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

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

.page-contact-card-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-contact-card-description {
  color: #666;
  margin-bottom: 25px;
}

.page-contact-button {
  display: inline-block;
  background-color: #FFCC00; /* Accent color for buttons */
  color: #003366; /* Main color for button text */
  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;
  font-size: 1em;
}

.page-contact-button:hover {
  background-color: #e6b800;
  color: #002244;
}

.page-contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}

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

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

.page-contact-input, .page-contact-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  color: #333;
  box-sizing: border-box;
}

.page-contact-input:focus, .page-contact-textarea:focus {
  border-color: #FFCC00;
  outline: none;
  box-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
}

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

.page-contact-submit-button {
  width: 100%;
  background-color: #003366; /* Main color for submit button */
  color: #fff;
  padding: 15px 20px;
  border-radius: 5px;
  border: none;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-contact-submit-button:hover {
  background-color: #002244;
}

.page-contact-faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-contact-faq-question {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-contact-faq-answer {
  color: #555;
}

.page-contact-inline-link {
  color: #003366;
  text-decoration: underline;
}

.page-contact-inline-link:hover {
  color: #FFCC00;
}

.page-contact-cta {
  background: linear-gradient(135deg, #003366, #002244);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-contact-cta .page-contact-section-title {
  color: #FFCC00;
}

.page-contact-cta .page-contact-section-description {
  color: #eee;
}

.page-contact-cta-button {
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 35px;
  font-size: 1.2em;
  border-radius: 8px;
}

.page-contact-cta-button:hover {
  background-color: #e6b800;
  color: #002244;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact-title {
    font-size: 2.5em;
  }
  .page-contact-subtitle {
    font-size: 1em;
  }
  .page-contact-section-title {
    font-size: 2em;
  }
  .page-contact-grid {
    grid-template-columns: 1fr;
  }
  .page-contact-card {
    padding: 25px;
  }
  .page-contact-form {
    padding: 30px;
  }
  .page-contact-button, .page-contact-submit-button, .page-contact-cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-contact-hero, .page-contact-methods, .page-contact-form-section, .page-contact-faq, .page-contact-cta {
    padding: 40px 0;
  }
  .page-contact-title {
    font-size: 2em;
  }
  .page-contact-section-title {
    font-size: 1.8em;
  }
  .page-contact-card-title {
    font-size: 1.5em;
  }
  .page-contact-form {
    padding: 20px;
  }
}