.elementor-5603 .elementor-element.elementor-element-26ea8aa{--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;--padding-top:120px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-5603 .elementor-element.elementor-element-3bf8c1e{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for shortcode, class: .elementor-element-3bf8c1e *//* === Form Inputs & Selects === */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  flex: 1;
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  color: #333;
  background: #f9f9f9;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
  transition: 0.3s;
  text-align: left; /* ensures text inside inputs/selects is left-aligned */
}

/* Textarea */
textarea {
  min-height: 150px;
  resize: vertical;
}

/* Checkboxes & Terms */
.checkboxes {
  text-align: left; /* aligns labels and text to the left */
}

.checkboxes label {
  display: flex; /* allows checkbox and text to sit in a row */
  align-items: center;
  gap: 10px; /* space between checkbox and text */
  font-size: 14px;
  cursor: pointer;
}

/* Ensure select dropdown options are left-aligned */
select {
  text-align: left;
  text-align-last: left; /* for some browsers to ensure selected option aligns left */
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-26ea8aa *//* ===== Safari Trip Request Form Styling ===== */
.safari-trip-form {
  background: #2e3b23 url('https://www.transparenttextures.com/patterns/giraffe.png');
  padding: 40px;
  border-radius: 15px;
  color: #fff;
  font-family: "Playfair Display", serif;
  max-width: 960px;
  margin: 50px auto;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* Form Title */
.safari-trip-form .safari-form-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 35px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #f5d9a4;
  text-transform: uppercase;
}

/* Rows */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-row.full-width {
  flex-direction: column;
}

/* Inputs, Selects & Textarea */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  flex: 1;
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  color: #333;
  background: #f9f9f9;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
  transition: 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 8px rgba(255, 215, 164, 0.7);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

/* Links */
.safari-trip-form a {
  color: #f5d9a4;
  text-decoration: underline;
}

/* Checkboxes */
.checkboxes label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
}

.checkboxes input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.2);
  vertical-align: middle;
}

/* Submit Button */
input[type="submit"] {
  background: #b85c2f;
  color: #fff;
  font-weight: 700;
  padding: 15px 30px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 17px;
  text-transform: uppercase;
  display: inline-block;
  transition: 0.3s;
}

input[type="submit"]:hover {
  background: #a74f26;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  input[type="submit"] {
    width: 100%;
  }
}/* End custom CSS */