/* 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: #f6cd54; /* 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: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

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

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  font-size: 14px;
  padding-left: 5px;
  font-style: normal;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

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

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 0%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--accent-color);
}

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

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

.header .logo img {
  max-height: 55px;
  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: 18px 15px;
    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: 100px;       
    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: 55px;
    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: -40px; 
    left: 0;
    right: 0;
  }

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

.footer p {
  font-size: 17px;
  font-style: italic;
  max-width: 850px;
  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(--default-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(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1;
}

.copyright-icon {
  font-size: 15px;
  color: var(--default-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: 6px 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;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#custom-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    background: radial-gradient(circle at center, #ffffff 0%, #f8f9fa 100%);
    display: flex !important;
    visibility: visible;
    opacity: 1;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    perspective: 1000px;
    animation: zoomDissolveOut 0.7s cubic-bezier(0.7, 0, 0.84, 0) forwards;
    animation-delay: 1.5s;
    pointer-events: none;
}

.preloader-logo {
    width: 85%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    animation:
        emergeFromDepth 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards,
        floatLogo 3s ease-in-out infinite alternate 1.2s;
    will-change: transform, opacity, filter;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.05));
}

@keyframes emergeFromDepth {
    from {
        opacity: 0;
        transform: scale(0.2) translateZ(-600px);
    }

    60% {
        opacity: 1;
    }

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

@keyframes floatLogo {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

@keyframes zoomDissolveOut {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; visibility: hidden; transform: scale(1.6); }
}

/*--------------------------------------------------------------
# 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(--default-color); 
  line-height: 1;
  z-index: 2;
}

.scroll-top i:hover {
  color: var(--background-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: 78px;
  overflow: clip;
  position: relative;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 0px 0 75px;
  position: relative;
}

.section-title .eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--default-color);
  letter-spacing: 5px;
  margin-bottom: 5px;
  display: block;
  background: none;
  padding: 0;
  border: none;
}

.section-title .eyebrow::before,
.section-title .eyebrow::after {
  content: none;
  display: none;
}

.section-title h2 {
  font-size: 45px;
  font-weight: 900;
  color: var(--accent-color);
  letter-spacing: 2.5px;
  margin: 0;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.fancy-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 10px 0 30px;
}

.fancy-divider .line {
  width: 90px;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(90deg, transparent, var(--default-color));
  opacity: 0.8;
}

.fancy-divider .line:last-child {
  background: linear-gradient(270deg, transparent, var(--default-color));
}

.fancy-divider .dot {
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid var(--default-color); 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fancy-divider .dot::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--default-color);
  border-radius: 50%; 
}

.section-title p {
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  max-width: 950px;
  margin: 0 auto;
  line-height: 1.5;
}

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

  .fancy-divider .line {
    width: 50px;
  }

  .section-title p {
    padding-left: 10px;
    padding-right: 10px;
  }
}

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

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

/*--------------------------------------------------------------
# Hero Section - ACASĂ
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 720px;
}

.slide-1 {
  background-image: url('../img/hero/flo-trans-company-junior-hero-01.webp');
}

.slide-2 {
  background-image: url('../img/hero/flo-trans-company-junior-hero-02.webp');
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .slide-1 {
    background-image: url('../img/hero/flo-trans-company-junior-hero-mobile-01.webp');
  }

  .slide-2 {
    background-image: url('../img/hero/flo-trans-company-junior-hero-mobile-02.webp');
  }
}

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

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

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

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

.hero .hero-slider .slide-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 50% 50%, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
  padding-top: 175px;
  padding-bottom: 75px;
}

.hero .hero-content .badge-tag {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
  color: var(--default-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

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

.hero .hero-content .testimonial-box {
  display: flex;
  align-items: center; 
  justify-content: center;
  gap: 20px;
  margin-bottom: 45px;
}

.hero .hero-content .testimonial-text {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--contrast-color);
  text-transform: uppercase;
  margin: 0;
}

.hero .hero-content .quote-mark {
  background-color: var(--accent-color); 
  width: 45px;          
  height: 2px;          
  display: inline-block;
}

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

.hero .btn-browse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
  color: var(--default-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;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px;
    margin-top: 0px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
    box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.1);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
}

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

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

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

.hero .divider {
    width: 1px;
    height: 30px;
    background: rgba(246, 205, 84, 0.75); 
}

@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;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .hero .hero-content .badge-tag {
    font-size: 0.7rem;
    letter-spacing: 2px;
    padding: 6px 14px;
  }

  .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;
    letter-spacing: 1px;
    white-space: nowrap;
  }

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

  .hero .hero-content p {
    font-size: 1.05rem;
    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: 0;
    padding: 30px;
    margin: 60px auto 0;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(246, 205, 84, 0.5);
    box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.1);
  }

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

  .hero .hero-bottom-info .divider {
    width: 10%;
    height: 1px;
    background: rgba(246, 205, 84, 0.75);
    margin: 15px auto;
    display: block;
  }

  .hero .hero-bottom-info .info-item:last-child .divider {
    display: none;
  }
}

/*--------------------------------------------------------------
# About Section - DESPRE NOI
--------------------------------------------------------------*/
.about-home {
  padding: 75px 0;
}

