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

.page-contact__hero {
  background-color: #003366;
  color: #fff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-contact__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(255, 204, 0, 0.2));
  z-index: 1;
}

.page-contact__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-contact__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFCC00;
  font-weight: bold;
}

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

.page-contact__hero-image-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-contact__btn-primary {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__btn-primary:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

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

.page-contact__section-title {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__section-description {
  font-size: 1.1em;
  color: #555;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-contact__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-contact__method-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact__method-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-contact__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #003366; /* Using CSS color for SVG icons if applicable */
}

.page-contact__method-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-contact__method-text {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-contact__btn-secondary {
  display: inline-block;
  background-color: #003366;
  color: #FFCC00;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #003366;
}

.page-contact__btn-secondary:hover {
  background-color: #002244;
  color: #FFDD33;
}

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

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

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

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

.page-contact__btn-submit {
  background-color: #003366;
  color: #FFCC00;
  padding: 15px 30px;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: auto;
  display: block;
  margin: 0 auto;
}

.page-contact__btn-submit:hover {
  background-color: #002244;
  color: #FFDD33;
}

.page-contact__cta {
  background-color: #003366;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-contact__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 51, 102, 0.9), rgba(255, 204, 0, 0.2));
  z-index: 1;
}

.page-contact__cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-contact__cta-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFCC00;
  font-weight: bold;
}

.page-contact__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-contact__cta-image-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
}

.page-contact__cta-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-contact__hero {
    flex-direction: row;
    text-align: left;
    justify-content: center;
    padding: 100px 40px;
  }

  .page-contact__hero-content {
    text-align: left;
    margin-right: 40px;
  }

  .page-contact__hero-image-wrapper {
    max-width: 500px;
  }

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

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

  .page-contact__method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-contact__cta {
    flex-direction: row;
    text-align: left;
    justify-content: center;
    padding: 100px 40px;
  }

  .page-contact__cta-content {
    text-align: left;
    margin-right: 40px;
  }

  .page-contact__cta-image-wrapper {
    max-width: 500px;
  }

  .page-contact__cta-title {
    font-size: 3.5em;
  }
}

@media (min-width: 1024px) {
  .page-contact__method-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}