
:root {
  --tf-primary: #E67E22;
  --tf-secondary: #2A9D8F;
  --tf-accent: #F4A261;
  --tf-text: #264653;
  --tf-background: #F8F5F2;
  --tf-muted: #E9C46A;
  --tf-light: #FFFFFF;
  --tf-dark: #1A1A1A;
  --tf-spacing-xs: 0.5rem;
  --tf-spacing-sm: 1rem;
  --tf-spacing-md: 2rem;
  --tf-spacing-lg: 3rem;
  --tf-spacing-xl: 4rem;
  --tf-border-radius: 6px;
  --tf-transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--tf-text);
  background-color: var(--tf-background);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  margin-bottom: var(--tf-spacing-sm);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

p {
  margin-bottom: var(--tf-spacing-md);
}

a {
  color: var(--tf-secondary);
  text-decoration: none;
  transition: var(--tf-transition);
}

a:hover {
  color: var(--tf-primary);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--tf-border-radius);
}


::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--tf-background);
}

::-webkit-scrollbar-thumb {
  background: var(--tf-secondary);
  border-radius: var(--tf-border-radius);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--tf-primary);
}


.tf-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--tf-spacing-sm);
}

.tf-section {
  padding: var(--tf-spacing-lg) 0;
}

.tf-section--alt {
  background-color: rgba(42, 157, 143, 0.1);
  position: relative;
  z-index: 1;
}

.tf-section--alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232a9d8f' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: -1;
}

.tf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--tf-spacing-md);
}


.tf-header {
  padding: var(--tf-spacing-sm) 0;
  background-color: var(--tf-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tf-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tf-logo {
  display: flex;
  align-items: center;
}

.tf-logo img {
  height: 50px;
  margin-right: var(--tf-spacing-sm);
}

.tf-nav {
  position: relative;
}

.tf-nav__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tf-nav__item {
  margin: 0 var(--tf-spacing-sm);
}

.tf-nav__link {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  padding: var(--tf-spacing-xs) var(--tf-spacing-sm);
  position: relative;
}

.tf-nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--tf-primary);
  transition: var(--tf-transition);
}

.tf-nav__link:hover::after,
.tf-nav__link--active::after {
  width: 100%;
}

.tf-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--tf-spacing-xs);
}

.tf-nav__toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--tf-text);
  margin: 5px 0;
  transition: var(--tf-transition);
}


@media (max-width: 768px) {
  .tf-nav__menu {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background-color: var(--tf-light);
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 70px);
    padding: var(--tf-spacing-md);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: var(--tf-transition);
    z-index: 99;
  }

  .tf-nav__menu--active {
    right: 0;
  }

  .tf-nav__item {
    margin: var(--tf-spacing-sm) 0;
  }

  .tf-nav__toggle {
    display: block;
  }

  .tf-nav__toggle--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .tf-nav__toggle--active span:nth-child(2) {
    opacity: 0;
  }

  .tf-nav__toggle--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}


.tf-hero {
  position: relative;
  height: 80lvh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-color: var(--tf-light);
  overflow: hidden;
}

.tf-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--tf-secondary);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.1;
  z-index: 1;
}

.tf-hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.tf-hero__title {
  margin-bottom: var(--tf-spacing-md);
  color: var(--tf-text);
}

.tf-hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: var(--tf-spacing-lg);
  color: var(--tf-secondary);
}


.tf-button {
  display: inline-block;
  padding: var(--tf-spacing-sm) var(--tf-spacing-md);
  background-color: var(--tf-primary);
  color: var(--tf-light);
  border: none;
  border-radius: var(--tf-border-radius);
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--tf-transition);
  text-align: center;
}