.about-home .about-images {
  position: relative;
  height: 480px;
}

.about-home .about-images .image-stack {
  position: relative;
  height: 100%;
}

.about-home .about-images .image-stack .image-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 95%;
  height: 70%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.075);
}

.about-home .about-images .image-stack .image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-home .about-images .image-stack .image-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  height: 50%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.075);
  z-index: 2;
}

.about-home .about-images .image-stack .image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-home .about-images {
    height: 350px;
  }

  .about-home .about-images .image-stack .image-main {
    width: 80%;
    height: 55%;
  }

  .about-home .about-images .image-stack .image-overlay {
    width: 80%;
    height: 55%;
  }
}

.about-home .about-content {
  padding-left: 2rem;
}

.about-home .about-content .section-header {
  margin-bottom: 1.5rem;
}

.about-home .about-content .section-header h2 {
  font-size: 2rem;
  color: var(--default-color);
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .about-home .about-content .section-header h2 {
    font-size: 1.75rem;
    line-height: 1.25;
  }
}

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

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

.about-home .about-content .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0 0rem;
}

@media (max-width: 576px) {
  .about-home .about-content .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  margin: 2.5rem 0 3.5rem;
  }
}

.about-home .about-content .features-grid .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-home .about-content .features-grid .feature-item .feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 0%);
  color: var(--default-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.about-home .about-content .features-grid .feature-item .feature-content h4 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0px;
  margin-bottom: 0.25rem;
  color: var(--default-color);
}

.about-home .about-content .features-grid .feature-item .feature-content p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
}

@media (max-width: 576px) {
  .about-home .about-content .features-grid .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-home .about-content .features-grid .feature-item .feature-icon {
    margin-bottom: 6px;
  }

  .about-home .about-content .features-grid .feature-item .feature-content {
    text-align: center;
  }

  .about-home .about-content .features-grid .feature-item .feature-content h4 {
    text-align: center;
  }

  .about-home .about-content .features-grid .feature-item .feature-content p {
    text-align: center;
    max-width: 300px;
  }
}

.about-home .about-content .about-actions {
  margin-top: 2rem;
  display: flex;
  gap: 20px;
}

.about-home .about-content .about-actions .btn-discover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 15px; 
  padding: 10px 15px;
  background-color: var(--accent-color);
  color: var(--default-color);
  text-decoration: none;
  border-radius: 15px;
  font-weight: 600;
  border: 2px solid var(--accent-color);
  cursor: pointer;
  transition: background-color 0.4s ease,
              transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
  backface-visibility: hidden;
}

.about-home .about-content .about-actions .btn-discover:hover {
  background-color: transparent;
  color: var(--default-color);
  transform: translate3d(0, -5px, 0);
}

.about-home .about-content .about-actions .btn-discover i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px; 
  height: 35px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 1);
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1rem;
  flex-shrink: 0;
  backface-visibility: hidden;
}

.about-home .about-content .about-actions .btn-discover:hover i {
  background-color: var(--accent-color);
  color: #000000;
  animation: softShake 0.6s ease-in-out infinite;
}

