/* 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;
}

: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 - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #000000; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ededed; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0e7bda; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #31302d; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #d0d0d0;  /* The default color of the main navmenu links */
  --nav-hover-color: #ff9f1c; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #393939; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #393939; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #d0d0d0; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ff9f1c; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.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: smooth;
}

/*--------------------------------------------------------------
# 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);
  transition: background-color .5s, box-shadow .5s;
  z-index: 997;
  background-color: var(--background-color);
}

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

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

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

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

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

.scrolled .header .topbar {
  height: 0;
  visibility: visible;
  overflow: hidden;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --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;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

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

  .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 {
    color: var(--contrast-color);
    font-size: 30px;
    line-height: 0;
    margin-right: 0px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    top: 75px;       
    left: 20px;      
    right: 20px;     
    padding: 10px 0;
    margin: 0;
    border-radius: 15px;
    background-color: var(--default-color);
    overflow: visible; 
    transition: 0.3s;
    z-index: 99999;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    height: auto;     
  }

  .navmenu a,
  .navmenu a:focus {
    color: #FFFFFF;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .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: 0.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 .mobile-nav-toggle {
    color: var(--accent-color);
    position: absolute;
    font-size: 30px;
    top: 22px;
    right: 12px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
  }

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

  .scrolled .header .topbar {
    height: 0;
    overflow: hidden;
  }

  .scrolled .navmenu {
    top: 5px; 
    left: 0;
    right: 0;
  }

.scrolled.mobile-nav-active .mobile-nav-toggle {
  top: 15px;
}

  .navmenu {
    top: 100px;
    left: 20px;
    right: 20px;
  }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 60px 0;
  position: relative;
}

.footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
  position: absolute;
  top: 0;
  left: 0;
}

.footer .logo {
  line-height: 1;
  margin: 0 auto 30px; 
  display: block;     
  width: fit-content;
  text-align: center;
}

.footer .logo img {
  max-height: 100px;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}

.footer .logo:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .footer .logo img {
    max-height: 70px;
  }
}

.footer p {
  font-size: 17px;
  font-style: italic;
  max-width: 650px;
  padding: 0;
  margin: 0 auto 30px;
  text-align: center;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--default-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s ease;
}

.footer .social-links a:hover {
  background: var(--accent-color);
  color: var(--default-color);
  transform: translateY(-5px);
}

.footer .copyright {
  padding: 22px 25px;
  margin-top: 0;
  border-radius: 20px;
  background: var(--accent-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer .footer-services-list {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--contrast-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer .copyright .copy-main {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1;
}

.copyright-icon {
  font-size: 15px;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .footer .copyright {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
  }

  .footer .footer-services-list {
    order: 2; 
    gap: 20px;
  }

  .footer .copy-main {
    order: 1; 
  }

  .footer .credits {
    text-align: right;
    padding-top: 15px; 
  }
}

@media (max-width: 991px) {
  .footer .copyright {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 20px;
    gap: 0px;
  }

  .footer .footer-services-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }

  .footer .footer-services-list span {
    padding: 0;
    text-align: center;
  }

  .footer .footer-services-list .separator {
    display: none;
  }

  .footer .footer-services-list span::after {
    display: none !important;
  }

  .footer .copyright .copy-main {
    margin-top: 10px;
    justify-content: center;
  }

  .footer .credits {
    text-align: center;
    padding-top: 10px;
  }
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 25px;
  bottom: 15px;
  z-index: 99999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.4s;
  background: var(--accent-color); 
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.075);
}

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

.scroll-top i {
  font-size: 19px;
  color: var(--contrast-color); 
  line-height: 1;
  z-index: 2;
}

.scroll-top i:hover {
  color: var(--default-color); 
}

.progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.progress-circle path {
  fill: none;
  stroke: var(--default-color);
  stroke-width: 4;
  stroke-linecap: round;
  transition: stroke-dashoffset 10ms linear;
}

/*--------------------------------------------------------------
# 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 {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 45px;
  position: relative;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 900;
  color: var(--default-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: -15px;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 900;
  font-size: 75px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 17px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 35px;
  }

  .section-title span {
    top: 0px;
    font-size: 55px;
    line-height: 1;
  }

  .section-title p {
    font-size: 17px;
    line-height: 1.5;
    padding: 0 10px;
  }
}

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

@media (max-width: 768px) {
  .mobile-br {
    display: inline;
  }
}

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

/*--------------------------------------------------------------
# Hero Section - ACASĂ
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #000;
}

.hero .hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .hero-slider.swiper {
  height: 100%;
}

.hero .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.slide-1 {
  background-image: url('../img/hero/corporate-express-oil-hero-01.webp');
}

.hero .hero-slider .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    rgba(10, 10, 10, 0.95) 0%, 
    rgba(10, 10, 10, 0.75) 35%, 
    rgba(10, 10, 10, 0.50) 65%, 
    rgba(10, 10, 10, 0.25) 100%
  );
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 767px) {
  .hero .hero-slider .slide-overlay {
    background: linear-gradient(
      to top,
      rgba(10, 10, 10, 0.95) 0%,
      rgba(10, 10, 10, 0.75) 35%,
      rgba(10, 10, 10, 0.50) 65%,
      rgba(10, 10, 10, 0.25) 100%
    );
  }
}

.hero .hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 90px;
}

.hero .hero-content {
  text-align: left;
  padding-left: 0px;
}

.hero .hero-content .badge-tag {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  margin-right: -3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: var(--contrast-color);
}

.hero .hero-content .testimonial-box {
  display: flex;
  margin-bottom: 45px;
}

.hero .hero-content .testimonial-text {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--contrast-color);
  font-style: italic;
  margin: 0;
}

.hero .hero-content p {
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
  color: color-mix(in srgb, var(--contrast-color), transparent 5%);
}

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

.hero .btn-browse:hover {
  background-color: var(--accent-color);
  transform: translate3d(0, -5px, 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 .hero-bottom-info {
  display: flex;
  gap: 40px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  max-width: fit-content;
  margin-top: 60px;
}

.hero .info-item { 
  text-align: center; 
}

.hero .info-item .label {
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 1px;
}

.hero .info-item .value {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
}

.hero .divider {
  width: 1px;
  height: 30px;
  background: rgba(14, 123, 218, 0.5); 
}

@media (max-width: 768px) {
  .hero .container {
    padding-top: 150px;
    padding-bottom: 75px;
  }

  .hero .hero-content {
    text-align: center;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content .badge-tag {
    font-size: 0.7rem;
    padding: 5px 15px;
  }

  .hero .hero-content .testimonial-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .hero .hero-content .testimonial-text {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .hero .hero-content .quote-mark {
    width: 25px;
    height: 2px;
  }

  .hero .hero-content p {
    max-width: 100%;
    padding: 0 0px;
  }

  .hero .d-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 8px !important;
    row-gap: 15px !important;
    justify-content: center;
    max-width: 350px;
    margin: 0 auto;
  }

  .hero .btn-browse {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .hero .d-flex .btn-browse:nth-child(1),
  .hero .d-flex .btn-browse:nth-child(2) {
    width: calc(50% - 4px);
  }

  .hero .d-flex .btn-browse:nth-child(3) {
    width: 100%;
    margin-top: 2px;
  }

  .hero .hero-bottom-info {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    margin: 60px auto 0;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.25);
  }

  .hero .hero-bottom-info .info-item {
    width: 100%;
    text-align: center;
    padding: 0;
    position: relative;
  }

  .hero .hero-bottom-info .divider {
    display: none;
  }
}
/*--------------------------------------------------------------
# About Section - DESPRE NOI 
--------------------------------------------------------------*/
.about {
  padding: 75px 0 0;
}

