/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #0F1E2E; /* A slightly lighter dark background for contrast */
}

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

.page-contact__hero {
  background: linear-gradient(135deg, #1A2E44, #0F1E2E);
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
}

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

.page-contact__subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  color: #CCCCCC; /* Lighter grey for subtitle */
}

.page-contact__section {
  padding: 60px 0;
  text-align: center;
}

.page-contact__section:nth-of-type(even) {
  background-color: #1A2E44; /* Main brand color for alternating sections */
}

.page-contact__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #FFD700; /* Gold for section titles */
}

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

.page-contact__method-card {
  background-color: #2A3B4C; /* Darker card background */
  padding: 30px;
  border-radius: 10px;
  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 #FFD700);
}

.page-contact__method-card h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-contact__method-card p {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.5;
  margin-bottom: 25px;
}

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

.page-contact__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2E44; /* Dark text for gold button */
  border: none;
  cursor: pointer;
}

.page-contact__btn--primary:hover {
  background-color: #E0B800; /* Slightly darker gold on hover */
}

.page-contact__btn--secondary {
  background-color: #1A2E44; /* Dark blue button */
  color: #FFD700; /* Gold text for dark blue button */
  border: 2px solid #FFD700;
}

.page-contact__btn--secondary:hover {
  background-color: #0F1E2E; /* Even darker blue on hover */
  color: #FFD700;
  border-color: #FFD700;
}

.page-contact__form-description {
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 30px;
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #2A3B4C;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
}

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

.page-contact__form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #FFD700;
}

.page-contact__form-group input[type="text"],
.page-contact__form-group input[type="email"],
.page-contact__form-group textarea {
  width: calc(100% - 20px);
  padding: 12px;
  border: 1px solid #5f6d7c; /* Light grey border */
  border-radius: 5px;
  background-color: #0F1E2E; /* Dark input background */
  color: #E0E0E0; /* Light text color */
  font-size: 1em;
}

.page-contact__form-group input::placeholder,
.page-contact__form-group textarea::placeholder {
  color: #888;
}

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

.page-contact__cta {
  background-color: #1A2E44;
  padding: 80px 0;
  color: #E0E0E0;
  position: relative;
  overflow: hidden;
}

.page-contact__cta-image {
  width: 150px;
  height: auto;
  margin-bottom: 30px;
  animation: page-contact__pulse 2s infinite;
}

@keyframes page-contact__pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

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

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

.page-contact__btn--cta {
  background-color: #FFD700;
  color: #1A2E44;
  font-size: 1.3em;
  padding: 15px 35px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-contact__btn--cta:hover {
  background-color: #E0B800;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__title {
    font-size: 2.5em;
  }
  .page-contact__subtitle,
  .page-contact__cta-description {
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__grid {
    grid-template-columns: 1fr;
  }
  .page-contact__form {
    padding: 30px;
  }
  .page-contact__cta-title {
    font-size: 2em;
  }
  .page-contact__btn--cta {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero,
  .page-contact__section,
  .page-contact__cta {
    padding: 40px 0;
  }
  .page-contact__title {
    font-size: 2em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__method-card h3 {
    font-size: 1.5em;
  }
  .page-contact__form {
    padding: 20px;
  }
  .page-contact__cta-title {
    font-size: 1.8em;
  }
}