@keyframes softShake {
  0%   { transform: rotate(0deg)  translateZ(0); }
  15%  { transform: rotate(8deg)  translateZ(0); }
  30%  { transform: rotate(-8deg) translateZ(0); }
  45%  { transform: rotate(4deg)  translateZ(0); }
  60%  { transform: rotate(-4deg) translateZ(0); }
  75%  { transform: rotate(2deg)  translateZ(0); }
  100% { transform: rotate(0deg)  translateZ(0); }
}

@media (max-width: 768px) {
  .about-home .about-content .about-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .about-home .about-content .about-actions .btn-discover {
    width: 90%;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .about-home .about-content {
    padding-left: 0;
    margin-top: 3rem;
    text-align: center;
  }
}

@media (max-width: 992px) {
  .about-home .row {
    flex-direction: column;
  }
}

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

.services .services-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  min-height: 450px;
  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: 3rem;
  height: 100%;
  min-height: 450px;
  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;
  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.5;
  margin-bottom: 3rem;
  width: 65%;
}

.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;
  font-weight: 500;
  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(--default-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(--default-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 50%);
  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:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px color-mix(in srgb, var(--default-color), transparent 85%);
}

.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-img .service2-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background-color: var(--accent-color);
  color: var(--default-color);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.25rem 0.6rem 0.25rem 0.75rem;
  border-radius: 10px;
}

.services2 .service2-card .service2-info {
  padding: 1.25rem 1.35rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

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

.services2 .service2-card .service2-info p {
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.services2 .service2-card .service2-info .service2-btn {
  display: inline-flex;
  align-self: flex-start;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0;
  background-color: var(--default-color);
  color: var(--contrast-color);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  will-change: transform;
  backface-visibility: hidden;
}

.services2 .service2-card .service2-info .service2-btn:hover {
  background-color: var(--contrast-color);
  color: var(--default-color);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--default-color), transparent 85%);
}

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

.services2 .service2-card .service2-card-horizontal {
  flex-direction: row;
}

.services2 .service2-card. service2-card-horizontal .service2-img img {
  height: 100%;
  min-height: 200px;
}

.services2 .service2-card.service2-card-horizontal .service2-info {
  padding: 1.1rem 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services2 .service2-card .service2-card-horizontal .service2-info p {
  margin-bottom: 0.5rem;
}

@media (max-width: 576px) {
  .services2 .service2-card .service2-card-horizontal {
    flex-direction: column;
  }

  .services2 .service2-card .service2-card-horizontal .service2-img img {
    height: 200px;
    min-height: auto;
  }
}

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

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

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

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

  .services2 .service2-card.service2-card-horizontal {
    flex-direction: column;
  }

  .services2 .service2-card.service2-card-horizontal .service2-img img {
    height: 300px;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .services2 .col-lg-6 {
    margin-bottom: 24px;
  }
}

.services3 {
  margin-top: 60px;
}

.services3-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 2rem 1.8rem;
  background: var(--contrast-color);
  border: 1px solid var(--accent-color);
  border-radius: 15px;
  box-shadow: 0 12px 36px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform .4s cubic-bezier(.2, .7, .2, 1), border-color .4s, box-shadow .4s;
}

.services3-num {
  position: absolute;
  top: 0rem;
  right: 0.75rem;
  font-weight: 800;
  font-size: 7.5rem;
  line-height: 1;
  color: color-mix(in srgb, var(--default-color), transparent 95%);
  pointer-events: none;
}

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

.services3-tile {
  position: relative;
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  margin-bottom: 1rem;
  border-radius: 15px;
  background: var(--default-color);
}

.services3-tile i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

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

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

.services3-card:hover {
  transform: translateY(-5px);
  border-color: var(--default-color);
  box-shadow: 0 12px 36px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 767.98px) {
  .services3-card {
    padding: 1.5rem;
  }

  .services3-num {
    font-size: 6rem;
  }
}

.services4 {  
  margin-top: 60px; 
}

.services4-card {  
  border-radius: 15px; 
  background: color-mix(in srgb, var(--accent-color), transparent 75%); 
  box-shadow: 0 12px 36px color-mix(in srgb, var(--default-color), transparent 90%);
  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: 0.75rem; 
  font-weight: 700; 
  letter-spacing: 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.5;
  margin-bottom: 2rem;
  font-weight: 400;
}

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

