/* style/contact.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Dark Blue */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f9f9f9;
  --background-dark: #1a1a2e;
  --border-color: #e0e0e0;
}

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

.page-contact h1, .page-contact h2, .page-contact h3, .page-contact h4 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

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

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

.page-contact a:hover {
  color: var(--primary-color);
}

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

/* 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: linear-gradient(135deg, var(--secondary-color) 0%, #000050 100%); /* Dark blue gradient */
  color: var(--text-light);
  border-bottom: 5px solid var(--primary-color);
}

.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%;
  max-width: 800px; /* Adjust max-width for hero image */
  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.3);
}

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

.page-contact .hero-content h1 {
  color: var(--primary-color);
  font-size: 3.2em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-contact .hero-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-contact .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  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: #ffc107; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-contact .contact-channels h2 {
  font-size: 2.5em;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-contact .contact-channels p {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-contact .channel-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

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

.page-contact .channel-card h3 {
  color: var(--secondary-color);
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-contact .channel-card p {
  font-size: 1em;
  color: var(--text-dark);
  flex-grow: 1;
}

.page-contact .channel-card p strong {
  color: var(--primary-color);
}

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

.page-contact .btn-channel:hover {
  background-color: #ffc107;
  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 {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-contact .contact-form-section p {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-contact .contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: #2a2a4a; /* Darker blue for form background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: left;
}

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

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

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

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

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

.page-contact .submit-button {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

/* Common Issues Section */
.page-contact .common-issues {
  padding: 60px 0;
  background-color: var(--background-light);
  text-align: center;
}

.page-contact .common-issues h2 {
  font-size: 2.5em;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-contact .common-issues p {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-contact .issue-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-contact .card-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-contact .issue-card h3 {
  color: var(--secondary-color);
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-contact .issue-card p {
  font-size: 0.95em;
  color: var(--text-dark);
  flex-grow: 1;
}

.page-contact .btn-issue {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--text-light);
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact .btn-issue:hover {
  background-color: #000060; /* Slightly darker blue */
  transform: translateY(-2px);
}

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

.page-contact .commitment-section h2 {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

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

.page-contact .commitment-section li {
  background: #000060;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact .commitment-section li::before {
  content: '✔';
  color: var(--primary-color);
  font-size: 1.5em;
  margin-right: 15px;
  font-weight: bold;
}

.page-contact .commitment-section li strong {
  color: var(--primary-color);
  font-size: 1.1em;
}

.page-contact .commitment-section p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto;
  color: #e0e0e0;
  text-align: center;
}

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

.page-contact .faq-section h2 {
  font-size: 2.5em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-align: center;
}

.page-contact .faq-section p {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--secondary-color);
}

.faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px 25px;
  transition: max-height 0.5s ease-in, padding 0.5s ease-in;
}

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

/* Office Address Section */
.page-contact .office-address {
  padding: 60px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: center;
}

.page-contact .office-address h2 {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

.page-contact .office-address address {
  font-style: normal;
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
  line-height: 1.8;
}

.page-contact .office-address address strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 10px;
  font-size: 1.3em;
}

.page-contact .office-map-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-contact .hero-content h1 {
    font-size: 2.8em;
  }
  .page-contact .hero-content p,
  .page-contact .contact-channels p,
  .page-contact .contact-form-section p,
  .page-contact .common-issues p,
  .page-contact .commitment-section p,
  .page-contact .faq-section p {
    font-size: 1em;
  }
  .page-contact .channels-grid, .page-contact .issues-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-contact .channel-card, .page-contact .issue-card {
    padding: 25px;
  }
  .page-contact .contact-form {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-contact .hero-section {
    padding: 40px 15px;
  }
  .page-contact .hero-content h1 {
    font-size: 2.2em;
  }
  .page-contact .hero-content p {
    font-size: 0.95em;
  }
  .page-contact .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-contact .contact-channels,
  .page-contact .contact-form-section,
  .page-contact .common-issues,
  .page-contact .commitment-section,
  .page-contact .faq-section,
  .page-contact .office-address {
    padding: 40px 0;
  }
  .page-contact h2 {
    font-size: 2em;
  }
  .page-contact .channel-card h3, .page-contact .issue-card h3 {
    font-size: 1.4em;
  }
  .page-contact .form-group label {
    font-size: 1em;
  }
  .page-contact .form-group input,
  .page-contact .form-group textarea {
    width: calc(100% - 10px);
    padding: 10px;
  }
  .page-contact .submit-button {
    padding: 12px;
    font-size: 1.1em;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.5em;
  }
  .faq-item.active .faq-answer {
    padding: 10px 20px;
  }
  .page-contact .commitment-section li {
    padding: 15px;
  }
  .page-contact .commitment-section li::before {
    font-size: 1.2em;
    margin-right: 10px;
  }
  .page-contact .office-address address {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-contact .hero-content h1 {
    font-size: 1.8em;
  }
  .page-contact .channels-grid, .page-contact .issues-grid {
    grid-template-columns: 1fr;
  }
  .page-contact .card-image {
    height: 150px;
  }
  .page-contact .channel-card h3, .page-contact .issue-card h3 {
    font-size: 1.2em;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 1.3em;
  }
}