.about .row {
  align-items: stretch;
}

.about .col-lg-6 {
  display: flex;
}

.about .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.about .content h2 {
  font-size: 27px;
  font-weight: 900;
  margin: 0 0 30px;
  line-height: 1.25;
  color: var(--accent-color);
}

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

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

/* Secțiune Imagine Unică */
.about .image-section {
  width: 100%;
  height: 620px;
  border-radius: 15px;
  overflow: hidden;
}

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

@media (max-width: 767.98px) {
  .about .col-lg-6 {
    justify-content: center;
  }

  .about .content {
    align-items: center;
    text-align: center;
  }

  .about .content h2 {
    font-size: 30px;
  }

  .about .content p:last-child {
    margin-bottom: 45px;
  }

  .about .image-section {
    width: 100%;
    height: 350px;
    margin: 0 auto;
    border-radius: 12px;
  }
}

.about-stats {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: var(--accent-color);
  padding: 2.5rem 0;
  margin-top: 60px;
}

.about-stats-item {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  padding: 1.25rem;
  background: var(--contrast-color);
  border-radius: 25px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-stats-item:hover {
  transform: translateY(-5px);
}

.about-stats-icon-wrap {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--accent-color) 15%, transparent);
}

.about-stats-icon {
  font-size: 1.75rem;
  color: var(--accent-color);
}

.about-stats-number {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.about-stats-label {
  margin-top: 5px;
  font-size: 0.95rem;
  color: var(--default-color);
  line-height: 1.25;
}

@media (max-width: 767.98px) {
  .about-stats {
    padding: 2rem 0;
  }
  .about-stats-item {
    padding: 1rem;
    gap: 12px;
  }
  .about-stats-icon-wrap {
    width: 48px;
    height: 48px;
  }
  .about-stats-icon {
    font-size: 1.5rem;
  }
  .about-stats-label {
    font-size: 0.85rem;
  }
}

.about-testimonial {
  margin: 60px 0 75px;
}

.about-testimonial .at-card {
  position: relative;
  background: #cbd3d5;
  border-radius: 15px;
  overflow: hidden;
}

.about-testimonial .at-photo {
  position: relative;
  min-height: 400px;
  height: 100%;
}

.about-testimonial .at-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-testimonial .at-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: clamp(30px, 3vw, 50px);
  background: transparent;
}

.about-testimonial .at-eyebrow {
  align-self: flex-start;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-color);
}

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

.about-testimonial .at-quote em {
  font-weight: 600;
  color: var(--accent-color);
}

.about-testimonial .at-signoff {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--accent-color);
}

.about-testimonial .at-line {
  flex: none;
  width: 30px;
  height: 2px;
  background: var(--default-color);
}

.about-testimonial .at-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-testimonial .at-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.about-testimonial .at-role {
  font-size: 0.85rem;
  line-height: 1.25;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about-testimonial .at-logo {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.about-testimonial .at-logo img {
  width: 200px;
  height: auto;
  max-width: 100%;
  display: block;
}

.about-testimonial .at-card,
.about-testimonial .at-photo,
.about-testimonial .at-photo img {
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

@media (max-width: 767px) {
  .about-testimonial .at-body {
    text-align: center;
    align-items: center;
    padding: 30px 25px;
  }

  .about-testimonial .at-photo {
    min-height: 250px;
    height: 350px;
  }

  .about-testimonial .at-eyebrow {
    align-self: center;
  }

  .about-testimonial .at-quote {
    text-align: center;
  }

  .about-testimonial .at-signoff {
    justify-content: center;
    text-align: center;
    border-top: 1px solid var(--accent-color);
    gap: 25px;
  }

  .about-testimonial .at-line {
    display: none;
  }

  .about-testimonial .at-author {
    align-items: center;
    text-align: center;
  }

  .about-testimonial .at-name,
  .about-testimonial .at-role {
    text-align: center;
  }

  .about-testimonial .at-logo {
    margin: 15px auto 0;
    justify-content: center;
    width: 100%;
  }

  .about-testimonial .at-logo img {
    width: 200px;
  }
}
/*--------------------------------------------------------------
# Services Section - SERVICII
--------------------------------------------------------------*/
.services {
  padding: 75px 0;
}

.services .services-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  min-height: 500px;
  box-shadow: 0 12px 36px color-mix(in srgb, var(--default-color), transparent 90%);
}

.services .services-card picture,
.services .services-card picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.services .services-card picture img {
  object-fit: cover;
}

.services .services-card .services-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, color-mix(in srgb, #000, transparent 15%) 0%, color-mix(in srgb, #000, transparent 55%) 50%, color-mix(in srgb, #000, transparent 75%) 100%);
}

.services .services-card .services-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  height: 100%;
  min-height: 500px;
  width: 75%;
  display: flex;
  align-items: flex-end;
}

.services .services-card .services-content h2 {
  color: var(--contrast-color);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.services .services-card .services-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 5%);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 3rem;
  width: 70%;
}