.services4 .arc {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin: 10px 0;
}

.services4 .country {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.services4 .flag {
  width: 48px;
  height: 36px;
  border-radius: 5px;
  object-fit: cover;
}

.services4 .country span {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
}

.services4 .arc-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--default-color);
  color: var(--contrast-color);
  font-size: 0.95rem;
  z-index: 2;
}

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

  .services4 .photo {
    min-height: 220px;
    justify-content: center;
  }

  .services4 h2 {
    font-size: 1.75rem;
  }

  .services4 .lead {
    font-size: 15px;
  }
}

.services5-banner {
  margin-top: 60px;
}

.services5-banner { 
  background: transparent; 
  border: 1px solid var(--accent-color); 
  border-radius: 15px; 
  padding: 45px 55px; 
  box-shadow: 0 12px 36px color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex; 
  align-items: stretch; 
  flex-wrap: wrap; 
}

.services5-banner .banner-left { 
  flex: 1 1 58%; 
  min-width: 300px; 
  padding-right: 40px; 
}

.services5-banner .banner-eyebrow { 
  font-size: 0.75rem; 
  font-weight: 700; 
  letter-spacing: 5px; 
  text-transform: uppercase; 
  color: var(--default-color); 
}

.services5-banner .banner-title { 
  font-size: 2rem; 
  font-weight: 900; 
  color: var(--default-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.5; 
  margin: 0; 
}

.services5-banner .banner-right { 
  position: relative; 
  overflow: hidden; 
  flex: 1 1 32%; 
  min-width: 240px; 
  padding-left: 40px; 
  border-left: 1px solid var(--accent-color); 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  gap: 14px; 
}

.services5-banner .banner-call { 
  position: relative; 
  z-index: 2; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 9px; 
  font-weight: 600; 
  font-size: 1rem; 
  padding: 15px 25px; 
  border-radius: 10px; 
  text-decoration: none; 
  white-space: nowrap; 
  transition: .22s; 
  background: #22c55e; 
  color: var(--default-color); 
}

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

.services5-banner .banner-mail { 
  position: relative; 
  z-index: 2; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 9px; 
  font-weight: 600; 
  font-size: 1rem; 
  padding: 15px 25px; 
  border-radius: 10px; 
  text-decoration: none; 
  white-space: nowrap; 
  transition: .22s; 
  background: #2563eb; 
  color: var(--contrast-color);
}

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

@media (max-width:767px) {

  .services5-banner {
    padding: 30px 25px;
    text-align: center;
    justify-content: center;
  }

  .services5-banner .banner-left {
    padding-right: 0;
    flex: 1 1 100%;
    text-align: center;
  }

  .services5-banner .banner-right {
    padding-left: 0;
    border-left: 0;
    border-top: none;
    padding-top: 30px;
    margin-top: 8px;
    flex: 1 1 100%;
    align-items: center;
  }

  .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;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.transport-eyebrow-banner {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--default-color);
    margin-bottom: 0rem;
    text-transform: uppercase;
}

.transport-title-banner {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.5;
    color: var(--default-color);
    margin-bottom: 1rem;
}

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

.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: 125%;
    max-width: 720px;
    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 {
    letter-spacing: 5px;
    margin-bottom: 0.5rem;
    text-align: center;
  }

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

  .transport-subtitle-banner {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .btn-transport-banner {
    justify-content: center;
  }

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

  .transport-truck-banner {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 125%;     
    max-width: 850px;
    height: auto;
  }
}

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

@media (min-width: 992px) {
  .why-us .hero-row {
    flex-direction: row-reverse;
  }
}

.why-us .hero-badge {
  display: inline-block;
  background: var(--accent-color);
  color: var(--default-color);
  padding: 0.7rem 2rem;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

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

.why-us .hero-content .hero-description {
  font-size: 18px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  margin-bottom: 3rem;
}

.why-us .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

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

.why-us .stats-grid .stat-item .stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-us .hero-visual {
  position: relative;
}

.why-us .hero-visual .primary-image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.why-us .hero-visual .primary-image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.why-us .hero-visual .primary-image-container .experience-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: color-mix(in srgb, var(--default-color), transparent 50%);
  padding: 0.75rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.why-us .hero-visual .primary-image-container .experience-badge .badge-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us .hero-visual .primary-image-container .experience-badge .badge-icon i {
  font-size: 1.5rem;
  color: var(--default-color);
}

.why-us .hero-visual .primary-image-container .experience-badge .badge-info .years {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--contrast-color);
  line-height: 1;
}

.why-us .hero-visual .primary-image-container .experience-badge .badge-info .text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--contrast-color);
  text-transform: uppercase;
  letter-spacing: 0.75px;
}


