/* 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;
}

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

.page-contact__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-contact__subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #e0e0e0;
}

.page-contact__hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-contact__section-heading {
  font-size: 2.5em;
  color: #0056b3; /* Darker shade of primary for contrast */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-contact__section-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107; /* Auxiliary color */
  border-radius: 2px;
}

.page-contact__info-section {
  padding: 60px 0;
  background-color: #fff;
}

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

.page-contact__info-item {
  background-color: #f0f8ff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

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

.page-contact__info-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-contact__info-text {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 15px;
}

.page-contact__link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__link:hover {
  color: #0056b3;
  text-decoration: underline;
}

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

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

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  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__form-label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
  font-size: 1.1em;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
  outline: none;
}

.page-contact__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.page-contact__submit-button {
  display: block;
  width: 100%;
  padding: 15px 25px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact__submit-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-contact__cta-banner {
  background: linear-gradient(90deg, #007bff, #ffc107);
  border-radius: 10px;
  padding: 30px;
  margin-top: 60px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.page-contact__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.page-contact__cta-banner h3,
.page-contact__cta-banner p,
.page-contact__cta-banner a {
  position: relative;
  z-index: 1;
}

.page-contact__cta-title {
  font-size: 2.5em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-contact__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-contact__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: #ffc107; /* Auxiliary color */
  color: #0056b3; /* Darker primary for text contrast */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
  border: 2px solid #ffc107;
}

.page-contact__cta-button:hover {
  background-color: #e0a800;
  color: #003e80;
  transform: translateY(-3px) scale(1.02);
}

.page-contact__social-section {
  padding: 60px 0;
  background-color: #e9ecef;
  text-align: center;
}

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

.page-contact__social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.page-contact__social-icon-link {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-contact__social-icon-link:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-contact__social-icon {
  width: 35px;
  height: 35px;
  filter: grayscale(100%); /* Default to grayscale */
  transition: filter 0.3s ease;
}

.page-contact__social-icon-link:hover .page-contact__social-icon {
  filter: grayscale(0%); /* Color on hover */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-contact__title {
    font-size: 3em;
  }
  .page-contact__subtitle {
    font-size: 1.2em;
  }
  .page-contact__section-heading {
    font-size: 2em;
  }
  .page-contact__info-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-contact__cta-title {
    font-size: 2em;
  }
  .page-contact__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}

@media (max-width: 768px) {
  .page-contact__hero {
    padding: 60px 0 30px;
  }
  .page-contact__title {
    font-size: 2.5em;
  }
  .page-contact__subtitle {
    font-size: 1.1em;
  }
  .page-contact__info-section,
  .page-contact__form-section,
  .page-contact__social-section {
    padding: 40px 0;
  }
  .page-contact__form {
    padding: 30px;
  }
  .page-contact__form-input,
  .page-contact__form-textarea {
    width: calc(100% - 20px);
  }
  .page-contact__info-item {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .page-contact__title {
    font-size: 2em;
  }
  .page-contact__subtitle {
    font-size: 1em;
  }
  .page-contact__section-heading {
    font-size: 1.8em;
  }
  .page-contact__form {
    padding: 20px;
  }
  .page-contact__form-input,
  .page-contact__form-textarea {
    padding: 10px;
  }
  .page-contact__submit-button {
    font-size: 1.1em;
    padding: 12px 20px;
  }
  .page-contact__cta-title {
    font-size: 1.8em;
  }
  .page-contact__cta-text {
    font-size: 1em;
  }
  .page-contact__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-contact__social-icon-link {
    width: 50px;
    height: 50px;
  }
  .page-contact__social-icon {
    width: 30px;
    height: 30px;
  }
}