.services .intro-content-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.services .transport-button {
  display: inline-flex;
  align-items: center;
  background: var(--contrast-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  gap: 15px;
  flex-shrink: 0;
}

.services .transport-button .icon-box-contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--default-color);
  color: var(--accent-color);
  border-radius: 10px;
  font-size: 1.5rem;
  will-change: transform;
  flex-shrink: 0;
}

.services .transport-button .transport-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.services .transport-button .transport-title {
  display: block;
  font-size: 1.025rem;
  letter-spacing: 0.5px;
  font-weight: 800;
  color: var(--default-color);
  line-height: 1.2;
}

.services .transport-button .transport-subtitle {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.25px;
  color: var(--default-color);
  margin-top: 0px;
}

.services .transport-button .transport-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--default-color);
  margin-left: 4px;
  flex-shrink: 0;
}

.services .contact-icons {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.services .contact-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 19px;
  text-decoration: none;
  transition: background-color 0.25s ease,
              transform 0.25s ease,
              box-shadow 0.25s ease;
  will-change: transform;
  backface-visibility: hidden;
}

.services .contact-icon-link:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translate3d(0, -5px, 0);
}

@media (max-width: 767px) {
  .services .services-card {
    min-height: 600px;
  }

  .services .services-card .services-overlay {
    background: linear-gradient(
      to top,
      rgba(0,0,0,.95) 0%,
      rgba(0,0,0,.75) 45%,
      rgba(0,0,0,.25) 75%,
      rgba(0,0,0,.1) 100%
    );
  }

  .services .services-card .services-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: auto;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .services .services-card .services-content h2,
  .services .services-card .services-content p {
    width: 100%;
    text-align: center;
  }

  .services .services-card .services-content p {
    margin-bottom: 2rem;
  }

  .services .intro-content-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .services .transport-button {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .services .contact-icons {
    justify-content: center;
  }
}

.services2 {
  margin-top: 60px;
}

.services2 .service2-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 36px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services2 .service2-card .service2-img {
  position: relative;
  overflow: hidden;
}
.services2 .service2-card .service2-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.services2 .service2-card .service2-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.services2 .service2-card .service2-info .service2-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.services2 .service2-card .service2-info .service2-header h4 {
  color: var(--default-color);
  font-size: 1.75rem;
  font-weight: 900;
  margin: 0;
  line-height: 1.25;
}

.services2 .service2-card .service2-info .service2-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.services2 .service2-card .service2-info .service2-badges .service2-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--contrast-color);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-right: -0.5px;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  line-height: 1.25;
}

.services2 .service2-card .service2-info .service2-badges .service2-badge i {
  font-size: 1.25rem;
  color: var(--contrast-color);
  line-height: 1;
}

.services2 .service2-card .service2-info p {
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.services2 .service2-card .service2-info .service2-btn {
  display: inline-flex;
  align-self: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0;
  background-color: var(--default-color);
  color: var(--contrast-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: -0.5px;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  transition: transform 0.25s ease, background-color 0.25s ease;
  cursor: pointer;
  will-change: transform;
  backface-visibility: hidden;
}

.services2 .service2-card .service2-info .service2-btn:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.services2 .service2-card .service2-info .service2-btn i {
  font-size: 1.25rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .services2 .service2-card .service2-img img {
    height: 200px;
  }

  .services2 .service2-card .service2-info {
    text-align: center;
    align-items: center;
  }

  .services2 .service2-card .service2-info .service2-header {
    justify-content: center;
    text-align: center;
  }

  .services2 .service2-card .service2-info .service2-header h4 {
    width: 100%;
    text-align: center;
    font-size: 1.65rem;
  }

  .services2 .service2-card .service2-info p {
    text-align: center;
  }

  .services2 .service2-card .service2-info .service2-btn {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .services2 .col-lg-6:not(:last-child),
  .services2 .col-md-6:not(:last-child),
  .services2 .col-12:not(:last-child) {
    margin-bottom: 25px;
  }
}

.services3 {
  margin-top: 60px;
}

.services3-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 2.5rem 2rem;
  background: var(--background-color);
  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, box-shadow 0.25s ease-out;
}

.services3-num {
  position: absolute;
  right: 1rem;
  top: 0rem;
  font-weight: 900;
  font-size: 7.5rem;
  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;
}

.services3-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(--accent-color);
  background-color: rgba(14, 123, 218, 0.1);
  border-radius: 15px;
  transition: background 0.25s ease-out, color 0.25s ease-out;
}

.services3-title {
  position: relative;
  margin-bottom: 0.5rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--default-color);
}

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

.services3-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 25%);
  box-shadow: 0 26px 52px -26px rgba(0, 0, 0, 0.1);
}

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

.services3-card:hover .services3-icon {
  color: var(--default-color);
  background: var(--accent-color);
}

.services4 {  
  margin-top: 60px; 
}

.services4-card {  
  border-radius: 15px; 
  background: color-mix(in srgb, var(--accent-color), transparent 75%); 
  padding: 45px; 
}

.services4 .photo {
  border-radius: 15px;
  min-height: 350px;
  display: flex;
  align-items: flex-end;
  padding: 25px;
  position: relative;
  overflow: hidden;
}

.services4 .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

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

.services4 h2 { 
  font-size: 2rem; 
  font-weight: 800; 
  color: var(--default-color); 
  line-height: 1;
  margin: 5px 0 15px; 
}

.services4 .lead { 
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 2rem;
  font-weight: 400;
}

.services4 .rc {
  background: var(--contrast-color);
  border-radius: 25px;
  padding: 15px 20px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.075);
  height: 100%;
}

.services4 .rc-eu {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px 25px;
}

.services4 .flag-eu {
  flex-shrink: 0;
  width: 75px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.services4 .rc-eu-text {
  flex: 1;
  text-align: left;
}

.services4 .rc-eu h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--default-color);
  text-transform: uppercase;
  letter-spacing: 0px;
  margin: 0 0 5px;
}

.services4 .rc-eu p {
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 16px;
  line-height: 1.25;
  margin: 0;
}

