/* Fonts */
@font-face {
  font-family: 'Roboto-Variable';
  src: url('../fonts/Roboto-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat-Variable';
  src: url('../fonts/Montserrat-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}


/* Firefox */
html {
  scrollbar-width: none;
}

/* Chrome, Edge, Safari */
html::-webkit-scrollbar {
  display: none;
}

/* Edge / IE vechi */
html {
  -ms-overflow-style: none;
}


/*--------------------------------------------------------------
# Root Variables
--------------------------------------------------------------*/

:root {
  --default-font: "Roboto-Variable", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --banner-font: "Montserrat-Variable";
}


/*--------------------------------------------------------------
# Global Colors
--------------------------------------------------------------*/

:root {
  --background-color: #ffffff;
  --default-color: #000000;
  --heading-color: #ededed;
  --accent-color: #007bc8;
  --surface-color: #31302d;
  --contrast-color: #ffffff;
}


/*--------------------------------------------------------------
# Nav Menu Colors
--------------------------------------------------------------*/

:root {
  --nav-color: #d0d0d0;
  --nav-hover-color: #ff9f1c;
  --nav-mobile-background-color: #393939;
  --nav-dropdown-background-color: #393939;
  --nav-dropdown-color: #d0d0d0;
  --nav-dropdown-hover-color: #ff9f1c;
}


/*--------------------------------------------------------------
# Color Presets
--------------------------------------------------------------*/

.light-background {
  --background-color: #202020;
  --surface-color: #454444;
}

.dark-background {
  --background-color: #191818;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}


/*--------------------------------------------------------------
# Smooth Scroll
--------------------------------------------------------------*/

:root {
  scroll-behavior: auto;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

body {
  color: var(--default-color);
  background-color: var(--background-color);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--default-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease;
  z-index: 997;
}

.header .branding {
  min-height: 60px;
  padding: 25px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 35px;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .header .logo img {
    max-height: 25px;
    margin-left: 8px;
  }
}

.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}

.topbar {
  background: transparent;
  color: var(--contrast-color);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  max-height: 44px;
  opacity: 1;
  transition:
    max-height 0.25s ease,
    opacity 0.25s ease,
    border-color 0.25s ease;
    background-color 0.25s ease;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 44px;
}

.topbar a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}

.topbar .contact-info {
  display: flex;
  align-items: center;
  gap: 45px;
  flex-wrap: wrap;
}

.topbar .contact-info > * {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.topbar .contact-info i {
  font-size: 18px;
  color: var(--contrast-color);
}

.topbar .contact-info a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.topbar .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar .social-links a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.10);
  color: var(--contrast-color);
  border-radius: 5px;
}

.topbar .social-links a:hover {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  background: rgba(255, 255, 255, 0.20);
}

.topbar-toggle {
  display: none;
}

.scrolled .topbar,
.scrolled .topbar.topbar-open {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

@media (max-width: 991px) {
  .topbar {
    max-height: 38px;
  }

  .topbar.topbar-open {
    max-height: 275px;
  }

  .topbar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 38px;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--contrast-color);
    font-family: var(--banner-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
  }

  .topbar-toggle i {
    font-size: 15px;
    color: var(--contrast-color);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .topbar.topbar-open .topbar-toggle i {
    transform: rotate(180deg);
  }

.topbar .container {
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-height: 0;
  padding-bottom: 15px;
}

.topbar .contact-info {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 5px 0 15px;
  font-size: 14px;
  text-align: center;
}

.topbar .social-links {
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

  .topbar .social-links a {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.10);
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar,
  .topbar-toggle i {
    transition: none;
  }
}

@media (max-width: 991px) {
  .header:has(.topbar.topbar-open) {
    --background-color: rgba(0, 0, 0, 0.9);
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    list-style: none;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #ffffff;
    padding: 20px 25px;
    font-family: var(--banner-font);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition:
      color 0.3s ease;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    position: relative;
    z-index: 9999;
    color: var(--contrast-color);
    font-size: 30px;
    line-height: 0;
    margin-right: 0;
    cursor: pointer;
    transition: color .3s ease;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--accent-color);
  }

  .navmenu {
    padding: 0;
    position: static;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    top: calc(100% + 22px);
    left: 20px;
    right: 20px;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    border-radius: 15px;
    background-color: var(--default-color);
    box-shadow: 0 0 30px rgba(0, 0, 0, .35);
    max-height: 70vh;
    overflow-y: auto;
    z-index: 99999;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #ffffff;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: color .3s ease;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navmenu::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(33, 37, 41, .8);
    z-index: 9996;
  }

  .mobile-nav-active .navmenu > ul {
    display: flex;
  }

  .header .topbar {
    position: relative;
    z-index: 9998;
  }

  .header .logo {
    position: relative;
    z-index: 9998;
  }

}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  padding: 75px 15px 10px 15px;
}

.footer-card {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 4.8vw, 64px) clamp(20px, 3.4vw, 48px) clamp(20px, 2.8vw, 32px);
  border-radius: 25px;
  background-color: var(--default-color);
}

.footer-inner {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(30px, 3.5vw, 55px);
  margin-bottom: clamp(35px, 4vw, 50px);
}

.footer-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  padding: clamp(30px, 3.6vw, 42px) clamp(22px, 3vw, 38px);
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 25px;
  text-align: center;
}

.footer-head {
  margin: 0 auto 0 0;
}

.footer-logo {
  display: inline-block;
  line-height: 1;
}

.footer-logo img {
  display: block;
  margin: 0 auto;
  height: 50px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.footer-tagline {
  margin: 25px 0 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--contrast-color);
}

.reasons {
  margin: 0;
  align-self: center;
}

.reasons-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.reason {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 15px 22px;
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 75%);
  border-radius: 999px;
  font-family: var(--banner-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
  color: var(--contrast-color);
  cursor: default;
}

.reason-icon {
  flex: none;
  font-size: 20px;
  color: var(--accent-color);
}

.brochure {
  margin: 0 0 0 auto;
  padding: 0;             
  overflow: hidden;        
  border-radius: 25px;    
}

.brochure-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fstats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 45px;
  padding-bottom: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.fstat {
  padding: 10px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.fstat:first-child {
  border-left: 0;
}

.fstat-value {
  display: block;
  font-family: var(--banner-font);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-color);
}

.fstat-label {
  display: block;
  margin-top: 10px;
  font-family: var(--banner-font);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  color: color-mix(in srgb, var(--contrast-color), transparent 5%);
}

.fsocial-i {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px 40px;
  margin-top: 45px;
  padding: clamp(24px, 2.8vw, 32px) clamp(24px, 3vw, 38px);
  border-radius: 25px;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.fsocial-title {
  margin: 0;
  font-family: var(--banner-font);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--contrast-color);
}

.fsocial-note {
  margin: 5px 0 0;
  font-family: var(--banner-font);
  font-size: 15px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--contrast-color), transparent 5%);
}

.fsocial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.fsocial-link {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
  border-radius: 15px;
  font-size: 20px;
  color: var(--contrast-color);
  transition: 0.25s ease;
}

.fsocial-link:hover {
  border: var(--contrast-color);
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.footer-legal {
  margin-top: 45px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-legal-company {
  margin: 0;
  font-family: var(--banner-font);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--contrast-color);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  font-family: var(--banner-font);
  font-size: 14px;
  font-weight: 500;
}

.footer-legal-links a {
  color: var(--contrast-color);
  text-decoration: none;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: var(--accent-color);
  text-decoration: underline;
}

.footer-legal--b {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px 30px;
}

.footer-legal--b .footer-legal-links {
  gap: 0;
}

.footer-legal--b .footer-legal-links a {
  padding: 0 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-legal--b .footer-legal-links a:first-child {
  padding-left: 0;
  border-left: 0;
}

.footer-legal--b .footer-legal-links a:last-child {
  padding-right: 0;
}

@media (max-width: 1199px) {
  .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .footer-head,
  .brochure {
    margin: 0 auto;
  }

  .reasons {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
  }

  .reasons-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .reason {
    width: auto;
  }
}

@media (max-width: 767px) {
   .footer-card {
     padding: 25px 15px;
  }

  .footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }

  /* 1. Logo + text */
  .footer-head {
    order: 1;
    width: 100%;
    margin: 0;
    text-align: center;
  }

  /* 2. Pills */
  .reasons {
    order: 2;
    width: 100%;
    margin: 0;
  }

  .reasons-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 15px;
  }

  .reason {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* 3. Imagine */
  .brochure {
    order: 3;
    width: 100%;
    margin: 0;
  }

  /* Stats */
  .fstats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: center;
    border-top: 0;
    border-bottom: 0;
    padding-bottom: 0;
  }

  .fstat {
    padding: 10px 15px;
  }

  .fstat:nth-child(3) {
    border-left: 0;
  }

  /* Social media */
  .fsocial-title {
    margin-bottom: 15px;
  }

  .fsocial-i {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .fsocial-list {
    justify-content: center;
    gap: 10px;
  }

  /* Footer legal */
  .footer-legal {
    text-align: center;
  }

  .footer-legal--b {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }

  .footer-legal-company {
    width: 100%;
    text-align: center;
    font-size: 20px;
  }

  .footer-legal-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    text-align: center;
  }

  .footer-legal--b .footer-legal-links {
    gap: 12px;
  }

  .footer-legal--b .footer-legal-links a,
  .footer-legal--b .footer-legal-links a:first-child,
  .footer-legal--b .footer-legal-links a:last-child {
    padding: 0;
    border-left: 0;
  }
}

