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

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

.page-contact__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary gold for titles */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__hero-description {
  font-size: 1.2em;
  color: #CCCCCC;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  padding-top: 60px;
}

.page-contact__section-subtitle {
  font-size: 1.1em;
  color: #CCCCCC;
  text-align: center;
  max-width: 800px;
  margin: -30px auto 50px;
  line-height: 1.6;
}

.page-contact__contact-methods {
  padding: 80px 0;
  background-color: #0A192F;
}

.page-contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-contact__card {
  background-color: #1a2a43;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-contact__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.page-contact__card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-contact__card-description {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-contact__card-info {
  font-size: 1.1em;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-contact__form-section {
  padding: 80px 0;
  background-color: #12233b;
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #1a2a43;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 16px 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;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #334d70;
  border-radius: 8px;
  background-color: #0A192F;
  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: #778899;
}

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

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

.page-contact__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  text-align: center;
  border: none;
}

.page-contact__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

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

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

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

.page-contact__cta {
  background-color: #0A192F;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid #334d70;
}

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

.page-contact__cta-description {
  font-size: 1.2em;
  color: #CCCCCC;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

/* Responsive Design */
@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__grid {
    grid-template-columns: 1fr;
  }

  .page-contact__form {
    padding: 30px;
  }

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

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

  .page-contact__btn--primary,
  .page-contact__btn--secondary {
    width: 80%;
    max-width: 300px;
  }
}

@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__card-title {
    font-size: 1.5em;
  }

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