@media (max-width: 767px) {
  .why-us .hero-content {
    text-align: center;
  }

  .why-us .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .why-us .hero-content h2 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
  }

  .why-us .hero-content .hero-description {
    font-size: 16px;
    margin-bottom: 2rem;
  }

  .why-us .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .why-us .stats-grid .stat-item .stat-number {
    font-size: 1.85rem; 
  }

  .why-us .stats-grid .stat-item .stat-label {
    font-size: 0.85rem;
  }

  .why-us .hero-visual {
    margin-top: 3rem;
  }

  .why-us .hero-visual .primary-image-container img {
    height: 285px;
  }

  .why-us .hero-visual .primary-image-container .experience-badge {
    top: 15px;
    right: 15px;
    padding: 0.6rem;
    gap: 0.75rem;
  }

  .why-us .hero-visual .primary-image-container .experience-badge .badge-icon {
    width: 40px;
    height: 40px;
  }

  .why-us .hero-visual .primary-image-container .experience-badge .badge-icon i {
    font-size: 1.2rem;
  }

  .why-us .hero-visual .primary-image-container .experience-badge .badge-info .years {
    font-size: 1.4rem;
  }

  .why-us .hero-visual .primary-image-container .experience-badge .badge-info .text {
    font-size: 0.65rem;
  }
}

.why-us .benefits-section .benefits-header {
  text-align: center;
  margin: 60px 0 45px;
}

.why-us .benefits-section h3 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

@media (max-width: 768px) {
  .why-us .benefits-section h3 {
    font-size: 1.85rem;
  }
}

.why-us .benefits-grid .benefit-card {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 15px;
  border-left: 5px solid var(--accent-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.why-us .benefits-grid .benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.075);
  border-left-color: var(--default-color);
}

.why-us .benefits-grid .benefit-card:hover .benefit-icon {
  background: var(--default-color);
  color: var(--contrast-color);
}

.why-us .benefits-grid .benefit-card .benefit-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.why-us .benefits-grid .benefit-card .benefit-icon i {
  font-size: 1.5rem;
  color: var(--default-color);
  transition: color 0.3s ease;
}

.why-us .benefits-grid .benefit-card:hover .benefit-icon i {
  color: var(--contrast-color);
}

.why-us .benefits-grid .benefit-card .benefit-content {
  flex: 1;
}

.why-us .benefits-grid .benefit-card .benefit-content h4 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--default-color);
  line-height: 1.25;
}

.why-us .benefits-grid .benefit-card .benefit-content p {
  font-size: 17px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  margin-bottom: 0rem;
}

@media (max-width: 768px) {
  .why-us .benefits-grid .benefit-card {
    flex-direction: column;
    padding: 1rem;
    gap: 1.5rem;
    border-left: none;
    border-bottom: 5px solid var(--accent-color);
    text-align: center;
  }

  .why-us .benefits-grid .benefit-card .benefit-icon {
    margin: 0 auto;
  }
}

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

.why-preface .preface-card {
  background: var(--default-color);
  border-radius: 25px;
  padding: 35px 45px;
  width: 75%;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--default-color), transparent 90%),
              0 15px 35px rgba(0, 0, 0, 0.075);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

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

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

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

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

.why-preface .preface-text .accent {
  color: var(--accent-color);
  font-weight: 800;
}

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

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

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

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

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

/*--------------------------------------------------------------
# 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.7) contrast(1.1) brightness(0.85);
}

.call-to-action .cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
background:
  radial-gradient(ellipse 100% 100% at 50% 50%,
    rgba(0,0,0,0.85) 0%,   /* centru — un pic mai închis */
    rgba(0,0,0,0.3) 65%,  /* aici devine deja nuanța de margine */
    rgba(0,0,0,0.5) 100%  /* margini și baze, toate la fel */
  );
  z-index: 1;
}

