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

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

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

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

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

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

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

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

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
}

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

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

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

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

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

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

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

@media (max-width: 575px) {

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

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

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

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

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

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

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

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

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

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

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.9);
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--accent-color);
    position: absolute;
    font-size: 30px;
    top: 55px;
    right: 12px;
    margin-right: 0;
    z-index: 9999;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    60% {
        opacity: 1;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slide-1 {
  background-image: url('../img/hero/ago-trans-hero-01.webp'); /* Înlocuiește cu noile imagini dacă este cazul */
}

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

@media (max-width: 991px) {
  .slide-1 { background-image: url('../img/hero/ago-trans-hero-mobile-01.webp'); }
  .slide-2 { background-image: url('../img/hero/ago-trans-hero-mobile-02.webp'); }
}

/* Premium Gradient Overlay (Negru opac stânga -> pierdut dreapta) */
.hero .hero-slider .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    rgba(10, 10, 10, 0.95) 0%, 
    rgba(10, 10, 10, 0.85) 35%, 
    rgba(10, 10, 10, 0.4) 65%, 
    rgba(10, 10, 10, 0.1) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Container Structure */
.hero .hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 80px;
}

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

/* Components Style with Soft Rounded Corners */
.hero .hero-content .badge-tag {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  padding: 6px 16px;
  border-radius: 8px; /* Margini rotunjite fin */
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: #ffffff;
}

.hero .hero-content .testimonial-box {
  display: flex;
  align-items: center; 
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 2rem;
}

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

.hero .hero-content .testimonial-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: color-mix(in srgb, #ffffff, transparent 20%);
  text-transform: uppercase;
  margin: 0;
}

.hero .hero-description {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 0 2.5rem 0;
  line-height: 1.7;
  color: color-mix(in srgb, #ffffff, transparent 25%);
}

/* Premium Buttons Layout & Rounded Corners */
.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 3.5rem;
}

.hero .btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: var(--accent-color);
  color: #000000;
  border: 2px solid var(--accent-color);
  border-radius: 12px; /* Margini rotunjite butoane */
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero .btn-premium.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border-color: color-mix(in srgb, #ffffff, transparent 60%);
}

.hero .btn-premium:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hero .btn-premium.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #000000;
}

/* Card Modern de Statistici cu Colțuri Rotunjite */
.hero .hero-bottom-info {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 35px;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px; /* Margini rotunjite card */
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

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

.hero .info-item .label {
  display: block;
  font-size: 0.8rem;
  color: color-mix(in srgb, #ffffff, transparent 50%);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.hero .info-item .value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-color);
  letter-spacing: 0.5px;
}

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

/* Responsivitate Mobile & Tablete */
@media (max-width: 991px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero .hero-slider .slide-overlay {
    background: linear-gradient(180deg, 
      rgba(10, 10, 10, 0.95) 0%, 
      rgba(10, 10, 10, 0.85) 60%, 
      rgba(10, 10, 10, 0.7) 100%
    );
  }

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

  .hero .hero-content h1 { font-size: 2.8rem; }
  .hero .hero-content .testimonial-box { justify-content: center; }
  .hero .hero-description { margin: 0 auto 2rem auto; }
  .hero .hero-actions { justify-content: center; }
  
  .hero .btn-premium {
    width: 100%;
    max-width: 280px;
  }

  .hero .hero-bottom-info {
    display: flex;
    width: 100%;
    justify-content: space-around;
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content h1 { font-size: 2.2rem; }
  
  .hero .hero-bottom-info {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    border-radius: 16px;
  }

  .hero .info-item { text-align: center; }
  .hero .hero-bottom-info .divider {
    width: 40%;
    height: 1px;
    margin: 0 auto;
  }
}


/*--------------------------------------------------------------
# About Section - DESPRE NOI
--------------------------------------------------------------*/
/* Custom variables fallback - adapt if your system uses others */
:root {
  --accent-color: #ffcc00; /* Înlocuiește cu culoarea ta de accent dacă diferă */
  --default-color: #111111;
  --card-bg-light: rgba(255, 255, 255, 0.6);
  --card-border: rgba(0, 0, 0, 0.05);
}

.about-home {
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.01) 100%);
}

.main-about-row {
  margin-bottom: 5rem;
}

/* --- ANIMATED HEADER CARD --- */
.premium-heading-card {
  position: relative;
  background: var(--card-bg-light);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  margin-bottom: 2.5rem;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.premium-heading-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.07);
}

/* Glowing decorative dot inside header card */
.premium-heading-card .card-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 70%) 0%, transparent 70%);
  pointer-events: none;
}

/* --- TEXT GRADIENT ANIMATION --- */
.animated-gradient-text {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.3;
  margin: 0;
  background: linear-gradient(
    to right,
    var(--default-color) 0%,
    color-mix(in srgb, var(--default-color), transparent 40%) 25%,
    var(--default-color) 50%,
    color-mix(in srgb, var(--default-color), transparent 40%) 75%,
    var(--default-color) 100%
  );
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shineText 6s linear infinite;
}

@keyframes shineText {
  to {
    background-position: 200% center;
  }
}

.about-description {
  font-size: 17px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
  padding-left: 0.5rem;
}

