:root {
  --primary: #ffd60a;
  --primary-light: #ffe680;
  --primary-dark: #e6b800;
  --apple-yellow: #ffd60a;
  --apple-red: #ff3b30;
}

.navbar-nav .nav-link {
  color: #000;
}

.hero-wrap {
  height: 100vh;
  min-height: 600px;
}
.hero-wrap .overlay {
  background-color: rgba(0, 0, 0, 0.55);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.navbar-nav .nav-item.active .nav-link {
  color: var(--primary) !important;
}

html {
  scroll-behavior: smooth;
}

.navbar .no-caret::after {
  display: none;
}

.navbar .dropdown-menu {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  animation: fadeIn 0.2s ease;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.navbar .nav-item.dropdown:hover > .dropdown-menu,
.navbar .nav-item.dropdown:focus-within > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown-item {
  color: #000;
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 4px;
  margin: 0 8px;
  width: calc(100% - 16px);
}

.navbar .dropdown-item:hover {
  background-color: var(--primary);
  color: #000;
}

.navbar .dropdown-item.active {
  background-color: var(--primary);
  color: #000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn:active {
  transform: translateY(0) !important;
}

a {
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}
a:hover {
  color: var(--primary) !important;
}

.contact-form .form-control {
  border-radius: 0;
  border: 1px solid #ddd;
  padding: 14px 18px;
  font-size: 15px;
  transition: all 0.2s ease;
  background-color: #fff;
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: none;
  outline: none;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  border-radius: 0;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  transition: all 0.2s ease;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.contact-form .btn-primary:hover {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #000;
}

.contact-form .btn-primary:active {
  transform: translateY(0);
  background-color: var(--primary-dark) !important;
}

.btn-primary {
  border-radius: 0 !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #000 !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  /* color: #000 !important; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary:active {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: #000 !important;
  box-shadow: none;
}

.btn {
  border-radius: 0 !important;
  padding: 12px 28px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none !important;
  transition: all 0.2s ease !important;
}

.whatsapp-float i {
  font-size: 26px;
}
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-float i {
  font-size: 26px;
}

.services .icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.services:hover .icon {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 59, 48, 0.3);
}

.services .heading {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
}

.services p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.services.border {
  border: 1px solid #eee;
  transition: all 0.3s ease;
  height: 100%;
}

.services.border:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }
}

.bg-primary {
  background-color: var(--primary) !important;
}

