.hero-service {
  padding-bottom: 100px !important;
}

.hero-service p {
  color: #fff !important;
  width: 50%;
}

.wpcf7 form label {
  display: block;
  font-weight: bold;
  margin-bottom: 0px !important;
  font-family: Titillium Web;
  font-size: 14px !important;
  color: #6B7179 !important;
  font-weight: bold;
}

.wpcf7 form input,
.wpcf7 form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #D0D3D6;
  border-radius: 5px;
}

.wpcf7 form .btn-primary {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.wpcf7 form .btn-primary:hover {
  background-color: #0056b3;
}

.forma {
  padding: 100px 0px 200px 0px;
  display: flex;
  justify-content: center;
  background: #fff;
}

.forma .text-center {
  text-align: center !important;
  display: flex;
  justify-content: center;
}

.forma .wpcf7 {
  max-width: 900px;
}


/* BLUE BUTTON */
.tbs-button-blue:not(.site-footer .tbs-button-blue) {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px 20px 10px 20px !important;
  border: none !important;
  border-radius: 100px !important;
  /* Fully rounded */
  background-color: #214C8F !important;
  /* Button color */
  color: #BBD6EF !important;
  font-size: 16px !important;
  cursor: pointer !important;
  position: relative !important;
  transition: background-color 0.3s !important;
  font-family: "Titillium Web", sans-serif !important;
  font-weight: 300 !important;
  width: fit-content !important;
}



.tbs-button-blue svg {
  max-width: 5px;
}

.tbs-button-blue .button-text {
  margin-right: 20px;
  /* Space between text and circle */
}

.tbs-button-blue .circle {
  width: 10px;
  /* Size of the circle */
  height: 10px;
  /* Size of the circle */
  border-radius: 50%;
  /* Circular shape */
  background-color: #BBD6EF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* To position the arrow */
  transition: transform 0.3s;
  /* Transition for growth effect */
}

.tbs-button-blue:hover .circle {
  transform: scale(2.4);
  /* Circle grows on hover */
}

.tbs-button-blue .arrow {
  font-size: 5px !important;
  /* Size of the arrow */
  color: #fff;
  /* Arrow color matches the button */
  position: absolute;
  /* To position it within the circle */
  left: -30px;
  /* Start outside the circle on the left */
  transition: left 0.3s, opacity 0.3s;
  /* Smooth transition */
  opacity: 0;
  /* Hidden by default */
}

.tbs-button-blue:hover .arrow {
  left: 3px;
  /* Move into the circle on hover */
  opacity: 1;
  /* Show the arrow on hover */
}

@media only screen and (max-width: 600px) {
  .hero-service {
    padding-bottom: 50px !important;
  }
}

@media only screen and (max-width: 600px) {
  .hero-service p {
    color: #fff !important;
    width: 100%;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #DFECF7 !important;
  background-color: #DFECF7;
  padding: 150px 50px 50px 50px;
  border-radius: 30px;
  color: #3865A3;
  font-family: "Titillium Web", sans-serif !important;
  font-size: 20px;
  text-align: center;
  background-image: url(https://tbs-team24.com.mp10.si/wp-content/uploads/2025/04/send-ok.svg);
  background-size: 50px;
  background-position: top center;
  background-repeat: no-repeat;
  background-position: 50% 30px;

}

.wpcf7 form.invalid .wpcf7-response-output {
  border-color: #FFF0EA !important;
  background-color: #FFF0EA;
  padding: 150px 50px 50px 50px;
  border-radius: 30px;
  color: #D5490F;
  font-family: "Titillium Web", sans-serif !important;
  font-size: 20px;
  text-align: center;
  background-image: url(https://tbs-team24.com.mp10.si/wp-content/uploads/2025/04/send-fail-1.svg);
  background-size: 50px;
  background-position: top center;
  background-repeat: no-repeat;
  background-position: 50% 30px;
}


.davcna label {
  display: flex !important;
  justify-content: space-between !important;
  align-items: baseline !important;
  gap: 20px !important;
}

.forma

/* Styling on focus */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #BBD6EF;
  /* Highlighted border color */
  background-color: white;
  /* Highlighted background color */
  outline: none;
  /* Removes the default focus outline */
}

/* Optional: Placeholder styling */
input::placeholder,
textarea::placeholder {
  color: #AFB2B6;
  font-family: "Titillium Web", sans-serif !important;
  font-weight: 200;

}

.forma .wpcf7-date {
  color: #AFB2B6;
  font-family: "Titillium Web", sans-serif !important;
  font-weight: 200;

}


input[name="acceptance-24"] {
  width: 20px !important;
}

.wpcf7-not-valid {
    background-color: #FFF0EA;
}

.wpcf7-not-valid::placeholder {
    color: #D5490F !important;
}

/* 1) Make the CF7 wrap act as a positioning context */
.wpcf7-form-control-wrap {
  position: relative;
}

/* 2) Pull the error message up so it overlaps the top of the input */
.wpcf7-not-valid-tip {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-100%);
    background: transparent;
    color: #fff;
    padding: 0.25em 0.5em;
    font-size: 0.75em !Important;
    white-space: nowrap;
    border-radius: 3px;
    z-index: 10;
    margin-top: -8px;
}

.site-footer span.wpcf7-list-item-label {
    color: white;
    font-weight: normal;
    font-size: 1rem !important;
}