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

@font-face {
  font-family: 'Mulish-Variable';
  src: url('../fonts/Mulish-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: #519797; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --accent-color-2: #666666; /* 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: 70px;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .header .logo img {
    max-height: 40px;
    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: 16px;
    font-family: var(--default-font);
    font-weight: 500;
    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(--accent-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-family: var(--default-font);
    font-size: 16px;
    font-weight: 500;
    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: 85px;
  }
}

.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: 20px;
  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;
  position: relative;
  overflow: visible;
  padding-bottom: 75px;
}

.section-title .title-wrap {
  position: relative;
  display: inline-block;
}

.section-title .watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(30px, 8vw, 70px);
  font-weight: 800;
  letter-spacing: 0px;
  text-transform: uppercase;
  white-space: nowrap;
  color: color-mix(in srgb, var(--default-color), transparent 90%);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.section-title .eyebrow {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--default-color);
  margin-bottom: 30px;
}

.section-title h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
}

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

@media (max-width: 768px) {
  .section-title {
    padding-bottom: 60px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .section-title .watermark {
    font-size: 40px;
    white-space: nowrap;
  }

  .section-title .eyebrow {
    font-size: 12px;
    letter-spacing: 5px;
    margin-bottom: 20px;
  }

  .section-title h2 {
    font-size: 35px; 
    line-height: 1.2;
  }

  .section-title p {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 10px;
  }
}

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

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

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

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

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

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

.hero .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: color-mix(in srgb, var(--background-color), transparent 25%);
}

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

.hero h2 {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 0px;
}

.hero p {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 0px;
  max-width: 40%;
}

.hero .btn-browse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  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 .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 1;
}

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

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

.hero h2,
.hero p {
  text-align: center;
}

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

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

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 6px;
}

.hero .hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  width: 100%;
  max-width: 850px;
  margin-top: 45px;
}

.hero .hero-feature {
  background: color-mix(in srgb, var(--contrast-color), transparent 75%);
  border-radius: 15px;
  padding: 20px 15px;
  text-align: center;
}

.hero .hero-feature i {
  font-size: 30px;
  color: var(--accent-color);
}

.hero .hero-feature h4 {
  font-size: 17px;
  font-weight: 800;
  margin: 10px 0 0px;
  color: var(--heading-color);
}

.hero .hero-feature span {
  font-size: 14px;
  opacity: 0.95;
}

@media (max-width: 767.98px) {
  .hero h2 {
    font-size: 35px;
    line-height: 1.25;
    margin-bottom: 10px;
}

  .hero .hero-slogan {
    font-size: 20px;
    margin-bottom: 30px;
}

  .hero p {
    font-size: 15px;
    max-width: 80%;
    margin-bottom: 30px;
}

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

  .hero .d-flex.justify-content-center .btn-browse {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    margin-top: 0;
}

  .hero .hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 60px;
  }

  .hero .hero-feature {
    display: flex;
    text-align: left;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
  }

  .hero .hero-feature i {
    font-size: 24px;
    flex-shrink: 0;
    color: var(--accent-color);
  }

  .hero .hero-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero .hero-feature-content h4 {
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
  }

  .hero .hero-feature-content span {
    margin: 2px 0 0;
    font-size: 12px;
    line-height: 1.2;
  }

  .hero .hero-feature:last-child {
    grid-column: 1 / 3;
    justify-self: center;
    width: calc(65% - 6px);
  }
  
  .hero .carousel-indicators {
    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: 25px;
  font-weight: 900;
  margin: 0 0 30px;
  line-height: 1.25;
  color: var(--default-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;
}

.about .image-section {
  display: flex;
  gap: 15px;
  align-items: stretch;
  width: 100%;
  height: 520px;
}

.about .main-image {
  flex: 1.6;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
}

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

.about .image-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about .grid-item {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
}

.about .grid-item 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 .section-subtitle {
    letter-spacing: 5px;
    font-size: 13px;
  }

  .about .content h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .about .content p {
    font-size: 16px;
    line-height: 1.75;
  }

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

  .about .image-section {
    width: 100%;
    height: 300px;
    margin: 0 auto;
    gap: 10px;
  }

  .about .main-image {
    flex: 1.4;
  }

  .about .image-grid {
    flex: 0.9;
    gap: 10px;
  }

  .about .main-image,
  .about .grid-item {
    border-radius: 12px;
  }

  .about .main-image img,
  .about .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.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 { 
  padding: 0.5rem 0; 
}

.about-stats__icon {
  font-size: 2rem;
  color: var(--contrast-color);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.about-stats__number {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--default-color);
}

.about-stats__label {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: var(--contrast-color);
}

.about-stats__item--divider {
  position: relative;
}

.about-stats__item--divider::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 65%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.25) 10%,
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 255, 255, 0.25) 90%,
    transparent 100%
  );
}

