body::before {
  display: none !important;
}

body::after {
  display: none !important;
}

.contact-section {
  padding: 40px 32px;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-section h1 {
  font-size: 38px;
  font-weight: 800;
  color: rgb(9, 8, 8);
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-section h3 {
  font-size: 17px;
  color: #64748b;
  margin-bottom: 40px;
  margin-top: 5px;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Contact Form */
.form-section {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.form-section h2 {
  font-size: 20px;
  color: #2d3748;
  margin-bottom: 20px;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form input,
form textarea {
  padding: 12px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: inherit;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #48bb78;
  box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.1);
}

form textarea {
  resize: vertical;
  min-height: 100px;
}

form button {
  padding: 12px 20px;
  background: #38a169;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

form button:hover {
  background: #2f855a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(72, 187, 120, 0.3);
}

.form-response {
  margin-top: 12px;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}

/* Contact info Section */
.info-section {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.info-section h2 {
  font-size: 20px;
  color: #2d3748;
  margin-bottom: 24px;
  text-align: center;
}

.info-section p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #4a5568;
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-section p strong {
  color: #2d3748;
  min-width: 80px;
}

/* Map */
.map-container {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid #e2e8f0;
}

.map-container iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

/* FAQ */
.faq {
  background: #f7fafc;
  padding: 40px 20px;
  margin-top: 40px;
}

.faq h2 {
  text-align: center;
  font-size: 24px;
  color: #2d3748;
  margin-bottom: 30px;
  font-weight: 700;
}

.accordion {
  max-width: 700px;
  margin: 0 auto;
}

.accordion-btn {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-btn:hover {
  background: #f7fafc;
  border-color: #48bb78;
  transform: translateY(-1px);
}

.accordion-btn::after {
  content: "+";
  font-size: 20px;
  font-weight: bold;
  color: #48bb78;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
  border-radius: 0 0 12px 12px;
  margin-top: -10px;
  border: 2px solid #e2e8f0;
  border-top: none;
}

.accordion-content p {
  padding: 16px 20px;
  margin: 0;
  color: #4a5568;
  line-height: 1.6;
  font-size: 14px;
}

/* Mobile responsiveness */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .contact-section {
    padding: 28px 16px;
  }

  .contact-section h1 {
    font-size: 28px;
  }

  .contact-section h3 {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .form-section,
  .info-section {
    padding: 20px;
    border-radius: 12px;
  }

  form input,
  form textarea,
  form button {
    font-size: 15px;
  }

  .map-container iframe {
    height: 220px;
  }

  .faq {
    padding: 28px 16px;
  }

  .accordion {
    max-width: 100%;
  }

  .accordion-btn {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .contact-section h1 {
    font-size: 24px;
  }

  .form-section,
  .info-section {
    padding: 16px;
  }

  .map-container iframe {
    height: 200px;
  }
}
