.elementor-13459 .elementor-element.elementor-element-61cecf4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-0255193 *//* ===== CONTACT SECTION ===== */
.contact-section {
  background: #;   /* <-- CHANGE BACKGROUND COLOR HERE */
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
}

/* INFO CARDS */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.info-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.info-card h4 {
  font-weight: 600;
  margin-bottom: 8px;
}

/* FORM + MAP GRID */
.form-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-form h2 {
  margin-bottom: 5px;
}

.contact-form p {
  margin-bottom: 20px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.contact-form textarea {
  height: 130px;
  resize: none;
}

.send-btn {
  background: #1A73E8;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.send-btn:hover {
  background: #125bb5;
}

/* MAP BOX */
.map-box {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .form-map-grid {
    grid-template-columns: 1fr;
  }

  .map-box {
    height: 300px;
  }
}/* End custom CSS */