@media (max-width: 767.98px) {
  .about-stats {
    padding: 2rem 0;
  }

  .about-stats__label {
    margin-top: 0.25rem;
  }

  .about-stats__item {
    padding: 0rem 0;
  }

  .about-stats__item:nth-child(2)::after {
    display: none;
  }
}

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

.about-testimonial__card {
  background: var(--accent-color-2);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.075);
}

.about-testimonial__photo {
  position: relative;
  width: 100%;
  min-height: 320px;
  overflow: hidden;
}

.about-testimonial__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-testimonial__body {
  padding: 2.5rem 2.75rem;
}

.about-testimonial__badge {
  width: 55px; 
  height: 55px; 
  border-radius: 10px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-testimonial__quote {
  font-size: 1.1rem; 
  line-height: 1.75; 
  color: var(--contrast-color);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.about-testimonial__name { 
  font-size: 25px;
  line-height: 1.25;
  font-weight: 600; 
  color: var(--contrast-color); 
  margin-bottom: 5px;
}

.about-testimonial__role { 
  font-size: 0.95rem; 
  color: var(--contrast-color); 
}

.about-testimonial__accent-line {
  width: 75px; 
  height: 3px; 
  background: var(--accent-color);
  border-radius: 5px; 
  margin-bottom: 1.5rem;
  }

/* Pe desktop, imaginea ocupă toată înălțimea cardului */
@media (min-width: 992px) {
  .about-testimonial__photo { 
    aspect-ratio: auto; 
    height: 100%; 
    min-height: 380px; 
   }

  .about-testimonial__body { 
    padding: 3.25rem; 
  }
}

/* Mobil */
@media (max-width: 991.98px) {
  .about-testimonial__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-testimonial__body {
    padding: 2rem 1.5rem;
  }

  .about-testimonial__accent-line {
    margin: 0 auto 1rem;
  }
}

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

.services-01 .image-wrap {
  position: relative;
}

.services-01 .image-block {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 60px 120px -30px rgba(0, 0, 0, 0.075);
}

.services-01 .image-block img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.services-01 .content-card {
  position: relative;
  z-index: 2;
  width: min(900px, 90%);
  margin: -75px auto 0;
  padding: 40px;
  background: var(--accent-color);
  border-radius: 25px;
  box-shadow: 0 30px 70px -42px rgba(0, 0, 0, 0.075);
  text-align: center;
}

.services-01 .eyebrow-01 {
  display: inline-flex;
  align-items: center;
  margin-bottom: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--default-color);
}

.services-01 .intro-content h3 {
  font-size: 30px;
  color: var(--default-color);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

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

.services-01 .highlight-points {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.services-01 .highlight-points .point-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.15rem 0;
}

.services-01 .highlight-points .point-item i {
  color: var(--default-color);
  font-size: 1.5rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.services-01 .highlight-points .point-item span {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

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

.services-01 .transport-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 15px 35px;
  background: var(--accent-color-2);
  color: var(--contrast-color);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.services-01 .transport-button .status-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 13px;
  height: 13px;
  background: #10b981;
  border: 1px solid var(--default-color);
  border-radius: 50%;
}

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

.services-01 .transport-button .transport-title {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.25px;
  line-height: 1.2;
}

.services-01 .transport-button .transport-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.services-01 .contact-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: var(--accent-color-2);
  color: var(--contrast-color);
  font-size: 20px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.services-01 .contact-icon-link:hover {
  background: var(--default-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
  box-shadow: 0 6px 16px -4px color-mix(in srgb, var(--accent-color), transparent 85%);
}

@media (max-width: 768px) {
  .services-01 .image-block img {
    height: 200px;
  }

  .services-01 .content-card {
    width: auto;
    margin: 30px 0 0;
    padding: 20px;
  }

  .services-01 .highlight-points {
    width: 100%;
    align-items: center;
    gap: 1rem;
  }

  .services-01 .highlight-points .point-item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0rem;
  }

  .services-01 .highlight-points .point-item i {
    margin-top: 0;
    margin-bottom: 0.25rem;
  }

  .services-01 .highlight-points .point-item span {
    text-align: center;
  }
}

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

.services-02 .zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.services-02 .zigzag-item + .zigzag-item {
  margin-top: 45px;
}

.services-02 .zigzag-item.reverse .zigzag-media {
  order: 2;
}

.services-02 .zigzag-item.reverse .zigzag-content {
  order: 1;
}

.services-02 .zigzag-media {
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
}

.services-02 .zigzag-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-02 .zigzag-index {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.services-02 .zigzag-content h3 {
  font-size: 25px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--default-color);
  margin: 0 0 16px;
}

.services-02 .zigzag-content p {
  font-size: 17px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  margin: 0 0 20px;
}

.services-02 .zigzag-meta {
  display: flex;
  gap: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding-top: 20px;
}

.services-02 .zigzag-meta {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.services-02 .meta-item {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.services-02 .meta-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.services-02 .meta-value {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--accent-color);
}

@media (max-width: 768px) {

  .services-02 .zigzag-item {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .services-02 .zigzag-item.reverse .zigzag-media {
    order: 1;
  }

  .services-02 .zigzag-item.reverse .zigzag-content {
    order: 2;
  }

  .services-02 .zigzag-media {
    width: 100%;
    height: 250px; /* Setează aici înălțimea imaginii */
    margin: 0;
  }

  .services-02 .zigzag-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .services-02 .zigzag-content {
    text-align: center;
  }

  .services-02 .zigzag-index {
    text-align: center;
  }

.services-02 .zigzag-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.services-02 .meta-item {
  align-items: center;
}
}
.services-03 {
  margin-top: 60px;
}

.services-03-card-custom {
  background: var(--contrast-color);
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.075);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.services-03-card-custom::after {
  content: attr(data-number);
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 5rem;
  font-weight: 900;
  color: color-mix(in srgb, var(--accent-color), transparent 90%);
  z-index: 0;
  line-height: 1;
  transition: all 0.5s ease;
}

.services-03-icon-box {
  width: 80px;
  height: 80px;
  background: var(--accent-color-2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.services-03-icon-box i {
  font-size: 35px;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: transform 0.5s ease, color 0.3s ease;
}

.services-03-card-custom h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.services-03-card-custom p {
  font-size: 15px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  margin: 0;
  position: relative;
  z-index: 1;
}

.services-03-card-custom:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
}

.services-03-card-custom:hover .services3-icon-box {
  background: var(--accent-color);
}

.services-03-card-custom:hover .services3-icon-box i {
  color: #ffffff;
  transform: rotate(360deg);
}

.services-03-card-custom:hover::after {
  transform: translateY(20px);
  color: color-mix(in srgb, var(--accent-color), transparent 75%);
}

.services-03-card-custom::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--accent-color);
  transition: width 0.5s ease;
}

.services-03-card-custom:hover::before {
  width: 100%;
}

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

.services-04 .card-shell {
  border-radius: 15px;
  box-shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.075);
  height: 100%;
  overflow: hidden;
}

.services-04 .image-card {
  min-height: 260px;
}

.services-04 .image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.services-04 .content-card-04 {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  background: var(--accent-color-2);
}

.services-04 .content-card-04 h3 {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--contrast-color);
  margin-bottom: 10px;
}

.services-04 .content-card-04 .lead-sub {
  color: color-mix(in srgb, var(--contrast-color), transparent 5%);
  font-size: 17px;
  line-height: 1.75;
  margin:0 auto;
}

.services-04 .content-block {
  width: 100%;
  max-width: 640px;
}

.services-04 .section-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.services-04 .section-label::before,
.services-04 .section-label::after{
  content:"";
  flex: 1;
  height: 1px;
  background: color-mix(in srgb, var(--contrast-color), transparent 75%);
}

.services-04 .country-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 25px;
  border-radius: 15px;
  background: var(--accent-color);
  height: 100%;
  text-align: center;
}

.services-04 .country-row img {
  width: 45px;
  height: 30px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  display: block;
}

.services-04 .country-row .country-name {
  font-weight: 700;
  color: var(--contrast-color);
  font-size: 1.05rem;
  line-height: 1.25;
}

.services-04 .eu-card {
  background: var(--accent-color);
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--contrast-color);
  text-align: left;
}

