/* style/contact.css */

:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f9f9f9;
  --background-dark: #1a1a1a;
  --border-color: #e0e0e0;
}

.page-contact {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

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

.page-contact h1,
.page-contact h2,
.page-contact h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-align: center;
}

.page-contact h1 {
  font-size: 2.8em;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact h2 {
  font-size: 2.2em;
  padding-top: 40px;
}

.page-contact h3 {
  font-size: 1.6em;
}

.page-contact p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-contact a {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-contact a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-contact .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-contact .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-contact .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-contact .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-contact .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-contact .hero-content h1 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-contact .hero-content p {
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-contact .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--background-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact .cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-contact .secondary-button {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-contact .secondary-button:hover {
  background: #6a0000;
  color: var(--primary-color);
}

/* Contact Methods Section */
.page-contact .contact-methods-section {
  padding: 60px 0;
  background-color: var(--background-light);
  text-align: center;
}

.page-contact .method-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-contact .method-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact .method-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-contact .method-card h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-contact .method-card p {
  font-size: 0.95em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-contact .contact-detail a {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-contact .method-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact .method-button:hover {
  background: #6a0000;
  transform: translateY(-2px);
}

/* Contact Form Section */
.page-contact .contact-form-section {
  padding: 60px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: center;
}

.page-contact .contact-form-section h2 {
  color: var(--primary-color);
}

.page-contact .contact-form-section p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.page-contact .contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: #2a2a2a;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

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

.page-contact .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--primary-color);
}

.page-contact .form-group input,
.page-contact .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #555;
  border-radius: 5px;
  background-color: #3a3a3a;
  color: var(--text-light);
  font-size: 1em;
}

.page-contact .form-group input::placeholder,
.page-contact .form-group textarea::placeholder {
  color: #aaa;
}

.page-contact .form-group input:focus,
.page-contact .form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.page-contact .submit-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--background-dark);
  border: none;
  border-radius: 5px;
  font-size: 18px;
  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: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Social Media Section */
.page-contact .social-media-section {
  padding: 60px 0;
  background-color: var(--background-light);
  text-align: center;
}

.page-contact .social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-contact .social-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: bold;
  transition: transform 0.3s ease, color 0.3s ease;
}

.page-contact .social-icon-link:hover {
  transform: translateY(-5px);
  color: var(--primary-color);
}

.page-contact .social-icon-link img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-contact .faq-section {
  padding: 60px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-contact .faq-section h2 {
  color: var(--primary-color);
}

.page-contact .faq-section p {
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
}

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

.page-contact .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

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

.page-contact .faq-question:hover {
  background: #3a3a3a;
  border-color: var(--primary-color);
}

.page-contact .faq-question h3 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.2em;
  text-align: left;
}

.page-contact .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 25px;
  background: #333;
  border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
  background: #333;
  border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-answer p {
  color: var(--text-light);
  margin-bottom: 0;
  text-align: justify;
}

/* Commitment Section */
.page-contact .commitment-section {
  padding: 60px 0;
  background-color: var(--background-light);
  text-align: center;
}

.page-contact .commitment-section ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 30px auto;
  text-align: left;
}

.page-contact .commitment-section ul li {
  background: #ffffff;
  border-left: 5px solid var(--primary-color);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-contact .commitment-section ul li strong {
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact h1 {
    font-size: 2.5em;
  }
  .page-contact h2 {
    font-size: 2em;
  }
  .page-contact .method-card {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .page-contact .hero-section {
    padding: 40px 15px;
  }
  .page-contact .hero-content h1 {
    font-size: 2em;
  }
  .page-contact .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-contact h2 {
    font-size: 1.8em;
  }
  .page-contact h3 {
    font-size: 1.4em;
  }
  .page-contact .method-cards {
    flex-direction: column;
    align-items: center;
  }
  .page-contact .method-card {
    max-width: 90%;
  }
  .page-contact .contact-form {
    padding: 30px;
  }
  .page-contact .faq-question {
    padding: 15px 20px;
  }
  .page-contact .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-contact .hero-content h1 {
    font-size: 1.8em;
  }
  .page-contact .hero-content p {
    font-size: 0.9em;
  }
  .page-contact h2 {
    font-size: 1.6em;
  }
  .page-contact .method-card {
    padding: 20px;
  }
  .page-contact .method-card img {
    width: 80px;
    height: 80px;
  }
  .page-contact .social-icon-link img {
    width: 60px;
    height: 60px;
  }
  .page-contact .contact-form {
    padding: 20px;
  }
  .page-contact .submit-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-contact .faq-question h3 {
    font-size: 1em;
  }
  .page-contact .faq-toggle {
    font-size: 20px;
  }
}