/* style/contact.css */
.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E5E5E5; /* Light text on dark background */
  background-color: #1A202C; /* Main background */
}

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

.page-contact__hero {
  background-color: #1A202C;
  color: #FFD700; /* Gold text for hero title */
  padding: 80px 0;
  text-align: center;
}

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

.page-contact__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  color: #CCCCCC;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-contact__section-subtitle {
  font-size: 1.1em;
  color: #CCCCCC;
  text-align: center;
  margin-bottom: 40px;
}

.page-contact__methods {
  padding: 60px 0;
  background-color: #2D3748; /* Slightly lighter dark background */
}

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

.page-contact__method-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-contact__method-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow */
}

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

.page-contact__method-text {
  color: #CCCCCC;
  margin-bottom: 25px;
  flex-grow: 1;
}

.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: #1A202C;
  border: 2px solid #FFD700;
}

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

.page-contact__btn--submit {
  background-color: #FFD700;
  color: #1A202C;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  padding: 15px 30px;
  width: 100%;
  max-width: 300px;
  margin-top: 20px;
}

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

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

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #2D3748;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #4A5568;
  border-radius: 5px;
  background-color: #1A202C;
  color: #E5E5E5;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

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

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

.page-contact__promotion-section {
  background-color: #2D3748;
  padding: 80px 0;
  text-align: center;
}

.page-contact__promotion-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  background-color: #1A202C;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.page-contact__promotion-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.page-contact__promotion-text {
  text-align: center;
}

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

.page-contact__promotion-description {
  font-size: 1.1em;
  color: #CCCCCC;
  margin-bottom: 30px;
}

.page-contact__btn--cta {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
  font-size: 1.2em;
  padding: 15px 35px;
  border-radius: 50px;
}

.page-contact__btn--cta:hover {
  background-color: #e6c200;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

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

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

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

  .page-contact__contact-form {
    padding: 30px;
  }

  .page-contact__promotion-content {
    flex-direction: column;
    padding: 30px;
  }

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

  .page-contact__btn--cta {
    font-size: 1em;
    padding: 12px 25px;
  }
}

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

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

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

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

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

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

  .page-contact__contact-form {
    padding: 20px;
  }

  .page-contact__form-input,
  .page-contact__form-textarea {
    width: calc(100% - 20px);
  }

  .page-contact__btn--submit {
    max-width: 100%;
  }

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