.services-04 .eu-card img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.services-04 .eu-card .eu-title {
  font-weight: 700;
  color: var(--contrast-color);
  font-size: 1.05rem;
  line-height: 1.25;
}

.services-04 .eu-card .eu-sub {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 5%);
  line-height: 1.5;
}

.services-04 .service-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 15px;
  padding: 15px 20px;
  background: var(--accent-color);
  height: 100%;
  text-align: left;
}

.services-04 .service-pill .icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--default-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-04 .service-pill .icon-wrap i {
  font-size: 20px;
  line-height: 1;
}

.services-04 .service-pill .service-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-04 .service-pill .service-title {
  font-weight: 700;
  color: var(--default-color);
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 767.98px) {
  .services-04 .card-shell {
    display: flex;
    flex-direction: column;
  }

  .services-04 .content-card-04 {
    order: 1;
    padding: 35px 25px;
    align-items: center;
    text-align: center;
  }

  .services-04 .image-card {
    order: 2;
    min-height: 250px;
  }

  .services-04 .image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .services-04 .content-block {
    max-width: 100%;
    text-align: center;
  }

  .services-04 .section-label {
    justify-content: center;
    text-align: center;
  }

  .services-04 .lead-sub {
    text-align: center;
  }

  .services-04 .countries-row {
    display: flex;
    flex-wrap: nowrap;
  }

  .services-04 .countries-row > .col-sm-4 {
    width: 33.333333%;
    flex: 0 0 33.333333%;
  }

  .services-04 .country-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 10px;
    text-align: center;
    height: 100%;
  }

  .services-04 .country-row img {
    width: 48px;
    height: 32px;
  }

  .services-04 .country-row > div {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .services-04 .country-name {
    display: block;
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .services-04 .eu-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
  }

  .services-04 .services-row {
    display: flex;
    flex-wrap: wrap;
  }

  .services-04 .services-row > .col-sm-6 {
    width: 100%;
    flex: 0 0 100%;
  }

  .services-04 .service-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    text-align: center;
    height: 100%;
  }

  .services-04 .service-pill .service-text,
  .services-04 .service-pill > div:last-child {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .services-04 .service-title {
    text-align: center;
    line-height: 1.4;
  }
}