@media (max-width: 767.98px) {
  .services4-card {
    padding: 30px 20px;
    text-align: center;
  }

  .services4 .photo {
    min-height: 250px;
  }

  .services4 .eyebrow,
  .services4 h2,
  .services4 .lead {
    text-align: center;
  }

  .services4 h2 {
    line-height: 1.25;
  }

  .services4 .rc-eu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    text-align: center;
    padding: 25px 20px;
  }

  .services4 .flag-eu {
    width: 75px;
    height: 50px;
    margin: 0;
  }

  .services4 .rc-eu-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .services4 .rc-eu h3 {
    margin: 0 0 10px;
    line-height: 1.25;
  }

  .services4 .rc-eu p {
    margin: 0;
  }
}

.services-warehouse {
  margin-top: 60px;
}

.services-warehouse-panel {
  background: #cbd3d5;
  border-radius: 15px;
  padding: 2rem;
}

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

.services-warehouse-title {
  font-size: 2rem; 
  font-weight: 800; 
  color: var(--default-color); 
  line-height: 1;
  margin: 5px 0 25px;
}

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

.services-warehouse-figure {
  position: relative;
  margin: 0;
  border-radius: 15px;
  overflow: hidden;
}

.services-warehouse-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.services-warehouse-badge {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  background: var(--accent-color);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 767.98px) {

  .services-warehouse-panel {
    padding: 1.5rem;
  }

  .services-warehouse-eyebrow,
  .services-warehouse-title,
  .services-warehouse-text {
    text-align: center;
  }

  .services-warehouse-title {
    font-size: 1.75rem;
  }

  .services-warehouse .col-lg-7 {
    margin-top: 1rem;
  }

  .services-warehouse .col-lg-7 .row {
    row-gap: 1.5rem;
  }

  .services-warehouse .col-lg-7 .col-6 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.services5-banner {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  border-radius: 15px;
  padding: 45px 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 1000px;
  width: 100%;
  margin: 60px auto 0px;
}

.services5-banner .banner-left {
  width: 100%;
  padding: 0;
}

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

.services5-banner .banner-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1.25;
  margin: 5px 0 15px;
}

.services5-banner .banner-text {
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 17px;
  line-height: 1.75;
  margin: 10px auto;
  width: 85%;
}

.services5-banner .banner-right {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: row;      
  flex-wrap: nowrap;
  justify-content: center;    
  align-items: center;
  gap: 20px;                 
}

.services5-banner .banner-call,
.services5-banner .banner-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 25px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.25s ease-out;
}

.services5-banner .banner-call {
  background: #22c55e;
  color: var(--default-color);
}

.services5-banner .banner-call:hover {
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.services5-banner .banner-mail {
  background: #2563eb;
  color: var(--contrast-color);
}

.services5-banner .banner-mail:hover {
  color: var(--default-color);
  transform: translateY(-3px);
}

@media (max-width:767px) {
  .services5-banner {
    padding: 30px 25px;
    text-align: center;
    justify-content: center;
  }

  .services5-banner .banner-text {
    width: 100%;
  }

  .services5-banner .banner-right {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .services5-banner .banner-call,
  .services5-banner .banner-mail {
    width: 100%;
    justify-content: center;
  }
}

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

.transport-card-banner {
    position: relative;
    background: var(--accent-color);
    border-radius: 50px;
    padding: 3rem 3rem;
    min-height: 280px;
    overflow: visible;
}

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

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

.transport-title-banner {
    font-size: 2.25rem;
    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: 80%;
}

.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-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: transform 0.3s ease,
                background-color 0.3s ease,
                color 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

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

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

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

.btn-transport-solid:hover {
    background-color: color-mix(in srgb, var(--default-color), transparent 12%);
    color: var(--accent-color);
}

.btn-transport-ghost {
    background-color: transparent;
    color: var(--contrast-color);
    border-color: var(--contrast-color);
}

.btn-transport-ghost:hover {
    background-color: var(--contrast-color);
    color: var(--accent-color);
    border-color: var(--contrast-color);
}

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

.transport-truck-banner {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 135%;
    max-width: 850px;
    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-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: auto;
    transform: none;
    width: 100%;     
    height: auto;
  }
}

/*--------------------------------------------------------------
# Why Us Section - DE CE NOI (Organizare Simetrică pe 2 Coloane)
--------------------------------------------------------------*/
.why-us {
  padding: 75px 0;
}

/* --- Hero Section --- */
.why-us .hero-section {
  margin-bottom: 50px;
}

.why-us .hero-badge {
  display: inline-block;
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
  padding: 6px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
}

.why-us .hero-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  color: var(--default-color);
}

.why-us .hero-content .hero-description {
  font-size: 16.5px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  max-width: 850px;
  margin: 0 auto 2.5rem;
}

/* --- Stats Grid --- */
.why-us .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 850px;
  margin: 0 auto;
  padding: 25px 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 16px;
}

.why-us .stats-grid .stat-item {
  text-align: center;
}

.why-us .stats-grid .stat-item .stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.why-us .stats-grid .stat-item .stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--default-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Core Grid (Grilă simetrică pe 2 coloane) --- */
.why-us-core-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.why-us .core-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* --- Carduri Interactive --- */
.why-us .why-interactive-card {
  position: relative;
  background: color-mix(in srgb, var(--accent-color), transparent 93%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-us .why-interactive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  background: color-mix(in srgb, var(--accent-color), transparent 86%);
}

.why-us .why-interactive-card .card-icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us .why-interactive-card .card-icon-box i {
  font-size: 1.4rem;
  color: var(--contrast-color);
}

.why-us .why-interactive-card .card-info-content {
  text-align: left;
}

.why-us .why-interactive-card .card-info-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 6px;
  line-height: 1.35;
}

.why-us .why-interactive-card .card-info-content p {
  font-size: 14.5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.55;
}

/* --- Concluzie Preface --- */
.why-preface {
  margin-top: 50px;
}

.why-preface .preface-card {
  background: var(--default-color);
  border-radius: 20px;
  padding: 35px 45px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-left: 5px solid var(--accent-color);
}

.why-preface .preface-text p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--contrast-color);
}

