/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A244A; /* Main primary dark blue background */
}

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

/* Hero Section */
.page-contact__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A244A 0%, #1A3C6B 100%); /* Dark blue gradient */
  color: #FFFFFF; /* White text for contrast */
  position: relative;
  overflow: hidden;
}

.page-contact__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-contact__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-contact__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-contact__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
  line-height: 1.2;
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-contact .highlight {
  color: #FFD700;
  font-weight: bold;
}

/* General Section Styling */
.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__section-subtitle {
  font-size: 1.1em;
  color: #B0B0B0; /* Lighter grey for subtitles */
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-contact__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  margin: 10px 10px 0 0;
}

.page-contact__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A244A; /* Dark blue text on gold */
}

.page-contact__btn--primary:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-contact__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700; /* Gold border */
}

.page-contact__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A244A; /* Dark blue text on gold */
  transform: translateY(-2px);
}

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

.page-contact__inline-link:hover {
  color: #E6C200;
  text-decoration: underline;
}

/* Channels Section */
.page-contact__channels {
  padding: 80px 0;
  background-color: #0A244A;
}

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

.page-contact__channel-item {
  background-color: #1A3C6B; /* Darker blue for channel items */
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__channel-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-contact__channel-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5)); /* Gold glow for icons */
}

.page-contact__channel-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for channel titles */
  margin-bottom: 15px;
}

.page-contact__channel-text {
  font-size: 1em;
  line-height: 1.6;
  color: #C0C0C0; /* Light grey for channel text */
  margin-bottom: 20px;
}

.page-contact__email-address, .page-contact__phone-number {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFFFFF;
}

/* Contact Form Section */
.page-contact__form-section {
  padding: 80px 0;
  background-color: #0F2D52; /* Slightly lighter dark blue for form section */
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 50px auto 0 auto;
  background-color: #1A3C6B; /* Darker blue for form background */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-contact__form-label {
  display: block;
  font-size: 1.1em;
  color: #FFD700; /* Gold for labels */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid #546680; /* Muted blue border */
  background-color: #0A244A; /* Primary dark blue for input background */
  color: #FFFFFF; /* White text in inputs */
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: #8090A8; /* Lighter grey for placeholders */
}

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

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

/* CTA Section */
.page-contact__cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1A3C6B 0%, #0A244A 100%); /* Dark blue gradient */
  text-align: center;
}

.page-contact__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__cta-description {
  font-size: 1.2em;
  color: #E0E0E0; /* Light grey for CTA description */
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

  .page-contact__channel-item {
    padding: 30px;
  }

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

  .page-contact__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 5px;
  }

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

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

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

  .page-contact__btn {
    width: 100%;
    max-width: 280px;
    margin: 10px 0;
  }
}