.services-05 {
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  min-height: 200px;
  margin-top: 60px;
}

.services-05__content {
  flex:0 0 65%;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 45px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.services-05__eyebrow {
  font-size: 0.75rem;
  font-style: italic;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.services-05__title {
  font-weight: 900;
  font-size: 2rem;
  color: var(--default-color);
  font-style: italic;
  margin-bottom: 15px;
}

.services-05__text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 5%);
  line-height: 1.5;
  margin-bottom: 0;
}

.services-05__buttons {
  flex: 1 1 auto;
  background: var(--default-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 35px 20px;
  will-change: transform;
}

.services-05__btn {
  box-sizing: border-box;
  min-width: 275px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 15px;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  transform: translateX(0px);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.services-05__btn--fill {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services-05__btn--fill:hover {
  background: transparent;
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.services-05__btn--outline {
  background: transparent;
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.services-05__btn--outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 767.98px) {
  .services-05 {
    flex-direction: column;
    margin-top: 40px;
  }

  .services-05__content {
    flex: none;
    width: 100%;
    padding: 35px 25px;
    text-align: center;
    align-items: center;
  }

  .services-05__eyebrow {
    text-align: center;
    margin-bottom: 10px;
  }

  .services-05__title {
    font-size: 1.75rem;
    text-align: center;
    line-height: 1.1;
  }

  .services-05__text {
    text-align: center;
  }

  .services-05__buttons {
    width: 100%;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .services-05__btn {
    width: 100%;
    max-width: 300px;
    min-width: 0;
    justify-content: center;
  }
}

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

.transport-card-banner {
    position: relative;
    background: var(--contrast-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: 12px;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--default-color);
    margin-bottom: 0rem;
    text-transform: uppercase;
}

.transport-title-banner {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.5;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.transport-subtitle-banner {
    font-size: 17px;
    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-card-banner {
    overflow-x: clip;
}

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

@media (max-width: 768px) {
  .transport-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: 2rem;
  }

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

  .transport-image-wrapper {
    position: relative;
    margin-top: 0rem;
    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: block;
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 5px;
}

.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(--accent-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;
  left: 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;
    left: 15px;
    padding: 0.5rem;
    gap: 0.75rem;
  }

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

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

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

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

.why-us-core-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 60px;
}

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

.why-us .why-interactive-card {
  position: relative;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.075);
}

.why-us .why-interactive-card .card-icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 15px;
  background: var(--accent-color-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.why-us .why-interactive-card .card-info-content h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--default-color);
  margin-bottom: 5px;
}

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

.why-us .portrait-image-wrapper {
  position: relative;
  height: 550px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.075);
  perspective: 1000px;
}

.why-us .portrait-image-wrapper .portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-us .portrait-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
}

.why-us .portrait-content-tags {
  position: absolute;
  bottom: 25px;
  left: 30px;
  right: 30px;
  z-index: 2;
  text-align: center;
}

.why-us .portrait-content-tags h3 {
  font-size: 25px;
  font-weight: 800;
  font-style: italic;
  color: var(--contrast-color);
  margin: 0;
}

@media (max-width: 767px) {
  .why-us-core-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 60px;
  }

  .why-us .left-cards {
    order: 1;
    width: 100%;
  }

  .why-us .center-portrait {
    order: 2;
    width: 100%;
  }

  .why-us .right-cards {
    order: 3;
    width: 100%;
  }

  .why-us .core-column {
    gap: 20px;
  }

  .why-us .why-interactive-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    padding: 25px 20px;
  }

  .why-us .card-icon-box {
    margin: 0 auto;
  }

  .why-us .card-info-content,
  .why-us .card-info-content h4,
  .why-us .card-info-content p {
    text-align: center;
  }

  .why-us .portrait-image-wrapper {
    width: 100%;
    height: 420px; /* modifici după preferință */
    border-radius: 20px;
  }

  .why-us .portrait-content-tags {
    left: 20px;
    right: 20px;
    bottom: 20px;
    text-align: center;
  }

  .why-us .portrait-content-tags h3 {
    font-size: 22px;
  }
}

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

