/* style/contact.css */
.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f8f8f8; /* Light text for dark background */
  background-color: #1A2E44; /* Main background color */
}

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

.page-contact__hero {
  background: linear-gradient(135deg, #1A2E44 0%, #3a5c80 100%); /* Gradient with main color */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,blue,gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-contact__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Accent color for title */
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-weight: bold;
  line-height: 1.2;
}

.page-contact__hero-description {
  font-size: 1.2em;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.page-contact__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for button */
  color: #1A2E44; /* Dark text for accent background */
  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;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__cta-button:hover {
  background-color: #e5c000;
  transform: translateY(-3px);
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for section titles */
  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: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-contact__section-subtitle {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  max-width: 900px;
  margin: -20px auto 60px;
}

.page-contact__why-contact, .page-contact__methods, .page-contact__faq, .page-contact__commitment, .page-contact__cta-final {
  padding: 80px 0;
}

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

.page-contact__reason-card {
  background-color: #2a415a; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-contact__reason-card:hover {
  transform: translateY(-5px);
  background-color: #314d6b;
}

.page-contact__card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(1.2); /* Make icons brighter */
}

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

.page-contact__card-text {
  color: #e0e0e0;
  font-size: 1em;
}

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

.page-contact__method-card {
  background-color: #2a415a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-contact__method-card:hover {
  transform: translateY(-5px);
  background-color: #314d6b;
}

.page-contact__method-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: brightness(1.2);
}

.page-contact__method-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-contact__method-description {
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-contact__method-info {
  color: #cccccc;
  font-size: 1.1em;
  margin-bottom: 10px;
}

.page-contact__link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-contact__link:hover {
  color: #e5c000;
  text-decoration: underline;
}

.page-contact__method-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E44;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-contact__method-button:hover {
  background-color: #e5c000;
}

.page-contact__faq-items {
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__faq-item {
  background-color: #2a415a;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-contact__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-contact__faq-item.active .page-contact__faq-question::after {
  transform: rotate(45deg);
}

.page-contact__faq-answer {
  color: #e0e0e0;
  font-size: 1em;
  display: none;
  margin-top: 15px;
}

.page-contact__faq-item.active .page-contact__faq-answer {
  display: block;
}

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

.page-contact__commitment-text {
  color: #e0e0e0;
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
}

.page-contact__commitment-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 800px;
  text-align: left;
}

.page-contact__commitment-list li {
  background-color: #2a415a;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  color: #e0e0e0;
  font-size: 1.05em;
}

.page-contact__commitment-list li strong {
  color: #FFD700;
}

.page-contact__cta-final {
  background-color: #1A2E44;
  padding-bottom: 100px;
  text-align: center;
}

.page-contact__cta-button--large {
  font-size: 1.4em;
  padding: 18px 40px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-contact__cta-text {
  color: #cccccc;
  margin-top: 30px;
  font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-contact__hero-title {
    font-size: 2.8em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__section-subtitle {
    font-size: 0.95em;
  }
  .page-contact__reason-card, .page-contact__method-card {
    padding: 25px;
  }
  .page-contact__card-title, .page-contact__method-title {
    font-size: 1.2em;
  }
  .page-contact__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact__cta-button--large {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  .page-contact__commitment-list {
    padding: 0 10px;
  }
}

@media (max-width: 576px) {
  .page-contact__hero {
    padding: 80px 0 60px;
  }
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__hero-description {
    font-size: 0.9em;
  }
  .page-contact__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-contact__section-subtitle {
    margin: -10px auto 40px;
  }
  .page-contact__grid {
    grid-template-columns: 1fr;
  }
  .page-contact__reason-card, .page-contact__method-card {
    padding: 20px;
  }
  .page-contact__card-title, .page-contact__method-title {
    font-size: 1.1em;
  }
  .page-contact__faq-question {
    font-size: 1.1em;
  }
  .page-contact__faq-answer {
    font-size: 0.9em;
  }
  .page-contact__commitment-list li {
    font-size: 0.95em;
    padding: 12px 15px;
  }
  .page-contact__cta-button--large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}