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

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

.page-contact__hero {
  background: linear-gradient(135deg, #1A237E, #394396);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-contact__hero > * {
  position: relative;
  z-index: 2;
}

.page-contact__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFC107; /* Amber for emphasis */
  font-weight: bold;
}

.page-contact__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-contact__hero-image {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
}

.page-contact__methods {
  padding: 60px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #1A237E; /* Deep Indigo */
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-contact__method-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 280px;
}

.page-contact__method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-contact__method-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  color: #FFC107;
}

.page-contact__card-title {
  font-size: 1.8em;
  color: #1A237E; /* Deep Indigo */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-contact__card-description {
  color: #555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-contact__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-contact__button--primary {
  background-color: #FFC107; /* Amber */
  color: #1A237E; /* Deep Indigo for contrast */
  border: 2px solid #FFC107;
}

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

.page-contact__button--secondary {
  background-color: #1A237E; /* Deep Indigo */
  color: #FFC107; /* Amber for contrast */
  border: 2px solid #1A237E;
}

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

.page-contact__form-section {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 40px auto 0 auto;
  padding: 30px;
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
}

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

.page-contact__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #1A237E; /* Deep Indigo */
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  color: #333;
  background-color: #fff;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFC107; /* Amber */
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.3);
}

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

.page-contact__button--submit {
  background-color: #1A237E; /* Deep Indigo */
  color: #fff;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  width: auto;
  font-size: 1.1em;
  border-radius: 5px;
}

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

.page-contact__cta-banner {
  background: linear-gradient(90deg, #1A237E, #394396);
  padding: 80px 0;
  color: #fff;
  text-align: center;
}

.page-contact__cta-banner .page-contact__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-contact__cta-content {
  max-width: 700px;
}

.page-contact__cta-title {
  font-size: 3em;
  color: #FFC107; /* Amber */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-contact__button--cta {
  background-color: #FFC107; /* Amber */
  color: #1A237E; /* Deep Indigo */
  border: 2px solid #FFC107;
  margin: 0 10px;
  padding: 15px 35px;
  font-size: 1.1em;
}

.page-contact__button--cta:hover {
  background-color: #e0ac00;
}

.page-contact__button--cta-secondary {
  background-color: transparent;
  color: #FFC107; /* Amber */
  border: 2px solid #FFC107;
  margin: 0 10px;
  padding: 15px 35px;
  font-size: 1.1em;
}

.page-contact__button--cta-secondary:hover {
  background-color: #FFC107;
  color: #1A237E;
}

.page-contact__cta-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  margin-top: 40px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-contact__cta-banner .page-contact__container {
    flex-direction: row;
    text-align: left;
  }
  .page-contact__cta-content {
    text-align: left;
    max-width: 50%;
  }
  .page-contact__cta-image {
    max-width: 40%;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .page-contact__title {
    font-size: 2.5em;
  }
  .page-contact__subtitle {
    font-size: 1.1em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__grid {
    grid-template-columns: 1fr;
  }
  .page-contact__hero-image {
    max-width: 95%;
  }
  .page-contact__contact-form {
    padding: 20px;
  }
  .page-contact__button--cta,
  .page-contact__button--cta-secondary {
    display: block;
    margin: 15px auto;
  }
  .page-contact__cta-title {
    font-size: 2.2em;
  }
  .page-contact__cta-description {
    font-size: 1em;
  }
}