@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: 150px 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.5);
}

.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: 0.75rem;
  font-weight: 600;
  letter-spacing: 5px;
  margin-right: -5px;
  text-transform: uppercase;
  color: var(--contrast-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: 3.75rem;
  margin-bottom: 15px;
  display: block;
  text-transform: normal;
  color: var(--accent-color);
  letter-spacing: 0px;
}

.call-to-action .cta-content2 h2 .highlight .brush {
  position: relative;
  display: inline-block;
  color: var(--contrast-color);
  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='%23519797'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

.call-to-action .cta-content2 h2 .sub-text {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--background-color);
  letter-spacing: 10px; 
  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: 800px;
  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.7rem;
  }

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

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

  .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-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.075);
  margin-bottom: 60px;
}

.fleet-card-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('../img/fleet/ilcomserv-transporter-fleet-banner-01.webp');
  background-size: cover;
  background-position: center;
}

.fleet-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 10, 14, .95) 0%, rgba(8, 10, 14, .55) 40%, rgba(8, 10, 14, .05) 85%),
    linear-gradient(0deg, rgba(8, 10, 14, .95) 0%, rgba(8, 10, 14, 0) 55%);
}

.fleet-card-content {
  max-width: 750px;
  padding: 2.5rem;
  color: #fff;
  text-align: left;
}

.fleet-card-title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--contrast-color);
  line-height: 1.25;
  letter-spacing: 0;
}

.fleet-card-text {
  max-width: 550px;
  margin: 0 0 2rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--contrast-color), transparent 5%);
}

.fleet-card-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.75rem;
}

.fleet-card-stat-num {
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0px;
  color: var(--accent-color);
}

.fleet-card-stat-label {
  display: block;
  margin-top: 0rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.fleet-card-stat + .fleet-card-stat {
  padding-left: 1.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .fleet-card {
    min-height: 650px;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    margin-bottom: 60px;
  }

  .fleet-card-bg {
    background-image: url('../img/fleet/ilcomserv-transporter-fleet-banner-mobile-01.webp');
    background-position: center;
    background-size: cover;
  }

  .fleet-card::before {
    background:
      linear-gradient(180deg,
      rgba(8, 10, 14, 0.5) 0%,
      rgba(8, 10, 14, 0.75) 45%,
      rgba(8, 10, 14, 0.95) 100%);
  }

  .fleet-card-content {
    max-width: 100%;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .fleet-card-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .fleet-card-text {
    max-width: 100%;
    margin: 0 auto 2rem;
    font-size: 1rem;
  }

.fleet-card-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 0;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.fleet-card-stat {
  position: relative;
  text-align: center;
  padding: 0 1rem;
}

.fleet-card-stat:nth-child(odd)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 30px; 
  background: rgba(255, 255, 255, 0.25);
}

.fleet-card-stat + .fleet-card-stat {
  padding-top: 0;
  padding-left: 1rem;
  border-top: none;
  border-left: none;
}

.fleet-card-stat-num {
  font-size: 2rem;
}

.fleet-card-stat-label {
  margin-top: .35rem;
}
}

.bento2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 175px;
  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: auto;          
  transform: translateZ(0);
}