.tf-button:hover {
  background-color: var(--tf-secondary);
  color: var(--tf-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tf-button--secondary {
  background-color: var(--tf-secondary);
  color: var(--tf-light);
}

.tf-button--secondary:hover {
  background-color: var(--tf-primary);
}

.tf-button--outline {
  background-color: transparent;
  border: 2px solid var(--tf-primary);
  color: var(--tf-primary);
}

.tf-button--outline:hover {
  background-color: var(--tf-primary);
  color: var(--tf-light);
}


.tf-card {
  background-color: var(--tf-light);
  border-radius: var(--tf-border-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--tf-transition);
  position: relative;
  top: 0;
}

.tf-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  top: -5px;
}

.tf-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tf-card__content {
  padding: var(--tf-spacing-md);
}

.tf-card__title {
  color: var(--tf-text);
  margin-bottom: var(--tf-spacing-sm);
}

.tf-card__text {
  color: var(--tf-text);
  margin-bottom: var(--tf-spacing-md);
}


.tf-features {
  margin: var(--tf-spacing-lg) 0;
}

.tf-features__item {
  margin-bottom: var(--tf-spacing-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tf-features__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(230, 126, 34, 0.1);
  color: var(--tf-primary);
  border-radius: 50%;
  margin-bottom: var(--tf-spacing-sm);
  font-size: 1.5rem;
}

.tf-features__title {
  margin-bottom: var(--tf-spacing-xs);
  color: var(--tf-text);
}


.tf-testimonial {
  text-align: center;
  padding: var(--tf-spacing-lg);
  background-color: var(--tf-light);
  border-radius: var(--tf-border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: var(--tf-spacing-md);
}

.tf-testimonial__text {
  font-style: italic;
  margin-bottom: var(--tf-spacing-md);
  position: relative;
}

.tf-testimonial__text::before,
.tf-testimonial__text::after {
  content: '"';
  font-size: 2rem;
  color: var(--tf-primary);
  position: absolute;
}

.tf-testimonial__text::before {
  top: -10px;
  left: -5px;
}

.tf-testimonial__text::after {
  bottom: -30px;
  right: -5px;
}

.tf-testimonial__author {
  font-weight: 700;
  color: var(--tf-secondary);
}

.tf-testimonial__position {
  font-size: 0.9rem;
  color: var(--tf-text);
  opacity: 0.8;
}


.tf-form {
  background-color: var(--tf-light);
  padding: var(--tf-spacing-lg);
  border-radius: var(--tf-border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.tf-form__group {
  margin-bottom: var(--tf-spacing-md);
}

.tf-form__label {
  display: block;
  margin-bottom: var(--tf-spacing-xs);
  font-weight: 500;
}

.tf-form__input,
.tf-form__textarea {
  width: 100%;
  padding: var(--tf-spacing-sm);
  border: 1px solid rgba(38, 70, 83, 0.2);
  border-radius: var(--tf-border-radius);
  font-family: 'Open Sans', sans-serif;
  transition: var(--tf-transition);
}

.tf-form__input:focus,
.tf-form__textarea:focus {
  outline: none;
  border-color: var(--tf-secondary);
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

.tf-form__textarea {
  min-height: 150px;
}

.tf-form__checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--tf-spacing-md);
}

.tf-form__checkbox input {
  margin-right: var(--tf-spacing-xs);
  margin-top: 5px;
}

.tf-form__checkbox label {
  font-size: 0.9rem;
}

.tf-form__button {
  width: 100%;
}


.tf-footer {
  background-color: var(--tf-text);
  color: var(--tf-light);
  padding: var(--tf-spacing-lg) 0;
}

.tf-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--tf-spacing-lg);
}

.tf-footer__logo {
  margin-bottom: var(--tf-spacing-md);
}

.tf-footer__title {
  color: var(--tf-light);
  margin-bottom: var(--tf-spacing-md);
  position: relative;
}

.tf-footer__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--tf-primary);
}

.tf-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tf-footer__item {
  margin-bottom: var(--tf-spacing-xs);
}

.tf-footer__link {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--tf-transition);
}

.tf-footer__link:hover {
  color: var(--tf-primary);
}

.tf-footer__contact {
  margin-bottom: var(--tf-spacing-xs);
  display: flex;
  align-items: flex-start;
}

.tf-footer__contact i {
  margin-right: var(--tf-spacing-xs);
  color: var(--tf-primary);
  min-width: 16px;
}

.tf-footer__bottom {
  margin-top: var(--tf-spacing-xl);
  padding-top: var(--tf-spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.tf-footer__copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}


.tf-back-to-top {
  position: fixed;
  bottom: var(--tf-spacing-md);
  right: var(--tf-spacing-md);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--tf-primary);
  color: var(--tf-light);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--tf-transition);
  z-index: 99;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tf-back-to-top--visible {
  opacity: 1;
  visibility: visible;
}

.tf-back-to-top:hover {
  background-color: var(--tf-secondary);
  transform: translateY(-5px);
}


.tf-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--tf-light);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  padding: var(--tf-spacing-md);
  z-index: 999;
  display: none;
}

.tf-cookie-consent__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--tf-spacing-md);
}

.tf-cookie-consent__text {
  flex: 1;
  min-width: 280px;
  margin-bottom: 0;
}

.tf-cookie-consent__buttons {
  display: flex;
  gap: var(--tf-spacing-sm);
  flex-wrap: wrap;
}

.tf-cookie-consent__settings {
  background-color: transparent;
  border: none;
  color: var(--tf-secondary);
  cursor: pointer;
  text-decoration: underline;
  padding: var(--tf-spacing-xs);
}