/* --- Responsive / Adaptare Mobile --- */
@media (max-width: 991px) {
  .why-us-core-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .why-us .hero-content h2 {
    font-size: 1.75rem;
  }

  .why-us .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 20px;
  }

  .why-us .why-interactive-card {
    padding: 20px;
    gap: 15px;
  }

  .why-us .why-interactive-card .card-icon-box {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .why-us .why-interactive-card .card-icon-box i {
    font-size: 1.2rem;
  }

  .why-us .why-interactive-card .card-info-content h4 {
    font-size: 17px;
  }

  .why-us .why-interactive-card .card-info-content p {
    font-size: 14px;
  }

  .why-preface .preface-card {
    padding: 25px 20px;
  }

  .why-preface .preface-text p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  padding: 90px 0;
  display: flex;
  align-items: center;
  justify-content: 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;
  filter: saturate(0.5) contrast(1) brightness(0.55);
}

.call-to-action .cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 70% at 50% 50%, transparent 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.95) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.call-to-action .cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,0,0,0.5) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(0,0,0,0.15) 0%, transparent 50%);
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action .cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--accent-color);
  margin-bottom: 0.5rem;
  text-align: center;
}

.call-to-action .cta-badge span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-right: -3px;
  text-transform: uppercase;
  color: var(--contrast-color);
  text-align: center;
}

.call-to-action .cta-content2 h2.cta-title {
  font-weight: 800;
  line-height: 1.5;
}

.call-to-action .cta-content2 h2 .highlight {
  font-size: 2.75rem;
  margin-bottom: 15px;
  display: block;
  text-transform: normal;
  color: var(--contrast-color);
  letter-spacing: 0px;
}

.call-to-action .cta-content2 h2 .highlight .brush {
  position: relative;
  display: inline-block;
  color: var(--accent-color);
  font-size: 3rem;
  padding-bottom: 0.025em;
  font-style: italic;
}

.call-to-action .cta-content2 h2 .highlight .brush::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.3em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 130 14' preserveAspectRatio='none'%3E%3Cpath d='M2 6 C 30 3 60 4 90 6 C 108 7 120 8 128 6 L 128 10 C 100 12 55 11 2 10 Z' fill='%230e7bda'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

.call-to-action .cta-content2 h2 .sub-text {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--background-color);
  letter-spacing: 5px; 
  display: block;
}

.call-to-action .cta-content2 p {
  font-size: 18px;
  font-weight: 400;
  margin: 0 auto 2.5rem auto;
  color: var(--contrast-color);
  line-height: 1.5;
  max-width: 750px;
  text-align: center;
}

.call-to-action .cta-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  margin: 0 auto 2.25rem auto;
}

.call-to-action .btn-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid transparent;;
  background: rgba(0,0,0,0.55);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

.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 10px 32px rgba(174,13,13,0.25);
}
.call-to-action .btn-whatsapp:hover {
  border-color: rgba(37,211,102,1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.25);
}
.call-to-action .btn-email:hover {
  border-color: rgba(0,123,255,1);
  box-shadow: 0 10px 32px rgba(0,123,255,0.25);
}
.call-to-action .btn-location:hover {
  border-color: rgba(255,140,0,1);
  box-shadow: 0 10px 32px rgba(255,140,0,0.25);
}

.call-to-action .icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.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 {
  color: var(--accent-color);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.75px;
}

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

.call-to-action .cta-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 0;
}

.call-to-action .cta-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 1.75rem;
  position: relative;
  transition: all 0.3s ease;
}

.call-to-action .cta-features .feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 25px;
  width: 1px;
  background: rgba(255,255,255,0.25);
}

.call-to-action .cta-features .feature-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: color 0.3s, transform 0.3s;
}

.call-to-action .cta-features .feature-item span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--contrast-color);
  transition: color 0.3s;
}

@media (max-width: 768px) {
  .call-to-action {
    text-align: center;
    padding: 60px 0;
  }

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

  .call-to-action .cta-badge span {
    font-size: 0.75rem;
  }

  .call-to-action .cta-content2 h2 .highlight {
    font-size: 2.25rem;
    line-height: 1.25;
    margin-bottom: 15px;
  }

  .call-to-action .cta-content2 h2 .sub-text {
    font-size: 1rem;
  }

  .call-to-action .cta-content2 p {
    max-width: 100%;
    margin: 0 auto 2rem;
  }

  .call-to-action .cta-grid-modern {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .call-to-action .cta-grid-modern .btn-custom {
    width: 170px;       
    box-sizing: border-box; 
    padding: 8px;
    border-radius: 12px;
    text-align: center;
  }

  .call-to-action .cta-grid-modern .btn-custom:nth-child(3) {
    margin-top: 12px;
  }

  .call-to-action .icon-box {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .call-to-action .btn-label {
    font-size: 0.85rem;
  }

  .call-to-action .btn-sublabel {
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  .call-to-action .cta-features {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

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

  .call-to-action .cta-features .feature-item::after {
    display: none;
  }

  .call-to-action .cta-features .feature-item:last-child {
    margin-bottom: 0;
  }
}

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

@media (max-width: 768px) {
  .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 {
  padding: 75px 0;
}

.fleet-trucks-stack {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fleet-trucks-pic {
  position: relative;
  flex: 1 1 auto;
  min-height: 380px;
  border-radius: 15px;
  overflow: hidden;
}

.fleet-trucks-pic img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s ease;
}

.fleet-trucks-pills {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1rem;
}

.fleet-trucks-pill {
  flex: 1 1 0;
  min-width: 130px;
  padding: 0.75rem 0.85rem;
  border-radius: 15px;
  background: var(--accent-color);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.fleet-trucks-pill-value {
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--contrast-color);
  line-height: 1;
}

.fleet-trucks-pill-key {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--contrast-color);
  line-height: 1;
}

.fleet-trucks-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.75rem;
  border-left: 5px solid var(--accent-color);
  border-radius: 15px;
  background: #cbd3d5;
}

.fleet-trucks-title {
  margin: 0 0 0.5rem;
  font-weight: 800;
  font-size: 35px;
  line-height: 1.25;
  color: var(--accent-color);
}

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

.fleet-trucks-odo {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.fleet-trucks-odo b {
  padding: 0.5rem 0.55rem;
  border-radius: 5px;
  background: var(--default-color);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--contrast-color);
}

.fleet-trucks-odo b.fleet-trucks-odo-sep {
  padding: 0.25rem;
  border: 0;
  background: transparent;
  color: var(--default-color);
}

.fleet-trucks-odo-label {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--default-color);
}

.fleet-trucks-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.fleet-trucks-feature-icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--accent-color);
}

