.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 {
  background: linear-gradient(135deg, #0A246A, #1a4290);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-contact__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
  position: relative;
  z-index: 1;
}

.page-contact__btn--primary {
  background-color: #FFD700;
  color: #0A246A;
}

.page-contact__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #0A246A;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  position: relative;
}

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

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

.page-contact__methods {
  padding: 60px 0;
  background-color: #fff;
  position: relative;
}

.page-contact__methods-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: auto;
  opacity: 0.1;
  z-index: 0;
}

.page-contact__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.page-contact__method-card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 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 20px rgba(0, 0, 0, 0.1);
}

.page-contact__icon {
  font-size: 3em;
  color: #0A246A;
  margin-bottom: 15px;
  display: block;
}

/* Placeholder icons - replace with actual icon font if available */
.page-contact__icon--email::before { content: '✉'; }
.page-contact__icon--phone::before { content: '📞'; }
.page-contact__icon--chat::before { content: '💬'; }
.page-contact__icon--social::before { content: '🌐'; }

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

.page-contact__card-text {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.page-contact__btn--secondary {
  background-color: #0A246A;
  color: #fff;
}

.page-contact__btn--secondary:hover {
  background-color: #1a4290;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-contact__social-links a {
  color: #0A246A;
  font-size: 1.8em;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.page-contact__social-links a:hover {
  color: #FFD700;
}

/* Placeholder social icons */
.page-contact__social-icon--facebook::before { content: 'f'; font-family: 'Font Awesome 5 Brands'; }
.page-contact__social-icon--telegram::before { content: 't'; font-family: 'Font Awesome 5 Brands'; }

.page-contact__form-section {
  padding: 60px 0 80px;
  background-color: #f4f7f6;
  position: relative;
}

.page-contact__form-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: auto;
  opacity: 0.1;
  z-index: 0;
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  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: #FFD700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
  outline: none;
}

.page-contact__form-textarea {
  resize: vertical;
}

.page-contact__btn--submit {
  width: 100%;
  background-color: #FFD700;
  color: #0A246A;
  padding: 15px;
  font-size: 1.1em;
  border-radius: 5px;
}

.page-contact__btn--submit:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-contact__cta {
  background: linear-gradient(90deg, #0A246A, #1a4290);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__hero {
    padding: 80px 0;
  }

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

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

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

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

  .page-contact__form {
    padding: 30px;
  }

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

  .page-contact__methods-image,
  .page-contact__form-image {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-contact__hero {
    padding: 60px 0;
  }

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

  .page-contact__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

  .page-contact__method-card {
    padding: 20px;
  }

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

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