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

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

.page-contact__hero {
  background: linear-gradient(135deg, #0A2463, #1A3E8A);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.2;
  max-height: 100%;
  width: auto;
  z-index: 0;
}

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

.page-contact__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-contact__section {
  padding: 60px 0;
  text-align: center;
}

.page-contact__section:nth-child(even) {
  background-color: #eef2f6;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #0A2463;
  margin-bottom: 20px;
  position: relative;
}

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

.page-contact__description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.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: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-contact__method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-contact__method-card h3 {
  color: #0A2463;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-contact__method-card p {
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-contact__icon {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  display: inline-block;
  /* Placeholder for actual icon styles */
}
.page-contact__icon--chat::before { content: '💬'; } /* Example for icon */
.page-contact__icon--email::before { content: '✉️'; }
.page-contact__icon--phone::before { content: '📞'; }
.page-contact__icon--facebook::before { content: '🌐'; }
.page-contact__icon--twitter::before { content: '🌐'; }
.page-contact__icon--telegram::before { content: '🌐'; }
.page-contact__icon--youtube::before { content: '🌐'; }

.page-contact__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

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

.page-contact__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

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

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

.page-contact__form-section {
  background-color: #f8f8f8;
}

.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.08);
  text-align: left;
}

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

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

.page-contact__form-group input[type="text"],
.page-contact__form-group input[type="email"],
.page-contact__form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.page-contact__form-group input:focus,
.page-contact__form-group textarea:focus {
  border-color: #FFD700;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

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

.page-contact__btn--submit {
  width: 100%;
  background-color: #0A2463;
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 1.2em;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.page-contact__btn--submit:hover {
  background-color: #1A3E8A;
}

.page-contact__social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.page-contact__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #0A2463;
  color: #fff;
  font-size: 2em;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__social-icon:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-5px);
}

.page-contact__address {
  font-style: normal;
  margin-top: 30px;
  font-size: 1.1em;
  color: #555;
}

.page-contact__address strong {
  color: #0A2463;
  font-size: 1.2em;
}

.page-contact__map-container {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-contact__map-image {
  width: 100%;
  height: auto;
  display: block;
}

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

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

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

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

  .page-contact__form {
    padding: 30px;
  }

  .page-contact__hero-image {
    position: relative;
    width: 80%;
    margin: 20px auto 0;
    opacity: 0.5;
  }
}

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

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

  .page-contact__form {
    padding: 20px;
  }

  .page-contact__social-icons {
    flex-wrap: wrap;
    gap: 15px;
  }

  .page-contact__social-icon {
    width: 45px;
    height: 45px;
    font-size: 1.8em;
  }
}