.fleet-trucks-feature-icon i {
  font-size: 20px;
  color: var(--contrast-color);
  line-height: 1;
}

.fleet-trucks-feature-title {
  font-weight: 700;
  font-size: 1.025rem;
  line-height: 1;
}

.fleet-trucks-feature-text {
  margin-top: 3px;
  font-size: 0.9rem;
  color: var(--default-color);
  line-height: 1.5;
}

.fleet-trucks-brand {
  display: flex;
justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--accent-color);
  border-radius: 15px;
  background: transparent;
}

.fleet-trucks-brand img {
  width: 100px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.fleet-trucks-brand-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.fleet-trucks-brand-sub {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--default-color);
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .fleet-trucks-card {
    border-left: 0;
    border-bottom: 5px solid var(--accent-color);
  }

  .fleet-trucks-card {
    text-align: center;
    align-items: center;
    padding: 2rem 1.5rem;
  }

  .fleet-trucks-pic {
    min-height: 250px;
  }

  .fleet-trucks-pills {
    margin-top: 1.5rem;
  }

  .fleet-trucks-stack {
    display: flex;
    flex-direction: column;
  }

  .fleet-trucks-title {
    font-size: 2rem;
    text-align: center;
  }

  .fleet-trucks-lead {
    text-align: center;
  }

  .fleet-trucks-odo {
    justify-content: center;
  }

  .fleet-trucks-feature {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .fleet-trucks-feature-title,
  .fleet-trucks-feature-text {
    text-align: center;
  }

  .fleet-trucks-brand {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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

  .fleet-trucks-pill {
    min-width: calc(50% - .3rem);
  }

  .fleet-trucks-pill:last-child {
    min-width: 100%;
  }
}

.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-trailers {
    margin-top: 60px;
}

.fleet-trailers-head {
    margin-bottom: 30px;
}

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

.fleet-trailers-title {
  font-weight: 800;
  font-size: 35px;
  line-height: 1.25;
  color: var(--accent-color);
  margin-bottom: 0;
}

.fleet-trailers-intro {
  font-size: 17px; 
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  line-height: 1.75;
  text-align: right;
  margin-bottom: 0;
}

.fleet-trailers-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  overflow: hidden;
}

.fleet-trailers-media {
  position: relative;
  height: 225px;
  overflow: hidden;
}

.fleet-trailers-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease-out;
  will-change: transform;
}

.fleet-trailers-card:hover .fleet-trailers-media img {
  transform: scale(1.05);
}

.fleet-trailers-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.5rem;
}

.fleet-trailers-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.fleet-trailers-kind {
  color: var(--default-color);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 5px;
  margin-bottom: 5px;
}

.fleet-trailers-name {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1;
}

.fleet-trailers-desc {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  line-height: 1.5;
}

.fleet-trailers-specs {
  margin-top: auto;
  padding-top: 1.25rem;
}

.fleet-trailers-spec {
  display: flex;
  justify-content: space-between;
  padding: .55rem 0;
  border-top: 1px dashed var(--default-color);
  font-size: 1rem;
}

.fleet-trailers-spec span:first-child {
    color: var(--default-color);
}

.fleet-trailers-spec span:last-child {
    font-family: var(--default-color);
    font-weight: 700;
}

@media (max-width: 767.98px) {
  .fleet-trailers-title {
    font-size: 2rem; 
    margin-bottom: 15px;
  }
}

.fleet-banner-final {
  margin-top: 60px;
}

.fleet-banner-final-wrap {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
}

.fleet-banner-final-card {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  border-radius: 15px;
  background: #cbd3d5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fleet-banner-final-title {
  margin: 0;
  font-weight: 800;
  font-size: 35px;
  color: var(--accent-color);
  line-height: 1.05;
  letter-spacing: 0;
  font-style: italic;
}

.fleet-banner-final-sub {
  margin: 0.75rem 0 0;
  max-width: 100%;
  font-size: 16px;
  line-height: 1.5;
  max-width: 95%;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
}

.fleet-banner-final-media {
    position: relative;
    height: 300px;
    margin-left: -2rem;
    border-radius: 15px;
    overflow: hidden;
}

.fleet-banner-final-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767.98px) {
  .fleet-banner-final-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .fleet-banner-final-media {
    order: 1;
    width: 100%;
    height: 240px;
    margin-left: 0;
    border-radius: 15px;
  }

  .fleet-banner-final-card {
    order: 2;
    width: calc(100% - 2rem);
    margin: -50px auto 0;
    padding: 2rem 1.5rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    z-index: 2;
  }

  .fleet-banner-final-title {
    font-size: 2rem;
  }

  .fleet-banner-final-sub {
    max-width: 100%;
    text-align: center;
  }

}

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

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

.faq .faq-title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--default-color);
  margin-bottom: 0.5rem;
}

.faq .faq-subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 17px;
  line-height: 1.5;
}

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

  .faq .faq-subtitle {
    max-width: 100%;
    margin: 0 auto;
  }
}

.faq .faq-accordion .accordion-item {
  border: 1px solid #cacacc;
  border-radius: 15px !important;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}

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

.faq .faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: var(--accent-color);
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.1);
}

.faq .faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--default-color);
  padding: 1.2rem 1.4rem;
  box-shadow: none;
}

.faq .faq-accordion .accordion-button:hover {
  color: var(--accent-color);
}

.faq .faq-accordion .accordion-button:not(.collapsed) {
  color: var(--accent-color);
  background: transparent;
}

.faq .faq-accordion .accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.faq .faq-accordion .accordion-button::after {
  display: none;
}

.faq .faq-accordion .accordion-body {
  padding: 0 1.4rem 1.3rem;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  line-height: 1.5;
  font-size: 16px;
}

.faq .q-eye {
  margin-left: auto;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.faq .accordion-button:not(.collapsed) .q-eye {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .q-eye .bi-eye-fill {
  display: none;
}

.faq .accordion-button:not(.collapsed) .q-eye .bi-eye-fill {
  display: inline-block;
}

.faq .accordion-button:not(.collapsed) .q-eye .bi-eye-slash-fill {
  display: none;
}

.faq .contact-card2 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #cbd3d5;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  overflow: hidden;
}

.faq .contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
}

