/* style/contact.css */
.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, #0A2463 0%, #304E8A 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E3A81D;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.page-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .page-contact__grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

.page-contact__section-title {
  font-size: 2.2em;
  color: #0A2463;
  margin-bottom: 30px;
  border-bottom: 3px solid #E3A81D;
  padding-bottom: 10px;
  display: inline-block;
}

.page-contact__form {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.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;
  transition: border-color 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #E3A81D;
  outline: none;
}

.page-contact__submit-button {
  background-color: #E3A81D;
  color: #0A2463;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-contact__info-wrapper {
  background-color: #0A2463;
  color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-contact__info-wrapper .page-contact__section-title {
  color: #E3A81D;
  border-bottom-color: #fff;
}

.page-contact__contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.page-contact__icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  filter: invert(80%) sepia(30%) saturate(600%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Adjust for gold tint */
}

.page-contact__contact-text {
  font-size: 1.1em;
  margin: 0;
}

.page-contact__link {
  color: #E3A81D;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-contact__live-chat-button {
  background-color: #E3A81D;
  color: #0A2463;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  margin-left: 10px;
  white-space: nowrap;
}

.page-contact__live-chat-button:hover {
  background-color: #d6971a;
  color: #0A2463;
  text-decoration: none;
}

.page-contact__social-media {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.page-contact__social-title {
  font-size: 1.4em;
  color: #E3A81D;
  margin-bottom: 15px;
}

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

.page-contact__social-icon {
  width: 35px;
  height: 35px;
  filter: invert(80%) sepia(30%) saturate(600%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Adjust for gold tint */
  transition: transform 0.3s ease;
}

.page-contact__social-icon:hover {
  transform: scale(1.1);
}

.page-contact__cta-section {
  background-color: #f4f7f6;
  padding: 80px 0;
  text-align: center;
}

.page-contact__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0A2463;
  color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-contact__cta-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__cta-title {
  font-size: 2.5em;
  color: #E3A81D;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-contact__cta-description {
  font-size: 1.1em;
  max-width: 700px;
  margin-bottom: 30px;
}

.page-contact__cta-button {
  background-color: #E3A81D;
  color: #0A2463;
  padding: 18px 40px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__cta-button:hover {
  background-color: #d6971a;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-contact__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__cta-image {
    max-width: 200px;
  }
}