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

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

.page-contact-intro,
.page-contact-methods,
.page-contact-reasons,
.page-contact-faq,
.page-contact-form-section,
.page-contact-commitment {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-contact-intro {
  background: linear-gradient(135deg, #C0392B, #F39C12);
  color: #fff;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-contact-subtitle {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #C0392B;
  font-weight: bold;
}

.page-contact-description,
.page-contact-cta-text,
.page-contact-methods-description,
.page-contact-reasons-intro,
.page-contact-reasons-outro,
.page-contact-faq-intro,
.page-contact-form-description,
.page-contact-commitment-text,
.page-contact-commitment-outro {
  font-size: 1.1em;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-contact-intro .page-contact-description,
.page-contact-intro .page-contact-cta-text {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

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

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

.page-contact-btn {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-contact-btn-primary {
  background-color: #F39C12;
  color: #fff;
  box-shadow: 0 4px 10px rgba(243, 156, 18, 0.4);
}

.page-contact-btn-primary:hover {
  background-color: #e08e0b;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(243, 156, 18, 0.5);
}

.page-contact-btn-secondary {
  background-color: #C0392B;
  color: #fff;
  box-shadow: 0 4px 10px rgba(192, 57, 43, 0.4);
}

.page-contact-btn-secondary:hover {
  background-color: #a93226;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(192, 57, 43, 0.5);
}

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

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

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

.page-contact-card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-contact-card-title {
  font-size: 1.6em;
  color: #C0392B;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact-card p {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-contact-email,
.page-contact-phone {
  font-weight: bold;
  color: #333;
}

.page-contact-email-link,
.page-contact-phone-link {
  color: #C0392B;
  text-decoration: none;
}

.page-contact-email-link:hover,
.page-contact-phone-link:hover {
  text-decoration: underline;
}

.page-contact-social-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.page-contact-social-list li {
  margin-bottom: 10px;
}

.page-contact-social-list a {
  color: #F39C12;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
}

.page-contact-social-list a:hover {
  text-decoration: underline;
  color: #e08e0b;
}

.page-contact-reason-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 30px auto;
}

.page-contact-reason-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: #444;
  text-align: left;
  border-left: 5px solid #C0392B;
}

.page-contact-reason-list li strong {
  color: #C0392B;
}

.faq-list {
  max-width: 900px;
  margin: 40px auto;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #fff;
  cursor: pointer;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #333;
  flex-grow: 1;
  text-align: left;
}

.faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #C0392B;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #F39C12;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: #fdfdfd;
  border-radius: 0 0 8px 8px;
  border: 1px solid #e0e0e0;
  border-top: none;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-top: 1px solid #eee;
}

.faq-answer p {
  margin: 0;
  color: #555;
  font-size: 1em;
}

.page-contact-form-section {
  background-color: #f0f0f0;
}

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

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

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

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

.page-contact-input:focus,
.page-contact-textarea:focus {
  border-color: #C0392B;
  outline: none;
  box-shadow: 0 0 5px rgba(192, 57, 43, 0.3);
}

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

.page-contact-btn-submit {
  width: 100%;
  padding: 15px;
  font-size: 1.2em;
  background-color: #C0392B;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(192, 57, 43, 0.4);
}

.page-contact-btn-submit:hover {
  background-color: #a93226;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(192, 57, 43, 0.5);
}

.page-contact-commitment {
  background-color: #2c3e50;
  color: #ecf0f1;
  text-align: center;
}

.page-contact-commitment .page-contact-subtitle {
  color: #F39C12;
}

.page-contact-commitment-text,
.page-contact-commitment-outro {
  color: #ecf0f1;
  max-width: 900px;
}

.page-contact-commitment-cta {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-contact-title {
    font-size: 2.8em;
  }
  .page-contact-subtitle {
    font-size: 2em;
  }
  .page-contact-description,
  .page-contact-cta-text,
  .page-contact-methods-description,
  .page-contact-reasons-intro,
  .page-contact-reasons-outro,
  .page-contact-faq-intro,
  .page-contact-form-description,
  .page-contact-commitment-text,
  .page-contact-commitment-outro {
    font-size: 1em;
  }
  .page-contact-card {
    padding: 25px;
  }
  .page-contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-contact-intro,
  .page-contact-methods,
  .page-contact-reasons,
  .page-contact-faq,
  .page-contact-form-section,
  .page-contact-commitment {
    padding: 40px 0;
  }
  .page-contact-title {
    font-size: 2.2em;
  }
  .page-contact-subtitle {
    font-size: 1.8em;
  }
  .page-contact-grid {
    grid-template-columns: 1fr;
  }
  .page-contact-card-icon {
    width: 60px;
    height: 60px;
  }
  .page-contact-card-title {
    font-size: 1.4em;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.5em;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-contact-form-wrapper {
    padding: 20px;
  }
  .page-contact-input,
  .page-contact-textarea {
    width: calc(100% - 16px);
    padding: 10px 8px;
  }
  .page-contact-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact-btn-submit {
    padding: 12px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-contact-title {
    font-size: 1.8em;
  }
  .page-contact-subtitle {
    font-size: 1.5em;
  }
  .page-contact-description,
  .page-contact-cta-text,
  .page-contact-methods-description,
  .page-contact-reasons-intro,
  .page-contact-reasons-outro,
  .page-contact-faq-intro,
.page-contact-form-description,
  .page-contact-commitment-text,
  .page-contact-commitment-outro {
    font-size: 0.95em;
  }
  .page-contact-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-contact-reason-list li {
    padding: 15px;
    font-size: 1em;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 1.3em;
  }
  .faq-answer p {
    font-size: 0.9em;
  }
  .page-contact-form-wrapper {
    padding: 15px;
  }
  .page-contact-label {
    font-size: 1em;
  }
}