/* style/contact.css */
.page-contact {
  font-family: Arial, sans-serif;
  color: #e5dfd3; /* Lighter text for dark background */
  background-color: #1A202C;
}

.page-contact__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #303747 100%);
  color: #e5dfd3;
  gap: 30px;
}

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

.page-contact__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700;
  line-height: 1.2;
}

.page-contact__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e5dfd3;
}

.page-contact .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-contact__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

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

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

.page-contact__methods {
  padding: 80px 20px;
  text-align: center;
  background-color: #2c3444;
}

.page-contact__methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-contact__method-card {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-contact__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-contact__method-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-contact__method-description {
  font-size: 1em;
  color: #ccc;
  margin-bottom: 20px;
}

.page-contact__method-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-contact__method-link:hover {
  color: #e0b000;
  border-color: #e0b000;
}

.page-contact__form-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 80px 20px;
  background-color: #1A202C;
  color: #e5dfd3;
}

.page-contact__form-content {
  max-width: 600px;
  text-align: center;
}

.page-contact__form-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-contact__form-description {
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 40px;
}

.page-contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  width: 100%;
}

.page-contact__form-group {
  display: flex;
  flex-direction: column;
}

.page-contact__form-label {
  font-size: 1em;
  margin-bottom: 8px;
  color: #FFD700;
  font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
  padding: 12px 15px;
  border: 1px solid #FFD700;
  border-radius: 8px;
  background-color: #2c3444;
  color: #e5dfd3;
  font-size: 1em;
  width: 100%;
  box-sizing: border-box;
}

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

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

.page-contact__submit-button {
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 25px;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: center;
  width: fit-content;
}

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

.page-contact__form-image-wrapper {
  max-width: 500px;
  width: 100%;
}

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

.page-contact__promotion-cta {
  background-color: #2c3444;
  padding: 80px 20px;
  text-align: center;
  color: #e5dfd3;
}

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

.page-contact__promotion-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #ccc;
}

.page-contact__promotion-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px 20px 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-contact__promotion-button--secondary {
  background-color: #1A202C;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-contact__promotion-button--secondary:hover {
  background-color: #3e4a5c;
  border-color: #e0b000;
  color: #e0b000;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-contact__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 100px 40px;
  }

  .page-contact__hero-content {
    max-width: 50%;
  }

  .page-contact__hero-image-wrapper {
    max-width: 45%;
  }

  .page-contact__title {
    font-size: 3.5em;
  }

  .page-contact__form-section {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 100px 40px;
  }

  .page-contact__form-content {
    max-width: 45%;
    text-align: left;
  }

  .page-contact__form-image-wrapper {
    max-width: 45%;
  }

  .page-contact__submit-button {
    align-self: flex-start;
  }
}

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

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

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

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

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

  .page-contact__promotion-button {
    width: calc(100% - 20px);
    margin: 0 10px 15px 10px;
  }
}