/* style/contact.css */

/* General page styling */
.page-contact {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #f8f9fa;
}

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

.page-contact-section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary blue for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

/* Hero Section */
.page-contact-hero {
  background: linear-gradient(135deg, #007bff, #28a745); /* Blue to Green gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-contact-hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-contact-hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-contact-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-contact-btn-primary {
  background-color: #ff8400; /* Complementary orange for strong CTA */
  color: #ffffff;
}

.page-contact-btn-primary:hover {
  background-color: #e67600;
  transform: translateY(-2px);
}

.page-contact-btn-secondary {
  background-color: #28a745; /* Secondary green */
  color: #ffffff;
}

.page-contact-btn-secondary:hover {
  background-color: #1e7e34;
  transform: translateY(-2px);
}

.page-contact-btn-submit {
  background-color: #007bff; /* Primary blue for form submit */
  color: #ffffff;
  width: 100%;
  padding: 15px;
}

.page-contact-btn-submit:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-contact-text-link {
  color: #007bff;
  text-decoration: underline;
}

.page-contact-text-link:hover {
  color: #0056b3;
}

/* Contact Methods Section */
.page-contact-methods {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-contact-method-card {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-contact-method-card:hover {
  transform: translateY(-5px);
}

.page-contact-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-contact-card-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-contact-card-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 15px;
}

.page-contact-card-info {
  font-size: 1.1em;
  font-weight: bold;
  color: #28a745;
}

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

.page-contact-form-intro {
  text-align: center;
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-contact-form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333333;
}

.page-contact-form-group input[type="text"],
.page-contact-form-group input[type="email"],
.page-contact-form-group textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

.page-contact-form-group input:focus,
.page-contact-form-group textarea:focus {
  border-color: #007bff;
  outline: none;
}

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

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

.page-contact-faq-item {
  background-color: #f8f9fa;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-contact-faq-question {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-contact-faq-answer {
  font-size: 1.05em;
  color: #555555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact-hero-title {
    font-size: 2.5em;
  }

  .page-contact-hero-description {
    font-size: 1em;
  }

  .page-contact-section-title {
    font-size: 2em;
  }

  .page-contact-grid {
    grid-template-columns: 1fr;
  }

  .page-contact-form {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .page-contact-hero {
    padding: 60px 0;
  }

  .page-contact-hero-title {
    font-size: 2em;
  }

  .page-contact-section-title {
    font-size: 1.8em;
  }

  .page-contact-btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-contact-form {
    padding: 20px;
  }

  .page-contact-form-group input,
  .page-contact-form-group textarea {
    width: calc(100% - 20px);
  }
}