/* style/contact.css */
.page-contact {
  background-color: #1a1a1a;
  color: #f0f0f0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-contact__hero {
  background: linear-gradient(135deg, #8B0000, #FFD700);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  color: #1a1a1a; /* Dark text on light/gradient background for contrast */
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #1a1a1a; /* Ensure high contrast */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #333; /* Slightly lighter dark for readability */
}

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

.page-contact__hero-button:hover {
  background-color: #FFD700;
  color: #1a1a1a;
  border-color: #1a1a1a;
}

.page-contact__methods {
  padding: 60px 0;
  text-align: center;
}

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

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

.page-contact__card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,215,0,0.2);
}

.page-contact__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.page-contact__card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
  /* Ensure no filter is applied to images */
}

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

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

.page-contact__card-button {
  display: inline-block;
  background-color: #8B0000;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #8B0000;
}

.page-contact__card-button:hover {
  background-color: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
}

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

.page-contact__form-intro {
  text-align: center;
  color: #ccc;
  font-size: 1.1em;
  margin-bottom: 40px;
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #2a2a2a;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,215,0,0.2);
}

.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: 100%;
  padding: 12px;
  border: 1px solid #555;
  border-radius: 5px;
  background-color: #333;
  color: #f0f0f0;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-contact__form-submit-button {
  display: block;
  width: 100%;
  background-color: #FFD700;
  color: #1a1a1a;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__form-submit-button:hover {
  background-color: #e6c200;
  color: #000;
}

.page-contact__cta {
  background-color: #2a2a2a;
  padding: 80px 0;
}

.page-contact__cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: linear-gradient(90deg, #8B0000, #FFD700);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.page-contact__cta-image {
  width: 250px;
  height: auto;
  border-radius: 10px;
  /* Ensure no filter is applied to images */
}

.page-contact__cta-content {
  max-width: 600px;
  text-align: left;
  color: #1a1a1a; /* Dark text on light/gradient background */
}

.page-contact__cta-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #1a1a1a;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

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

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

.page-contact__cta-button:hover {
  background-color: #FFD700;
  color: #1a1a1a;
  border-color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 3em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__card-title {
    font-size: 1.5em;
  }
  .page-contact__cta-title {
    font-size: 2.2em;
  }
  .page-contact__cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .page-contact__cta-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-contact__hero {
    padding: 80px 0;
  }
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__grid {
    grid-template-columns: 1fr;
  }
  .page-contact__form {
    padding: 30px;
  }
  .page-contact__cta-image {
    width: 200px;
  }
  .page-contact__cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .page-contact__hero {
    padding: 60px 0;
  }
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 1.5em;
  }
  .page-contact__card-title {
    font-size: 1.3em;
  }
  .page-contact__card-button {
    padding: 8px 15px;
    font-size: 0.9em;
  }
  .page-contact__form {
    padding: 20px;
  }
  .page-contact__form-submit-button {
    font-size: 1em;
  }
  .page-contact__cta-title {
    font-size: 1.5em;
  }
  .page-contact__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}