.faq .contact-card2 h3 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--default-color);
  margin-bottom: 0.5rem;
  position: relative;
}

.faq .contact-card2 p {
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 2.25rem;
  position: relative;
}

.faq .contact-card2 .contact-hint {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--default-color);
  margin-bottom: 1.25rem;
  position: relative;
}

.faq .contact-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

.faq .contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.faq .contact-btn .bubble {
  width: 50px;
  height: 50px;
  border-radius: 20px;
  background: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--accent-color);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.faq .contact-btn:hover .bubble {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.15);
}

.faq .contact-meta {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  position: relative;
}

.faq .contact-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--default-color);
}

.faq .contact-meta-item .bi {
  color: var(--accent-color);
  font-size: 1.35rem;
}

.faq-testimonial {
  margin-top: 60px;
}

.faq-testimonial .faq-testimonial-head {
  text-align: center;
  margin-bottom: 45px;
}

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

.faq-testimonial .faq-testimonial-head h3 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--default-color);
  margin-bottom: 0.5rem;
}

.faq-testimonial .t-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "a a b c"
    "a a b d"
    "e f f d";
  gap: 1rem;
}

.faq-testimonial .t-a { grid-area: a; }
.faq-testimonial .t-b { grid-area: b; }
.faq-testimonial .t-c { grid-area: c; }
.faq-testimonial .t-d { grid-area: d; }
.faq-testimonial .t-e { grid-area: e; }
.faq-testimonial .t-f { grid-area: f; }

.faq-testimonial .t-card {
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 25px;
  padding: 1.15rem 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.faq-testimonial .t-featured {
  background: #cbd3d5;
  overflow: hidden;
  position: relative;
  justify-content: center;
  padding: 1.75rem;
}

.faq-testimonial .t-featured .t-text {
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  position: relative;
  font-size: 16px;
}

.faq-testimonial .t-featured .t-author {
  position: relative;
}

.faq-testimonial .t-stars {
  display: flex;
  gap: 0.5rem;
  color: var(--default-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.faq-testimonial .t-text {
  font-size: 16px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  margin: 0 0 1rem;
}

.faq-testimonial .t-author {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: auto;
}

.faq-testimonial .t-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--default-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.faq-testimonial .t-avatar i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.faq-testimonial .t-featured .t-avatar {
  background: var(--default-color);
  color: var(--contrast-color);
  width: 35px;
  height: 35px;
}

.faq-testimonial .t-author-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 35px;
}

.faq-testimonial .t-author .name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--default-color);
  margin: 0;
  line-height: 1.2;
}

.faq-testimonial .t-author .role {
  font-size: 0.75rem;
  color: var(--default-color);
  margin: 0;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .faq-testimonial .faq-testimonial-head {
    margin-bottom: 30px;
  }

  .faq-testimonial .faq-eyebrow,
  .faq-testimonial .faq-testimonial-head h3 {
    text-align: center;
  }

  .faq-testimonial .t-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "a"
      "b"
      "c"
      "d"
      "e"
      "f";
    gap: 20px;
  }

  .faq-testimonial .t-card,
  .faq-testimonial .t-featured {
    padding: 1.5rem;
    text-align: center;
    align-items: center;
  }

  .faq-testimonial .t-stars {
    justify-content: center;
    margin-bottom: 1rem;
  }

  .faq-testimonial .t-text {
    margin: 0 0 1.25rem;
    text-align: center;
  }

  .faq-testimonial .t-author {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0;
  }

  .faq-testimonial .t-author-info {
    height: auto;
    align-items: center;
    text-align: center;
  }

  .faq-testimonial .t-avatar,
  .faq-testimonial .t-featured .t-avatar {
    width: 50px;  
    height: 50px;
    font-size: 1.25rem;
  }
}

/*--------------------------------------------------------------
# Banner presentation
--------------------------------------------------------------*/
.banner-promo-section {
  position: relative;
  width: 100%;
  min-height: 700px;
  margin: 0;
  display: flex;
  align-items: center;
  color: #ffffff;
  background-image: url('../img/banner/add-speed-banner-02.webp');
  background-size: cover;
  background-position: center;
  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.25) 25%, 
    rgba(0, 0, 0, 0.50) 50%, 
    rgba(0, 0, 0, 0.85) 75%, 
    rgba(0, 0, 0, 0.90) 100%
  );
}

.banner-promo-section .container {
  position: relative;
  z-index: 2;
}

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

.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(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(14, 143, 218, 0.25);
  padding: 10px 25px;
  border-radius: 50px;
  width: fit-content;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.075);
}

.banner-experience-tag .exp-number {
  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-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
}

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

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

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

.banner-lead-text {
  font-size: 17px;
  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(14, 143, 218, 0.25); 
  border-radius: 25px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 20px 45px rgba(255, 255, 255, 0.075);
}

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

.add-banner-logo {
  max-height: 45px;
  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-size: 0.9rem;
  font-weight: 800;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.5;
  text-align: left; 
}

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

  .banner-promo-section::before {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.80) 0%,
      rgba(0, 0, 0, 0.65) 40%,
      rgba(0, 0, 0, 0.75) 70%,
      rgba(0, 0, 0, 0.90) 100%
    );
  }

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

  .banner-experience-tag {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    gap: 15px;
  }

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

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

  .banner-lead-text {
    text-align: center;
    font-size: 16px;
    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: 50px;
  }
}

/*--------------------------------------------------------------
# Contact Section - DATE DE CONTACT
--------------------------------------------------------------*/
.contact-modern {
  padding: 75px 0;
  overflow: visible; 
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px; 
  max-width: 1100px;
  margin: 75px auto 0;
}

.wow-card {
  background: var(--background-color);
  padding: 40px 25px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.wow-card .icon-box {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  border-radius: 15px;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}

.wow-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.wow-card:hover .icon-box {
  transform: translateX(-50%) rotate(10deg) scale(1.1);
  background: var(--accent-color);
}

.wow-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--default-color);
  margin-top: 15px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wow-card p {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 20px;
  line-height: 1.5;
}

