/* style/contact.css */
.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray text for dark background */
  background-color: #000000; /* Main background color */
}

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

.page-contact__hero {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #FFD700;
}

.page-contact__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-contact__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  margin-top: 30px;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-contact__methods {
  padding: 60px 0;
  background-color: #1a1a1a;
}

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

.page-contact__method-item {
  background-color: #000000;
  border: 1px solid #333333;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.page-contact__method-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

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

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

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

.page-contact__button {
  display: inline-block;
  background-color: #DC143C; /* Dark Red accent */
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-contact__button:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-2px);
}

.page-contact__button--secondary {
  background-color: #333333;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-contact__button--secondary:hover {
  background-color: #FFD700;
  color: #000000;
}

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

.page-contact__form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.page-contact__contact-form {
  flex: 1 1 500px;
  max-width: 600px;
  padding: 20px;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #555555;
  border-radius: 5px;
  background-color: #333333;
  color: #FFFFFF;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

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

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

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

.page-contact__form-image-container {
  flex: 1 1 400px;
  text-align: center;
}

.page-contact__form-bg-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.page-contact__why-contact {
  padding: 60px 0;
  background-color: #1a1a1a;
  border-top: 3px solid #DC143C;
}

.page-contact__why-contact-text {
  font-size: 1.1em;
  color: #CCCCCC;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-contact__social-media {
  padding: 60px 0;
  background-color: #000000;
}

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

.page-contact__social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFD700;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.3s ease;
}

.page-contact__social-link:hover {
  color: #DC143C;
  transform: translateY(-3px);
}

.page-contact__social-icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 3px #FFD700);
}

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

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

  .page-contact__hero-description,
  .page-contact__why-contact-text {
    font-size: 1em;
  }

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

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

  .page-contact__form-wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .page-contact__contact-form,
  .page-contact__form-image-container {
    max-width: 100%;
  }

  .page-contact__social-links {
    flex-direction: column;
    gap: 15px;
  }
}

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

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

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

  .page-contact__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}