
/* CONTACT PAGE STYLES */

/* Contact Hero Section */
.contact-hero {
  padding-top: 80px; /* Add enough space for navbar */ 
  position: relative;
  z-index: 1;
  height: 70vh;
  background: url('contact-hero1.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0 20px;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;

}

.contact-hero > * {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.contact-hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  max-width: 600px;
}

/* Contact Main Section */
.contact-main {
  padding: 4rem 0 2rem;
  background: #f9f9f9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #222;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Lato', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8cbc46;
  box-shadow: 0 0 0 3px rgba(140, 188, 70, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Custom Checkbox */
.newsletter {
  margin-top: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background-color: #8cbc46;
  border-color: #8cbc46;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.privacy-note {
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  margin-top: 1rem;
}

.privacy-note a {
  color: #8cbc46;
  text-decoration: underline;
}

/* Contact Information */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: #8cbc46;
  margin-top: 0.25rem;
  width: 24px;
  text-align: center;
}

.contact-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.contact-item p {
  margin: 0;
  color: #333333;
  line-height: 1.5;
}

.contact-item a {
 /* color: #8cbc46;*/
 color: #1A237E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #7aa93c;
  text-decoration: underline;
}

.contact-item .hours {
  font-size: 0.9rem;
  color: #333333;
  margin-top: 0.25rem;
}

/* Social Media Section */
.social-section {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.social-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #222;
}

.social-section .social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-section .social-icons a {
  width: 50px;
  height: 50px;
  background: #8cbc46;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-section .social-icons a:hover {
  background: #7aa93c;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(140, 188, 70, 0.4);
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: white;
}

.faq-section h2 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #222;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #8cbc46;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #222;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Contact CTA */
.contact-cta {
  background: #8cbc46;
  color: white;
  text-align: center;
  padding: 3rem 20px;
}

.contact-cta h2 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta .btn-secondary {
  background-color: white;
  color: #8cbc46;
  border: 2px solid white;
}

.contact-cta .btn-secondary:hover {
  background-color: transparent;
  color: white;
}

/* Button Styles */
.btn-primary, .btn-secondary {
  background-color: #8cbc46;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(140, 188, 70, 0.4);
  font-family: 'Lato', sans-serif;
  font-weight: 600;
}

.btn-primary:hover, .btn-secondary:hover {
  background-color: #7aa93c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(140, 188, 70, 0.5);
}

/* Scroll Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .contact-hero p {
    font-size: 1rem;
    line-height: 1.4;
  }

  .contact-hero {
    height: auto;
    padding: 4rem 20px 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-wrapper,
  .contact-card,
  .social-section {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-cta h2 {
    font-size: 1.5rem;
  }

  .contact-cta p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-form-wrapper,
  .contact-card,
  .social-section {
    padding: 1rem;
  }

  .contact-form-wrapper h2,
  .contact-info h2,
  .faq-section h2 {
    font-size: 1.5rem;
  }

  .social-section .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
