.elementor-713 .elementor-element.elementor-element-a61ae90{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-689ba9f *//* ============= CONTACT SECTION STYLES ============= */
.contact-section {
  padding: 90px 0;
  background: #f5f7f9;
  font-family: 'Inter', sans-serif;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-details h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #0f4c3a;
  margin-bottom: 15px;
}

.contact-details .subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.6;
}

.details-grid {
  display: grid;
  gap: 25px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  padding-left: 40px;
}

.detail-item i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #4caf50;
  font-size: 1rem;
}

.detail-item a,
.detail-item span {
  font-weight: 600;
  color: #0f4c3a;
  text-decoration: none;
}

.detail-item small {
  color: #666;
  font-size: 0.85rem;
}

.seo-key {
  margin-top: 40px;
  font-size: 0.85rem;
  color: #7c7c7c;
  line-height: 1.5;
}

/* Contact form */
.contact-form {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(15, 76, 58, 0.08);
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #0f4c3a;
  margin-bottom: 25px;
  text-align: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #4caf50;
  outline: none;
}

.submit-btn {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #0f4c3a, #2d7a5f);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 500px) {
  .contact-details h2 {
    font-size: 1.8rem;
  }
}/* End custom CSS */