/* style/contact.css */
.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

/* Hero Section */
.page-contact__hero-section {
  background-color: #0A2463;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  background-image: url('[GALLERY:bg:abstract,geometric,blue,gold,nohu65]');
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-contact__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 36, 99, 0.7);
  z-index: 1;
}

.page-contact__hero-title,
.page-contact__hero-description {
  position: relative;
  z-index: 2;
}

.page-contact__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
}

.page-contact__highlight {
  color: #ffffff;
}

.page-contact__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Info Section */
.page-contact__info-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-contact__contact-card {
  background-color: #f0f2f5;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-contact__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
}

.page-contact__card-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-contact__card-text {
  color: #555;
  margin-bottom: 15px;
}

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

.page-contact__contact-link:hover {
  color: #e6c200;
}

/* Form Section */
.page-contact__form-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.page-contact__form-title {
  font-size: 2.8em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
}

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

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.page-contact__label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #0A2463;
}

.page-contact__input,
.page-contact__textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.page-contact__input:focus,
.page-contact__textarea:focus {
  border-color: #FFD700;
  outline: none;
}

.page-contact__textarea {
  resize: vertical;
}

.page-contact__submit-btn {
  display: block;
  width: 100%;
  padding: 15px 25px;
  background-color: #FFD700;
  color: #0A2463;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__submit-btn:hover {
  background-color: #e6c200;
  color: #0A2463;
}

/* CTA Section */
.page-contact__cta-section {
  background-color: #0A2463;
  padding: 70px 0;
  text-align: center;
  color: #ffffff;
}

.page-contact__cta-content {
  max-width: 900px;
}

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

.page-contact__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f2f5;
}

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

.page-contact__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-contact__btn--primary:hover {
  background-color: #e6c200;
  color: #0A2463;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

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

.page-contact__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__form-title,
  .page-contact__cta-title {
    font-size: 2.2em;
  }
  .page-contact__grid {
    grid-template-columns: 1fr;
  }
  .page-contact__contact-form {
    padding: 30px;
  }
  .page-contact__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__form-title,
  .page-contact__cta-title {
    font-size: 1.8em;
  }
  .page-contact__contact-card {
    padding: 20px;
  }
  .page-contact__submit-btn {
    font-size: 1em;
  }
  .page-contact__btn {
    font-size: 1em;
    padding: 12px 25px;
  }
}