@media (max-width: 420px) {
  .reason {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .btn-footer {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-footer {
    transition: none;
  }

  .btn-footer:hover {
    transform: none;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#custom-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999999999999999999999999;
  background:
    radial-gradient(
      circle at center,
      #ffffff 0%,
      #f8f9fa 100%
    );

  display: flex !important;
  visibility: visible;
  opacity: 1;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  perspective: 1000px;
  animation:
    zoomDissolveOut
    0.7s
    cubic-bezier(0.7, 0, 0.84, 0)
    forwards;
  animation-delay: 1.5s;
  pointer-events: none;
}

.preloader-logo {
  width: 95%;
  max-width: 850px;
  height: auto;
  display: block;
  margin: 0 auto;
  animation:
    emergeFromDepth
    1.2s
    cubic-bezier(0.16, 1, 0.3, 1)
    forwards;
  will-change: transform, opacity;
  filter:
    drop-shadow(
      0 10px 15px rgba(0, 0, 0, 0.05)
    );

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: translateZ(0);
}

@media (max-width: 768px) {
  .preloader-logo {
    width: 85%;
    max-width: 500px;
  }
}

@keyframes emergeFromDepth {
  from {
    opacity: 0;
    transform: scale(0.5) translateZ(0);
  }

  60% {
    opacity: 1;
  }

  to {
    opacity: 1;
    transform: scale(1) translateZ(0);
  }
}

@keyframes zoomDissolveOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.5);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
:root {
  --history-color: #f0a132;
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 25px;
  bottom: 15px;
  z-index: 99999;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: transparent;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.scroll-top::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--accent-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

.scroll-top:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 5px;
}

.progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: visible;
  pointer-events: none;
}

.progress-circle path {
  fill: none;
}

.progress-track {
  stroke: var(--default-color);
  stroke-opacity: 0.25;
  stroke-width: 5;
}

.progress-history {
  stroke-width: 5;
  stroke-linecap: round;
}

.progress-value {
  stroke: var(--accent-color);
  stroke-width: 5;
  stroke-linecap: butt;
}

.scroll-top .scroll-percent,
.scroll-top i {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  color: var(--contrast-color);
  line-height: 1;
  transition: opacity 0.25s ease;
}

.scroll-top .scroll-percent {
  font-family: var(--banner-font);
  color: var(--contrast-color);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.scroll-top i {
  font-size: 20px;
  opacity: 0;
}

.scroll-top:hover .scroll-percent,
.scroll-top:focus-visible .scroll-percent {
  opacity: 0;
}

.scroll-top:hover i,
.scroll-top:focus-visible i {
  opacity: 1;
}

@media (hover: none) {
  .scroll-top:active .scroll-percent {
    opacity: 0;
  }

  .scroll-top:active i {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top,
  .scroll-top .scroll-percent,
  .scroll-top i {
    transition: none;
  }
}

/*--------------------------------------------------------------
# Disable AOS animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color:
    color-mix(
      in srgb,
      var(--background-color),
      transparent 50%
    );

  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color:
    color-mix(
      in srgb,
      var(--default-color),
      transparent 50%
    );
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
  position: relative;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title-wrap {
  padding: 0 0 75px;
}

.section-title {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.section-title-logo {
  display: inline-block;
  padding: 1.5rem 1rem;
  border:
    1px solid
    color-mix(
      in srgb,
      var(--accent-color),
      transparent 75%
    );
  border-radius: 25px;
  line-height: 0;
}

.section-title-logo img {
  display: block;
  width: 225px;
  height: auto;
}

.section-title-heading {
  margin: 0.75rem;
  color: var(--default-color);
  font-family: var(--banner-font);
  font-size: 45px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.section-title-text {
  margin: 0 auto;
  color:
    color-mix(
      in srgb,
      var(--default-color),
      transparent 5%
    );

  font-size: 17px;
  line-height: 1.5;
}

/*--------------------------------------------------------------
# Tablet
--------------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-title {
    max-width: 700px;
    padding: 0 15px;
  }

  .section-title-logo img {
    width: 190px;
  }

  .section-title-heading {
    font-size: 34px;
    letter-spacing: 3px;
  }

  .section-title-text {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/
@media (max-width: 767.98px) {
  .section-title {
    width: 100%;
    max-width: 100%;

    padding: 0 10px;
  }

  .section-title-logo img {
    width: 200px;
  }

  .section-title-heading {
    font-size: 35px;
  }
}

/*--------------------------------------------------------------
# Spatiu mobil titluri
--------------------------------------------------------------*/
.mobile-br {
  display: none;
}

@media (max-width: 768px) {

  .mobile-br {
    display: inline;
  }
}

/*--------------------------------------------------------------
# AOS
--------------------------------------------------------------*/
[data-aos] {
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

/*--------------------------------------------------------------
# Hero Section - ACASĂ
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100svh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.70) 0%,
    rgba(10, 10, 10, 0.75) 35%,
    rgba(10, 10, 10, 0.80) 65%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.hero .carousel-container {
  position: absolute;
  inset: 150px 12px 75px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.hero h2 {
  font-family: var(--banner-font);
  font-size: 65px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 0px;
}

.hero .hero-slogan {
  font-size: 23px;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 45px;
  text-align: center;
  font-style: italic;
}

.hero .hero-description {
  font-size: 18px;
  line-height: 1.75;
  color: var(--contrast-color);
  margin-bottom: 0px;
  max-width: 40%;
  text-align: center;
}

.hero .btn-browse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-family: var(--banner-font);
  color: var(--contrast-color);
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-top: 45px;
  transition: background-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
  will-change: transform;
  backface-visibility: hidden;
}

.hero .btn-browse:hover {
  background-color: var(--accent-color);
  color: var(--default-color);
  transform: translate3d(0, -3px, 0);
}

.hero .btn-browse i {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.hero .btn-browse span {
  display: inline-flex;
  align-items: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 45px;
  height: 45px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  opacity: 0.5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.25s ease,
    opacity 0.25s ease,
    color 0.25s ease;
}

.hero .carousel-control-prev {
  left: 25px;
}

.hero .carousel-control-next {
  right: 25px;
}

@media (max-width: 767px) {
  .hero .carousel-control-prev {
    left: 1px;
  }

  .hero .carousel-control-next {
    right: 1px;
  }
}
.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.75;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 1;
  color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.25);
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  background: none;
  font-size: 30px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

.hero .hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 75%;
  margin-top: 45px;
}

.hero .hero-feature {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  padding: 15px 20px;
  text-align: left;
  background: color-mix(in srgb, var(--default-color), transparent 25%);
  border-radius: 15px;
}

.hero .hero-feature .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  border-radius: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--contrast-color);
  font-size: 25px;
  line-height: 1;
}

.hero .hero-feature .feature-icon i {
  line-height: 1;
}

.hero .hero-feature-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  min-width: 0;
  text-align: left;
}

.hero .hero-feature h4 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 800;
  color: var(--contrast-color);
  font-family: var(--banner-font);
}

.hero .hero-feature p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 5%);
  line-height: 1.5;
}

@media (max-width: 992px) {
  .hero .hero-features {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
@media (max-width: 767px) {
  .hero .carousel-container {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .hero .hero-slogan {
    font-size: 25px;
  }

  .hero .hero-description {
    max-width: 80%;
    text-align: center;
  }

  .hero .d-flex.justify-content-center {
    flex-direction: column;
    align-items: center;
    gap: 15px !important;
  }

  .hero .btn-browse {
    margin-top: 0;
    width: 275px;
    justify-content: center;
  }

  .hero .btn-browse:first-child {
    margin-top: 45px;
  }

  .hero .hero-features {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 500px;
    gap: 15px;
    margin-top: 60px;
  }

  .hero .hero-feature {
    justify-content: flex-start;
    text-align: left;
  }

  .hero .hero-feature-content {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .hero .carousel {
    height: 1250px;
    min-height: 1150px;
  }
}
/*--------------------------------------------------------------
# About Section - DESPRE NOI 
--------------------------------------------------------------*/
.about-intro{
  --ai-h-mare: 350px;
  --ai-h-mic: 200px;
  padding: 75px 0;
}

.about-intro .row {
  align-items: center;
}

.about-intro-eyebrow {
  display: block;
  font-family: var(--banner-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color:var(--default-color);
  margin-bottom: 5px;
}

.about-intro-title {
  font-family: var(--banner-font);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.25;
  color:var(--accent-color);
  margin:0 0 1.5rem;
}

.about-intro-copy p {
  font-size: 17px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  margin: 0 0 1.15rem;
}

.about-intro-copy p:last-child {
  margin-bottom: 0
}

.about-intro-copy strong {
  color: var(--default-color);
  font-weight: 700
}

.about-intro-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 2rem 0 0;
}

.about-intro-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  border-radius: 999px;
  font-family: var(--banner-font);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: var(--default-color);
  white-space: nowrap;
}

.about-intro-pill i {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1rem;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about-intro-bento {
  display: grid;
  grid-template-columns: 0.64fr 1.36fr;
  grid-template-rows: var(--ai-h-mare) var(--ai-h-mic);
  gap: 15px;
}

.about-intro-photo--big {
  grid-column: 1 / 3;
  grid-row: 1;
}

.about-intro-card {
  grid-column: 1; 
  grid-row: 2;
}

.about-intro-photo--small {
  grid-column: 2;
  grid-row: 2;
}

.about-intro-photo {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  min-height: 0;
  margin: 0;
}

.about-intro-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 15px;
  min-height: 0;
  text-align: center;
  border-radius: 15px;
  background: var(--accent-color);
  color:#fff;
}

.about-intro-card-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 1.25rem;
  background: var(--default-color);
  color: var(--contrast-color);
}

.about-intro-card-number {
  font-family: var(--banner-font);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.5px;
  margin-top: 5px;
}
.about-intro-card-label {
  font-family: var(--banner-font);
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(-contrast-color);
  margin: 0;
}

@media (max-width: 767px) {
  .about-intro .row {
    align-items: center;
    text-align: center;
  }

  .about-intro-pills {
    justify-content: center;
    margin-bottom: 2rem;
  }

  .about-intro-pill {
    width: 300px;
    justify-content: center;
  }

  .about-intro-bento {
    grid-template-columns: 0.64fr 1.36fr;
    grid-template-rows: 225px 175px;
  }
}

.about-stats {
  --as-radius: 15px;
  --as-logo-extra: 25px;
  --as-latime: 85%;
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 4rem 0;
  margin-top: 75px;
  background: var(--accent-color);
  color: var(--contrast-color);
  -webkit-font-smoothing: antialiased;
}

.about-stats-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: var(--as-latime);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.about-stats-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.about-stats-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.6rem 1rem;
  text-align: center;
  background: var(--contrast-color);
  border-right: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.about-stats-card:last-child {
  border-right: 0;
}

.about-stats-group:first-child .about-stats-card:first-child {
  border-top-left-radius: var(--as-radius);
  border-bottom-left-radius: var(--as-radius);
}

.about-stats-group:last-child .about-stats-card:last-child {
  border-top-right-radius: var(--as-radius);
  border-bottom-right-radius: var(--as-radius);
}

.about-stats-icon {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 1.25rem;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  color: var(--default-color);
  transition: background 0.25s ease, color 0.25s ease;
}

.about-stats-card:hover .about-stats-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about-stats-value {
  font-family: var(--banner-font);
  font-weight: 900;
  font-size: 35px;
  line-height: 1;
  letter-spacing: 0.5px;
  color: var(--accent-color);
}

.about-stats-label {
  margin-top: 0.5rem;
  font-family: var(--banner-font);
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.25;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--default-color);
}

.about-stats-logo {
  display: grid;
  place-items: center;
  align-self: stretch;
  margin-top: calc(var(--as-logo-extra) * -1);
  margin-bottom: calc(var(--as-logo-extra) * -1);
  padding: 1.5rem 2.2rem;
  border-radius: 25px;
  background: var(--default-color);
}

.about-stats-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 45px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .about-stats {
    --as-logo-extra: 25px;
    --as-inset: 60px;    
    --as-latime: 100%;
    padding: 2.5rem 0;
  }

  .about-stats-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: calc(1rem + var(--as-logo-extra));
    padding-right: calc(1rem + var(--as-logo-extra));
  }

  .about-stats-group {
    grid-template-columns: 1fr;
    gap: 0;
    width: calc(100% - var(--as-inset) * 2);
    margin-left: auto;
    margin-right: auto;
  }

  .about-stats .about-stats-card {
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
    border-radius: 0;
    padding: 1.3rem 1rem;
    gap: 0.5rem;
  }

  .about-stats-group:first-child .about-stats-card:last-child,
  .about-stats-group:last-child .about-stats-card:last-child {
    border-bottom: 0;
  }

  .about-stats-group:first-child .about-stats-card:first-child {
    border-radius: var(--as-radius) var(--as-radius) 0 0;
  }
  .about-stats-group:last-child .about-stats-card:last-child {
    border-radius: 0 0 var(--as-radius) var(--as-radius);
  }

  .about-stats-logo {
    margin: 0 calc(var(--as-logo-extra) * -1);
    padding: 2rem 1.85rem;
  }

  .about-stats-logo img {
    height: 50px;
  }
}

.about-history {
  margin-top: 75px;
  -webkit-font-smoothing: antialiased;
}

.about-history-head {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  text-align: center;
}

.about-history-eyebrow {
  display: block;
  font-family: var(--banner-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color:var(--default-color);
  margin-bottom: 5px;
}

.about-history-title {
  margin: 0 0 1.5rem;
  font-family: var(--banner-font);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.25;
  color: var(--accent-color);
}

.about-history-subtext {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
}

.about-history-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 15px;
}

.about-history-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.about-history-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.about-history-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.7rem 1.5rem 1.4rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.55) 85%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
}

.about-history-card-titlu {
  margin: 0 0 0.25rem;
  font-family: var(--banner-font);
  color: var(--contrast-color);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.25;
}

.about-history-card-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--contrast-color), transparent 5%);
}

