/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A1A2E; /* Midnight blue background */
}

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

/* Hero Section */
.page-contact__hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%); /* Dark gradient for hero */
  padding: 100px 0;
  text-align: center;
  border-bottom: 3px solid #FFD700; /* Gold accent */
}

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

.page-contact__subtitle {
  font-size: 1.25em;
  color: #C0C0C0; /* Lighter gray for subtitle */
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Buttons */
.page-contact__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-contact__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A1A2E; /* Dark text on gold */
}

.page-contact__btn--primary:hover {
  background-color: #E6C200; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-contact__btn--secondary {
  background-color: #2A2A4E; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
}

.page-contact__btn--secondary:hover {
  background-color: #3a3a6e;
  transform: translateY(-2px);
}

/* Info Section */
.page-contact__info-section {
  padding: 80px 0;
  background-color: #1A1A2E;
}

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

.page-contact__info-card {
  background-color: #2A2A4E; /* Slightly lighter dark blue for cards */
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

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

.page-contact__card-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact__card-description {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 25px;
  line-height: 1.5;
}

.page-contact__email, .page-contact__phone {
  font-size: 1.2em;
  color: #FFD700; /* Gold for contact details */
  font-weight: bold;
  margin-top: 15px;
}

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

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__section-description {
  font-size: 1.1em;
  color: #C0C0C0;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #2A2A4E;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-contact__form-label {
  display: block;
  font-size: 1em;
  color: #FFD700; /* Gold for form labels */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #4A4A6E;
  border-radius: 8px;
  background-color: #3A3A5E; /* Slightly lighter dark blue for input fields */
  color: #E0E0E0;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-contact__btn--submit {
  width: 100%;
  background-color: #FFD700;
  color: #1A1A2E;
  padding: 18px 30px;
  font-size: 1.2em;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__btn--submit:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

/* CTA Section */
.page-contact__cta-section {
  background-color: #3A3A5E; /* Darker blue for CTA background */
  padding: 80px 0;
  text-align: center;
  border-top: 3px solid #FFD700;
}

.page-contact__section-title--light {
  color: #FFD700;
}

.page-contact__section-description--light {
  color: #E0E0E0;
  margin-bottom: 40px;
}

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

.page-contact__btn--cta {
  background-color: #FFD700;
  color: #1A1A2E;
  padding: 15px 35px;
  font-size: 1.15em;
  border: 2px solid transparent;
}

.page-contact__btn--cta:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

.page-contact__btn--outline {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-contact__btn--outline:hover {
  background-color: #FFD700;
  color: #1A1A2E;
  transform: translateY(-2px);
}

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

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

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

  .page-contact__info-card {
    padding: 30px;
  }

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

  .page-contact__form {
    padding: 30px;
  }

  .page-contact__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-contact__btn--cta {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .page-contact__hero,
  .page-contact__info-section,
  .page-contact__form-section,
  .page-contact__cta-section {
    padding: 60px 0;
  }

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

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

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

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

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

  .page-contact__btn--submit {
    font-size: 1.1em;
  }

  .page-contact__cta-buttons {
    gap: 15px;
  }
}