/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A1931; /* Main dark blue background */
}

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

.page-contact__hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #2a3d5b 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary gold for title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-contact__hero-description {
  font-size: 1.2em;
  color: #B0B0B0; /* Slightly lighter gray for description */
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-contact__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold background for CTA */
  color: #0A1931; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  padding-top: 80px;
  font-weight: bold;
}

.page-contact__contact-methods {
  padding: 60px 0;
  background-color: #1a2a47; /* Slightly lighter dark blue */
}

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

.page-contact__method-card {
  background-color: #0A1931; /* Main dark blue for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-contact__method-card:hover {
  transform: translateY(-10px);
}

.page-contact__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-contact__method-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for method titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact__method-text {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-contact__method-link {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__method-link:hover {
  color: #e6c200; /* Slightly darker gold on hover */
  text-decoration: underline;
}

.page-contact__social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.page-contact__social-icon img {
  width: 30px;
  height: 30px;
  filter: grayscale(100%) brightness(1.5) invert(1) drop-shadow(0 0 5px #FFD700); /* White/gold tint for social icons */
  transition: filter 0.3s ease;
}

.page-contact__social-icon:hover img {
  filter: grayscale(0%) brightness(1) invert(0) drop-shadow(0 0 8px #FFD700); /* Color on hover */
}

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

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

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #1a2a47; /* Slightly lighter dark blue for form background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

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

.page-contact__form-label {
  display: block;
  font-size: 1.1em;
  color: #FFD700; /* Gold for labels */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #FFD700; /* Gold border */
  border-radius: 5px;
  background-color: #0A1931; /* Dark blue input background */
  color: #E0E0E0; /* Light text color */
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: #888;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #e6c200; /* Darker gold on focus */
  outline: none;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

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

.page-contact__submit-button {
  display: block;
  width: 100%;
  background-color: #FFD700; /* Gold for submit button */
  color: #0A1931; /* Dark blue text */
  padding: 18px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__submit-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-contact__explore-iwin {
  background-color: #1a2a47;
  padding: 80px 0;
  text-align: center;
}

.page-contact__explore-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-contact__explore-text {
  max-width: 800px;
}

.page-contact__explore-text h2 {
  margin-bottom: 20px;
}

.page-contact__explore-text p {
  font-size: 1.1em;
  color: #B0B0B0;
  line-height: 1.6;
}

.page-contact__explore-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-contact__explore-button {
  margin-top: 20px;
}

.page-contact__highlight {
  color: #FFD700;
}

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

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

  .page-contact__section-title {
    font-size: 2em;
    padding-top: 60px;
  }

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

  .page-contact__form {
    padding: 30px;
  }

  .page-contact__form-label {
    font-size: 1em;
  }

  .page-contact__form-input,
  .page-contact__form-textarea {
    padding: 12px;
  }

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

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

  .page-contact__hero-section {
    padding: 80px 0;
  }

  .page-contact__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }

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

  .page-contact__method-icon {
    width: 50px;
    height: 50px;
  }

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

  .page-contact__form {
    padding: 20px;
  }
}