.card-link {
  display: inline-block;
  padding: 5px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

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

@media (max-width: 768px) {
  .contact-modern {
    padding: 75px auto 0;
  }

  .contact-container {
    grid-template-columns: 1fr;
    max-width: 90%;
    gap: 60px;
  }
}

.contact-map-details {
  margin-top: 60px;
  border-radius: 15px;
  background: #cbd3d5;
  overflow: hidden;
}

.contact-map-details-title {
  margin-bottom: 0.35rem;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--default-color);
}

.contact-map-details-subtitle {
  margin-bottom: 2rem;
  font-size: 15px;
  line-height: 1.5;
  color: var(--default-color);
}

.contact-map-details-list {
  margin-bottom: 0;
}

.contact-map-details-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.contact-map-details-value {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--default-color);
}

.contact-map-details-value:last-child {
  margin-bottom: 0;
}

.contact-map-details-map {
  position: relative;
  min-height: 460px;
  height: 100%;
  overflow: hidden;
}

.contact-map-details-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map-details-consent {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  color: #fff;
  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-details-consent h3 {
  font-size: 25px;
  font-weight: 800;
  line-height: 1.25;
}

.contact-map-details-consent-icon {
  font-size: 2.5rem;
  opacity: 1;
}

.contact-map-details-consent-text {
  max-width: 85%;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--contrast-color);
  margin-bottom: 25px;
}

.contact-map-details-consent-text a {
  font-weight: 500;
  text-decoration: underline;
  color: var(--contrast-color);
}

.contact-map-details-consent-text a:hover {
  color: var(--accent-color);
}

.contact-map-details-btn{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
  padding: 0.75rem 1.25rem;
  border: 0;
  border-radius: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.contact-map-details-btn:hover:not(:disabled){
  background: var(--default-color);
}

.contact-map-details-btn:active:not(:disabled){
  transform: translateY(0);
}

.contact-map-details-btn:focus-visible{
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.contact-map-details-btn:disabled{
  opacity: 0.65;
  cursor: not-allowed;
  box-shadow: none;
}

.contact-map-details-spinner { 
  display:none; 
}

@media (max-width: 767.98px) {

  .contact-map-details {
    text-align: center;
  }

  .contact-map-details-title,
  .contact-map-details-subtitle,
  .contact-map-details-label,
  .contact-map-details-value {
    text-align: center;
  }

  .contact-map-details-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-map-details-consent h3,
  .contact-map-details-consent-text {
    text-align: center;
  }

  .contact-map-details-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

.truck-banner {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  min-height: 300px;
  margin-top: 60px;
}
 
.truck-banner img {
  position: absolute; 
  inset: 0;
  width: 100%; 
  height: 100%;
  object-fit: cover;
}
 
.truck-banner .overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 30%, transparent 100%);
}
 
.truck-banner .eyebrow{
  font-size: 14px; 
  font-weight: 600; 
  letter-spacing: 5px; 
  text-transform: uppercase;
  color: var(--accent-color);
  margin: 0 0 5px;
}

.truck-banner h2 {
  color:var(--contrast-color); 
  font-size: 1.75rem; 
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 1rem;
}

.truck-banner p {
  color:var(--contrast-color);
  font-size: 16px;
  line-height: 1.5;
  max-width: 25rem;
  margin: 0;
}
 
@media (max-width: 768px) {
  .truck-banner {
    min-height: 250px;
  }

  .truck-banner .overlay {
    padding: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.75) 0%,
      rgba(0,0,0,0.55) 100%
    );
  }

  .truck-banner h2 {
    font-size: 1.75rem;
  }

  .truck-banner p {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# WhatsApp button
--------------------------------------------------------------*/
a {
  text-decoration: none;
}

.floating_btn {
  position: fixed;
  bottom: 75px;   
  right: 25px;    
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 50px;
  height: 50px;
  font-size: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Pulsing original WhatsApp */
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  box-shadow: 0 0 0 0 #42db87;
  transition: all 300ms ease-in-out;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 10px rgba(66, 219, 135, 0);
  }
}

/*--------------------------------------------------------------
# Lang button - Modern & Professional
--------------------------------------------------------------*/
.lang-hidden {
    display: none !important;
}

.lang-widget {
  position: fixed;
  bottom: 15px;
  left: 25px;
  width: 45px;
  z-index: 9999;
}

.lang-widget .current-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
  background: #edebeb;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.lang-widget span {
  display: none;
}

@media (min-width: 992px) {
  .lang-widget .current-lang::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
  }

  .lang-widget .current-lang:hover {
    background: #ffffff;
    transform: scale(1.05);
    border-color: rgba(0, 0, 0, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  }

  .lang-widget:hover:not(.open) .current-lang::before {
    animation: modernRipple 1.5s cubic-bezier(0.21, 0.53, 0.56, 0.8) infinite;
  }

  @keyframes modernRipple {
    0% {
      transform: scale(1);
      opacity: 0.85;
    }
    100% {
      transform: scale(1.75);
      opacity: 0;
    }
  }
}

@media (max-width: 991px) {
  .lang-widget .current-lang::after {
    display: none; 
  }

  .lang-widget:not(.open) .current-lang {
    animation: buttonPulseLanguage 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
    box-shadow: 0 0 0 0 #000000;
  }
}

.lang-widget.open .current-lang::after {
  display: none !important;
}

@keyframes buttonPulseLanguage {
  to {
    box-shadow: 0 0 0 9px rgba(1, 143, 227, 0);
  }
}

.lang-widget .lang-options {
  display: flex; 
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 53px;
  left: 0;
  width: 100%;
  flex-direction: column-reverse;
  gap: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lang-widget.open .lang-options {
  opacity: 1;
  pointer-events: auto;
}

.lang-widget .lang-options li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 45px;
  width: 45px;
  background: #edebed;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px) scale(1);
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              border-color 0.2s ease,
              box-shadow 0.2s ease;
}

.lang-widget.open .lang-options li {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lang-widget.open .lang-options li:nth-child(1) {
  transition-delay: 0.04s;
}

.lang-widget.open .lang-options li:nth-child(2) {
  transition-delay: 0.08s;
}

@media (min-width: 992px) {
  .lang-widget .lang-options li:hover {
    transform: translateY(0) scale(1.05);
    border-color: var(--default-color);
    box-shadow: -2px 4px 10px rgba(0, 0, 0, 0.25);
    background-color: #fff;
  }
}

.lang-widget img {
  width: 25px;
  height: 20px;
  border-radius: 10px;
  object-fit: cover;
}


