.page-contact {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for general text on dark backgrounds */
  background-color: #1a1a1a; /* Dark background */
}

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

.page-contact .text-center {
  text-align: center;
}

.page-contact .section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  font-weight: bold;
}

.page-contact .section-description {
  font-size: 1.1em;
  color: #C0C0C0; /* Slightly lighter grey for descriptions */
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Banner */
.page-contact .hero-banner {
  position: relative;
  width: 100%;
  height: 450px; /* Increased height for better visual impact */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #000;
}

.page-contact .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.7;
}

.page-contact .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Darker overlay for text readability */
  z-index: 1;
}

.page-contact .hero-content-wrapper {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 800px;
  padding: 0 20px;
}

.page-contact .hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-contact .hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-contact .cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: #FF0000; /* Primary Red */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-contact .cta-button:hover {
  background: #CC0000; /* Darker Red on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-contact .large-button {
  padding: 18px 45px;
  font-size: 1.2em;
}

/* Contact Info Section */
.page-contact .contact-info-section {
  padding: 60px 0;
  background-color: #222222;
}

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

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

.page-contact .contact-method-card:hover {
  transform: translateY(-8px);
  background: #444444;
}

.page-contact .method-icon {
  width: 120px; /* Increased icon size */
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow */
}

.page-contact .contact-method-card h3 {
  font-size: 1.8em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact .contact-method-card p {
  color: #B0B0B0;
  font-size: 1em;
  margin-bottom: 25px;
}

.page-contact .contact-button {
  display: inline-block;
  padding: 12px 25px;
  background: #FF0000; /* Primary Red */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

/* Contact Form Section */
.page-contact .contact-form-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-contact .form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  align-items: center;
  justify-content: center;
}

.page-contact .contact-form {
  flex: 1;
  min-width: 300px;
  background: #2a2a2a;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

.page-contact .form-group label {
  display: block;
  margin-bottom: 10px;
  color: #FFD700; /* Gold for labels */
  font-weight: bold;
  font-size: 1.1em;
}

.page-contact .form-group input[type="text"],
.page-contact .form-group input[type="email"],
.page-contact .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #555555;
  border-radius: 5px;
  background-color: #3a3a3a;
  color: #ffffff;
  font-size: 1em;
  box-sizing: border-box;
}

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

.page-contact .form-group input:focus,
.page-contact .form-group textarea:focus {
  border-color: #FF0000; /* Primary Red on focus */
  outline: none;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
}

.page-contact .submit-button {
  width: 100%;
  padding: 15px;
  background: #FF0000; /* Primary Red */
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.page-contact .submit-button:hover {
  background: #CC0000;
  transform: translateY(-2px);
}

.page-contact .form-illustration {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-contact .form-illustration img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* FAQ Section */
.page-contact .faq-section {
  padding: 80px 0;
  background-color: #222222;
}

.page-contact .faq-list {
  margin-top: 40px;
}

.page-contact .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: #333333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-contact .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #444444;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-contact .faq-question:hover {
  background: #555555;
}

.page-contact .faq-question h3 {
  font-size: 1.2em;
  color: #FFD700; /* Gold for FAQ questions */
  margin: 0;
  font-weight: bold;
}

.page-contact .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FF0000; /* Primary Red for toggle icon */
  transition: transform 0.3s ease;
}

.page-contact .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFD700; /* Gold when active */
}

.page-contact .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  color: #B0B0B0;
  font-size: 1em;
}

.page-contact .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px;
  background: #3a3a3a;
  border-top: 1px solid #555555;
}

.page-contact .faq-item.active .faq-answer p {
  margin: 0;
}

/* Why Contact Us Section */
.page-contact .why-contact-us {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-contact .benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-contact .benefits-list li {
  background: #2a2a2a;
  padding: 25px;
  border-left: 5px solid #FF0000; /* Red accent */
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-contact .benefits-list li:hover {
  transform: translateX(5px);
  border-color: #FFD700; /* Gold accent on hover */
}

.page-contact .benefits-list li strong {
  color: #FFD700; /* Gold for strong text */
  font-weight: bold;
}

/* Call to Action Bottom */
.page-contact .call-to-action-bottom {
  padding: 60px 0;
  background-color: #222222;
}

.page-contact .cta-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: #333333;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-contact .cta-image {
  flex: 0 0 300px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-contact .cta-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-contact .cta-text h3 {
  font-size: 2em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact .cta-text p {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-contact .hero-title {
    font-size: 2.8em;
  }
  .page-contact .hero-subtitle {
    font-size: 1.1em;
  }
  .page-contact .section-title {
    font-size: 2em;
  }
  .page-contact .contact-methods-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-contact .form-container {
    flex-direction: column;
  }
  .page-contact .form-illustration {
    order: -1; /* Image on top for mobile */
  }
  .page-contact .cta-content {
    flex-direction: column;
    text-align: center;
  }
  .page-contact .cta-text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-contact .hero-banner {
    height: 350px;
  }
  .page-contact .hero-title {
    font-size: 2.2em;
  }
  .page-contact .hero-subtitle {
    font-size: 1em;
  }
  .page-contact .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact .section-title {
    font-size: 1.8em;
    padding-top: 30px;
  }
  .page-contact .section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-contact .contact-method-card {
    padding: 25px;
  }
  .page-contact .contact-method-card h3 {
    font-size: 1.5em;
  }
  .page-contact .method-icon {
    width: 100px;
    height: 100px;
  }
  .page-contact .contact-form {
    padding: 30px;
  }
  .page-contact .form-group label {
    font-size: 1em;
  }
  .page-contact .submit-button {
    font-size: 1.1em;
    padding: 12px;
  }
  .page-contact .faq-question h3 {
    font-size: 1.1em;
  }
  .page-contact .faq-toggle {
    font-size: 20px;
  }
  .page-contact .faq-answer {
    padding: 15px 20px;
  }
  .page-contact .benefits-list li {
    font-size: 1em;
    padding: 20px;
  }
  .page-contact .cta-text h3 {
    font-size: 1.8em;
  }
  .page-contact .cta-text p {
    font-size: 1em;
  }
  .page-contact .cta-image {
    flex: 0 0 250px;
  }
}

@media (max-width: 480px) {
  .page-contact .hero-banner {
    height: 300px;
  }
  .page-contact .hero-title {
    font-size: 1.8em;
  }
  .page-contact .hero-subtitle {
    font-size: 0.9em;
  }
  .page-contact .section-title {
    font-size: 1.5em;
  }
  .page-contact .contact-methods-grid {
    grid-template-columns: 1fr;
  }
  .page-contact .faq-question h3 {
    font-size: 1em;
  }
  .page-contact .faq-answer p {
    font-size: 0.95em;
  }
  .page-contact .benefits-list li {
    font-size: 0.95em;
  }
  .page-contact .cta-image {
    flex: 0 0 200px;
  }
}