.about-history-ani {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-width: 148px;
  padding: 2rem 1.25rem;
  border-radius: 15px;
  background: var(--accent-color);
  text-align: center;
}

.about-history-ani-cifra {
  font-family: var(--banner-font);
  font-weight: 900;
  font-size: 65px;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--default-color);
}

.about-history-ani-text {
  display: grid;
  gap: 1.5rem;
  margin: 1.5rem 0 0;
  font-family: var(--banner-font);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--contrast-color);
}

.about-history-ani-linie {
  font-size: 0.85rem;
  letter-spacing: 3px;
}

@media (max-width: 767px) {
  .about-history-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .about-history-card {
    width: 100%;
  }

  .about-history-card img {
    height: 300px;
    aspect-ratio: auto;
  }

  .about-history-ani {
    width: 100%;
    min-width: 0;
    padding: 2rem 1.25rem;
  }

  .about-history-ani-text {
    display: block;
    margin: 1rem 0 0;
    letter-spacing: 10px;
  }

  .about-history-ani-linie {
    font-size: 1rem;
    letter-spacing: 5px;
  }
}

.about-testimonial {
  margin-top: 75px;
  -webkit-font-smoothing: antialiased;
}

.about-testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 3.25rem;
  border-radius: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.about-testimonial-ghilimele {
  position: absolute;
  top: -2rem;
  right: -2rem;
  display: block;
  font-size: 20rem;
  line-height: 0.5;
  color: color-mix(in srgb, var(--default-color), transparent 90%);
  pointer-events: none;
}

.about-testimonial-title {
  position: relative;
  margin: 0 0 1.5rem;
  font-family: var(--banner-font);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--accent-color);
}

.about-testimonial-text {
  position: relative;
}

.about-testimonial-text p {
  margin: 0 0 1.15rem;
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  line-height: 1.75;
  font-style: italic;
}

.about-testimonial-text p:last-child {
  margin-bottom: 0;
}

.about-testimonial-autor {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about-testimonial-autor-icon {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  flex: 0 0 55px;
  border-radius: 15px;
  background: var(--default-color);
  color: var(--contrast-color);
  font-size: 1.5rem;
}

.about-testimonial-autor-nume {
  display: block;
  font-family: var(--banner-font);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.25;
  color: var(--accent-color);
}

.about-testimonial-autor-rol {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--banner-font);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--default-color);
}

.about-testimonial-logo {
  display: block;
  width: auto;
  height: 85px;
  max-width: 250px;
  margin-left: auto;
  margin-right: 0;
  object-fit: contain;
}

@media (max-width: 767px) {
  .about-testimonial-card {
    text-align: center;
    padding: 2rem 2.25rem;
  }

  .about-testimonial-title,
  .about-testimonial-text {
    text-align: center;
  }

  .about-testimonial-autor {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .about-testimonial-autor-info {
    text-align: center;
  }

  .about-testimonial-logo {
    width: auto;
    max-width: 100%;
    height: 70px;
    margin: 1.5rem auto 0;
    flex-basis: 100%;
  }
}

/*--------------------------------------------------------------
# Services Section - SERVICII
--------------------------------------------------------------*/
.service-transport {
  padding: 75px 0;
}

.service-transport-media {
  position: relative;
  overflow: hidden;
  height: clamp(250px, 30vw, 375px);
  border-radius: 15px;
  background: var(--accent-color);
}

.service-transport-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-transport-card {
  position: relative;
  z-index: 3;
  margin-top: -30px;
  padding: 2.5rem 2rem;
  border-radius: 25px;
  background: var(--accent-color);
  text-align: center;
}

.service-transport-title {
  margin: 0;
  font-family: var(--banner-font);
  font-size: 35px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  color: var(--contrast-color);
}

.service-transport-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0 1.15rem;
  color: var(--default-color);
  font-family: var(--banner-font);
  font-size: 1.25rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.service-transport-lead {
  max-width: 80%;
  margin: 0 auto;
  color: color-mix(in srgb, var(--contrast-color), transparent 5%);
  font-size: 17px;
  line-height: 1.75;
}

.service-transport-industries {
  margin-top: 2rem;
}

.service-transport-industries-label {
  margin: 0 0 1rem;
  color: var(--contrast-color);
  font-family: var(--banner-font);
  font-size: 1.15rem;
  letter-spacing: 5px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-transport-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-transport-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  font-family: var(--banner-font);
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--contrast-color);
}

.service-transport-tag-more {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--contrast-color);
  font-weight: 800;
  font-style: italic;
}

.service-transport-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.service-transport-check {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 0;
}

.service-transport-check i {
  flex: none;
  color: var(--accent-color);
  font-size: 1.5rem;
  line-height: 1;
}

.service-transport-check p {
  margin: 0;
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  line-height: 1.5;
}

.service-transport-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  height: 100%;
  padding: 2rem 1.5rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  border-radius: 15px;
  background: transparent;
  text-align: center;
}