.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: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--default-color);
  text-align: center;
}

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

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

.call-to-action .cta-content2 h2 .sub-text {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--accent-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.75;
  max-width: 650px;
  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.5);
  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.7rem;
  }

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

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

  .call-to-action .cta-content2 p {
    font-size: 1rem;
    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-gallery {
  padding: 75px 0;
}

.fleet-intro {
  position: relative;
  background: var(--accent-color);
  border-radius: 15px;
  padding: 3rem 4rem;
  overflow: hidden;
  isolation: isolate;
  margin-bottom: 45px;
}

.fleet-intro .fleet-eyebrow {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 5px;
}

.fleet-intro .fleet-title {
  font-weight: 800;
  line-height: 1;
  font-size: 2.25rem;
  color: var(--default-color);
  margin: 0 0 20px;
}

.fleet-intro .fleet-lead {
  color: var(--default-color);
  font-size: 17px;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 0 15px;
}

.fleet-intro .fleet-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.fleet-intro .fleet-stats .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--default-color);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.fleet-intro .fleet-stats .lbl {
  color: var(--default-color);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

.fleet-image {
  position: relative;
}

.fleet-truck {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

/* ===== desktop: imaginea iese pe margine cu tăietură oblică ===== */
@media (min-width: 992px) {
  .fleet-intro--bleed {
    min-height: 480px;
  }

  .fleet-intro--bleed .fleet-image {
    position: absolute;
    top: 0rem;          
    bottom: 0rem;
    right: 0rem;     
    width: 52%;
    margin: 0;
    padding: 0;
  }

  .fleet-intro--bleed .fleet-truck {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 0;
    clip-path: polygon(16% 0, 100% 0, 100% 100%, 0% 100%);
  }
}

@media (max-width: 991px) {
  .fleet-intro {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .fleet-intro .row {
    justify-content: center;
  }

  .fleet-intro .fleet-eyebrow,
  .fleet-intro .fleet-title,
  .fleet-intro .fleet-lead {
    text-align: center;
  }

  .fleet-intro .fleet-lead {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

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

  .fleet-image {
    margin-top: 2rem;
  }

  .fleet-truck {
    width: 100%;
    height: 225px;
    object-fit: cover;
    border-radius: 15px;
    min-height: 0;
  }
}

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

.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-spec-card {
  position: relative;
  background: var(--accent-color);
  border-radius: 15px;
  padding: 30px 40px;
  margin: 60px 0 45px;
}

.fleet-spec-card__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 24px;
}

.fleet-spec-card__intro { 
  flex: 1; 
  min-width: 0; 
}

.fleet-spec-card__label {
  display: block;
  color: var(--default-color);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 5px;
  margin-bottom: 5px;
}

.fleet-spec-card__title {
  font-size: 1.85rem;
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: 0px;
  color: var(--default-color);
}

.fleet-spec-card__desc {
  font-size: 1rem;
  color: var(--default-color);
  margin: 0;
  max-width: 750px;
  line-height: 1.75;
}

.fleet-spec-card__stats {
  display: flex;
  gap: 35px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

.fleet-spec-card__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.fleet-spec-card__icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.fleet-spec-card__icon i {
  font-size: 1.25rem;          
  color: var(--contrast-color);   
  line-height: 1;
}

.fleet-spec-card__value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--default-color);
  line-height: 1;
}

.fleet-spec-card__caption {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 500;
}

.fleet-spec-card__features {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 60px;
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
}

.fleet-spec-card__features li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--default-color);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-color);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.fleet-spec-card__features li i {
  color: var(--accent-color);
  font-size: 1.25rem;
  line-height: 1;
}


