/* style/contact.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f4f4f4;
  --background-dark: #222222;
  --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: 20px;
}

.page-contact .section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-contact .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-contact .paragraph {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
}

/* Hero Section */
.page-contact .hero-contact-section {
  position: relative;
  width: 100%;
  height: 450px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--text-light);
}

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

.page-contact .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(139, 0, 0, 0.7)); /* Dark red overlay */
  z-index: 2;
}

.page-contact .hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.page-contact .hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact .hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.page-contact .cta-button:hover {
  background-color: #FFC107; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-contact .contact-methods-section .section-title {
  color: var(--primary-color);
}

.page-contact .contact-methods-section .paragraph {
  color: var(--text-light);
}

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

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

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

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

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

.page-contact .card-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 25px;
}

.page-contact .card-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact .card-button:hover {
  background-color: #a00000; /* Slightly darker red */
  transform: translateY(-2px);
}

.page-contact .email-link {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-contact .email-link:hover {
  color: #FFC107;
}

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

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

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

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

.page-contact .form-input,
.page-contact .form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-contact .submit-button {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: var(--secondary-color);
  color: var(--text-light);
  border: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* Why Contact Section */
.page-contact .why-contact-section {
  padding: 60px 0;
  background-color: #fcfcfc;
}

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

.page-contact .reason-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border-left: 5px solid var(--primary-color);
}

.page-contact .reason-item:hover {
  transform: translateY(-5px);
}

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

.page-contact .reason-description {
  font-size: 1em;
  color: var(--text-dark);
}

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

.page-contact .effective-contact-section .section-title {
  color: var(--primary-color);
}

.page-contact .effective-contact-section .paragraph {
  color: var(--text-light);
}

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

.page-contact .step-item {
  background-color: #333333;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid var(--secondary-color);
}

.page-contact .step-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-contact .step-description {
  font-size: 1em;
  color: #cccccc;
}

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

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

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

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

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

.page-contact .faq-q-title {
  font-size: 1.25em;
  color: var(--text-dark);
  margin: 0;
  flex-grow: 1;
  text-align: left;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  margin-left: 15px;
}

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

.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: none;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px 25px 25px;
}

.page-contact .faq-a-text {
  font-size: 1em;
  color: var(--text-dark);
  margin: 0;
}

/* Bottom CTA Section */
.page-contact .cta-bottom-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--secondary-color), #a00000);
  color: var(--text-light);
  text-align: center;
}

.page-contact .cta-bottom-section .section-title {
  color: var(--primary-color);
  font-size: 2.8em;
}

.page-contact .cta-bottom-section .paragraph {
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-contact .cta-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-contact .main-cta {
  background-color: var(--primary-color);
  color: var(--text-dark);
  margin-right: 20px;
}

.page-contact .main-cta:hover {
  background-color: #FFC107;
}

.page-contact .secondary-cta {
  background-color: #cccccc;
  color: var(--text-dark);
}

.page-contact .secondary-cta:hover {
  background-color: #bbbbbb;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact .hero-title {
    font-size: 3em;
  }
  .page-contact .hero-description {
    font-size: 1.1em;
  }
  .page-contact .section-title {
    font-size: 2em;
  }
  .page-contact .methods-grid, .page-contact .reasons-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-contact .hero-contact-section {
    height: 400px;
  }
  .page-contact .hero-title {
    font-size: 2.5em;
  }
  .page-contact .hero-description {
    font-size: 1em;
  }
  .page-contact .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact .section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-contact .paragraph {
    font-size: 0.95em;
  }
  .page-contact .contact-form {
    padding: 25px;
  }
  .page-contact .form-label {
    font-size: 1em;
  }
  .page-contact .form-input, .page-contact .form-textarea {
    padding: 12px;
  }
  .page-contact .submit-button {
    font-size: 1.1em;
  }
  .page-contact .method-card, .page-contact .reason-item, .page-contact .step-item {
    padding: 20px;
  }
  .page-contact .card-title, .page-contact .reason-title, .page-contact .step-title {
    font-size: 1.5em;
  }
  .page-contact .faq-question {
    padding: 15px 20px;
  }
  .page-contact .faq-q-title {
    font-size: 1.1em;
  }
  .page-contact .faq-a-text {
    font-size: 0.95em;
  }
  .page-contact .cta-bottom-section .section-title {
    font-size: 2.2em;
  }
  .page-contact .cta-image {
    max-width: 400px;
  }
  .page-contact .main-cta, .page-contact .secondary-cta {
    margin-right: 0;
    margin-bottom: 15px;
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-contact .hero-contact-section {
    height: 350px;
  }
  .page-contact .hero-title {
    font-size: 2em;
  }
  .page-contact .hero-description {
    font-size: 0.9em;
  }
  .page-contact .section-title {
    font-size: 1.5em;
  }
  .page-contact .methods-grid, .page-contact .reasons-list {
    grid-template-columns: 1fr;
  }
  .page-contact .cta-bottom-section .section-title {
    font-size: 1.8em;
  }
}