.service-transport-contact-title {
  font-family: var(--banner-font);
  color: var(--default-color);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.service-transport-contact-sub {
  margin: 0;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  line-height: 1.5;
  margin-bottom: 15px;
}

.service-transport-channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-transport-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-transport-channel a {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  border-radius: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.service-transport-channel a:hover {
  background: var(--default-color);
  color: var(--contrast-color);
  transform: translate3d(0, -3px, 0);
}

.service-transport-channel small {
  display: block;
  width: max-content;
  max-width: none;
  margin-top: 0.45rem;
  font-family: var(--banner-font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--default-color);
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 767px) {

  .service-transport-channels {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }

  .service-transport-channel {
    flex: 1 1 0;
    min-width: 0;
  }

  .service-transport-channel a {
    margin: 0 auto;
  }

  .service-transport-channel small {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    line-height: 1.3;
  }
}

@media (max-width: 767px) {
  .service-transport-media {
    height: 250px;
  }

  .service-transport-card {
    margin-top: 15px;
    padding: 1.5rem 1rem;
  }

  .service-transport-title {
    font-size: 35px;
  }

  .service-transport-lead {
    max-width: 100%;
  }
}

.service-transport-options {
  margin-top: 75px;
}

.service-transport-options-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  height: 100%;
  border-radius: 15px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-transport-options-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem;
  background: var(--default-color);
  text-align: left;
}

.service-transport-options-title {
  margin: 0;
  font-family: var(--banner-font);
  color: var(-contrast-color);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
}

.service-transport-options-sub {
  display: flex;
  align-items: center;
  margin: 0.45rem 0 0;
  color: var(--accent-color);
  font-family: var(--banner-font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.service-transport-options-code {
  flex: none;
  opacity: 0.75;
  font-family: var(--banner-font);
  color: var(--accent-color);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 25px;
  margin-right: -25px;
  line-height: 1;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.service-transport-options-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.service-transport-options-body p {
  max-width: 90%;
  margin: 0 0 1.5rem;
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  line-height: 1.75;
}

.service-transport-options-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
  padding: 0.85rem 1.75rem;
  border: 0;
  border-radius: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--banner-font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}

.service-transport-options-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--contrast-color);
  line-height: 1;
}

.service-transport-options-btn:hover {
  background: var(--default-color);
  color: var(--contrast-color);
}

@media (max-width: 767px) {
  .service-transport-options-head {
    justify-content: center;
    text-align: center;
  }

  .service-transport-options-title,
  .service-transport-options-sub {
    justify-content: center;
    text-align: center;
  }

  .service-transport-options-code {
    display: none;
  }
}

.services-transport-card {
  margin-top: 75px;
}

.services-transport-card-item {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 2.5rem 2rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  border-radius: 15px;
  transition: transform 0.25s ease-out, border-color 0.25s ease-out;
  border-bottom: 3.5px solid var(--accent-color);
}

.services-transport-card-num {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-weight: 900;
  font-size: 5rem;
  font-family: var(--banner-font);
  line-height: 1;
  letter-spacing: 0;
  color: color-mix(in srgb, var(--accent-color), transparent 90%);
  pointer-events: none;
  transition: color 0.25s ease-out;
}

.services-transport-card-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
  color: var(--default-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 15px;
  transition: background 0.25s ease-out, color 0.25s ease-out, box-shadow 0.25s ease-out;
}

.services-transport-card-title {
  position: relative;
  margin-bottom: 0.5rem;
  font-weight: 800;
  font-size: 22px;
  color: var(--default-color);
  font-family: var(--banner-font);
}

.services-transport-card-text {
  position: relative;
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
}

.services-transport-card-specs {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.services-transport-card-spec {
  padding: 0.85rem 1rem;
  text-align: center;
}

.services-transport-card-spec + .services-transport-card-spec {
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.services-transport-card-spec-label {
  margin: 0 0 0.25rem;
  font-family: var(--banner-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.services-transport-card-spec-value {
  margin: 0;
  font-family: var(--banner-font);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.25;
  color: var(--accent-color);
}

.services-transport-card-item:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  border-bottom-color: var(--accent-color);
}

.services-transport-card-item:hover .services-transport-card-num {
  color: color-mix(in srgb, var(--accent-color), transparent 75%);
}

.services-transport-card-item:hover .services-transport-card-icon {
  color: var(--default-color);
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 0 0 10px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-transport-country {
  margin-top: 75px;
}

.service-transport-country-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.service-transport-country-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 15px;
  background-color: var(--accent-color);
  background-size: cover;
  background-position: center;
}

.service-transport-country-caption {
  position: absolute;
  left: 5px;
  bottom: 5px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.85);
  color: var(--contrast-color);
  font-family: var(--banner-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-transport-country-caption i {
  color: var(--contrast-color);
  font-size: 0.85rem;
}

.service-transport-country-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.5rem;
  border-radius: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
}

.service-transport-country-title {
  font-family: var(--banner-font);
  font-size: 25px;
  font-weight: 800;
  color: var(--default-color);
  letter-spacing: 0;
  line-height: 1.25;
}

.service-transport-country-lead {
  margin: 0 0 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 17px;
  line-height: 1.75;
}

.service-transport-country-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-transport-country-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  font-family: var(--banner-font);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-transform: normal;
}

.service-transport-country-flag {
  flex: none;
  width: 30px;
  height: 25px;
  border-radius: 2px;
  object-fit: cover;
}

.service-transport-country-item-all {
  grid-column: 1 / -1;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  background: transparent;
  font-size: 15px;
  color: var(--default-color);
  font-weight: 700;
  text-align: left;
}

@media (max-width: 767px) {
  .service-transport-country-card {
    padding: 1rem;
    text-align: center;
    align-items: center;
  }

  .service-transport-country-list {
    justify-items: center;
    width: 100%;
    row-gap: 15px;
  }

  .service-transport-country-item {
    justify-content: flex-start;
    width: 100%;
  }

  .service-transport-country-item:nth-last-child(2) {
    grid-column: 1 / -1;
    width: 50%;
  }
}

.services-transport-banner {
  margin-top: 75px;
}

.services-transport-banner-inner {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 2.5rem;
  border-radius: 15px;
  background: var(--default-color);
  color: #fff;
  text-align: center;
}

.services-transport-banner-title {
  color: var(--contrast-color);
  font-family: var(--banner-font);
  font-size: 50px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
}

.services-transport-banner-hashtag {
  color: var(--accent-color);
}

.services-transport-banner-text {
  max-width: 65%;
  margin: 0 auto 3rem;
  color: var(--contrast-color);
  font-size: 17px;
  line-height: 1.75;
}

.services-transport-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.services-transport-banner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 250px;
  padding: 0.9rem 1.6rem;
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  background: var(--accent-color);
  color: #fff;
  font-family: var(--banner-font);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  text-decoration: none;
  transition: all 0.25s ease-out;
}

.services-transport-banner-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
}

.services-transport-banner-link:hover {
  background: transparent;
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.services-transport-banner-link:hover i {
  color: var(--accent-color);
}

@media (max-width: 767px) {

  .services-transport-banner-inner {
    padding: 2rem 1rem;
    text-align: center;
  }

  .services-transport-banner-title {
    text-align: center;
    margin-bottom: 2rem;
  }

  .services-transport-banner-text {
    max-width: 100%;
    margin: 0 0 2rem;
    text-align: center;
  }

  .services-transport-banner-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .services-transport-banner-link {
    width: 85%;
    min-width: 0;
  }

}

/*--------------------------------------------------------------
# Banner Transport Section
--------------------------------------------------------------*/
.transport-banner-hero {
    overflow: visible;
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.075);
}

.transport-card-banner {
    position: relative;
    width: calc(100% + 8vw);
    margin-left: -4vw;
    background: var(--accent-color);
    border-radius: clamp(25px, 4vw, 50px);
    padding: clamp(2rem, 4vw, 3rem);
    min-height: 280px;
    overflow: visible;
}

.transport-content-banner {
    position: relative;
    z-index: 5;
    padding-right: 1rem;
    max-width: 100%;
}

.transport-eyebrow-banner {
  font-family: var(--banner-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color:var(--contrast-color);
  margin-bottom: 5px;
}

.transport-title-banner {
    font-family: var(--banner-font);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.25;
    color: var(--contrast-color);
    margin-bottom: 1rem;
}

.transport-subtitle-banner {
    font-size: 17px;
    color: color-mix(in srgb, var(--contrast-color), transparent 5%);
    line-height: 1.75;
    margin-bottom: 0rem;
    max-width: 65%;
}

.transport-actions-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 1.75rem;
}

.btn-transport-aos {
    display: inline-flex;
}

.btn-transport {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: var(--banner-font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.3s ease,
                background-color 0.3s ease,
                color 0.3s ease,
}

.btn-transport i {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.btn-transport:hover {
    transform: translateY(-3px);
}

.btn-transport-solid {
    background-color: var(--contrast-color);
    color: var(--accent-color);
}

.btn-transport-solid:hover {
    background-color: var(--default-color);
    color: var(--contrast-color);
}

.transport-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transport-truck-banner {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 150%;
    max-width: 950px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
    z-index: 3;
    pointer-events: none;
}

@media (max-width: 768px) {
  .transport-card-banner {
    width: 100%;
    margin-left: 0;
  }

  .transport-banner-hero {
    padding: 60px 0;
    overflow: hidden;
  }

  .transport-card-banner {
    padding: 2.5rem 1.5rem 3rem;
    border-radius: 30px;
    text-align: center;
    min-height: auto;
    overflow: hidden;
  }

  .transport-content-banner {
    padding-right: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .transport-eyebrow-banner {
    text-align: center;
  }

  .transport-title-banner {
    font-size: 2rem;
    line-height: 1.25;
    text-align: center;
    margin-bottom: 1rem;
  }

  .transport-subtitle-banner {
    max-width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }

.btn-transport-aos {
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn-transport {
  width: 100%;
  max-width: 320px;
  justify-content: center;
}

  .transport-image-wrapper {
    position: relative;
    margin-top: 2.5rem;
    min-height: 220px;
    overflow: visible;
  }

  .transport-truck-banner {
    position: relative;
    top: auto;
    right: -3%;
    transform: none;
    width: 100%;     
    height: auto;
  }
}

/*--------------------------------------------------------------
# Why Us Section - DE CE NOI
--------------------------------------------------------------*/
.why-us {
  padding: 75px 0;
}

.why-us .why-us-cards {
  margin-top: 75px;
}

.why-us .wu-eyebrow {
  margin: 0 0 5px;
  color: var(--default-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.why-us .wu-title {
  margin: 0 0 1rem;
  color: var(--accent-color);
  font-family: var(--banner-font);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.why-us .wu-lead {
  max-width: 85ch;
  margin: 0 auto;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 17px;
  line-height: 1.75;
}

.why-us .wu-head {
  margin-bottom: 2.75rem;
  text-align: center;
}

.why-us .wu-visual {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
}

.why-us .wu-visual-media {
  position: relative;
  flex: 1 1 auto;
  min-height: 260px;
  overflow: hidden;
  border-radius: 15px;
}

.why-us .wu-visual-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us .wu-exp {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 1.1rem;
  padding: 1.15rem 1.4rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 15px;
}

.why-us .wu-exp > i {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 1.5rem;
}

.why-us .wu-exp b {
  display: block;
  color: var(--default-color);
  font-family: var(--banner-font);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.why-us .wu-exp span {
  display: block;
  margin-top: 0px;
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.why-us .wu-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto 1fr;
  height: 100%;
}

.why-us .wu-intro-head {
  grid-column: 1 / -1;
  padding: 0.25rem 0.5rem 0;
  text-align: center;
}

.why-us .wu-intro-head p {
  max-width: 70ch;
  margin: 0 auto;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 30px;
}

.why-us .wu-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1.75rem 1.5rem;
  overflow: hidden;
  border-radius: 15px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.why-us .wu-card h3 {
  margin: 0 0 .75rem;
  color: var(--default-color);
  font-family: var(--banner-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
}

.why-us .wu-card > p {
  margin: 0;
  color: var(--default-color);
  font-size: 1rem;
  line-height: 1.75;
}

.why-us .wu-stats {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.why-us .wu-stat {
  padding: 1rem 0;
  text-align: center;
}

.why-us .wu-stat {
  position: relative;
}

.why-us .wu-stat + .wu-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 75%;
  height: 1px;
  transform: translateX(-50%);
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.why-us .wu-stat:first-child {
  padding-top: 0.25rem;
}

.why-us .wu-stat:last-child {
  padding-bottom: 0.25rem;
}

.why-us .wu-stat b {
  display: block;
  color: var(--accent-color);
  font-family: var(--banner-font);
  font-size: 35px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0px;
}

.why-us .wu-stat span {
  display: block;
  margin-top: 0.25rem;
  color: var(--default-color);
  font-size: 1rem;
  line-height: 1.25;
}

/* cardul de accent */
.why-us .wu-card--accent {
  border-color: transparent;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.why-us .wu-card--accent h3 {
  margin-bottom: .5rem;
  color: var(--default-color);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0px;
}

.why-us .wu-card--accent > p {
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
}

.why-us .wu-figure {
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
  color: var(--default-color);
  font-family: var(--banner-font);
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.why-us .wu-figure-note {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 1);
  font-family: var(--banner-font);
  color: var(--default-color);
  font-size: 0.85rem;
  font-weight: 600;
}

.why-us .wu-figure-note i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .why-us .wu-visual-media {
    height: 400px;
    min-height: 375px;
    flex: 0 0 auto;
  }

  .why-us .wu-bento {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: auto;
  }
}

.why-us .wu-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-us .wu-cell--tall {
  grid-row: span 2;
}

.why-us .wu-cell--wide {
  grid-column: span 2;
}

.why-us .wu-reason {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 1.75rem 1.5rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 15px;
}

.why-us .wu-reason-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 1.25rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  color: var(--default-color);
  font-size: 1.5rem;
}

.why-us .wu-reason h3 {
  position: relative;
  margin: 0 0 .5rem;
  font-family: var(--banner-font);
  font-size: 17px;
  color: var(--accent-color);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
}

.why-us .wu-reason p {
  position: relative;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 16px;
  line-height: 1.5;
}

.why-us .wu-reason-ghost {
  position: absolute;
  top: 50%;
  right: 1rem;
  color: var(--default-color);
  font-size: 5.5rem;
  line-height: 1;
  opacity: 0.075;
  transform: translateY(-50%);
  pointer-events: none;
}

.why-us .wu-cell--tall .wu-reason {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.why-us .wu-cell--tall .wu-reason h3 {
  font-size: 19px;
}

.why-us .wu-reason-list {
  position: relative;
  margin: 1.4rem 0 0;
  padding: 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  list-style: none;
}

.why-us .wu-reason-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--wu-line);
  color: var(--default-color);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}

.why-us .wu-reason-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.why-us .wu-reason-list i {
  color: var(--default-color);
  font-size: 1.25rem;
  line-height: 1;
}

.why-us .wu-cell--wide .wu-reason {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
}

.why-us .wu-cell--wide .wu-reason-icon {
  margin-bottom: 0;
}

.why-us .wu-cell--wide .wu-reason-body {
  min-width: 0;
  padding-right: 0rem;
}

.why-us .wu-cell--wide .wu-reason-ghost {
  right: 1rem;
  font-size: 5rem;
}

@media (max-width: 767px) {
  .why-us .wu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-us .wu-cell--tall,
  .why-us .wu-cell--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .why-us .wu-cell--wide .wu-reason {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
  }

  .why-us .wu-cell--wide .wu-reason-icon {
    margin-bottom: 1.25rem;
  }
}

.why-preface {
  margin: 75px 0 0px;
}

.why-preface .preface-card {
  background: var(--default-color);
  border-left: 5px solid var(--accent-color);
  border-right: 5px solid var(--accent-color);
  border-radius: 25px;
  padding: 30px 40px;
  width: 75%;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.why-preface .preface-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.why-preface .preface-logo-img {
  max-height: 35px;
  width: auto;
}

.why-preface .preface-divider {
  width: 1px;
  height: 75px;
  flex-shrink: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.why-preface .preface-text {
  flex: 1;
}

.why-preface .preface-text p {
  margin: 0;
  font-family: var(--banner-font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--contrast-color);
  font-style: italic;
}

@media (max-width: 768px) {
  .why-preface .preface-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    width: 100%;
    gap: 25px;
  }

  .why-preface .preface-logo {
    justify-content: center;
    flex-direction: column;
  }

  .why-preface .preface-divider {
    display: none;
  }

  .why-preface .preface-text {
    text-align: center;
  }

  .why-preface .preface-logo-img {
    max-height: 35px;
  }
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  padding: 60px 0; 
  display: flex;
  align-items: center;
  background: var(--default-color);
  overflow: hidden;
}

.call-to-action .cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.call-to-action .cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.call-to-action .cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75) 0%,    
    rgba(0, 0, 0, 0.5) 50%, 
    rgba(0, 0, 0, 0.75) 100%   
  );
  z-index: 1;
}

.call-to-action .cta-container-split {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.call-to-action .cta-top-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.call-to-action .cta-title .highlight {
  display: block;
  font-family: var(--banner-font);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--contrast-color);
  letter-spacing: 0px;
  margin-bottom: 0.5rem;
}

.call-to-action .cta-title .highlight-word {
  color: var(--accent-color);
  font-weight: 900;
}

.call-to-action .cta-title .sub-text {
  font-family: var(--banner-font);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  color: var(--contrast-color);
  letter-spacing: 5px; 
  line-height: 1.5;
  display: block;
}

.call-to-action .cta-top-content p {
  font-size: 17px;
  font-family: var(--banner-font);
  margin: 0 auto;
  color: var(--contrast-color);
  line-height: 1.75;
  max-width: 750px;
}

.call-to-action .cta-bottom-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  width: 100%;
  margin-top: 300px;
}

.call-to-action .cta-bar-left {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  flex-wrap: wrap;
}

.call-to-action .cta-bar-right {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  flex-wrap: wrap;
}

.call-to-action .cta-bar-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.call-to-action .cta-bottom-logo {
  max-height: 45px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.75));
}

.call-to-action .cta-features {
  display: flex;
  flex-direction: row;       
  justify-content: center;
  align-items: center;
  gap: 25px;                 
  flex-wrap: wrap;          
  padding: 0;
  margin-top: 5px;
}

.call-to-action .cta-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.call-to-action .cta-features .feature-item i {
  font-size: 1rem;
  color: var(--accent-color);
}

.call-to-action .cta-features .feature-item span {
  font-family: var(--banner-font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--contrast-color);
  white-space: nowrap;
}

.call-to-action .btn-custom {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 20px;
  border-radius: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  background: rgba(0,0,0,0.5);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  min-width: 185px;
}

.call-to-action .btn-custom::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s;
}

.call-to-action .btn-red { border-color: rgba(174,13,13,0.5); }
.call-to-action .btn-green { border-color: rgba(37,211,102,0.5); }
.call-to-action .btn-blue { border-color: rgba(0,123,255,0.5); }
.call-to-action .btn-orange { border-color: rgba(255,140,0,0.5); }

.call-to-action .btn-call::before     { background: rgba(174,13,13,0.15); }
.call-to-action .btn-whatsapp::before { background: rgba(37,211,102,0.15); }
.call-to-action .btn-email::before    { background: rgba(0,123,255,0.15); }
.call-to-action .btn-location::before { background: rgba(255,140,0,0.15); }

.call-to-action .btn-custom:hover { transform: translateY(-5px); }
.call-to-action .btn-custom:hover::before { opacity: 1; }

.call-to-action .btn-call:hover { border-color: rgba(174,13,13,1); box-shadow: 0 8px 25px rgba(174,13,13,0.3); }
.call-to-action .btn-whatsapp:hover { border-color: rgba(37,211,102,1); box-shadow: 0 8px 25px rgba(37,211,102,0.3); }
.call-to-action .btn-email:hover { border-color: rgba(0,123,255,1); box-shadow: 0 8px 25px rgba(0,123,255,0.3); }
.call-to-action .btn-location:hover { border-color: rgba(255,140,0,1); box-shadow: 0 8px 25px rgba(255,140,0,0.3); }

.call-to-action .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.call-to-action .btn-call .icon-box     { background: rgba(174,13,13,0.25);   color: #e84040; }
.call-to-action .btn-whatsapp .icon-box { background: rgba(37,211,102,0.25); color: #25d366; }
.call-to-action .btn-email .icon-box    { background: rgba(0,123,255,0.25);   color: #4d8fff; }
.call-to-action .btn-location .icon-box { background: rgba(255,140,0,0.25);   color: #ff8c00; }

.call-to-action .btn-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.call-to-action .btn-label {
  font-family: var(--banner-font);
  color: var(--accent-color);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.call-to-action .btn-sublabel {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
}

.call-to-action .cta-img-mobile {
  display: none;
}

@media (max-width: 1200px) {
  .call-to-action .cta-bar-left, 
  .call-to-action .cta-bar-right {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .call-to-action {
    padding: 60px 0;
    min-height: auto;
  }

  .call-to-action .cta-bg::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.50) 0%,    
    rgba(0, 0, 0, 0.65) 50%, 
    rgba(0, 0, 0, 0.50) 100%   
  );
  }

  .call-to-action .cta-bg img {
    object-position: center center;
  }

  .call-to-action .cta-container-split {
    width: 100%;
    align-items: center;
  }

  .call-to-action .cta-top-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .call-to-action .cta-badge {
    margin-bottom: 0.85rem;
  }

  .call-to-action .cta-title {
    text-align: center;
    margin-bottom: 0.85rem;
  }

  .call-to-action .cta-title .highlight {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
  }

  .call-to-action .cta-title .sub-text {
    font-size: 1rem;
    margin-bottom: 2.25rem;
  }

  .call-to-action .cta-bottom-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-top: 75px;
  }

  .call-to-action .cta-bar-center {
    order: -1;
    width: 100%;
    gap: 8px;
  }

  .call-to-action .cta-bottom-logo {
    max-height: 35px;
    width: auto;
  }

  .call-to-action .cta-features {
    justify-content: center;
    gap: 5px 20px;
    margin-top: 0;
  }

  .call-to-action .cta-features .feature-item {
    justify-content: center;
  }

  .call-to-action .cta-features .feature-item span {
    font-size: 0.6rem;
  }

  .call-to-action .cta-bar-left,
  .call-to-action .cta-bar-right {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    justify-content: center;
    align-items: stretch;
  }

  .call-to-action .cta-bar-left {
    order: 1;
  }

  .call-to-action .cta-bar-right {
    order: 2;
  }

  .call-to-action .btn-custom {
    width: 100%;
    min-width: 0;
    padding: 10px 10px;
    gap: 10px;
  }

  .call-to-action .btn-info {
    min-width: 0;
  }

  .call-to-action .cta-img-desktop {
    display: none;
  }

  .call-to-action .cta-img-mobile {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/*--------------------------------------------------------------
# Fleet Section - FLOTĂ
--------------------------------------------------------------*/
.fleet-trucks-intro {
  padding: 75px 0;
}

.fleet-trucks-intro-shot {
  position: relative;
  height: 100%;
  min-height: 450px;
  margin: 0;
  overflow: hidden;
  border-radius: 15px;
}

.fleet-trucks-intro-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-trucks-intro-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 26px;
  padding: 85px 30px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0));
}

.fleet-trucks-intro-title {
  flex: 1 1 250px;
  margin: 0;
  font-family: var(--banner-font);
  color: var(--contrast-color);
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fleet-trucks-intro-title-accent {
  color: var(--accent-color);
}

.fleet-trucks-intro-logos {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fleet-trucks-intro-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-width: 100px;
  padding: 0 15px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 1);
}

.fleet-trucks-intro-logo img {
  max-height: 35px;
  width: auto;
}

@media (max-width: 767px) {
  .fleet-trucks-intro-shot {
    height: 325px;
    min-height: 150px;
  }

  .fleet-trucks-intro-bar {
    justify-content: center;
    text-align: center;
    gap: 15px;
  }

  .fleet-trucks-intro-title {
    flex: 0 0 100%;
    text-align: center;
  }

  .fleet-trucks-intro-logos {
    justify-content: center;
    width: 100%;
  }
}

.fleet-trucks-intro-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 15px;
}

.fleet-trucks-intro-text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 10px;
  padding: 35px 30px;
  overflow: hidden;
  border-radius: 15px;
  background: var(--default-color);
  color: var(--contrast-color);
  text-align: center;
}

.fleet-trucks-intro-eyebrow {
  position: relative;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.fleet-trucks-intro-text p {
  position: relative;
  margin: 0;
  color: var(--contrast-color);
  font-size: 16px;
  line-height: 1.75;
}

.fleet-trucks-intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.fleet-trucks-intro-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5px;
  padding: 20px 15px;
  border-radius: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  text-align: center;
}

.fleet-trucks-intro-stat-value {
  font-family: var(--banner-font);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.fleet-trucks-intro-label {
  color: var(--default-color);
  font-size: 15px;
  letter-spacing: 0;
  white-space: nowrap;
}

@media (max-width: 767px) {

  .fleet-trucks-intro-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .fleet-trucks-intro-stat {
    min-width: 0;
    padding: 15px 5px;
  }

  .fleet-trucks-intro-stat-value {
    font-size: 24px;
  }

  .fleet-trucks-intro-label {
    width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    font-size: 12px;
    line-height: 1.3;
  }

}

.fleet-trucks-intro-features {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  background: transparent;
}

.fleet-trucks-intro-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.fleet-trucks-intro-feature:last-child {
  border-bottom: 0;
}

.fleet-trucks-intro-feature-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  color: var(--default-color);
  font-size: 20px;
}

.fleet-trucks-intro-feature-title {
  font-family: var(--banner-font);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.fleet-trucks-intro-feature-text {
  margin-top: 0px;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 15px;
}

.fleet-trucks-intro-types {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 20px 25px;
  border-radius: 15px;
  background: var(--default-color);
  color: var(--contrast-color);
}

.fleet-trucks-intro-types .fleet-trucks-intro-label {
  font-family: var(--banner-font);
  color: var(--contrast-color);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.fleet-trucks-intro-types-list {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.fleet-trucks-intro-type {
  padding: 10px 25px;
  border-radius: 10px;
  background: var(--accent-color);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .fleet-trucks-intro-type {
    width: 170px;
    text-align: center;
  }

  .fleet-trucks-intro-types {
    justify-content: center;
    text-align: center;
  }

  .fleet-trucks-intro-types .fleet-trucks-intro-label {
    width: 100%;
    text-align: center;
  }

  .fleet-trucks-intro-types-list {
    justify-content: center;
    width: 100%;
    margin-left: 0;
  }

  .fleet-trucks-intro-type {
    white-space: nowrap;
  }
}

.bento2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 195px;
  gap: 15px;
  grid-auto-flow: dense;
  margin-top: 45px;
}

.bento2-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.bento2-item.tall   { grid-row: span 2; }
.bento2-item.wide   { grid-column: span 2; }
.bento2-item.big    { grid-row: span 2; grid-column: span 2; }

.bento2-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  transform-origin: center center;
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  will-change: transform;
}

.bento2-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
}

.bento2-overlay i {
  color: var(--background-color);
  transition: transform 0.3s ease, color 0.3s ease;
}

.bento2-overlay i:hover {
  color: var(--accent-color-2);
  transform: scale(1.25);
}

.bento2-item:hover .bento2-overlay { 
  opacity: 1; 
}

@media (max-width: 992px) {
  .bento2-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .bento2-item.tall {
    grid-row: span 2;
    height: 500px;
  }

  .bento2-item.wide {
    grid-column: span 2;
  }

  .bento2-item.big {
    grid-row: span 2;
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .bento2-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 18px;
  }

  .bento2-item {
    height: 250px;
  }

  .bento2-item.tall {
    height: 500px;
  }

  .bento2-item.wide,
  .bento2-item.big {
    height: 280px;
  }

  .bento2-item.tall,
  .bento2-item.wide,
  .bento2-item.big {
    grid-row: auto;
    grid-column: auto;
  }
}

.fleet-trailer-intro {
  margin-top: 75px;
}

.fleet-trailer-intro .fleet-trailer-intro-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--default-color);
  margin: 0;
}