@media (max-width: 768px) {
  .fleet-spec-card {
    padding: 25px 20px;
    text-align: center;
  }

  .fleet-spec-card__main {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    text-align: center;
  }

  .fleet-spec-card__intro {
    width: 100%;
  }

  .fleet-spec-card__label {
    letter-spacing: 5px;
    margin-bottom: 0px;
  }

  .fleet-spec-card__title {
    font-size: 1.55rem;
    line-height: 1.3;
  }

  .fleet-spec-card__desc {
    font-size: 0.95rem;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.7;
  }

  .fleet-spec-card__stats {
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    flex-wrap: nowrap;
  }

  .fleet-spec-card__stat {
    flex: 1;
    min-width: 0;
  }

  .fleet-spec-card__icon {
    width: 40px;
    height: 40px;
  }

  .fleet-spec-card__icon i {
    font-size: 1.05rem;
  }

  .fleet-spec-card__value {
    font-size: 1.2rem;
  }

  .fleet-spec-card__caption {
    font-size: 0.8rem;
  }

  .fleet-spec-card__features {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 22px;
  }

  .fleet-spec-card__features li {
    width: 100%;
    max-width: 250px;
    justify-content: center;
    text-align: center;
    padding: 10px 16px;
  }
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  padding: 75px 0;
}

.faq .faq-accordion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.faq .faq-item {
  width: 100%;
  max-width: 80%;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item.faq-active .faq-header .faq-number {
  background: var(--accent-color);
  color: var(--default-color);
}

.faq .faq-item.faq-active .faq-header h4 {
  color: var(--default-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  background: var(--accent-color);
  color: var(--default-color);
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header .faq-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--default-color);
  color: var(--contrast-color);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header .faq-number i {
  font-size: 20px;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--default-color);
  line-height: 1.5;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--default-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 18px;
  font-weight: 300;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item .faq-header .faq-toggle i {
  line-height: 1;
}

.faq .faq-item .faq-header:hover .faq-number {
  background: var(--accent-color);
}

.faq .faq-item .faq-header:hover .faq-toggle {
  background: var(--accent-color);
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item .faq-content .content-inner {
  overflow: hidden;
  padding: 0 28px 24px 96px;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
}

@media (max-width: 768px) {
.faq .faq-item {
  max-width: 100%;
}

  .faq .faq-item .faq-header {
    padding: 20px 24px;
    gap: 16px;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 40px;
    height: 40px;
    font-size: 13px;
    border-radius: 10px;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 16px;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 24px 20px 80px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
.faq .faq-item {
  max-width: 100%;
}

  .faq .faq-item .faq-header {
    padding: 18px 20px;
    gap: 12px;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 36px;
    height: 36px;
    font-size: 12px;
    border-radius: 8px;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 15px;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 20px 18px 20px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 14px;
  }
}

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

.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, 1) 30%, rgba(0, 0, 0, 0.30) 75%, rgba(0, 0, 0, 0) 100%);
}

.banner-promo-section .container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.content-wrapper {
  max-width: 600px;
}

.text-content {
  display: grid;
  gap: 14px;
  grid-template-columns: 0.8fr 1.2fr;
  grid-template-areas:
    "head head"
    "num p1"
    "num p2"
    "trust trust";
}

.text-content > * {
  margin: 0;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(246, 208, 84, 0.25);
  border-radius: 15px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.years-badge {
  grid-area: num;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  text-align: center;
}

.big-number {
  font-size: 90px;
  font-weight: 900;
  font-family: var(--banner-font);
  color: var(--accent-color);
  line-height: 1;
  position: relative;
}

.badge-text {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
  vertical-align: middle;
}

.highlight-line {
  display: block;
  margin-top: 3px;
  font-size: 21px;
  font-weight: 900;
  color: var(--accent-color);
}

.text-content h2 {
  grid-area: head;
  font-size: 25px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1.25;
  text-align: center;
}

.text-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--contrast-color);
}

.text-content p:nth-of-type(1) {
  grid-area: p1;
}

.text-content p:nth-of-type(2) {
  grid-area: p2;
}

.logo-trust-badge {
  grid-area: trust;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.trust-logo {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

.trust-text {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .banner-promo-section .container {
    padding: 28px 18px;
  }

  .content-wrapper {
    max-width: 100%;
  }

  .text-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "num"
      "head"
      "p1"
      "p2"
      "trust";
  }

  .big-number {
    font-size: 58px;
  }
}

@media (max-width: 768px) {
  .banner-promo-section {
    min-height: auto;
    background-image: url('../img/banner/flo-trans-company-junior-banner-mobile-02.webp');
    background-position: center;
  }

  .banner-promo-section::before {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.75) 40%,
      rgba(0, 0, 0, 0.45) 70%,
      rgba(0, 0, 0, 0.20) 100%
    );
  }

  .text-content > * {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
}

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

