.contact-page {
  font-family: "Poppins", sans-serif;
  margin-bottom: 2rem;
}

.contact-page .container {
    padding: 2.5rem 2.5rem;
}

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 100px auto;
  max-width: 600px;
}

.contact-hero .section-label {
  color: #00d084;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.contact-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.contact-hero .subtitle {
  color: #6c6c6c;
  font-size: 1rem;
}

.contact-cards .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem auto;
  /* max-width: 960px; */
}

.contact-cards .card {
  background: #fff;
  border: 1px solid #00d084;
  padding: 2rem;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.contact-cards .card p {
  padding: 0.9rem 0;
  color: #555;
}

.contact-cards .card i {
  font-size: 3rem;
  color: #00d084;
  margin-bottom: 1.8rem;
}

.contact-cards .card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: center;
}

.contact-form .section-label {
  color: #00d084;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.contact-form .subtitle {
  color: #6c6c6c;
  margin-bottom: 2rem;
}

/* Contact Form Section */
.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Two-column grid for name fields */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border 0.3s ease;
}

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

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: #00d084;
  outline: none;
}

/* Submit Button */
.wpcf7-submit {
  background-color: #00d084;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wpcf7-submit:hover {
  background-color: #00d084;
}

.wpcf7-response-output {
  margin-top: 1rem;
  padding: 1rem;
  border: 2px solid #00d084;
  color: #00d084;
  background-color: #e9f7ef;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .contact-hero h1 {
    font-size: 1.5rem;
  }

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