.fleet-trailer-intro .fleet-trailer-intro-title {
  font-family: var(--banner-font);
  font-size: 30px;
  font-weight: 900;
  color: var(--default-color);
  line-height: 1.25;
  margin: 5px 0 0;
}

.fleet-trailer-intro .fleet-trailer-intro-lede {
  font-size: 16px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  max-width: 45rem;
  margin: .75rem auto 0;
}

.fleet-trailer-intro .fleet-trailer-intro-stack {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 1rem;
  height: 100%;
}

.fleet-trailer-intro .fleet-trailer-intro-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  padding: 1.35rem 1.5rem;
}

.fleet-trailer-intro .fleet-trailer-intro-stat-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 45px;
  font-family: var(--banner-font);
  font-weight: 800;
  letter-spacing: 0;
  color: var(--accent-color);
}

.fleet-trailer-intro .fleet-trailer-intro-stat-value small {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}

.fleet-trailer-intro .fleet-trailer-intro-stat-label {
  font-family: var(--banner-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--default-color);
}

.fleet-trailer-intro .fleet-trailer-intro-stat-inline {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.fleet-trailer-intro .fleet-trailer-intro-stat-inline .fleet-trailer-intro-stat-label {
  margin-top: 0;
  line-height: 1.4;
  text-align: left;
}

.fleet-trailer-intro .fleet-trailer-intro-dims {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: 100%;
}

.fleet-trailer-intro .fleet-trailer-intro-dims .fleet-trailer-intro-stat-value {
  font-size: 1.75rem;
}

.fleet-trailer-intro .fleet-trailer-intro-dims .fleet-trailer-intro-stat-label {
  font-family: var(--banner-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--default-color);
  margin-top: 0px;
}

.fleet-trailer-intro .fleet-trailer-intro-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 180px;
  border-radius: 15px;
}

