/* style/contact.css */

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

.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-hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.page-contact-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-contact-highlight {
  color: #FFCC00;
}

.page-contact-info, .page-contact-form-section, .page-contact-cta-section {
  padding: 60px 0;
}

.page-contact-info {
  background-color: #fff;
  text-align: center;
}

.page-contact-heading {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

.page-contact-method-card {
  background-color: #f2f7fc; /* Light blue background */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  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.15);
}

.page-contact-method-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 51, 102, 0.2));
}

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

.page-contact-method-text {
  color: #666;
  margin-bottom: 25px;
}

.page-contact-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.page-contact-btn-primary {
  background-color: #FFCC00;
  color: #003366; /* Dark text on light background */
  border: 2px solid #FFCC00;
}

.page-contact-btn-primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-2px);
}

.page-contact-btn-secondary {
  background-color: #003366;
  color: #fff;
  border: 2px solid #003366;
  margin-left: 15px;
}

.page-contact-btn-secondary:hover {
  background-color: #002244;
  border-color: #002244;
  transform: translateY(-2px);
}

.page-contact-form-section {
  background-color: #f2f7fc;
  text-align: center;
}

.page-contact-form {
  max-width: 700px;
  margin: 40px auto 0;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
}

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

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

.page-contact-input, .page-contact-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-contact-submit-btn {
  background-color: #003366;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: auto;
  min-width: 180px;
  display: block;
  margin: 30px auto 0;
}

.page-contact-submit-btn:hover {
  background-color: #002244;
  transform: translateY(-2px);
}

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

.page-contact-cta-content {
  max-width: 900px;
}

.page-contact-cta-title {
  color: #FFCC00;
  font-size: 3em;
  margin-bottom: 20px;
}

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

.page-contact-cta-buttons .page-contact-btn {
  margin: 0 10px;
  min-width: 200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact-title {
    font-size: 2.5em;
  }
  .page-contact-subtitle {
    font-size: 1.2em;
  }
  .page-contact-heading {
    font-size: 2em;
  }
  .page-contact-description {
    font-size: 1em;
  }
  .page-contact-methods-grid {
    grid-template-columns: 1fr;
  }
  .page-contact-form {
    padding: 30px;
  }
  .page-contact-cta-title {
    font-size: 2.2em;
  }
  .page-contact-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact-cta-buttons .page-contact-btn {
    margin: 0;
  }
  .page-contact-btn-secondary {
    margin-left: 0; /* Remove margin for stacked buttons */
  }
}

@media (max-width: 480px) {
  .page-contact-title {
    font-size: 2em;
  }
  .page-contact-subtitle {
    font-size: 1em;
  }
  .page-contact-hero, .page-contact-info, .page-contact-form-section, .page-contact-cta-section {
    padding: 40px 0;
  }
  .page-contact-heading {
    font-size: 1.8em;
  }
  .page-contact-method-card {
    padding: 20px;
  }
  .page-contact-form {
    padding: 20px;
  }
  .page-contact-submit-btn {
    min-width: unset;
    width: 100%;
  }
  .page-contact-cta-title {
    font-size: 1.8em;
  }
  .page-contact-cta-description {
    font-size: 1em;
  }
}