.cardx{
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 25px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.075);
}

@media (max-width: 768px) {
  .cardx {
    padding: 1rem;
  }
}

.card-head { 
  display: flex; 
  align-items: center; 
  gap: .8rem; 
  margin-bottom: 1.2rem; 
}

.card-head .pill {
  width: 45px; 
  height: 45px; 
  flex: 0 0 45px;
  border-radius: 15px; 
  display: grid; 
  place-items: center;
  background: var(--default-color); 
  color: var(--accent-color); 
  font-size: 1.25rem;
}

.card-head h2 { 
  font-size: 1.25rem; 
  font-weight: 800;
  letter-spacing: 0.5px; 
  color: var(--default-color);
  margin: 0; 
}

.c-item {
  display: flex; 
  align-items: center; 
  gap: 1rem;
  padding: .85rem; 
  border-radius: 15px;
  text-decoration: none; 
  color: var(--default-color);
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  transition: background .2s;
}

.c-item + .c-item {
  margin-top: .5rem; 
}

.c-item .ico {
  width: 40px; 
  height: 40px; 
  flex: 0 0 40px;
  border-radius: 15px; 
  display: grid; 
  place-items: center;
  background:#fff; 
  color: var(--default-color); 
  font-size: 1.15rem;
  transition: background .2s, color .2s;
}

.c-item .k {
  display: block; 
  font-size: 0.7rem; 
  font-weight: 500;
  letter-spacing: 1px; 
  text-transform: uppercase; 
  color:var(--default-color);
}

.c-item .v { 
  font-size: 16px;
  font-weight: 600; 
  line-height: 1.5; 
}

.c-item .actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: 1.2rem;
}

.c-item .actions a {
  color: var(--default-color);
  text-decoration: none;
  display: grid;
  place-items: center;
  transition: color .2s, transform .2s;
}

.c-item:hover .actions a {
  color: var(--default-color);
}

@keyframes shake {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(-12deg); }
  40%  { transform: rotate(10deg); }
  60%  { transform: rotate(-8deg); }
  80%  { transform: rotate(6deg); }
  100% { transform: rotate(0deg); }
}

.c-item .actions a:hover .shake-ico {
  animation: shake .5s ease-in-out infinite;
}

.c-item:hover { 
  background: var(--accent-color); 
}

.c-item:hover .ico{ 
  background: var(--default-color); 
  color: var(--accent-color); 
}

.c-item:hover .k, .c-item:hover .v { 
  color: var(--default-color); 
}

.id-list { 
  margin: 0; 
}

.id-row {
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 1rem;
  padding: .85rem; 
  border-radius: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 75%); 
  margin-bottom: .75rem;
}

.id-row:last-child { 
  margin-bottom: 0; 
}

.id-row dt {
  font-size: 0.85rem; 
  font-weight: 500; 
  color: var(--default-color);
  display: flex; 
  align-items: center; 
  gap: .5rem; 
  margin: 0;
}

.id-row dt i { 
  color:var(--default-color); 
  font-size: 15px;
}

.id-row dd { 
  margin: 0; 
  font-size: 16px;
  font-weight: 600; 
  line-height: 1.5;  
  text-align: right; 
}

.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: 0.75rem; 
  font-weight: 700; 
  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: 24rem;
  margin: 0 0 1.5rem;
}
 
.truck-banner .btn-signal {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  align-self: flex-start;
  background: transparent;
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
  font-weight: 600;
  padding: .75rem 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all .2s ease;
}

.truck-banner .btn-signal:hover {
  background: var(--accent-color);
  color: var(--default-color);
}

@media (max-width: 768px) {
  .truck-banner {
    min-height: 300px;
  }

  .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.5rem;
  }

  .truck-banner p {
    max-width: 100%;
    margin: 0 0 1.5rem;
  }

  .truck-banner .btn-signal {
    align-self: center;
  }
}

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

