/* style/contact.css */

.page-contact {
  font-family: Arial, sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  line-height: 1.6;
}

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

/* Hero Section */
.page-contact__hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #1A2E44;
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.page-contact__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 46, 68, 0.8), rgba(255, 215, 0, 0.3));
  z-index: 2;
}

.page-contact__hero-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  max-width: 800px;
}

.page-contact__title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFD700;
  font-weight: bold;
}

.page-contact__subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
}

/* General Section Styling */
.page-contact__info-section, .page-contact__form-section, .page-contact__cta-section {
  padding: 60px 0;
  background-color: #1A2E44;
}

.page-contact__heading {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

/* Contact Methods */
.page-contact__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-contact__method-card {
  background-color: #2a415a; /* Slightly lighter dark blue */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  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.4);
}

.page-contact__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-contact__method-text {
  color: #B0B0B0;
  margin-bottom: 20px;
}

.page-contact__social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.page-contact__social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.page-contact__social-icon:hover {
  background-color: #e6c200;
}

.page-contact__social-icon img {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

/* Form Section */
.page-contact__form-section {
  background-color: #132435; /* Even darker background for contrast */
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #2a415a;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #4a6a8c;
  border-radius: 5px;
  background-color: #1A2E44;
  color: #E0E0E0;
  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: #888;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFD700;
  outline: none;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

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

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

.page-contact__button--primary {
  background-color: #FFD700;
  color: #1A2E44;
}

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

.page-contact__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-contact__button--secondary:hover {
  background-color: #FFD700;
  color: #1A2E44;
  transform: translateY(-2px);
}

.page-contact__button--submit {
  width: 100%;
  padding: 15px;
  background-color: #FFD700;
  color: #1A2E44;
  font-size: 1.2em;
  margin-top: 15px;
}

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

/* CTA Section */
.page-contact__cta-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(90deg, #1A2E44, #3a5a7a);
}

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

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

  .page-contact__subtitle {
    font-size: 1em;
  }

  .page-contact__heading {
    font-size: 2em;
  }

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

  .page-contact__method-card {
    padding: 25px;
  }

  .page-contact__form {
    padding: 30px;
  }

  .page-contact__button {
    padding: 10px 20px;
  }

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

  .page-contact__button--submit {
    font-size: 1.1em;
  }
}

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

  .page-contact__subtitle {
    font-size: 0.9em;
  }

  .page-contact__heading {
    font-size: 1.8em;
  }

  .page-contact__hero {
    height: 300px;
  }

  .page-contact__info-section, .page-contact__form-section, .page-contact__cta-section {
    padding: 40px 0;
  }

  .page-contact__form {
    padding: 20px;
  }

  .page-contact__cta-buttons {
    gap: 15px;
  }
}