.tf-cookie-settings {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--tf-transition);
}

.tf-cookie-settings--visible {
  opacity: 1;
  visibility: visible;
}

.tf-cookie-settings__content {
  background-color: var(--tf-light);
  border-radius: var(--tf-border-radius);
  padding: var(--tf-spacing-lg);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.tf-cookie-settings__header {
  margin-bottom: var(--tf-spacing-md);
  padding-bottom: var(--tf-spacing-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tf-cookie-settings__title {
  margin-bottom: var(--tf-spacing-xs);
}

.tf-cookie-settings__category {
  margin-bottom: var(--tf-spacing-md);
  padding-bottom: var(--tf-spacing-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tf-cookie-settings__category:last-child {
  border-bottom: none;
}

.tf-cookie-settings__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--tf-spacing-xs);
}

.tf-cookie-settings__switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.tf-cookie-settings__switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.tf-cookie-settings__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--tf-transition);
  border-radius: 34px;
}

.tf-cookie-settings__slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--tf-transition);
  border-radius: 50%;
}

input:checked + .tf-cookie-settings__slider {
  background-color: var(--tf-secondary);
}

input:focus + .tf-cookie-settings__slider {
  box-shadow: 0 0 1px var(--tf-secondary);
}

input:checked + .tf-cookie-settings__slider:before {
  transform: translateX(26px);
}

.tf-cookie-settings__buttons {
  display: flex;
  justify-content: flex-end;
  gap: var(--tf-spacing-sm);
  margin-top: var(--tf-spacing-md);
}


.tf-text-center {
  text-align: center;
}

.tf-text-primary {
  color: var(--tf-primary);
}

.tf-text-secondary {
  color: var(--tf-secondary);
}

.tf-mt-sm {
  margin-top: var(--tf-spacing-sm);
}

.tf-mt-md {
  margin-top: var(--tf-spacing-md);
}

.tf-mt-lg {
  margin-top: var(--tf-spacing-lg);
}

.tf-mb-sm {
  margin-bottom: var(--tf-spacing-sm);
}

.tf-mb-md {
  margin-bottom: var(--tf-spacing-md);
}

.tf-mb-lg {
  margin-bottom: var(--tf-spacing-lg);
}


.tf-case-study {
  margin-bottom: var(--tf-spacing-xl);
  padding-bottom: var(--tf-spacing-lg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tf-case-study:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.tf-case-study__image {
  margin-bottom: var(--tf-spacing-md);
}

.tf-case-study__meta {
  display: flex;
  align-items: center;
  margin-bottom: var(--tf-spacing-sm);
  color: var(--tf-secondary);
  font-size: 0.9rem;
}

.tf-case-study__meta i {
  margin-right: var(--tf-spacing-xs);
}

.tf-case-study__date {
  margin-right: var(--tf-spacing-md);
}

.tf-case-study__category {
  padding: var(--tf-spacing-xs) var(--tf-spacing-sm);
  background-color: rgba(42, 157, 143, 0.1);
  border-radius: var(--tf-border-radius);
}

.tf-case-study__title {
  margin-bottom: var(--tf-spacing-sm);
}

.tf-case-study__excerpt {
  margin-bottom: var(--tf-spacing-md);
}


.tf-map {
  height: 400px;
  border-radius: var(--tf-border-radius);
  overflow: hidden;
  margin-bottom: var(--tf-spacing-lg);
}


.tf-thank-you {
  text-align: center;
  padding: var(--tf-spacing-xl) 0;
}

.tf-thank-you__icon {
  font-size: 5rem;
  color: var(--tf-secondary);
  margin-bottom: var(--tf-spacing-md);
}

.tf-thank-you__title {
  margin-bottom: var(--tf-spacing-md);
}

.tf-thank-you__text {
  max-width: 600px;
  margin: 0 auto var(--tf-spacing-lg);
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.tf-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.tf-slide-up {
  animation: slideUp 0.5s ease-in-out;
}


@media (max-width: 768px) {
  .tf-hero {
    height: auto;
    padding: var(--tf-spacing-xl) 0;
  }
  
  .tf-hero::before {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
  }
  
  .tf-grid {
    grid-template-columns: 1fr;
  }
  
  .tf-cookie-consent__content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 769px) {
  .tf-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--tf-spacing-lg);
  }
  
  .tf-case-study {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--tf-spacing-lg);
    align-items: center;
  }
  
  .tf-case-study:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
  }
  
  .tf-case-study:nth-child(even) .tf-case-study__image {
    order: 2;
  }
  
  .tf-case-study:nth-child(even) .tf-case-study__content {
    order: 1;
  }
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}