/* 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 20px;
}

.page-contact-hero {
  background-color: #0D47A1;
  color: #ffffff;
  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: radial-gradient(circle at top left, rgba(255, 214, 0, 0.2) 0%, transparent 50%),
              radial-gradient(circle at bottom right, rgba(255, 214, 0, 0.2) 0%, transparent 50%);
  opacity: 0.5;
  z-index: 1;
}

.page-contact-hero .page-contact-container {
  position: relative;
  z-index: 2;
}

.page-contact-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-contact-hero-image-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-contact-hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-contact-section-title {
  font-size: 2.5em;
  color: #0D47A1;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  position: relative;
}

.page-contact-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD600;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-contact-methods {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

.page-contact-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-contact-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  color: #0D47A1; /* Fallback for SVG icons */
}

.page-contact-card-title {
  font-size: 1.8em;
  color: #0D47A1;
  margin-bottom: 15px;
}

.page-contact-card-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-contact-btn {
  display: inline-block;
  background-color: #FFD600;
  color: #0D47A1;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-contact-btn:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-contact-btn:active {
  transform: translateY(0);
}

.page-contact-form-section {
  padding: 80px 0;
  background-color: #eef2f7;
}

.page-contact-form-description {
  text-align: center;
  font-size: 1.1em;
  color: #666;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact-form {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 0 auto;
}

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

.page-contact-label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  color: #0D47A1;
  font-size: 1.1em;
}

.page-contact-input,
.page-contact-textarea {
  width: calc(100% - 24px);
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

.page-contact-input:focus,
.page-contact-textarea:focus {
  border-color: #0D47A1;
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.2);
}

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

.page-contact-submit-btn {
  display: block;
  width: 100%;
  background-color: #0D47A1;
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 8px;
  border: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact-submit-btn:hover {
  background-color: #1a56b8;
  transform: translateY(-2px);
}

.page-contact-submit-btn:active {
  transform: translateY(0);
}

.page-contact-faq {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-contact-faq-item {
  background-color: #f0f5fa;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
}

.page-contact-faq-item:hover {
  background-color: #e5edf5;
}

.page-contact-faq-question {
  font-size: 1.4em;
  color: #0D47A1;
  margin-bottom: 10px;
}

.page-contact-faq-answer {
  font-size: 1em;
  color: #444;
}

.page-contact-faq-link {
  color: #0D47A1;
  text-decoration: underline;
  font-weight: bold;
}

.page-contact-faq-link:hover {
  color: #FFD600;
}

/* Responsive Design */
@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-form {
    padding: 30px;
  }
  .page-contact-input,
  .page-contact-textarea {
    width: calc(100% - 20px);
  }
}

@media (max-width: 480px) {
  .page-contact-hero {
    padding: 60px 0;
  }
  .page-contact-title {
    font-size: 2em;
  }
  .page-contact-subtitle {
    font-size: 1em;
  }
  .page-contact-section-title {
    font-size: 1.8em;
  }
  .page-contact-card {
    padding: 20px;
  }
  .page-contact-card-title {
    font-size: 1.5em;
  }
  .page-contact-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-contact-form {
    padding: 20px;
  }
  .page-contact-submit-btn {
    font-size: 1.1em;
    padding: 12px 20px;
  }
}