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

.page-contact__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 50%;
  animation: page-contact__bubble-float 15s ease-in-out infinite alternate;
}

.page-contact__hero::after {
  content: '';
  position: absolute;
  bottom: -70px;
  right: -70px;
  width: 250px;
  height: 250px;
  background: rgba(255, 193, 7, 0.15);
  border-radius: 50%;
  animation: page-contact__bubble-float 18s ease-in-out infinite reverse alternate;
}

@keyframes page-contact__bubble-float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, 30px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.page-contact__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #ffc107; /* High contrast for title */
}

.page-contact__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0f2f7;
}

.page-contact__hero-image-wrapper {
  margin-top: 40px;
}

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

.page-contact__methods {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.page-contact__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  color: #0056b3;
  font-weight: bold;
}

.page-contact__section-title--light {
  color: #fff;
}

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

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

.page-contact__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-contact__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-contact__card-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-contact__card-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 25px;
}

.page-contact__keyword {
  font-weight: bold;
  color: #0056b3;
}

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

.page-contact__button--primary {
  background-color: #007bff;
  color: #fff;
}

.page-contact__button--primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
}

.page-contact__button--secondary {
  background-color: #ffc107;
  color: #333;
}

.page-contact__button--secondary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-contact__button--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-contact__cta {
  background: linear-gradient(90deg, #007bff, #4da3ff);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.page-contact__cta-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0f2f7;
}

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

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

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

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

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

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

  .page-contact__button--large {
    width: 100%;
    max-width: 300px;
  }
}

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

  .page-contact__hero {
    padding: 60px 15px;
  }

  .page-contact__methods {
    padding: 40px 0;
  }

  .page-contact__cta {
    padding: 50px 15px;
  }

  .page-contact__card {
    padding: 20px;
  }

  .page-contact__card-title {
    font-size: 1.5em;
  }

  .page-contact__card-description {
    font-size: 1em;
  }
}