.fleet-trailer-intro .fleet-trailer-intro-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-trailer-intro .fleet-trailer-intro-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  padding: 1rem 1.25rem;
}

.fleet-trailer-intro .fleet-trailer-intro-feature-icon {
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  height: 40px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--default-color);
  font-size: 1.25rem;
}

.fleet-trailer-intro .fleet-trailer-intro-feature-title {
  font-family: var(--banner-font);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--default-color);
  margin: 0 0 .35rem;
}

.fleet-trailer-intro .fleet-trailer-intro-feature-text {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 767px) {
  .fleet-trailer-intro .col-lg-4.order-2 {
    order: 1 !important;
  }

  .fleet-trailer-intro .col-lg-4.order-1 {
    order: 2 !important;
  }

  .fleet-trailer-intro .col-lg-4.order-3 {
    order: 3 !important;
  }
}

/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/
.faq-content {
  padding: 75px 0;
  overflow-anchor: none;
}

.faq-eyebrow {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--default-color);
}

.faq-title {
  margin-bottom: 1.25rem;
  font-family: var(--banner-font);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--accent-color);
}

.faq-text {
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
}

.faq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.faq-action {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 100px;
  background: transparent;
  font-family: var(--banner-font);
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 1;
  color: var(--default-color);
  transition: all 0.25s ease;
}

.faq-action i {
  font-size: 1.25rem;
  line-height: 1;
  color: var(--default-color);
}

.faq-action:hover i {
  color: var(--accent-color);
}

.faq-action:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.faq-action-primary {
  border: 1px solid var(--accent-color);
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq-action-primary i {
  color: var(--contrast-color);
}

.faq-action-primary:hover i {
  color: var(--contrast-color);
}

.faq-action-primary:hover {
  border-color: var(--default-color);
  background: var(--default-color);
  color: var(--contrast-color);
}

@media (max-width: 767px) {
  .faq-eyebrow,
  .faq-title,
  .faq-text {
    text-align: center;
  }

  .faq-actions {
    justify-content: center;
    gap: 1rem;
  }

  .faq-action:first-child {
    margin-left: 100%;
    margin-right: 100%;
  }
}

.faq-chat {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.faq-chat-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background: var(--contrast-color);
}

.faq-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq-avatar i {
  font-size: 1.25rem;
  line-height: 1;
}

.faq-agent {
  font-family: var(--banner-font);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.faq-thread {
  position: relative;
  height: auto;
  padding: 1.5rem 1.25rem;
  overflow: hidden;
  overflow-anchor: none;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) transparent;
}

.faq-thread.is-locked {
  overflow-y: auto;
}

.faq-thread::-webkit-scrollbar {
  width: 5px;
}

.faq-thread::-webkit-scrollbar-track {
  background: transparent;
}

.faq-thread::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: var(--accent-color);
}

.faq-thread::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

.faq-message {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  animation: faq-message-in 0.5s ease both;
}

.faq-message:last-child {
  margin-bottom: 0;
}

.faq-message-user {
  justify-content: flex-end;
}

.faq-bubble {
  max-width: 80%;
  padding: 0.85rem 1rem;
  border-radius: 20px;
  font-family: var(--banner-font);
  color: var(--default-color);
  font-size: 14px;
  line-height: 1.5;
}

.faq-message-agent .faq-bubble {
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom-left-radius: 5px;
  background: var(--contrast-color);
  transition: width 0.35s ease, height 0.35s ease;
}

.faq-message-user .faq-bubble {
  border-bottom-right-radius: 5px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 15px;
}

.faq-user-badge {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  align-self: flex-end;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--default-color);
  color: var(--contrast-color);
}

.faq-user-badge i {
  font-size: 1rem;
  line-height: 1;
}

.faq-answer {
  display: block;
  opacity: 0;
  transform: translateY(6px);
}

.faq-answer.is-visible {
  animation: faq-answer-in 0.3s ease forwards;
}

.faq-typing {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  gap: 4px;
  padding: 0;
  transform: translate(-50%, -50%);
}

.faq-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-color);
  animation: faq-typing-dot 1.5s infinite;
}

.faq-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.faq-typing span:nth-child(3) {
  animation-delay: 0.35s;
}

.faq-message.is-flash .faq-bubble {
  animation: faq-flash 1.25s ease;
}

.faq-picker {
  padding: 1.25rem 1.25rem 1.4rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background: var(--contrast-color);
}

.faq-picker-label {
  margin-bottom: 1.25rem;
  font-family: var(--banner-font);
  font-size: 0.85rem;
  letter-spacing: 3px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  color: var(--default-color);
}

.faq-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.faq-option {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.05rem 0.5rem 0.85rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  font-family: var(--banner-font);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  color: var(--default-color);
  cursor: pointer;
  transition: all 0.25s ease;
}

.faq-option i {
  flex: 0 0 auto;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--default-color);
  transition: color 0.25s ease;
}

.faq-option span {
  line-height: 1;
}

.faq-option:hover {
  border-color: var(--default-color);
  background: var(--contrast-color);
  color: var(--accent-color);
}

.faq-option:hover i {
  color: var(--accent-color);
}

.faq-option.is-asked {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq-option.is-asked i {
  color: var(--contrast-color);
}

.faq-option.is-current {
  border-color: var(--default-color);
  background: var(--default-color);
  color: var(--contrast-color);
}

.faq-option.is-current i {
  color: var(--contrast-color);
}

@keyframes faq-message-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes faq-typing-dot {
  0%,
  60%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

@keyframes faq-flash {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.25);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.faq-testimonials {
  margin-top: 75px;
}

.faq-testimonials-head {
  max-width: 850px;
  margin: 0 auto 3rem;
  text-align: center;
}

.faq-testimonials-eyebrow {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--default-color);
}

.faq-testimonials-title {
  margin-bottom: 0.85rem;
  font-family: var(--banner-font);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--accent-color);
}

.faq-testimonials-note {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
}

.faq-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 0.9rem;
}

.faq-testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-column: span 3;
  padding: 1.5rem 1.35rem;
  border-radius: 25px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  text-align: center;
}

.faq-testimonial.is-wide {
  grid-column: span 4;
}

.faq-testimonial.is-soft {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.faq-testimonial.is-dark {
  background: var(--default-color);
  color: var(--contrast-color);
}

.faq-testimonial.is-dark .faq-testimonial-role {
  color: var(--contrast-color);
}

.faq-testimonial.is-dark .faq-testimonial-avatar {
  background: var(--accent-color);
}

.faq-testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  color: var(--accent-color);
}

.faq-testimonial-quote {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  margin-bottom: 1.2rem;
  font-size: 15px;
  line-height: 1.5;
}

.faq-testimonial.is-wide .faq-testimonial-quote {
  -webkit-line-clamp: 4;
}

.faq-testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
}

.faq-testimonial-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background: var(--default-color);
  font-size: 1.1rem;
  color: var(--contrast-color);
}

.faq-testimonial-name {
  margin: 0;
  font-family: var(--banner-font);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.faq-testimonial-role {
  margin: 0;
  font-size: 13px;
  color: var(--default-color);
}

@media (max-width: 767px) {
  .faq-testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .faq-testimonial,
  .faq-testimonial.is-wide {
    width: 100%;
    grid-column: auto;
  }
}

/*--------------------------------------------------------------
# Cariera Section - CARIERĂ
--------------------------------------------------------------*/
.drivers-career {
  padding: 75px 0;
}

.drivers-career .row {
  align-items: center;
}

.drivers-career-text {
  width: 100%;
}

.drivers-career-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drivers-career-photo {
  position: relative;
  width: 100%;
  height: 375px;
  margin: 0;
  overflow: hidden;
  border-radius: 15px;
}

.drivers-career-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drivers-career-media-bottom {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 20px;
  width: 100%;
}

.drivers-career-photo-second,
.drivers-career-photo-third {
  position: relative;
  width: 100%;
  height: 200px;
  margin: 0;
  overflow: hidden;
  border-radius: 15px;
}

.drivers-career-photo-second img,
.drivers-career-photo-third img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drivers-career-title {
  font-size: 30px;
  font-family: var(--banner-font);
  color: var(--accent-color);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 25px;
}

.drivers-career-lead {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
}

.drivers-career-lead:last-of-type {
  margin-bottom: 0;
}

.drivers-career-benefits {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.drivers-career-benefits li {
  display: grid;
  grid-template-columns: 3px 46px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 0.6rem 1.05rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.drivers-career-benefits li:last-child {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.drivers-career-benefits li::before {
  content: "";
  width: 3px;
  height: 35px;
  background: var(--accent-color);
  border-radius: 3px;
}

.drivers-career-benefits strong {
  font-weight: 700;
  color: var(--accent-color);
}

.drivers-career-benefits div {
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
}

.drivers-career-ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--default-color);
  border-radius: 10px;
  color: var(--contrast-color);
}

.drivers-career-ico i {
  font-size: 1.2rem;
}

.drivers-career-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 25px;
}

.btn-cv,
.btn-tel,
.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
  font-family: var(--banner-font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 15px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-cv i,
.btn-tel i,
.btn-map i {
  font-size: 1.15rem;
}

.btn-cv {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.btn-cv:hover {
  color: var(--default-color);
  transform: translateY(-3px);
}

.btn-tel {
  background: var(--default-color);
  color: var(--contrast-color);
}

.btn-tel:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.btn-map {
  background: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.btn-map:hover {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  transform: translateY(-3px);
}

@media (max-width: 767.98px) {
  .drivers-career {
    text-align: center;
  }

  .drivers-career .row {
    justify-content: center;
    align-items: center;
  }

  .drivers-career-media {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 0;
    margin-bottom: 25px;
  }

  .drivers-career-photo {
    height: 300px;
  }

  .drivers-career-photo-second,
  .drivers-career-photo-third {
    position: static;
    width: 100%;
    height: 150px;
  }

  .drivers-career-photo img,
  .drivers-career-photo-second img,
  .drivers-career-photo-third img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .drivers-career-photo img {
    object-position: center 20%;
  }

  .drivers-career-text {
    text-align: center;
  }

  .drivers-career-title,
  .drivers-career-lead {
    text-align: center;
  }

  .drivers-career-lead:last-of-type {
    margin-bottom: 45px;
  }

  .drivers-career-benefits li {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .drivers-career-benefits li::before {
    display: none;
  }

  .drivers-career-cta {
    justify-content: center;
    flex-direction: column;
    margin-top: 45px;
    gap: 15px;
  }

  .btn-cv,
  .btn-tel,
  .btn-map {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Banner presentation
--------------------------------------------------------------*/
.banner-promo-section {
  position: relative;
  width: 100%;
  min-height: 750px;
  margin: 0;
  display: flex;
  align-items: center;
  color: #ffffff;
  background-image: url('../img/banner/soldori-trans-banner-02.webp');
  background-size: cover;
  overflow: hidden;
  padding: 80px 0;
}

.banner-promo-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    to right, 
    rgba(0, 0, 0, 0.9) 25%, 
    rgba(0, 0, 0, 0.5) 50%, 
    rgba(0, 0, 0, 0.25) 75%, 
    rgba(0, 0, 0, 0.15) 100%
  );
}

.banner-promo-section .container {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding-left: 0px;
}

.banner-premium-content {
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center; 
}

.banner-experience-tag {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.025) 100%);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border: 1px solid rgba(0, 123, 200, 0.25);
  padding: 10px 25px;
  border-radius: 50px;
  width: fit-content;
}

.banner-experience-tag .exp-number {
  font-family: var(--banner-font);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
}

.banner-experience-tag .exp-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.banner-experience-tag .exp-title {
  font-family: var(--banner-font);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffffff;
}

.banner-experience-tag .exp-subtitle {
  font-family: var(--banner-font);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent-color);
  letter-spacing: 0.75px;
}

.banner-main-title {
  font-family: var(--banner-font);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--contrast-color);
  position: relative;
  margin-bottom: 25px;
}

.banner-paragraphs {
  display: flex;
  flex-direction: column;
  max-width: 650px; 
}

.banner-lead-text {
  font-family: var(--banner-font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--contrast-color);
  margin-bottom: 35px;
}

.add-trust-card {
  width: 100%;
  max-width: 550px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.025) 100%);
  border: 1px solid rgba(0, 123, 200, 0.25); 
  border-radius: 25px;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.add-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  gap: 25px;
}