.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;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.bento2-overlay i:hover {
  color: var(--accent-color);
  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-feature {
  position: relative;
  padding: 2rem;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 15px;
  overflow: hidden;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.075);
  transition: box-shadow 0.3s ease;
}

.fleet-feature-watermark {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  font-size: 7.5rem;
  line-height: 1;
  color: var(--accent-color-2);
  opacity: 0.075;
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.fleet-feature:hover .fleet-feature-watermark {
  opacity: 0.25;
  transform: translateY(-50%) scale(1.15);
}

.fleet-feature-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  border-radius: 15px;
  color: var(--accent-color);
  background: var(--default-color);
  font-size: 30px;
  transition: color 0.3s ease, background 0.3s ease;
}

.fleet-feature:hover .fleet-feature-icon {
  color: var(--contrast-color);
  background: var(--accent-color-2);
}

.fleet-feature-title {
  position: relative;
  z-index: 1;
  margin: 0 0 0.75rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--default-color);
}

.fleet-feature-text {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 90%;
  font-size: 1rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
}

@media (max-width: 768px) {
  .fleet-feature {
    margin-top: 0;
  }

  .col-md-6:first-child .fleet-feature {
    margin-top: 60px;
  }

  .col-md-6 + .col-md-6 .fleet-feature {
    margin-top: 30px;
  }

  .fleet-feature-watermark {
    font-size: 12rem; 
    right: 0.5rem;   
    opacity: 0.1;    
    transform: translateY(-50%);
  }

.fleet-feature-text {
    max-width: 100%;
  }
}

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

.faq .faq-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 5px;
  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-2);
  color: var(--contrast-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background-color .25s ease, color .25s ease, transform .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: color-mix(in srgb, var(--accent-color-2), transparent 50%);
  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 .2s ease, background-color .2s ease, box-shadow .2s 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.5);
  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(--contrast-color);
  font-size: 1.25rem;
}

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

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

.faq-testimonial .faq-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 5px;
  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-2), transparent 50%);
  border-radius: 25px;
  padding: 1.15rem 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.faq-testimonial .t-featured {
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
  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: #ffd27a;
  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(--accent-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(--accent-color-2);
  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;
  }

}

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

.cariere .col-lg-7 {
  display: flex;
  align-items: center;
}

.cariere__text {
  width: 100%;
}

.cariere__photo {
  position: relative;
  margin: 0;
  height: 100%;
  height: 600px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.075);
}

.cariere__photo img {
  width: 100%;
  height: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.cariere__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.cariere__title {
  font-weight: 900;
  font-size: 40px;
  line-height: 1.25;
  color: var(--default-color);
  margin: 0rem 0 1rem;
}

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

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

.cariere__benefits li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-size: 1rem;
}

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

.cariere__benefits strong {
  color: var(--accent-color);
}

.cariere__ico {
  flex: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.cariere__ico i {
  font-size: 1.5rem;
}

.cariere__benefits li > div {
  flex: 1;
}

@media (max-width: 767.98px) {
  .cariere .row {
    flex-direction: column-reverse;
  }

  .cariere .col-lg-7,
  .cariere .col-lg-5 {
    width: 100%;
  }

  .cariere__text {
    text-align: center;
    margin-bottom: 2rem;
  }

  .cariere__title {
    font-size: 2rem;
  }

  .cariere__lead {
    margin-bottom: 2rem;
  }

  .cariere__benefits li {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.1rem;
    padding: 1.25rem 0;
  }

  .cariere__benefits li > div {
    flex: unset;
  }

  .cariere__ico {
    flex: unset;
  }

  .cariere__ico i {
    font-size: 2rem; 
  }

  .cariere__photo,
  .cariere__photo img {
    height: 600px;
  }
}

.cariere__contact {
  margin-top: 60px;
  background: var(--accent-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.075);
  will-change: transform;
}

.cariere__contact-intro {
  position: relative;
  padding: 2rem;
}

.cariere__contact-intro::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 75%; /* modifici aici înălțimea liniei */
  background: rgba(255, 255, 255, 0.25);
}