/* --- PREMIUM IMAGE STACK (RIGHT SIDE) --- */
.about-images-new {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-images-new .image-wrapper {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.3s ease;
}

.about-images-new .premium-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-images-new .main-img-box {
  top: 0;
  left: 0;
  width: 85%;
  height: 70%;
  z-index: 1;
}

.about-images-new .overlay-img-box {
  bottom: 0;
  right: 0;
  width: 65%;
  height: 50%;
  z-index: 2;
  border: 4px solid #ffffff;
}

/* Image Hover Dynamics */
.about-images-new:hover .main-img-box {
  transform: translate(-10px, -10px) scale(1.02);
}

.about-images-new:hover .overlay-img-box {
  transform: translate(10px, 10px) scale(1.03);
}

.about-images-new .image-wrapper:hover .premium-img {
  transform: scale(1.05);
}

/* --- 4-COLUMN PREMIUM FEATURES BOTTOM --- */
.features-premium-grid {
  margin-top: 2rem;
}

.feature-card-premium {
  background: #ffffff;
  border: 1px solid var(--card-border);
  padding: 2rem;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: var(--default-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: transform 0.3s ease;
}

.feature-card-premium:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.feature-card-body h4 {
  font-size: 19px;
  font-weight: 800;
  color: var(--default-color);
  margin-bottom: 0.5rem;
}

.feature-card-body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

/* --- ACTIONS BUTTONS --- */
.about-actions {
  display: flex;
  gap: 20px;
  margin-top: 2.5rem;
  padding-left: 0.5rem;
}

.about-actions .btn-discover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px; 
  padding: 12px 24px;
  background-color: var(--accent-color);
  color: var(--default-color);
  text-decoration: none;
  border-radius: 16px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--accent-color);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-actions .btn-discover:hover {
  background-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.about-actions .btn-discover i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; 
  height: 32px;
  border-radius: 50%;
  background-color: #ffffff;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* --- MEDIA QUERIES (RESPONSIVENESS) --- */
@media (max-width: 1200px) {
  .animated-gradient-text {
    font-size: 2.1rem;
  }
}

@media (max-width: 992px) {
  .main-about-row {
    flex-direction: column !important; /* Forces text to stay top, images bottom on tablet/mobile */
    gap: 3rem;
  }
  
  .about-images-new {
    height: 400px;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }

  .premium-heading-card {
    padding: 1.75rem;
  }
}

@media (max-width: 768px) {
  .about-home {
    padding: 60px 0;
  }

  .animated-gradient-text {
    font-size: 1.8rem;
  }

  .about-actions {
    flex-direction: column;
    gap: 12px;
  }

  .about-actions .btn-discover {
    width: 100%;
  }

  .feature-card-premium {
    text-align: center;
    align-items: center;
    padding: 1.75rem;
  }
}

/* --- SECTIUNE ISTORIC --- */
.history-section {
  padding: 100px 0;
  background-color: #fafafa;
  overflow: hidden;
}

/* Stilizare descriere sub titlu */
.section-subtitle {
  max-width: 750px;
  margin: 1.5rem auto 0;
  font-size: 17px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color, #111111), transparent 25%);
}

.timeline-interactive-wrapper {
  position: relative;
  margin-top: 4rem;
}

/* Truck Box Styling */
.timeline-truck-box {
  position: relative;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0,0,0,0.04);
  transition: filter 1s ease-in-out, 
              opacity 1s ease-in-out, 
              transform 1s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s ease;
}

.timeline-truck-box .truck-img-container {
  width: 100%;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.timeline-truck-box .history-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-truck-box .year-badge {
  position: absolute;
  top: -30px;
  left: 30px;
  background: #111111;
  color: #fff;
  padding: 6px 20px;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  z-index: 10;
}

.timeline-truck-box .year-badge.premium-badge {
  background: var(--accent-color, #ffcc00);
  color: #111111;
}

.timeline-truck-box .truck-label {
  font-weight: 700;
  font-size: 1.1rem;
  color: #111111;
  text-align: center;
}

/* STĂRI ANIMAȚIE CICLICĂ */
.left-box.active-start {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}
.right-box.waiting-state {
  filter: grayscale(100%);
  opacity: 0.4;
  transform: scale(0.96);
}

.left-box.faded-past {
  filter: grayscale(100%);
  opacity: 0.4;
  transform: scale(0.96);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}
.right-box.active-present {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* --- LOGO CENTER ROW - NOUL CARD DREPTUNGHIULAR --- */
.logo-timeline-container {
  position: relative;
  display: inline-block;
  z-index: 5;
}

.premium-rect-card {
  position: relative;
  width: 220px;       /* Formă dreptunghiulară bine definită */
  height: 120px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Subtilă reflexie premium pe sticlă */
.card-glass-reflection {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 60%);
  z-index: 3;
  pointer-events: none;
}

/* Logo Setup (White Logo Base) */
.logo-base-gray {
  width: 90%;
  height: auto;
  max-height: 75px;
  object-fit: contain;
  filter: brightness(0.15); /* Îl face aproape negru/gri închis la început */
  transition: filter 1s ease-in-out;
  z-index: 2;
}

/* Loading overlay fluid de jos în sus */
.logo-fill-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%; 
  background: #111111; 
  z-index: 1;
  transition: height 2s cubic-bezier(0.42, 0, 0.58, 1);
}

/* Trigerare stări din JS pentru dreptunghi */
.logo-timeline-container.animating .logo-fill-overlay {
  height: 100%;
}

.logo-timeline-container.completed .premium-rect-card {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.logo-timeline-container.completed .logo-base-gray {
  filter: brightness(1) invert(0); /* Logo-ul redevine alb pur strălucitor când fundalul e complet negru */
}

/* --- CARD LANDSCAPE PREMIUM --- */
.premium-landscape-card {
  position: relative;
  width: 100%;
  min-height: 400px;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
}

.asymmetric-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, 
    #000000 0%, 
    rgba(0, 0, 0, 0.95) 35%, 
    rgba(0, 0, 0, 0.7) 65%, 
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

.landscape-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem;
}

.content-left-heavy .card-tag {
  display: inline-block;
  background: var(--accent-color, #ffcc00);
  color: #111111;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.content-left-heavy h3 {
  color: #ffffff;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.content-left-heavy p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.link-premium-arrow {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.link-premium-arrow i {
  font-size: 1.5rem;
  color: var(--accent-color, #ffcc00);
  transition: transform 0.3s ease;
}

.link-premium-arrow:hover {
  color: var(--accent-color, #ffcc00);
}

.link-premium-arrow:hover i {
  transform: translateX(6px);
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
  .logo-timeline-container {
    margin: 3rem 0;
  }
  .premium-rect-card {
    width: 200px;
    height: 110px;
  }
  .landscape-card-content {
    padding: 2.5rem;
  }
  .content-left-heavy h3 {
    font-size: 1.5rem;
  }
  .asymmetric-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.75) 100%);
  }
}



/* --- SECȚIUNE PROASPĂTĂ - STIL SCREENSHOT --- */
.routes-showcase-section {
  padding: 90px 0;
  background-color: #f8faff;
}

/* Master Card - Fundal alb curat, margini rotunjite și umbră fină generală */
.master-landscape-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  display: flex;
  min-height: 580px;
  overflow: hidden;
}

/* Jumătatea stângă: Imaginea cu camion pierdută soft spre dreapta */
.card-left-image-side {
  width: 35%;
  background-size: cover;
  background-position: center;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
}

/* Jumătatea dreaptă: Zona de conținut */
.card-right-content-side {
  width: 65%;
  padding: 3.5rem 3rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Top Badge ("Ruta 1" în screenshot) */
.top-route-badge {
  position: absolute;
  top: 22px;
  background: #007bff;
  color: #ffffff;
  padding: 8px 24px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Container pastile țări */
.countries-pills-container {
  width: 100%;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pills-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Pastila individuală (Copia fidelă a stilului din screenshot dar cu steag) */
.country-pill {
  background: #ffffff;
  border: 1px solid #ced4da;
  border-radius: 12px;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  
  /* Starea inițială cerută: semitransparentă */
  opacity: 0.3;
  transform: scale(0.97);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.country-pill .flag-icon {
  width: 27px;
  height: 24depx;
  display: inline-block;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.country-pill .flag-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- STAREA ANIMALĂ ACTIVĂ PE PASTILE --- */
.country-pill.pill-active {
  opacity: 1;
  transform: scale(1.05);
  border-color: #007bff;
  background: #007bff;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
}

/* Label intermediar */
.preluare-label-wrap {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- CARD LOGO CU TRICOLORUL ROMÂNIEI (Jos în centru) --- */
.tricolor-logo-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: auto;

}

.tricolor-card {
  position: relative;
  width: 260px;
  height: 75px;
  background: #111111; /* Fundal închis premium să scoată logo-ul în evidență */
  border-radius: 14px;
  padding: 2px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  opacity: 0.4;
  transform: scale(0.98);
  transition: all 0.7s ease;
}

.tricolor-inner {
  background: #111111;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
  z-index: 3;
}

.logo-ro-fluid {
  max-width: 80%;
  max-height: 45px;
  object-fit: contain;
  filter: brightness(0.6);
  transition: filter 0.5s ease;
}

/* Sistemul de lumini asimetrice Tricolore */
.ro-line {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.ro-line.blue { background: radial-gradient(circle at left, #002B7F 0%, transparent 70%); }
.ro-line.yellow { background: radial-gradient(circle at center, #FCD116 0%, transparent 70%); }
.ro-line.red { background: radial-gradient(circle at right, #CE1126 0%, transparent 70%); }

/* --- STARE ACTIVĂ LOGO TRICOLOR --- */
.tricolor-card.pill-active {
  opacity: 1;
  transform: scale(1.04);
  /* Efect neon de tip tricolor reflectat în exterior */
  box-shadow: 0 15px 35px rgba(252, 209, 22, 0.15), 0 0 15px rgba(206, 11, 38, 0.1);
}

.tricolor-card.pill-active .ro-line {
  opacity: 1;
}

.tricolor-card.pill-active .logo-ro-fluid {
  filter: brightness(1); /* Logo strălucitor */
}

/* Responsive Setup */
@media (max-width: 991px) {
  .master-landscape-card {
    flex-direction: column;
  }
  .card-left-image-side {
    width: 100%;
    height: 200px;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
  }
  .card-right-content-side {
    width: 100%;
    padding: 3rem 1.5rem 2rem 1.5rem;
gap: 12px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.services2 {
  margin-top: 60px;
}

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

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

.services2 .service2-card .service2-img {
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.services3 {
  margin-top: 60px;
}

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

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

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

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

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

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

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

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

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

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

.services4 {  
  margin-top: 60px; 
}

.services4-card {  
  border-radius: 15px; 
  background: color-mix(in srgb, var(--accent-color), transparent 75%); 
  box-shadow: 0 12px 36px color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 45px; 
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width:767px) {

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .transport-banner-hero {
    padding: 60px 0;
    overflow: hidden;
  }

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

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

  .transport-eyebrow-banner {
    letter-spacing: 5px;
    margin-bottom: 0.5rem;
    text-align: center;
  }

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

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

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

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

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

/*--------------------------------------------------------------
# Why Us Section - AGO-TRANS BOLOHAN
--------------------------------------------------------------*/
.why-us {
  padding: 75px 0;
}

/* Hero Section Restyling (Poza la dreapta, text stânga pe desktop) */
@media (min-width: 992px) {
  .why-us .hero-row {
    flex-direction: row; /* Normal flow: Text stânga, Poză dreapta */
  }
}

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

.why-us .hero-content h2 {
  font-size: 2.5rem;
  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: 2.2rem;
  font-weight: 900;
  color: var(--default-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

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

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

.why-us .hero-visual .primary-image-container .experience-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: color-mix(in srgb, var(--default-color), transparent 30%);
  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.5rem;
  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;
}

/*--------------------------------------------------------------
# New Benefits Section (Imagine Portrait Stânga + Carduri Animate Dreapta)
--------------------------------------------------------------*/
.benefits-section-new {
  margin: 80px 0 60px;
}

.benefits-section-new h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--default-color);
}

/* Imagine tip Portrait */
.portrait-image-wrapper {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.portrait-img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portrait-image-wrapper:hover .portrait-img {
  transform: scale(1.03);
}

/* Cardurile Noi Structurate Vertical */
.benefits-animated-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-card-new {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 2rem;
  background: color-mix(in srgb, var(--default-color), transparent 93%);
  border-radius: 20px;
  border-left: 5px solid #222222; /* Începe cu negru/gri închis */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.benefit-card-new .benefit-icon-new {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background: #222222; /* Începe cu fundal negru */
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.benefit-card-new .benefit-icon-new i {
  font-size: 1.4rem;
  color: #ffffff;
  transition: all 0.4s ease;
}

.benefit-card-new .benefit-content-new h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--default-color);
}

.benefit-card-new .benefit-content-new p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 0;
}

/* --- EFECTUL HOVER MANUAL (Când utilizatorul ține mouse-ul pe card) --- */
.benefit-card-new:hover {
  transform: translateX(10px) !important;
  border-left-color: var(--accent-color) !important;
  background: color-mix(in srgb, var(--default-color), transparent 90%) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

.benefit-card-new:hover .benefit-icon-new {
  background: var(--accent-color) !important;
}

.benefit-card-new:hover .benefit-icon-new i {
  color: var(--default-color) !important;
}

/* --- ANIMAȚIA AUTOMATĂ TIP TIMELINE (12 secunde ciclu complet) --- */
@keyframes autoActiveCard {
  0%, 20% {
    transform: translateX(5px);
    border-left-color: var(--accent-color);
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  }
  0%, 20% {
    /* Schimbare iconiță în Portocaliu */
    --current-icon-bg: var(--accent-color);
  }
  25%, 100% {
    transform: translateX(0);
    border-left-color: #222222;
    background: color-mix(in srgb, var(--default-color), transparent 93%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    --current-icon-bg: #222222;
  }
}

/* Aplicarea animației pe rând pentru fiecare card */
.card-anim-1 { animation: autoActiveCard 12s infinite 0s ease-in-out; }
.card-anim-2 { animation: autoActiveCard 12s infinite 3s ease-in-out; }
.card-anim-3 { animation: autoActiveCard 12s infinite 6s ease-in-out; }
.card-anim-4 { animation: autoActiveCard 12s infinite 9s ease-in-out; }

/* Legătura dintre animație și elementele interne ale cardului */
.card-anim-1 animation-name, .card-anim-1 { --anim-delay: 0s; }
.card-anim-2 { --anim-delay: 3s; }
.card-anim-3 { --anim-delay: 6s; }
.card-anim-4 { --anim-delay: 9s; }

@keyframes iconBgAnim {
  0%, 20% { background: var(--accent-color); color: var(--default-color); }
  25%, 100% { background: #222222; color: #ffffff; }
}
.card-anim-1 .benefit-icon-new { animation: iconBgAnim 12s infinite 0s ease-in-out; }
.card-anim-2 .benefit-icon-new { animation: iconBgAnim 12s infinite 3s ease-in-out; }
.card-anim-3 .benefit-icon-new { animation: iconBgAnim 12s infinite 6s ease-in-out; }
.card-anim-4 .benefit-icon-new { animation: iconBgAnim 12s infinite 9s ease-in-out; }

@keyframes iconColorAnim {
  0%, 20% { color: var(--default-color); }
  25%, 100% { color: #ffffff; }
}
.card-anim-1 .benefit-icon-new i { animation: iconColorAnim 12s infinite 0s ease-in-out; }
.card-anim-2 .benefit-icon-new i { animation: iconColorAnim 12s infinite 3s ease-in-out; }
.card-anim-3 .benefit-icon-new i { animation: iconColorAnim 12s infinite 6s ease-in-out; }
.card-anim-4 .benefit-icon-new i { animation: iconColorAnim 12s infinite 9s ease-in-out; }

/* Oprim animațiile automate dacă utilizatorul pune mouse-ul pe containerul mare pentru a nu deranja navigarea */
.benefits-animated-grid:hover .benefit-card-new,
.benefits-animated-grid:hover .benefit-icon-new,
.benefits-animated-grid:hover .benefit-icon-new i {
  animation: none !important;
}

/*--------------------------------------------------------------
# Why Preface Section (Banner-ul mutat jos)
--------------------------------------------------------------*/
.why-preface {
  margin: 60px 0 0px;
}

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

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

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

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

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

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

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

/* Responsive Media Queries */
@media (max-width: 991px) {
  .why-us .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  .why-us .hero-badge {
    margin: 0 auto 1rem;
  }
  .why-us .stats-grid {
    justify-content: center;
  }
  .portrait-img {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .why-us .hero-content h2 { font-size: 1.85rem; }
  .why-us .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .why-us .stats-grid .stat-item { text-align: center; }
  .why-us .hero-visual .primary-image-container img { height: 285px; }
  
  .benefit-card-new {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .benefit-card-new .benefit-icon-new {
    margin: 0 auto;
  }
  
  .why-preface .preface-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    width: 100%;
    gap: 25px;
  }
  .why-preface .preface-divider { display: none; }
}
/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  padding: 90px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--default-color);
  overflow: hidden;
}

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

.call-to-action .cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(0.7) contrast(1.1) brightness(0.85);
}

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

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

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

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

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

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

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

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

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

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

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

.call-to-action .btn-red {
  border-color: rgba(174,13,13,0.5);
}

.call-to-action .btn-green {
  border-color: rgba(37,211,102,0.5);
}

.call-to-action .btn-blue {
  border-color: rgba(0,123,255,0.5);
}

.call-to-action .btn-orange {
  border-color: rgba(255,140,0,0.5);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .call-to-action .cta-img-desktop {
    display: none;
  }

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

/*--------------------------------------------------------------
# Fleet Section - AGO-TRANS BOLOHAN
--------------------------------------------------------------*/
.fleet-gallery {
  padding: 75px 0;
}

/* 1. Noul Fleet Intro (Design Premium Dark) */
.fleet-intro-modern {
  background: var(--default-color); /* Fundal închis fluid și premium */
  border-radius: 24px;
  padding: 4rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  margin-bottom: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), #ffffff 5%);
  overflow: hidden;
}

.fleet-modern-eyebrow {
  display: inline-block;
  color: var(--accent-color); /* Accentul portocaliu */
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.fleet-modern-title {
  color: var(--contrast-color); /* Text alb/contrast */
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.fleet-modern-text {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.fleet-modern-text strong {
  color: var(--accent-color);
  font-weight: 700;
}

/* Stat-boxuri inline elegante */
.fleet-modern-stats-grid {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.modern-stat-box {
  background: color-mix(in srgb, var(--contrast-color), transparent 95%);
  padding: 1rem 1.5rem;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 90%);
  flex: 1;
  min-width: 140px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.modern-stat-box:hover {
  transform: translateY(-4px);
  border-color: var(--accent-color);
}

.stat-box-num {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-box-lbl {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Imaginea din dreapta intro-ului */
.fleet-modern-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.fleet-modern-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-modern-image-wrapper:hover .fleet-modern-img {
  transform: scale(1.04);
}

.fleet-badge-floating {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fleet-badge-floating i {
  color: #28a745;
}

/* 2. Noul Spec Card (Semiremorci) Structură Ultra Premium */
.fleet-modern-spec-card {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 24px;
  padding: 3.5rem;
  margin: 70px 0 50px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
}

.spec-card-layout-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  padding-bottom: 2.5rem;
}

.spec-card-info {
  flex: 1;
}

.spec-card-badge {
  display: inline-block;
  color: var(--default-color);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
  opacity: 0.7;
}

.spec-card-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--default-color);
  margin-bottom: 15px;
}

.spec-card-text {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin: 0;
}

/* Secțiunea din dreapta a cardului tehnic */
.spec-card-stats-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex-shrink: 0;
  width: 280px;
}

.spec-stat-item-modern {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #ffffff;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
  transition: transform 0.3s ease;
}

.spec-stat-item-modern:hover {
  transform: translateX(-5px);
  border-color: var(--accent-color);
}

.spec-stat-icon-container {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spec-stat-icon-container i {
  color: var(--default-color);
  font-size: 1.25rem;
}

.spec-stat-data {
  display: flex;
  flex-direction: column;
}

.spec-stat-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--default-color);
  line-height: 1.1;
}

.spec-stat-lbl {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

/* Tag-uri listate orizontal jos */
.spec-card-tags-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}

.spec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1.2rem;
  background: color-mix(in srgb, var(--default-color), transparent 93%);
  color: var(--default-color);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.spec-tag i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

/* 3. Bento Gallery Grid Style (Rămâne neschimbat conform cerinței) */
.bento2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 195px;
  gap: 15px;
  grid-auto-flow: dense;
}

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

.bento2-item.tall   { grid-row: span 2; }
.bento2-item.wide   { grid-column: span 2; }
.bento2-item.big    { grid-row: span 2; grid-column: span 2; }
.bento2-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  transform-origin: center center;
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
  will-change: transform;
}

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

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

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

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

/* Responsive Media Queries */
@media (max-width: 1199px) {
  .fleet-intro-modern { padding: 3rem; }
  .spec-card-layout-main { flex-direction: column; gap: 2.5rem; }
  .spec-card-stats-wrapper { width: 100%; flex-direction: row; gap: 1rem; }
  .spec-stat-item-modern { flex: 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: 768px) {
  .fleet-intro-modern { padding: 2rem 1.5rem; text-align: center; }
  .fleet-modern-title { font-size: 2rem; }
  .fleet-modern-stats-grid { justify-content: center; }
  .fleet-modern-img { height: 260px; }
  
  .fleet-modern-spec-card { padding: 2rem 1.5rem; text-align: center; }
  .spec-card-title { font-size: 1.75rem; }
  .spec-card-stats-wrapper { flex-direction: column; }
  .spec-card-tags-row { justify-content: center; }
  .spec-tag { width: 100%; justify-content: center; }
}

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


/*--------------------------------------------------------------
# TAPA SECURITY
--------------------------------------------------------------*/

.tapa-security{
    padding:90px 0;
}

.tapa-image img{
    width:100%;
    border-radius:22px;
    box-shadow:0 20px 55px rgba(0,0,0,.12);
}

.tapa-badge{
    display:inline-block;
    padding:10px 24px;
    border-radius:50px;
    background:var(--accent-color);
    color:#fff;
    font-size:.85rem;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.tapa-security h2{
    font-size:2.3rem;
    font-weight:800;
    line-height:1.2;
    color:#000;
    margin-bottom:25px;
}

.tapa-description{
    font-size:17px;
    line-height:1.8;
    color:#555;
    margin-bottom:20px;
}

.tapa-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:35px;

}

.tapa-card{

    display:flex;

    align-items:center;

    gap:16px;

    padding:18px 22px;

    background:#fff;

    border-radius:18px;

    border-left:5px solid var(--accent-color);

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:.35s ease;

}

.tapa-card:hover{

    transform:translateY(-8px);

    border-left-color:#000;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

    background:#fff;

}

.tapa-card i{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--accent-color);

    color:#fff;

    border-radius:15px;

    font-size:1.35rem;

    transition:.35s;

}

.tapa-card:hover i{

    transform:scale(1.12) rotate(-5deg);

}

.tapa-card span{

    font-size:15px;

    font-weight:700;

    color:#000;

    line-height:1.5;

}

@media(max-width:991px){

.tapa-security{
padding:70px 0;
}

.tapa-security h2{
font-size:1.9rem;
text-align:center;
}

.tapa-badge{
display:table;
margin:0 auto 20px;
}

.tapa-description{
text-align:center;
}

.tapa-grid{
grid-template-columns:1fr;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .faq .faq-item .faq-content .content-inner p {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# FAQ Side Image
--------------------------------------------------------------*/

.faq .faq-side-image{
    position: sticky;
    top:120px;
}

.faq .faq-side-image img{
    width:100%;
    height:720px;
    object-fit:cover;
    border-radius:28px;
    display:block;

    box-shadow:
    0 25px 60px rgba(0,0,0,.15);

    transition:.45s;
}

.faq .faq-side-image img:hover{
    transform:translateY(-8px);
    box-shadow:
    0 35px 80px rgba(0,0,0,.22);
}

.faq .faq-accordion{
    gap:18px;
}

.faq .faq-item{
    max-width:100%;
}

@media(max-width:991px){

.faq .faq-side-image{
    position:relative;
    top:auto;
    margin-top:35px;
}

.faq .faq-side-image img{
    height:420px;
}

}

@media(max-width:768px){

.faq .faq-side-image{
    display:none;
}

}


/*--------------------------------------------------------------
# TAPA PREMIUM SECTION
--------------------------------------------------------------*/

.tapa-premium{
    padding:80px 0;
}

.tapa-premium .tapa-hero-image{
    overflow:hidden;
    border-radius:28px;
    margin-bottom:65px;
    box-shadow:0 30px 70px rgba(0,0,0,.15);
}

.tapa-premium .tapa-hero-image img{
    width:100%;
    height:460px;
    object-fit:cover;
    display:block;
    transition:.7s;
}

.tapa-premium .tapa-hero-image:hover img{
    transform:scale(1.04);
}

.tapa-content{
    padding-right:35px;
}

.tapa-badge{

    display:inline-block;

    background:var(--accent-color);

    color:var(--default-color);

    padding:10px 22px;

    border-radius:40px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

}

.tapa-content h2{

    font-size:2.6rem;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;
 color:#000;

}

.tapa-content h2 span{

    color:var(--accent-color);

}

.tapa-content .lead{

    font-size:19px;

    line-height:1.8;

    font-weight:500;

    margin-bottom:18px;

}

.tapa-content p{

    font-size:17px;

    line-height:1.8;

    color:color-mix(in srgb,var(--default-color),transparent 8%);

}



/* FEATURES */

.tapa-feature{

    display:flex;

    gap:18px;

    align-items:flex-start;

    padding:25px;

    border-radius:18px;

    background:#fff;

    height:100%;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.tapa-feature:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.tapa-feature i{

    width:62px;

    height:62px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

    background:var(--accent-color);

    color:#000;

    font-size:25px;

    flex-shrink:0;

}

.tapa-feature h4{

    font-size:20px;

    font-weight:700;
 color:#000;
    margin-bottom:8px;

}

.tapa-feature p{

    font-size:15px;

    margin:0;

    line-height:1.7;

}



/* RIGHT */

.tapa-side{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.certificate-card{

    background:#fff;

    border-radius:24px;

    padding:18px;

    box-shadow:0 20px 55px rgba(0,0,0,.08);

}

.certificate-card img{

    width:100%;

    border-radius:16px;

    display:block;

}



/* LOGOS */

.logos-wrapper{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.logo-card{

    background:#fff;

    border-radius:22px;

    padding:25px;

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:135px;

    box-shadow:0 15px 45px rgba(0,0,0,.07);

    transition:.35s;

}

.logo-card:hover{

    transform:translateY(-6px);

    box-shadow:0 25px 55px rgba(0,0,0,.10);

}

.logo-card img{

    max-width:90%;

    max-height:75px;

    object-fit:contain;

}



/* Responsive */

@media(max-width:991px){

.tapa-content{

padding-right:0;

margin-bottom:45px;

}

.tapa-premium .tapa-hero-image img{

height:320px;

}

}

@media(max-width:768px){

.tapa-premium{

padding:70px 0;

}

.tapa-content h2{

font-size:2rem;

}

.tapa-content .lead{

font-size:17px;

}

.tapa-feature{

padding:20px;

}

.tapa-feature i{

width:55px;

height:55px;

font-size:22px;

}

.logo-card{

min-height:110px;

padding:20px;

}

}

@media(max-width:576px){

.tapa-premium .tapa-hero-image{

margin-bottom:40px;

border-radius:22px;

}

.tapa-premium .tapa-hero-image img{

height:230px;

}

.tapa-content h2{

font-size:1.75rem;

}

.tapa-content p{

font-size:15px;

}

.tapa-feature{

flex-direction:column;

text-align:center;

}

.tapa-feature i{

margin:auto;

}

.logo-card{

padding:18px;

}

.logo-card img{

max-height:60px;

}

}
/*--------------------------------------------------------------
# Banner Presentation - AGO-TRANS MODERN STYLE
--------------------------------------------------------------*/
.banner-promo-section.ago-banner-layout {
  position: relative;
  width: 100%;
  min-height: 700px; /* Înălțime considerabil mai mare pentru impact premium */
  margin: 0;
  display: flex;
  align-items: center;
  color: #ffffff;
  background-image: url('../img/banner/ago-trans-banner-02.webp');
  background-size: cover;
  background-position: center left; /* Fixează atenția pe camionul din stânga */
  overflow: hidden;
  padding: 80px 0;
}

/* Overlay Inversat: Transparent în stânga, semi-transparent spre dreapta */
.banner-promo-section.ago-banner-layout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    to right, 
    rgba(0, 0, 0, 0.05) 0%, 
    rgba(0, 0, 0, 0.45) 45%, 
    rgba(15, 23, 42, 0.92) 75%, 
    rgba(15, 23, 42, 0.98) 100%
  );
}

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

/* Containerul din dreapta pentru conținut - Aliniat complet pe Centru în zona sa */
.banner-premium-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centrează elementele pe orizontală în interiorul coloanei */
  text-align: center;  /* Centrează textul din interior */
  gap: 28px;
  padding-left: 20px;
}

/* Noul Badge Asimetric de Experiență - Centrat cu reflexii moderne */
.banner-experience-tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 24px;
  border-radius: 50px;
  width: fit-content;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.banner-experience-tag .exp-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-color); /* Portocaliu specific */
  line-height: 1;
  text-shadow: 0 0 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.banner-experience-tag .exp-text {
  display: flex;
  flex-direction: column;
  text-align: left; /* Păstrează textul mic din badge aliniat frumos la stânga față de număr */
}

.banner-experience-tag .exp-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ffffff;
}

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

/* Titlu Principal Elegant + Accent Modern Sub El */
.banner-main-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin: 5px 0;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  position: relative;
  padding-bottom: 15px;
}

/* Linie decorativă subțire, centrată, sub titlu */
.banner-main-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

/* Paragraf text curat */
.banner-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px; /* Îngustează ușor blocul pentru o așezare mai estetică la centrare */
}

.banner-lead-text {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  margin: 0;
}

.banner-sub-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* Cardul Plutitor AGO-TRANS - Modern Glassmorphism */
.ago-trust-card {
  margin-top: 10px;
  width: 100%;
  max-width: 540px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1); 
  border-radius: 24px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.ago-trust-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.ago-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center; /* Centrează elementele din interiorul cardului */
  padding: 24px 32px;
  gap: 24px;
}

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

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

.ago-trust-message {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.4;
  text-align: left; /* Menține textul legal/branding aliniat stânga lângă logo */
}

/* Responsive Media Queries adaptate */
@media (max-width: 1200px) {
  .banner-main-title { font-size: 2.2rem; }
}

@media (max-width: 991px) {
  /* Modificare unică a gradientului pe tablete, orientat pe verticală pentru a acoperi textul centrat */
  .banner-promo-section.ago-banner-layout::before {
    background: linear-gradient(
      to top,
      rgba(15, 23, 42, 0.98) 0%,
      rgba(15, 23, 42, 0.85) 60%,
      rgba(0, 0, 0, 0.3) 100%
    );
  }
  .banner-premium-content {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .banner-promo-section.ago-banner-layout {
    min-height: auto;
    padding: 60px 0;
    background-position: center;
  }
  
  .banner-main-title { 
    font-size: 1.85rem; 
  }

  .ago-trust-inner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }

  .ago-trust-divider {
    width: 60px;
    height: 1px;
  }

  .ago-trust-message {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Contact Section - AGO-TRANS BOLOHAN STYLE
--------------------------------------------------------------*/
.contact-section {
  padding: 80px 0;
  background-color: transparent;
}

.cardx {
  background: color-mix(in srgb, var(--default-color), transparent 93%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

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

.card-head .pill {
  width: 48px; 
  height: 48px; 
  flex: 0 0 48px;
  border-radius: 14px; 
  display: grid; 
  place-items: center;
  background: var(--default-color); 
  color: var(--accent-color); 
  font-size: 1.35rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.c-item {
  display: flex; 
  align-items: center; 
  gap: 1.1rem;
  padding: 1rem; 
  border-radius: 16px;
  text-decoration: none; 
  color: var(--default-color);
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.c-item .ico {
  width: 42px; 
  height: 42px; 
  flex: 0 0 42px;
  border-radius: 12px; 
  display: grid; 
  place-items: center;
  background: #ffffff; 
  color: var(--default-color); 
  font-size: 1.2rem;
  transition: all 0.25s ease;
}

.c-item .k {
  display: block; 
  font-size: 0.72rem; 
  font-weight: 700;
  letter-spacing: 1.2px; 
  text-transform: uppercase; 
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2px;
}

.c-item .v { 
  font-size: 15px;
  font-weight: 600; 
  line-height: 1.4; 
  word-break: break-word;
}

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

.c-item .actions a {
  color: var(--default-color);
  text-decoration: none;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.25s ease;
}

.c-item .actions a:hover {
  transform: scale(1.15);
  background: var(--default-color);
  color: var(--accent-color) !important;
}

.c-item:hover { 
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.id-list { margin: 0; }

.id-row {
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 1rem;
  padding: .95rem 1.2rem; 
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%); 
  margin-bottom: .75rem;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

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

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

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

.id-row dd { 
  margin: 0; 
  font-size: 15px;
  font-weight: 700; 
  line-height: 1.4;  
  text-align: right; 
  color: var(--default-color);
}

/*--------------------------------------------------------------
# SINCRONIZARE ELEMENTE DRÈAPTA (HARTĂ MICĂ & IMAGINE)
--------------------------------------------------------------*/
@media (min-width: 992px) {
  .match-height-row {
    display: flex;
    align-items: stretch;
  }
  .left-contact-column, .right-media-column {
    display: flex;
    flex-direction: column;
  }
  .map-wrapper-card, .map-sub-photo-card {
    height: 0; /* Forțează Flexbox-ul să împartă spațiul rămas în mod egal */
  }
}

/* Stil Modul Hartă Redus */
.map-wrapper-card {
  position: relative;
  width: 100%;
  min-height: 260px; /* Înălțime redusă, compactă */
  background: #10172a;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-container-inner, .map-container-inner iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.map-container-inner iframe { border: 0; display: block; }

/* Overlay GDPR */
.map-gdpr-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.map-gdpr-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gdpr-content { text-align: center; max-width: 340px; color: #ffffff; }

.gdpr-icon { font-size: 2.2rem; color: var(--accent-color); margin-bottom: 0.5rem; }

.gdpr-content h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.4rem; }

.gdpr-content p { font-size: 13px; color: #94a3b8; line-height: 1.5; margin-bottom: 1.2rem; }

.btn-gdpr-accept {
  background: var(--accent-color);
  color: var(--default-color);
  border: none;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.75rem 1.3rem;
  border-radius: 10px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-gdpr-accept:hover { transform: translateY(-2px); filter: brightness(1.1); }

/* Stil Imagine Sub Hartă (Oglindit perfect în înălțime) */
.map-sub-photo-card {
  position: relative;
  width: 100%;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-sub-photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }

.map-sub-photo-card:hover img { transform: scale(1.04); }

.map-sub-photo-card .photo-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/*--------------------------------------------------------------
# TRUCK BANNER - RESPONSIVE CODE (AGO-TRANS)
--------------------------------------------------------------*/
.truck-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px; /* Înălțime optimă pe desktop */
  margin-top: 60px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
}
 
.truck-banner img {
  position: absolute; 
  inset: 0;
  width: 100%; 
  height: 100%;
  object-fit: cover;
  object-position: center left; /* Păstrează camionul vizibil pe ecran */
  z-index: 1;
}
 
.truck-banner .overlay {
  position: relative;
  width: 100%;
  z-index: 2;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Gradient premium: întunecat în stânga unde e textul, transparent spre dreapta */
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 40%, rgba(15, 23, 42, 0.6) 70%, rgba(15, 23, 42, 0.2) 100%);
}
 
.truck-banner .eyebrow {
  font-size: 0.75rem; 
  font-weight: 700; 
  letter-spacing: 3px; 
  text-transform: uppercase;
  color: var(--accent-color);
  margin: 0 0 10px;
}

.truck-banner h2 {
  color: #ffffff; 
  font-size: 2.2rem; 
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 1rem;
}

.truck-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.6;
  max-width: 32rem; /* Limitează lățimea textului pe desktop ca să nu treacă peste camion */
  margin: 0 0 1.75rem;
}
 
.truck-banner .btn-signal {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  align-self: flex-start;
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--accent-color);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: .9rem 1.6rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all .25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.truck-banner .btn-signal:hover {
  background: var(--accent-color);
  color: var(--default-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(246, 208, 84, 0.25);
}

/*--------------------------------------------------------------
# MEDIA QUERIES - OPTIMIZARE MOBIL
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .truck-banner {
    min-height: 320px;
  }
  .truck-banner .overlay {
    padding: 2.5rem;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 60%, rgba(15, 23, 42, 0.4) 100%);
  }
  .truck-banner h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .truck-banner {
    min-height: auto; /* Permite bannerului să se mărească organic în funcție de text */
    margin-top: 40px;
  }

  .truck-banner .overlay {
    padding: 2.5rem 1.5rem;
    align-items: center;
    text-align: center;
    /* Pe mobil overlay-ul devine complet închis la culoare pentru contrast maxim pe orice ecran */
    background: rgba(15, 23, 42, 0.88); 
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .truck-banner h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .truck-banner p {
    font-size: 14px;
    max-width: 100%; /* Ocupă toată lățimea pe ecranul mic */
    margin-bottom: 1.5rem;
  }

  .truck-banner .btn-signal {
    align-self: center; /* Centrează butonul pe mobil */
    width: 100%; /* Face butonul full-width pe mobil pentru o apăsare mai ușoară cu degetul */
    justify-content: center;
    padding: 1rem;
  }
  
  .mobile-br {
    display: inline !important; /* Forțează ruperea de rând unde ai pus clasa în HTML */
  }
}
/*--------------------------------------------------------------
# WhatsApp button
--------------------------------------------------------------*/
a {
  text-decoration: none;
}

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

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

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

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

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

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

.lang-widget span {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

