.elementor-30 .elementor-element.elementor-element-d24935f{--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-0e4a3ce */body {
  font-family: 'Segoe UI', sans-serif;
  background: #f6f6f6;
  margin: 0;
  padding: 0;
}

.contact-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 900px;
  margin: 60px auto 30px auto;
}

.contact-card {
  background: linear-gradient(135deg, #4C9C7A, #68b89a);
  color: white;
  border-radius: 16px;
  padding: 30px 25px;
  flex: 1 1 260px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-8px);
}

.contact-card i {
  font-size: 30px;
  margin-bottom: 12px;
}

.contact-card h4 {
  margin: 10px 0;
}

.contact-card a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.destinos-section {
  max-width: 1000px;
  margin: 40px auto;
  text-align: center;
}

.destinos-section h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #4C9C7A;
}

.destinos-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 20px;
  justify-content: center;
  padding-bottom: 20px;
}

.destino-card {
  position: relative;
  width: 180px;
  height: 120px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  overflow: hidden;
}

.destino-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.destino-card:hover {
  transform: scale(1.05);
}

.destino-card span {
  z-index: 2;
  position: relative;
}

.travel-contact-form {
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

.travel-contact-form h2 {
  margin-bottom: 25px;
  font-size: 26px;
  color: #4C9C7A;
  text-align: center;
}

.travel-contact-form input,
.travel-contact-form select,
.travel-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.travel-contact-form button {
  background-color: #4C9C7A;
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
}

.travel-contact-form button:hover {
  background-color: #3e7e64;
}/* End custom CSS */