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

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

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

.page-contact__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.page-contact__hero .page-contact__container {
  position: relative;
  z-index: 1;
}

.page-contact__title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFD700;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-contact__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
}

.page-contact__button--primary {
  background-color: #FFD700;
  color: #003366;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-contact__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-contact__button--secondary {
  background-color: #003366;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-contact__button--secondary:hover {
  background-color: #004080;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.4);
}

.page-contact__heading {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-contact__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-contact__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555;
  line-height: 1.6;
}

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

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

.page-contact__method-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact__method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-contact__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 51, 102, 0.2));
}

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

.page-contact__card-description {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-contact__method-card .page-contact__button {
  background-color: #003366;
  color: #FFD700;
  width: 100%;
  max-width: 200px;
}

.page-contact__method-card .page-contact__button:hover {
  background-color: #004080;
}

.page-contact__form-section {
  padding: 80px 0;
  background-color: #eaf0f4;
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.page-contact__input,
.page-contact__textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.page-contact__button--submit {
  background-color: #FFD700;
  color: #003366;
  width: 100%;
  padding: 15px;
  font-size: 1.2em;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-contact__button--submit:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-contact__cta {
  padding: 80px 0;
  background-color: #003366;
  color: #fff;
  text-align: center;
}

.page-contact__cta .page-contact__heading {
  color: #FFD700;
}

.page-contact__cta .page-contact__description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-contact__cta .page-contact__button {
  margin: 0 10px;
}

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

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

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

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

  .page-contact__method-card {
    padding: 25px;
  }

  .page-contact__form {
    padding: 30px;
  }

  .page-contact__cta .page-contact__button {
    display: block;
    margin: 15px auto;
  }
}

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

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

  .page-contact__heading {
    font-size: 1.8em;
  }

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

  .page-contact__button--secondary {
    margin-left: 0;
  }

  .page-contact__input, .page-contact__textarea {
    width: calc(100% - 20px);
  }
}