/* style/contact.css */
.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark background */
  background-color: #1A2E44; /* Primary brand color as background */
}

.page-contact__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A2E44 0%, #3a5c80 100%); /* Gradient with primary color */
  color: #fff;
  gap: 30px;
}

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

.page-contact__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700; /* Secondary brand color for emphasis */
}

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

.page-contact__hero-image-wrapper {
  width: 100%;
  max-width: 600px;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-contact__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Secondary brand color */
  text-align: center;
  margin-bottom: 20px;
}

.page-contact__section-description {
  font-size: 1.1em;
  color: #e0e0e0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-contact__info {
  padding: 60px 20px;
  background-color: #1A2E44;
}

.page-contact__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-contact__info-card {
  background-color: #2a435d; /* Slightly lighter shade of primary */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-contact__info-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

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

.page-contact__info-card p {
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-contact__form-section {
  padding: 60px 20px;
  background-color: #1A2E44;
}

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

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

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

.page-contact__form-group input,
.page-contact__form-group textarea {
  width: calc(100% - 20px);
  padding: 12px;
  border: 1px solid #4a6a8a;
  border-radius: 5px;
  background-color: #3e5a7a;
  color: #fff;
  font-size: 1em;
}

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

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

.page-contact__cta {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #3a5c80 0%, #1A2E44 100%);
  color: #fff;
}

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

.page-contact__cta-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

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

/* Buttons */
.page-contact__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-contact__btn--primary {
  background-color: #FFD700; /* Secondary brand color */
  color: #1A2E44; /* Primary brand color for text */
  border: 2px solid #FFD700;
}

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__hero {
    flex-direction: column;
    padding: 40px 15px;
  }

  .page-contact__hero-title {
    font-size: 2.2em;
  }

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

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

  .page-contact__form {
    padding: 30px;
  }

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

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__hero-description,
  .page-contact__section-description,
  .page-contact__cta-description {
    font-size: 1em;
  }
  .page-contact__btn {
    width: 100%;
    box-sizing: border-box;
  }
}