/* style/contact.css */

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

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

.page-contact__keyword {
  color: #FFD700; /* Auxiliary gold for keywords */
  font-weight: bold;
}

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

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

.page-contact__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-contact__hero-cta {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
  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;
  border: none;
}

.page-contact__hero-cta:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-contact__hero-image-wrapper {
  margin-top: 40px;
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Contact Methods Section */
.page-contact__methods {
  padding: 60px 0;
  background-color: #282E3A; /* Slightly lighter dark background */
  text-align: center;
}

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

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

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

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

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

.page-contact__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

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

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

.page-contact__method-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
}

.page-contact__method-button:hover {
  background-color: #e6c200;
}

/* Contact Form Section */
.page-contact__form-section {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-contact__form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

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

.page-contact__form-image-wrapper {
  text-align: center;
}

.page-contact__form-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

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

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

.page-contact__contact-form {
  display: flex;
  flex-direction: column;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #FFD700;
  border-radius: 5px;
  background-color: #282E3A;
  color: #E0E0E0;
  font-size: 1em;
  box-sizing: border-box;
}

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

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

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

.page-contact__form-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: flex-start;
}

.page-contact__form-submit-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* CTA Banner */
.page-contact__cta-banner {
  background-color: #FFD700; /* Gold background for CTA */
  padding: 60px 20px;
  text-align: center;
  color: #1A202C; /* Dark text on gold */
}

.page-contact__cta-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #1A202C;
}

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

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

.page-contact__cta-button {
  display: inline-block;
  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, color 0.3s ease;
  border: 2px solid transparent;
}

.page-contact__cta-button--primary {
  background-color: #1A202C;
  color: #FFD700;
}

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

.page-contact__cta-button--secondary {
  background-color: transparent;
  color: #1A202C;
  border-color: #1A202C;
}

.page-contact__cta-button--secondary:hover {
  background-color: #1A202C;
  color: #FFD700;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__methods-title,
  .page-contact__form-title,
  .page-contact__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-contact__hero {
    padding: 60px 15px;
  }
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__methods,
  .page-contact__form-section,
  .page-contact__cta-banner {
    padding: 40px 0;
  }
  .page-contact__method-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__form-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-contact__cta-button {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__methods-title,
  .page-contact__form-title,
  .page-contact__cta-title {
    font-size: 1.8em;
  }
  .page-contact__hero-cta,
  .page-contact__method-button,
  .page-contact__form-submit-button,
  .page-contact__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact__method-item {
    padding: 20px;
  }
}