.cariere__contact-intro h3 {
  font-weight: 900;
  font-size: 2rem;
  margin: 0 0 0.5rem;
  color: var(--default-color);
}

.cariere__contact-intro p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cariere__methods {
  display: flex;
  gap: 1rem;
  padding: 2rem 2rem 1rem 2rem;
}

.cariere__method {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: inherit;
  background: var(--accent-color-2);
  border-radius: 10px;
  padding: .85rem 1rem;                        
  transition: background-color 0.25s ease;
}

.cariere__method:hover {
  background: var(--default-color);
}

.cariere__method-ic {
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  background: var(--default-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.cariere__method:hover .cariere__method-ic {
  background: var(--contrast-color);
  color: var(--default-color);
}

.cariere__method-ic i { 
  font-size: 1.25rem; 
}

.cariere__method-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cariere__method-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--default-color);
  line-height: 1;
  transition: color 0.25s ease;
}

.cariere__method:hover .cariere__method-label {
  color: var(--contrast-color);
}

.cariere__method-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--contrast-color);
  line-height: 1.25;
  transition: color 0.25s ease;
}

.cariere__method:hover .cariere__method-value {
  color: var(--accent-color);
}

.cariere__location {
  display: flex;
  align-items: center;
  gap: .75rem;
  width: 600px;             
  margin: 0 auto 2rem;     
  padding: .85rem 1rem;
  background: var(--accent-color-2);
  border-radius: 10px;
}

.cariere__location-btn {
  flex: 0 0 auto;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--default-color);
  color: var(--contrast-color);
  white-space: nowrap;
  transform: translateX(0);
  will-change: transform;
  transition: transform .25s ease, background-color .25s ease, color .25s ease;
}

.cariere__location-btn:hover {
  transform: translateX(-5px);
  background: var(--contrast-color);
  color: var(--default-color);
}

.cariere__location-btn i { 
  font-size: 1rem; 
}

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

  .cariere__contact .row {
    flex-direction: column;
  }

  .cariere__contact-intro {
    border-right: 0;
    border-bottom: none;
    padding: 2rem 1.5rem;
  }

  .cariere__methods {
    order: 2;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .cariere__method {
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    gap: 1rem;
  }

  .cariere__method-ic {
    flex: 0 0 3rem;
    width: 3rem;
    height: 3rem;
  }

  .cariere__method-ic i {
    font-size: 1.5rem;
  }

  .cariere__location {
    width: calc(100% - 3rem);
    margin: 0 auto 1.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }

.cariere__location-btn {
  margin-left: 0;
  width: 100%;
  justify-content: center;
  text-align: center;
}
}

/*--------------------------------------------------------------
# Banner presentation
--------------------------------------------------------------*/
.banner-promo-section {
  position: relative;
  width: 100%;
  min-height: 650px;
  margin: 0px 0;
  display: flex;
  align-items: center;
  color: #ffffff;
  background-image: url('../img/banner/ilcomserv-transporter-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 left, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.15) 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;
  margin-left: auto;
}

.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(255, 255, 255, 0.25);
  border-radius: 15px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

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

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

.trust-text {
  font-size: 15px;
  font-weight: 800;
  color: var(--contrast-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/ilcomserv-transporter-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.55) 40%,
      rgba(0, 0, 0, 0.55) 70%,
      rgba(0, 0, 0, 0.95) 100%
    );
  }

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

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

.contact-details .cd-card {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 18px 45px -25px rgba(0, 0, 0, 0.075);
}

.contact-details .cd-info {
  padding: clamp(1.5rem, 3vw, 2.75rem);
}

.contact-details .cd-info-head {
  margin-bottom: 1.75rem;
}

.contact-details .cd-info-head h3 {
  color: var(--default-color);
  font-weight: 800;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.contact-details .cd-info-head p {
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.contact-details .cd-item {
  display: flex;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.contact-details .cd-item:first-of-type { padding-top: 0; }
.contact-details .cd-item:last-of-type { border-bottom: 0; padding-bottom:0; }

.contact-details .cd-ico {
  flex: 0 0 auto;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--accent-color-2);
  color: var(--contrast-color);
  font-size: 1.25rem;
}

.contact-details .cd-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--default-color);
  margin-bottom: 0rem;
}