.icon span {
  color: black !important;
}
.header-font {
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: #fff;
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.btn-hero-primary {
  background: var(--primary) !important;
  border: none !important;
  color: #000 !important;
  font-weight: 600 !important;
  padding: 0.9rem 2.2rem !important;
  border-radius: 50px !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.02em;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  color: #000 !important;
}

.hero-buttons {
  margin-left: auto;
  margin-right: auto;
  width: auto;
}

.hero-buttons .btn-hero-primary {
  width: 100%;
  padding: 0.9rem 1.5rem !important;
  border: 1px solid var(--primary) !important;
}

.hero-buttons .icon-wrap {
  width: 100%;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  text-decoration: none;
}

.hero-buttons .icon-wrap:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.hero-buttons .icon-wrap .icon {
  width: 36px;
  height: 36px;
  background: #fff !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.hero-buttons .icon-wrap .icon span {
  color: #000 !important;
  font-size: 0.9rem;
}

.hero-buttons .icon-wrap .heading-title {
  margin-left: 0.75rem !important;
}

.hero-buttons .icon-wrap .heading-title span {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
}

.icon-wrap {
  transition: all 0.3s ease;
}

.icon-wrap:hover {
  transform: translateY(-2px);
}

.icon-wrap .icon {
  width: 56px;
  height: 56px;
  background: #fff !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.icon-wrap:hover .icon {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.icon-wrap .icon span {
  color: #000 !important;
  font-size: 1.1rem;
}

.icon-wrap .heading-title span {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em;
}

.heading-title::after {
  display: none;
}

@media (max-width: 768px) {
  .hero-wrap {
    height: auto;
    min-height: 100vh;
    padding: 120px 0 80px;
  }

  .hero-wrap .overlay {
    position: absolute;
    height: 100%;
  }

  .header-font {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .hero-lead {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .btn-hero-primary {
    padding: 0.85rem 1.5rem !important;
    font-size: 0.95rem !important;
  }

  .hero-buttons {
    max-width: 100%;
  }

  .hero-buttons .icon-wrap {
    padding: 0.55rem 1rem;
  }

  .hero-buttons .icon-wrap .icon {
    width: 32px;
    height: 32px;
  }

  .hero-buttons .icon-wrap .icon span {
    font-size: 0.8rem;
  }

  .hero-buttons .icon-wrap .heading-title span {
    font-size: 0.85rem !important;
  }

  .icon-wrap {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .icon-wrap .icon {
    width: 48px;
    height: 48px;
  }

  .icon-wrap .heading-title {
    margin-left: 0 !important;
  }

  .icon-wrap .heading-title::after {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .hero-tag {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }
}

.text-primary {
  color: var(--primary) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}

.link-primary {
  color: var(--primary) !important;
}
.link-primary:hover {
  color: var(--primary-light) !important;
}

.nav-item:hover > a,
.ftco-navbar-light.scrolled .nav-item:hover > a {
  color: var(--primary-light) !important;
}

.ftco-navbar-light.scrolled .nav-item.active > a {
  color: var(--primary) !important;
}

.btn-outline-dark {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  padding: 12px 28px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease !important;
}

.btn-outline-dark:hover {
  color: #fff !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline-dark:active {
  transform: translateY(0) !important;
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: #fff !important;
}

.popup-vimeo {
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.popup-vimeo:hover {
  color: var(--primary-dark) !important;
}

.popup-vimeo .icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: #000;
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.popup-vimeo:hover .icon {
  background-color: var(--primary-dark);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(255, 59, 48, 0.3);
}

.popup-vimeo .heading-title span {
  color: var(--primary);
  font-weight: 600;
}

.popup-vimeo:hover .heading-title span {
  color: var(--primary-dark);
}

.site-footer {
  background: linear-gradient(180deg, #333333 0%, #222222 100%);
  color: #c8c8d4;
  padding: 60px 0 0;
  font-family: 'Poppins', sans-serif;
}

.site-footer .container {
  max-width: 1200px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo span {
  color: var(--primary);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #8890a0;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
}

.footer-social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #c8c8d4;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.footer-social li a:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #8890a0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #5a6070;
}

.footer-contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-contact span {
  font-size: 0.82rem;
  color: #5a6070;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-contact .icon {
  font-size: 0.85rem;
  color: var(--primary);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}

.custom-features {
  list-style: none;
  padding-left: 0;
}

.custom-features li {
  position: relative;
  padding: 8px 0 8px 1.5rem;
  font-size: 0.95rem;
  color: #555;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.custom-features li:last-child {
  border-bottom: none;
}

.custom-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
}

.custom-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

.custom-contact li {
  padding: 4px 0;
}

.custom-contact i {
  font-size: 1rem;
}

.small-tag {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.3;
  color: #222;
}

.header-font {
  font-weight: 300 !important;
  letter-spacing: 1px;
  font-size: 3.2rem;
  line-height: 1.2;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
}

.minimal-image-card {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.minimal-image-card img {
  transition: transform 0.6s ease;
}

.minimal-image-card:hover img {
  transform: scale(1.03);
}

.hero-content {
  padding-right: 1rem;
}

.hero-image-wrapper {
  position: relative;
}

.feature-card {
  padding: 2rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0px 0px none !important;
  transform: translateY(-5px);
  border-color: var(--primary);
}

.feature-card h4 {
  font-weight: 500;
  color: #111;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 12px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-card:hover .icon {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 59, 48, 0.3);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: #000;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.feature-card:hover .feature-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.font-italic,
.text-italic {
  font-style: italic;
}

.fleet-card {
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}

.fleet-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: transparent;
}

.fleet-img-holder {
  overflow: hidden;
  position: relative;
  padding-top: 65%;
  background: #f5f5f5;
  border-radius: 8px 8px 0 0;
}

.fleet-img-holder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-img-holder img {
  transform: scale(1.05);
}

.fleet-card-body {
  padding: 1.25rem;
}

.fleet-name {
  font-size: 1.05rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 0.25rem;
}

.fleet-card .fleet-price {
  font-size: 1rem;
  font-weight: 600;
}

.fleet-card .btn {
  border-radius: 0;
  font-size: 0.8rem;
  padding: 6px 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.fleet-card .btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.experience-box {
  transition: all 0.3s ease;
  height: 100%;
}

.experience-box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
  border-color: var(--primary) !important;
}

#experience {
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    #fff 50%,
    var(--primary-light) 100%
  );
}

#experience .small-tag {
  color: var(--apple-red);
}

@media (max-width: 768px) {
  .header-font {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .hero-content {
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  .stat-box h3 {
    font-size: 1.6rem;
  }
}

.stat-box {
  padding: 1.5rem;
  background: #fff;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box h3 {
  font-size: 2rem;
  font-weight: 300;
  color: #111;
}

.stat-box p {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  margin-top: 0.5rem;
}

#map {
  height: 450px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 576px) {
  #map {
    height: 300px;
  }
}

.contact-info-cards .feature-card {
  text-align: center;
}

.contact-info-cards .feature-card p a {
  color: var(--primary);
  text-decoration: underline;
}

.breadcrumbs .sep {
  color: var(--primary);
  margin: 0 0.5rem;
  font-weight: 300;
  letter-spacing: 0;
}

.breadcrumbs {
  letter-spacing: 0.5px;
}

.breadcrumbs span {
  font-size: 0.85rem;
  color: #8890a0;
}

.breadcrumbs a {
  color: #8890a0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.tag-cloud-link:hover {
  border: 1px solid var(--primary) !important;
}

.ftco-counter .overlay {
  background: linear-gradient(var(--primary-light) 40%, var(--primary) 100%);
}

.bg-primary-light {
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    #fff 50%,
    var(--primary-light) 100%
  );
}

.ftco-counter .text strong.number {
  color: var(--primary);
  font-weight: 400;
}

.team-avatar {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-card:hover .team-avatar {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.hero-stats {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats .stat-item {
  position: relative;
  padding: 0.5rem 0;
}

.hero-stats .stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.hero-stats .stat-item .ti {
  color: var(--primary);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.hero-stats .stat-item strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.5px;
}

.hero-stats .stat-item span {
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #888;
}

@media (max-width: 768px) {
  .hero-stats {
    padding: 1.5rem 1rem;
    border-radius: 12px;
  }

  .hero-stats .stat-item:not(:last-child)::after {
    display: none;
  }

  .hero-stats .stat-item .ti {
    font-size: 1.5rem;
  }

  .hero-stats .stat-item strong {
    font-size: 1.25rem;
  }

  .hero-stats .stat-item span {
    font-size: 0.75rem;
  }
}

.ti {
  vertical-align: middle;
}

.icon .ti {
  font-size: 1.2rem;
}

.footer-social .ti {
  font-size: 1.1rem;
}

.popup-vimeo .ti {
  font-size: 1.2rem;
}

.breadcrumbs .ti {
  font-size: 0.85rem;
  vertical-align: middle;
}
.section-img {
  object-fit: contain;
  height: 38rem;
}

.btn-whatsapp {
  background-color: #20ba5a;
  color: #fff !important;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  color: #fff !important;
}

.stat-box {
  border: 1px solid var(--primary);
}

.navbar-brand {
  letter-spacing: 2px;
}
.navbar-brand span {
  color: var(--primary) !important;
}
