/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A1A2E; /* Main dark background */
  line-height: 1.6;
}

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

.page-contact__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A1A2E 0%, #301934 100%); /* Subtle gradient */
  position: relative;
  overflow: hidden;
}

.page-contact__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-contact__hero-title {
  font-size: 3.2em;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__hero-description {
  font-size: 1.2em;
  color: #CCCCCC;
  margin-bottom: 40px;
}

.page-contact__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-contact__btn--primary {
  background-color: #E94560;
  color: #FFFFFF;
  border: 2px solid #E94560;
}

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

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

.page-contact__btn--secondary:hover {
  background-color: #E94560;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-contact__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 600px;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-contact__methods {
  padding: 80px 0;
  background-color: #24243D;
}

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

.page-contact__method-card {
  background-color: #1A1A2E;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid #30304D;
}

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

.page-contact__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(100%) saturate(0%) brightness(150%) hue-rotate(180deg);
}

.page-contact__method-title {
  font-size: 1.8em;
  color: #E94560;
  margin-bottom: 15px;
}

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

.page-contact__btn--link {
  background-color: #E94560;
  color: #FFFFFF;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 6px;
  border: none;
}

.page-contact__btn--link:hover {
  background-color: #FF6B81;
}

.page-contact__form-section {
  padding: 80px 0;
  background-color: #1A1A2E;
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #24243D;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid #30304D;
}

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

.page-contact__form-label {
  display: block;
  margin-bottom: 10px;
  color: #E0E0E0;
  font-weight: bold;
  font-size: 1.1em;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #44445A;
  border-radius: 8px;
  background-color: #1A1A2E;
  color: #E0E0E0;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

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

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

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

.page-contact__btn--submit {
  width: 100%;
  padding: 15px;
  background-color: #E94560;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__btn--submit:hover {
  background-color: #FF6B81;
  transform: translateY(-2px);
}

.page-contact__cta {
  padding: 100px 20px;
  background: linear-gradient(45deg, #E94560 0%, #FF6B81 100%); /* Vibrant gradient for CTA */
  text-align: center;
  color: #FFFFFF;
}

.page-contact__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-contact__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
  border-radius: 10px;
}

.text-highlight {
  color: #E94560; /* Highlight color for pkwin */
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__hero {
    flex-direction: column;
    padding: 60px 15px;
  }

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

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

  .page-contact__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-contact__section-description {
    font-size: 1em;
    margin-bottom: 40px;
  }

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

  .page-contact__form {
    padding: 30px;
  }

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

  .page-contact__cta-description {
    font-size: 1.1em;
  }

  .page-contact__btn--large {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

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

  .page-contact__hero-buttons {
    width: 100%;
  }

  .page-contact__btn {
    width: 100%;
  }

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

  .page-contact__form {
    padding: 20px;
  }

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