.add-banner-logo {
  max-height: 25px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

.add-trust-divider {
  width: 1px;
  height: 35px;
  background: rgba(255, 255, 255, 0.15);
}

.add-trust-message {
  font-family: var(--banner-font);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--contrast-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.5;
  text-align: left; 
}

@media (max-width: 767.98px) {
  .banner-promo-section {
    min-height: auto;
    padding: 90px 20px;
    background-image: url('../img/banner/soldori-trans-banner-mobile-02.webp');
    background-position: center;
    background-size: cover;
  }

  .banner-promo-section .container {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .banner-premium-content {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    align-items: center;
    text-align: center;
  }

  .banner-promo-section::before {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.68) 35%,
      rgba(0, 0, 0, 0.72) 65%,
      rgba(0, 0, 0, 0.90) 100%
    );
  }

  .banner-experience-tag {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px;
  }

  .banner-experience-tag .exp-number {
    font-size: 2.7rem;
  }

  .banner-experience-tag .exp-title {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .banner-experience-tag .exp-subtitle {
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .banner-main-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .banner-paragraphs {
    max-width: 100%;
    align-items: center;
  }

  .banner-lead-text {
    text-align: center;
    margin-bottom: 30px;
  }

  .add-trust-card {
    max-width: 100%;
  }

  .add-trust-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 18px;
    padding: 25px;
  }

  .add-trust-divider {
    display: none;
  }

  .add-trust-message {
    text-align: center;
    font-size: 1rem;
  }

  .add-banner-logo {
    max-height: 35px;
  }
}

/*--------------------------------------------------------------
# Contact Section - DATE DE CONTACT
--------------------------------------------------------------*/
.contact-details-intro {
  padding: 75px 0;
}

.contact-details-intro .cdi-col-head {
  margin: 0 0 1.05rem;
  padding-left: 0.15rem;
}

.contact-details-intro .cdi-col-head h3 {
  margin: 0 0 .2rem;
  font-family: var(--banner-font);
  font-size: 25px;
  font-weight: 800;
  color: var(--accent-color);
  letter-spacing: 0;
}

.contact-details-intro .cdi-col-head p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .contact-details-intro .cdi-col-head {
    text-align: center;
    padding-left: 0;
  }

  .contact-details-intro .cdi-col-head h3,
  .contact-details-intro .cdi-col-head p {
    text-align: center;
  }
}

.contact-details-intro .cdi-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1.75rem 1.2rem 1.65rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  background: transparent;
  text-align: center;
}

.contact-details-intro .cdi-card__icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-bottom: 0.85rem;
  border-radius: 10px;
  background: var(--default-color);
  color: var(--contrast-color);
  font-size: 1.25rem;
}

.contact-details-intro .cdi-card h3 {
  margin: 0 0 .35rem;
  font-family: var(--banner-font);
  color: var(--default-color);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-details-intro .cdi-card p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--default-color);
}

.contact-details-intro .cdi-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 1.25rem;
}

.contact-details-intro .btn.cdi-btn {
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  color: var(--default-color);
  font-family: var(--banner-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.contact-details-intro .btn.cdi-btn:hover,
.contact-details-intro .btn.cdi-btn:focus-visible {
  background: var(--default-color);
  color: var(--contrast-color);
}

.contact-details-intro .btn.cdi-btn--whatsapp {
  background: #25d366;
  color: var(--default-color);
}

.contact-details-intro .btn.cdi-btn--whatsapp:hover,
.contact-details-intro .btn.cdi-btn--whatsapp:focus-visible {
  background: #25d366;
  color: var(--contrast-color);
}

.contact-details-intro .cdi-ident {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 5px solid var(--accent-color);
  border-radius: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.contact-details-intro .cdi-ident__head {
  padding: 1.4rem 1.4rem 1.1rem;
}

.contact-details-intro .cdi-ident__head h3 {
  margin: 0 0 .2rem;
  font-family: var(--banner-font);
  font-size: 25px;
  font-weight: 800;
  color: var(--accent-color);
  letter-spacing: 0;
}

.contact-details-intro .cdi-ident__head p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .contact-details-intro .cdi-ident__head {
    text-align: center;
    padding: 1.4rem 1.4rem 1.1rem;
  }

  .contact-details-intro .cdi-ident__head h3,
  .contact-details-intro .cdi-ident__head p {
    text-align: center;
  }
}

.contact-details-intro .cdi-ident dl {
  margin: 0;
}

.contact-details-intro .cdi-ident__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: .95rem 1.4rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.contact-details-intro .cdi-ident__row:last-child {
  padding-bottom: 1.15rem;
}

.contact-details-intro .cdi-ident dt {
  flex: none;
  font-family: var(--banner-font);
  color: var(--default-color);
  font-size: 0.85rem;
  font-weight: 500;
}

.contact-details-intro .cdi-ident dd {
  margin: 0;
  font-family: var(--banner-font);
  font-size: 0.9rem;
  text-align: right;
  color: var(--banner-font);
  font-weight: 700;
}

.contact-map-header {
  text-align: center;
  max-width: 720px;
  padding-top: 75px;
  margin: 0 auto clamp(1.75rem, 3.5vw, 2.5rem);
}

.contact-map-eyebrow {
  font-size: 14px;
  letter-spacing: 5px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.contact-map-title {
  font-family: var(--banner-font);;
  font-weight: 800;
  font-size: 25px;
  color: var(--default-color);
  margin: 0 0 0.75rem;
}

.contact-map {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  margin-bottom: 75px;
}

.contact-map-stage {
  position: relative;
  flex: 1 1 auto;
  min-height: 450px;
}

.contact-map-gate {
  position: absolute;
  inset: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(0deg, rgba(15, 22, 30, 0.72), rgba(15, 22, 30, 0.72)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23cbd5e1' stroke-width='1'/%3E%3C/svg%3E")
    #e2e8f0;
}

.contact-map-gate-title {
  font-family: var(--banner-font);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--contrast-color);
  line-height: 1.25;
  margin: 0 0 1rem;
}

.contact-map-gate-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--contrast-color);
  max-width: 75ch;
  margin: 0 auto 1.75rem;
}

.contact-map-gate-button {
  font-family: var(--banner-font);
  letter-spacing: 2.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-color);
  border: none;
  border-radius: 10px;
  padding: 0.65rem 1.25rem;
  color: var(--contrast-color);
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease;
}

.contact-map-gate-button:hover,
.contact-map-gate-button:focus-visible {
  background: var(--default-color);
}

.contact-map-embed {
  position: absolute;
  inset: 0;
}

.contact-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-map-bar {
  flex: none;
  padding: 0.9rem 1.25rem;
  background: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-family: var(--banner-font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--contrast-color);
}

.contact-map-status {
  display: inline-flex;
  align-items: center;
}

#map-status {
  transition: color 0.25s ease;
}

#map-status.is-on {
  color: #00c92f;
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--banner-font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  gap: 0.5rem;
  color: var(--contrast-color);
}

.contact-map-link:hover {
  color: var(--accent-color);
}

#map-status .map-status-on {
  display: none;
}

#map-status.is-on .map-status-off {
  display: none;
}

#map-status.is-on .map-status-on {
  display: inline;
}

@media (max-width: 767.98px) {
  .contact-map-bar {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 1rem 1rem;
  }

  .contact-map-status,
  .contact-map-link {
    justify-content: center;
    text-align: center;
  }
}

.contact-social-media-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto clamp(1.75rem, 3.5vw, 2.5rem);
}

.contact-social-media-eyebrow {
  font-size: 14px;
  letter-spacing: 5px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.contact-social-media-title {
  font-family: var(--banner-font);
  font-weight: 800;
  font-size: 25px;
  color: var(--default-color);
  margin: 0 0 0.75rem;
}

.contact-social-media-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 1000px;
  margin: 0 auto 3.25rem;
}

.contact-social-media-pill {
  font-family: var(--banner-font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 100px;
  padding: 0.5rem 1rem;

}

.contact-social-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 575.98px) {
  .contact-social-media-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
}

.contact-social-media-card {
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  padding: 1.35rem;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.contact-social-media-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand, var(--accent));
}

.contact-social-media-card-backdrop {
  position: absolute;
  right: 15px;
  bottom: 15px;
  font-size: 7rem;
  line-height: 1;
  color: var(--brand, var(--accent));
  opacity: 0.1;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.contact-social-media-card:hover .contact-social-media-card-backdrop {
  opacity: 0.15;
  transform: scale(1.05) rotate(-5deg);
}

.contact-social-media-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-social-media-card-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--brand, var(--accent));
  color: #fff;
  font-size: 1.5rem;
}

.contact-social-media-card-arrow {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.85rem;
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.contact-social-media-card:hover .contact-social-media-card-arrow {
  color: var(--brand, var(--accent));
  border-color: var(--brand, var(--accent));
  transform: translate(2px, -2px);
}

.contact-social-media-card-body {
  position: relative;
  z-index: 1;
  margin-top: 1.3rem;
}

.contact-social-media-card-name {
  font-family: var(--banner-font);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--default-color);
  margin: 0 0 0.25rem;
}

.contact-social-media-card-handle {
  font-family: var(--banner-font);
  font-size: 0.85rem;
  color: var(--default-color);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .contact-section *,
  .contact-section *::before,
  .contact-section *::after {
    transition: none !important;
  }

  .contact-details-action:hover,
  .contact-details-tile:hover,
  .contact-social-media-card:hover,
  .contact-social-media-pill:hover {
    transform: none;
  }
}

/*--------------------------------------------------------------
# WhatsApp button
--------------------------------------------------------------*/
.floating_btn {
  position: fixed;
  right: 25px;
  bottom: 75px;
  z-index: 99999;
}

.wa {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
}

.wa__circle {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  background: #25d366;
}

.wa__circle:hover {
  color: var(--contrast-color);
}

.wa__bubble {
  position: absolute;
  top: 0;
  right: 65px;
  bottom: 0;
  display: grid;
  align-items: center;
  height: 40px;
  margin: auto 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.wa__bg {
  position: absolute;
  inset: 0;
  border-radius: 15px;
  background: #dcf8c6;
  transform: scale(0.5);
  transform-origin: 100% 50%;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.075));
  transition: transform 0.25s ease;
}

.wa__bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: -8px;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 9px solid #dcf8c6;
}

.wa__dots,
.wa__text {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  opacity: 0;
}

.wa__text {
  padding: 0 18px;
  font-size: 15px;
  color: var(--default-color);
  font-family: var(--banner-font);
  font-weight: 700;
  white-space: nowrap;
}

.wa__dots {
  display: flex;
  align-items: center;
  justify-self: center;
  align-self: center;
  gap: 5px;
  padding: 0 18px;
}

.wa__dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7a8b78;
}

.wa:hover .wa__bubble {
  opacity: 1;
}

.wa:hover .wa__bg {
  transform: scale(1);
}

.wa:hover .wa__dots {
  animation: waDots 1.5s linear forwards;
}

.wa:hover .wa__text {
  animation: waText 1.5s linear forwards;
}

.wa:hover .wa__dots i {
  animation: waBounce 1s ease-in-out infinite;
}

