.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f7f6;
}

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

.page-contact__hero-section {
  background: linear-gradient(135deg, #0A2E59 0%, #305A8D 100%); /* Darker blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,geometric,dark_blue]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-contact__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFA500;
  position: relative;
  z-index: 1;
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-contact__section-title {
  font-size: 2.2em;
  color: #0A2E59;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-contact__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FFA500;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-contact__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
}

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

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

.page-contact__btn--secondary {
  background-color: #0A2E59;
  color: #fff;
  border: 2px solid #0A2E59;
}

.page-contact__btn--secondary:hover {
  background-color: #08244a;
  border-color: #08244a;
  transform: translateY(-2px);
}

.page-contact__contact-methods {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-contact__method-card {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  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__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-contact__method-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(255, 165, 0, 0.3));
}

.page-contact__method-title {
  font-size: 1.5em;
  color: #0A2E59;
  margin-bottom: 15px;
}

.page-contact__method-text {
  color: #555;
  margin-bottom: 25px;
}

.page-contact__contact-form {
  padding: 60px 0;
  background-color: #f4f7f6;
}

.page-contact__form-intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
  color: #555;
}

.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;
  margin-bottom: 8px;
  font-weight: bold;
  color: #0A2E59;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px;
  border: 1px solid #ddd;
  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: #FFA500;
  box-shadow: 0 0 8px rgba(255, 165, 0, 0.3);
  outline: none;
}

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

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

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

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

.page-contact__social-icon-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.page-contact__social-icon-link:hover {
  transform: translateY(-5px) scale(1.1);
}

.page-contact__social-icon {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}

.page-contact__cta-section {
  background: linear-gradient(to right, #0A2E59, #305A8D);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

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

.page-contact__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-description,
  .page-contact__form-intro,
  .page-contact__social-intro,
  .page-contact__cta-description {
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__methods-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__method-card {
    padding: 25px;
  }
  .page-contact__form {
    padding: 25px;
  }
  .page-contact__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__section-title {
    font-size: 1.6em;
  }
  .page-contact__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-contact__method-icon {
    width: 60px;
    height: 60px;
  }
  .page-contact__method-title {
    font-size: 1.3em;
  }
  .page-contact__social-icon {
    width: 40px;
    height: 40px;
  }
}