.contact-details .cd-value {
  color: var(--default-color);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  text-decoration: none;
  display: inline-block;
}

.contact-details .cd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-details .cd-actions .btn {
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.contact-details .cd-actions .btn i {
  font-size: 17px;
}

.contact-details .btn-cd {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact-details .btn-cd:hover { background: var(--default-color); }
.contact-details .btn-wa { background:#25d366; color:#fff; }
.contact-details .btn-wa:hover { background: var(--default-color); }

.contact-details .cd-map {
  position: relative;
  min-height: 420px;
  background: linear-gradient(135deg, #eef2f9, #dfe6f3);
  height: 100%;
}

.contact-details .cd-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  z-index: 2;
}

.contact-details .cd-consent i.bi-geo-alt-fill {
  font-size: 2.75rem;
  color: var(--accent-color-2);
  margin-bottom: 0.75rem;
}

.contact-details .cd-consent h4 {
  color: var(--default-color);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-details .cd-consent p {
  color: var(--default-color);
  font-size: 1rem;
  max-width: 550px;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.contact-details .cd-consent p a { color: var(--default-color); }
.contact-details .cd-consent .btn { border-radius: 10px; font-weight: 600; }

.cd-consent p a {
  color: #0d6efd;
  text-decoration: underline;
}

.cd-consent p a:hover {
  color: #0a58ca;
  text-decoration: underline;
}

.contact-details .cd-identity {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.4rem clamp(1.5rem, 3vw, 2.75rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 2rem 4.5rem;
}

.contact-details .cd-identity .cd-id-item .cd-id-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 0.75rem;
  opacity: 0.75;
  color: var(--default-color);
  margin-bottom: 0.1rem;
}

.contact-details .cd-identity .cd-id-item .cd-id-val {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--contrast-color);
}

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

@media (max-width: 767px) {
  .contact-details .cd-info {
    text-align: center;
    padding: 2rem 1.25rem;
  }

  .contact-details .cd-info-head {
    margin-bottom: 1.5rem;
  }

  .contact-details .cd-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.5rem 0;
  }

  .contact-details .cd-ico {
    margin: 0 auto;
  }

  .contact-details .cd-label {
    letter-spacing: 3px;
  }

  .contact-details .cd-value {
    margin-bottom: 0.75rem;
  }

  .contact-details .cd-actions {
    justify-content: center;
    align-items: center;
  }

  .contact-details .cd-actions .btn {
    justify-content: center;
  }

  .contact-details .cd-map,
  .contact-details .cd-map iframe {
    min-height: 350px;
  }

  .contact-details .cd-consent {
    padding: 0.25rem;
  }

  .contact-details .cd-consent p {
    max-width: 100%;
  }

  .contact-details .cd-identity {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .contact-details .cd-id-item {
    text-align: center;
  }
}

.contact-details-banner {
  --cdb-image: url('../img/banner/ilcomserv-transporter-contact-banner-01.webp');
  --cdb-overlay: rgba(0, 0, 0, 0.65);
  --cdb-accent: #5da2ff;
  position: relative;
  min-height: 400px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 60px;
}

.contact-details-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cdb-image);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.contact-details-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cdb-overlay);
  z-index: 1;
}

.contact-details-banner .cdb-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2.5rem 2rem;
  max-width: 720px;
}

.contact-details-banner .cdb-eyebrow {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0;
}

.contact-details-banner .cdb-title {
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.contact-details-banner .cdb-text {
  font-size: 1.15rem;
  line-height: 1.5;
  opacity: 1;
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-details-banner .cdb-slogan {
  display: inline-block;
  margin-top: 1.5rem;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-color);
  letter-spacing: 5px;
}

@media (max-width: 767px) {

  .contact-details-banner {
    min-height: 240px;
    margin-top: 40px;
    background-position: center;
  }

  .contact-details-banner .cdb-content {
    max-width: 100%;
    padding: 1.75rem 1.25rem;
    text-align: center;
  }

  .contact-details-banner .cdb-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 3px;
  }

  .contact-details-banner .cdb-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .contact-details-banner .cdb-text {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 100%;
  }

  .contact-details-banner .cdb-slogan {
    margin-top: 1rem;
    font-size: 1.1rem;
    letter-spacing: 5px;
  }
}

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

.floating_btn {
  position: fixed;
  bottom: 75px;   
  right: 25px;    
  width: 44px;
  height: 44px;
  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;
}