.wa:hover .wa__dots i:nth-child(2) {
  animation-delay: 0.15s;
}

.wa:hover .wa__dots i:nth-child(3) {
  animation-delay: 0.3s;
}

@media (hover: hover) {
  .wa.wa--muted .wa__bubble { opacity: 0; }
  .wa.wa--muted .wa__bg     { transform: scale(0.5); }
  .wa.wa--muted .wa__dots,
  .wa.wa--muted .wa__text   { animation: none; opacity: 0; }
}

@keyframes waDots {
  0%,
  14% {
    opacity: 0;
  }

  22%,
  50% {
    opacity: 1;
  }

  60%,
  100% {
    opacity: 0;
  }
}

@keyframes waText {
  0%,
  55% {
    opacity: 0;
  }

  72%,
  100% {
    opacity: 1;
  }
}

@keyframes waBounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }

  30% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

@media (hover: none) {
  .wa__bubble {
    opacity: 0;
    pointer-events: none;
  }

  .wa__bg {
    transform: scale(0.5);
  }

  .wa__dots,
  .wa__text {
    opacity: 0;
    animation: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wa__bubble,
  .wa__bg,
  .wa__text {
    transition: none;
  }

  .wa__dots {
    display: none;
  }

  .wa__text {
    opacity: 1;
  }

  .wa:hover .wa__dots,
  .wa:hover .wa__text,
  .wa:hover .wa__dots i {
    animation: none;
  }
}

/*--------------------------------------------------------------
# Lang button - Modern & Professional
--------------------------------------------------------------*/
.lang-hidden {
  display: none !important;
}

.lang-widget {
  position: fixed;
  bottom: 135px;
  right: 25px;
  width: 45px;
  z-index: 9999;
}

.lang-widget span {
  display: none;
}

.lang-widget::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  margin-left: -27px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  background: var(--contrast-color);
  opacity: 0;
  pointer-events: none;
  transition:
    height 0.25s ease,
    opacity 0.25s ease;
}

.lang-widget.open::before {
  opacity: 1;
  height: 106px;
  transition:
    height 0.25s ease,
    opacity 0.35s ease;
}

.lang-widget .current-lang {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 25%);
  border-radius: 50%;
  background: var(--contrast-color);
  cursor: pointer;
  transition: background 0.25s ease;
}

.lang-widget .current-lang:hover {
  background: color-mix(in srgb, var(--default-color), transparent 50%);
}

.lang-widget.open .current-lang {
  background: color-mix(in srgb, var(--default-color), transparent 50%);
  border: 0;
}

.lang-widget img {
  display: block;
  width: 25px;
  height: 20px;
  border-radius: 6px;
  object-fit: cover;
}

.lang-widget .lang-options {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  bottom: 52px;
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
  pointer-events: none;
}

.lang-widget.open .lang-options {
  pointer-events: auto;
}

.lang-widget .lang-options li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: background 0.25s ease;
}

.lang-widget .lang-options li:hover {
  background: color-mix(in srgb, var(--default-color), transparent 50%);
}

.lang-widget.open .lang-options li {
  animation: langFlagIn 0.25s ease 0.25s both;
}

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

@media (prefers-reduced-motion: reduce) {
  .lang-widget::before,
  .lang-widget.open::before {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .lang-widget.open .lang-options li {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
  }
}

/*--------------------------------------------------------------
# GDPR Banner
--------------------------------------------------------------*/
#gdpr-root {
  --gdpr-soft: #f4f2ee;
  --gdpr-z: 4500000;
}

#gdpr-root *,
#gdpr-root *::before,
#gdpr-root *::after {
  box-sizing: border-box;
}

#gdpr-root [hidden] {
  display: none !important;
}

.gdpr-banner {
  position: fixed;
  left: 50%;
  bottom: 25px;
  width: min(750px, calc(100vw - 30px));
  padding: 25px 45px;
  background: var(--contrast-color);
  border: 1px solid var(--accent-color);
  border-radius: 25px;
  transform: translateX(-50%);
  z-index: 2500;
}

.gdpr-banner h2 {
  margin: 0 0 15px;
  font-family: var(--banner-font);
  font-size: 1.25rem;
  color: var(--default-color);
  font-weight: 800;
  letter-spacing: 0;
}

.gdpr-banner p {
  margin: 0 0 35px;
  color: var(--default-color);
  font-size: 17px;
  line-height: 1.75;
}

.gdpr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.gdpr-btn {
  padding: 10px 15px;
  border: 1px solid var(--default-color);
  border-radius: 10px;
  background: var(--contrast-color);
  color: var(--default-color);
  font-family: var(--banner-font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.gdpr-btn:hover {
  color: var(--accent-color);
}

.gdpr-btn--primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.gdpr-btn--primary:hover {
  background: var(--default-color);
  border-color: var(--default-color);
  color: var(--contrast-color);
}

.gdpr-actions .gdpr-btn {
  flex: 1 1 auto;
  min-width: 90px;
}

.gdpr-actions .gdpr-btn--ghost {
  flex: 0 0 auto;
  min-width: 0;
}

.gdpr-recall {
  position: fixed;
  left: 25px;
  bottom: 15px;
  width: 45px;
  height: 45px;
  padding: 0;
  border: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 6px 20px -6px rgba(0, 0, 0, 0.075);
  cursor: pointer;
  z-index: calc(var(--gdpr-z) - 2);
}

.gdpr-recall i {
  display: block;
  font-size: 21px;
  line-height: 1;
}

.gdpr-recall:hover {
  background: var(--default-color);
}

.gdpr-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(18, 17, 14, 0.5);
  backdrop-filter: blur(1px);
  z-index: calc(var(--gdpr-z) + 1);
}

.gdpr-dialog {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: min(800px, 100%);
  height: min(575px, 100%);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--contrast-color);
  border-radius: 25px;
}

.gdpr-dialog__head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
}

.gdpr-dialog__title {
  flex: 1;
  margin: 0;
  font-family: var(--banner-font);
  font-size: 1.15rem;
  color: var(--accent-color);
  font-weight: 800;
}

.gdpr-close {
  padding: 5px 10px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--accent-color);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.gdpr-close:hover {
  background: var(--default-color);
  color: var(--contrast-color);
}

.gdpr-tabs {
  flex: 0 0 auto;
  display: flex;
  gap: 5px;
  padding: 10px 12px 0;
  overflow-x: auto;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gdpr-tabs::-webkit-scrollbar {
  display: none;
}

.gdpr-tab {
  margin-bottom: -1px;
  padding: 10px 15px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 10px 10px 0 0;
  background: transparent;
  font-family: var(--banner-font);
  color: var(--default-color);
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s ease;
}

.gdpr-tab:hover {
  color: var(--accent-color);
}

.gdpr-tab[aria-selected="true"] {
  border-bottom-color: var(--default-color);
  color: var(--accent-color);
}

.gdpr-dialog__body {
  flex: 1 1 0;
  min-height: 0;
  padding: 20px 22px;
  overflow-y: auto;
  overscroll-behavior: contain;
  font-size: 16px;
  color: var(--default-color);
  line-height: 1.5;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) transparent;
}

.gdpr-dialog__foot {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  padding: 15px 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
}


.gdpr-doc h3 {
  margin: 25px 0 10px;
  font-family: var(--banner-font);
  color: var(--default-color);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0;
}

.gdpr-doc h3:first-child {
  margin-top: 0;
}

.gdpr-doc h4 {
  margin: 20px 0 5px;
  font-size: 0.95rem;
  font-family: var(--banner-font);
  color: var(--default-color);
  font-weight: 700;
}

.gdpr-doc p,
.gdpr-doc li {
  color: var(--default-color);
}

.gdpr-doc p {
  margin: 0 0 0px;
  color: var(--default-color);
  font-size: 16px;
}

.gdpr-doc ul,
.gdpr-doc ol {
  margin: 0 0 12px;
  padding-left: 20px;
}

.gdpr-doc li {
  margin-bottom: 6px;
}

.gdpr-doc strong {
  color: var(--default-color);
}

.gdpr-doc a {
  color: var(---accent-color);
}

.gdpr-doc code {
  padding: 1px 5px;
  border-radius: 5px;
  background: var(--gdpr-soft);
  font-size: 0.9em;
}

.gdpr-meta {
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 3px solid var(--accent-color);
  color: var(--default-color);
  font-size: 0.85rem;
}

.gdpr-fill {
  color: var(--default-color);
  font-weight: 700;
}

.gdpr-table {
  width: 100%;
  margin: 0 0 16px;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.gdpr-table th,
.gdpr-table td {
  padding: 8px 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  color: var(--default-color);
  text-align: left;
  vertical-align: top;
}

.gdpr-table th {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
}


.gdpr-cat {
  margin-bottom: 12px;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 10px;
}

.gdpr-cat__top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.gdpr-cat__name {
  flex: 1;
  margin: 0 0 5px;
  font-family: var(--banner-font);
  color: var(--default-color);
  font-size: 1.05rem;
  font-weight: 800;
}

.gdpr-cat p {
  margin: 0;
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.5;
}

.gdpr-cat__always {
  padding-top: 2px;
  color: #05e63d;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.gdpr-switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 25px;
  flex: 0 0 auto;
}

.gdpr-switch input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.gdpr-switch span {
  position: absolute;
  inset: 0;
  border-radius: 25px;
  background: #c9c5bd;
  cursor: pointer;
  transition: background 0.25s;
}

.gdpr-switch span::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 0.25s;
}

.gdpr-switch input:checked + span {
  background: var(--accent-color);
}

.gdpr-switch input:checked + span::before {
  transform: translateX(20px);
}

@media (prefers-reduced-motion: reduce) {
  .gdpr-banner {
    animation: none;
  }

  .gdpr-switch span,
  .gdpr-switch span::before {
    transition: none;
  }
}

@media (max-width: 768px) {
  /* ---- BANNER ---- */
  .gdpr-banner {
    left: 15px;
    right: 15px;
    bottom: 15px;
    width: auto;
    max-width: none;
    padding: 20px;
    border-radius: 20px;
    transform: none;
  }

  .gdpr-actions {
    gap: 10px;
  }

  .gdpr-actions .gdpr-btn {
    flex: 1 1 100%;
  }

  .gdpr-overlay {
    padding: 0;
  }

  .gdpr-dialog {
    position: absolute;
    left: 50%;
    bottom: 15px;
    width: calc(100% - 30px);
    height: 65vh;
    max-height: 70vh;
    transform: translateX(-50%);
    border-radius: 20px;
  }

  .gdpr-dialog__head {
    padding: 12px 15px;
  }

  .gdpr-tabs {
    padding: 8px 10px 0;
  }

  .gdpr-tab {
    padding: 8px 12px;
  }

  .gdpr-dialog__body {
    padding: 15px;
    overflow-wrap: anywhere;
  }

  .gdpr-dialog__foot {
    padding: 12px 15px;
    gap: 8px;
  }

  .gdpr-dialog__foot .gdpr-btn {
    flex: 1 1 auto;
  }

  .gdpr-cat {
    padding: 12px 14px;
  }

  .gdpr-cat__top {
    gap: 10px;
  }

  .gdpr-table,
  .gdpr-table tbody,
  .gdpr-table tr,
  .gdpr-table td {
    display: block;
    width: 100%;
  }

  .gdpr-table {
    border-collapse: separate;
  }

  .gdpr-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .gdpr-table tr {
    margin-bottom: 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
    border-radius: 10px;
    overflow: hidden;
  }

  .gdpr-table td {
    padding: 10px 12px;
    border: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    hyphens: none;
    overflow-wrap: break-word;
  }

  .gdpr-table td:last-child {
    border-bottom: 0;
  }

  .gdpr-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 3px;
    font-family: var(--banner-font);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--accent-color);
  }
}



