/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: #000; /* Assuming body background is black */
}

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

.page-contact__intro-section {
  padding: 120px 0 60px 0; /* Adjusted padding-top for fixed header */
  background: linear-gradient(135deg, #0A2463, #3A506B);
  text-align: center;
  color: #ffffff;
}

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

.page-contact__description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.page-contact__intro-image-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-contact__intro-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-contact__form-section {
  padding: 80px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background for contrast */
  color: #f0f0f0;
}

.page-contact__subtitle {
  font-size: 2.5em;
  font-weight: bold;
  color: #E3B505;
  text-align: center;
  margin-bottom: 20px;
}

.page-contact__sub-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #cccccc;
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #1a1a1a; /* Dark card background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-contact__label {
  display: block;
  font-size: 1em;
  margin-bottom: 10px;
  font-weight: bold;
  color: #f0f0f0;
}

.page-contact__input,
.page-contact__textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #444;
  border-radius: 8px;
  background-color: #2a2a2a;
  color: #f0f0f0;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__input::placeholder,
.page-contact__textarea::placeholder {
  color: #888;
}

.page-contact__input:focus,
.page-contact__textarea:focus {
  border-color: #E3B505;
  box-shadow: 0 0 0 3px rgba(227, 181, 5, 0.3);
  outline: none;
}

.page-contact__textarea {
  resize: vertical;
}

.page-contact__submit-button {
  display: block;
  width: 100%;
  padding: 18px 25px;
  background: linear-gradient(135deg, #E3B505, #FFA500);
  color: #0A2463;
  border: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__submit-button:hover {
  background: linear-gradient(135deg, #FFA500, #E3B505);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__info-section {
  padding: 80px 0;
  background-color: #000;
  color: #f0f0f0;
}

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

.page-contact__info-card {
  background-color: #1a1a1a; /* Dark card background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact__info-title {
  font-size: 1.8em;
  font-weight: bold;
  color: #E3B505;
  margin-bottom: 15px;
}

.page-contact__info-text {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 10px;
}

.page-contact__info-image {
  max-width: 300px;
  height: auto;
  display: block;
  margin: 20px auto 0 auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-contact__link-phone, .page-contact__link-email {
  color: #E3B505;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__link-phone:hover, .page-contact__link-email:hover {
  color: #FFA500;
  text-decoration: underline;
}

.page-contact__social-links {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.page-contact__social-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0A2463;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__social-link:hover {
  background-color: #E3B505;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-contact__map-container {
  margin-top: 60px;
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__map-title {
  font-size: 1.8em;
  font-weight: bold;
  color: #E3B505;
  margin-bottom: 20px;
  text-align: center;
}

.page-contact__map-container iframe {
  border-radius: 8px;
}

.page-contact__faq-section {
  padding: 80px 0;
  background-color: #0d0d0d;
  color: #f0f0f0;
}

.page-contact__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-contact__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  background-color: #2a2a2a; /* Darker background for answer */
  color: #cccccc;
}

.page-contact__faq-item.active .page-contact__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background-color: #2a2a2a;
  border-radius: 0 0 8px 8px;
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background-color: #1a1a1a; /* Dark card background */
  border: 1px solid #444;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-contact__faq-question:hover {
  background-color: #2a2a2a;
  border-color: #E3B505;
}

.page-contact__faq-question:active {
  background-color: #3a3a3a;
}

.page-contact__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #f0f0f0;
}

.page-contact__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #E3B505;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid #E3B505;
  border-radius: 50%;
}

.page-contact__faq-item.active .page-contact__faq-toggle {
  color: #0A2463;
  background-color: #E3B505;
  transform: rotate(45deg);
}

.page-contact__faq-answer p {
  margin: 0;
  font-size: 1em;
}

.page-contact__cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0A2463, #3A506B);
  text-align: center;
  color: #ffffff;
}

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

.page-contact__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.page-contact__cta-button {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, #E3B505, #FFA500);
  color: #0A2463;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.3em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__cta-button:hover {
  background: linear-gradient(135deg, #FFA500, #E3B505);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-contact__highlight {
  color: #E3B505;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__title {
    font-size: 2.8em;
  }
  .page-contact__subtitle,
  .page-contact__cta-title {
    font-size: 2.2em;
  }
  .page-contact__description,
  .page-contact__sub-description,
  .page-contact__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-contact__intro-section {
    padding-top: 100px !important;
    padding-bottom: 40px;
  }
  .page-contact__title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-contact__description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-contact__form-section,
  .page-contact__info-section,
  .page-contact__faq-section,
  .page-contact__cta-section {
    padding: 50px 0;
  }
  .page-contact__subtitle,
  .page-contact__cta-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  .page-contact__sub-description,
  .page-contact__cta-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-contact__form {
    padding: 25px;
  }
  .page-contact__label {
    font-size: 0.9em;
    margin-bottom: 8px;
  }
  .page-contact__input,
  .page-contact__textarea {
    padding: 12px;
    font-size: 0.9em;
  }
  .page-contact__submit-button,
  .page-contact__cta-button {
    padding: 15px 25px;
    font-size: 1.1em;
  }
  .page-contact__info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-contact__info-title {
    font-size: 1.5em;
  }
  .page-contact__info-text {
    font-size: 0.9em;
  }
  .page-contact__social-link {
    padding: 8px 15px;
    font-size: 0.9em;
  }
  .page-contact__map-container {
    padding: 20px;
    margin-top: 40px;
  }
  .page-contact__map-title {
    font-size: 1.5em;
    margin-bottom: 15px;
  }
  .page-contact__faq-question {
    padding: 15px;
  }
  .page-contact__faq-question h3 {
    font-size: 1em;
  }
  .page-contact__faq-toggle {
    width: 28px;
    height: 28px;
    font-size: 24px;
    margin-left: 10px;
  }
  .page-contact__faq-answer {
    padding: 0 15px;
  }
  .page-contact__faq-item.active .page-contact__faq-answer {
    padding: 15px !important;
  }
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-contact__section,
  .page-contact__card,
  .page-contact__container,
  .page-contact__intro-section,
  .page-contact__form-section,
  .page-contact__info-section,
  .page-contact__faq-section,
  .page-contact__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}