/* 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: #1f5535; /* 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);
}

/*--------------------------------------------------------------
# Header Dynamics (Desktop & Base)
--------------------------------------------------------------*/

.header {
  position: fixed;
  top: 25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
  z-index: 997;
  padding: 10px 0;
  
  background-color: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border: 1px solid transparent;
  border-radius: 0px;
  box-shadow: none;

  /* REPARAT: Animăm strict ce avem nevoie, NU 'all' */
  transition: top 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease, border-radius 0.4s ease;
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg, 
    rgba(47, 75, 45, 0) 0%, 
    #2f4b2d 20%, 
    #456e42 50%, 
    #2f4b2d 80%, 
    rgba(47, 75, 45, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

.header .logo img {
  max-height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

/* Starea la Scroll */
.header.scrolled {
  top: 15px;
  padding: 6px 0;
  border-radius: 20px;
  background-color: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.header.scrolled::after {
  opacity: 1;
}


/*--------------------------------------------------------------
# HERO + MENIU (IZOLAT COMPLET & PREFIXTAT)
--------------------------------------------------------------*/

:root {
  /* Dynamic / Accent Colors */
  --hero-gl-accent: #fff201;
  --hero-gl-accent-glow: rgba(240, 161, 46, 0.4);
  
  /* Neutrals & Backgrounds */
  --hero-gl-contrast: #ffffff;
  --hero-gl-bg-dark: #05070a;
  --hero-gl-line: rgba(255, 255, 255, 0.2);
  
  /* Glassmorphism UI */
  --hero-gl-glass-bg: rgba(255, 255, 255, 0.07);
  --hero-gl-glass-border: rgba(255, 255, 255, 0.18);
  
  /* Typography */
  --hero-gl-font-default: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --hero-gl-font-display: "Playfair Display", Georgia, serif;
  
  /* Timing & Animations */
  --hero-gl-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --hero-gl-ease-spring: cubic-bezier(0.22, 1.12, 0.28, 1);
  --hero-gl-dur: 6800ms;
}

/* Base resets limitate strictly la Hero */
#hero *, #hero *::before, #hero *::after { box-sizing: border-box; }
#hero img { display: block; max-width: 100%; height: auto; }
#hero button, #hero a { font: inherit; color: inherit; background: none; border: 0; text-decoration: none; }
#hero :focus-visible { outline: 2px solid var(--hero-gl-accent); outline-offset: 3px; }

/* ==============================================================
   HERO CONTAINER & OVERLAYS
   ============================================================== */
#hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
  background: var(--hero-gl-bg-dark);
  font-family: var(--hero-gl-font-default);
  color: #fff;
}

#hero .bg { position: absolute; inset: 0; z-index: 0; background: #000; }
#hero .bg__layer { position: absolute; inset: 0; opacity: 0; transition: opacity 1200ms var(--hero-gl-ease-out); }
/* Eliminat zoom (scale) si will-change de aici */
#hero .bg__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
#hero .bg__layer.is-active { opacity: 1; }
/* Eliminat animation: kenburns si @keyframes de aici */

#hero .hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: 
    radial-gradient(circle at 20% 50%, rgba(5, 7, 10, 0.8) 0%, rgba(5, 7, 10, 0.4) 60%),
    linear-gradient(
      180deg, 
      rgba(5, 7, 10, 0.98) 0%,    /* Partea de sus aproape neagră (98% opacitate) */
      rgba(5, 7, 10, 0.6) 25%,    /* Menține întunericul pe zona header-ului */
      rgba(5, 7, 10, 0.1) 50%,    /* Mijlocul rămâne mai luminos pentru poze */
      rgba(5, 7, 10, 0.7) 100%    /* Partea de jos */
    );
}
#hero .rail-zone { position: absolute; z-index: 2; top: 0; right: 0; height: 100%; width: min(450px, 42vw); pointer-events: none; }

/* ==============================================================
   HEADER & MENIU MOBIL (COMPATIBIL BOOTSTRAP)
   ============================================================== */
#hero .header,
.header {
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px clamp(20px, 4vw, 48px) 0;
}

.header .logo img {
  height: clamp(40px, 4.5vw, 56px);
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}

/* --- DESKTOP (>= 1200px) --- */
@media (min-width: 1200px) {
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .navmenu a {
    color: var(--hero-gl-contrast);
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    text-decoration: none !important;
  }
  
  .navmenu li:hover > a, 
  .navmenu .active {
    color: var(--hero-gl-accent) !important;
  }
  
  .mobile-nav-toggle {
    display: none !important;
  }
}

/* --- MOBIL & TABLETĂ (< 1200px) --- */
@media (max-width: 1199px) {
  .header {
    flex-direction: row !important;
    justify-content: space-between !important;
    padding: 18px 22px !important;
  }
  
  /* Resetare completă buton mobil pentru a anula interferențele Bootstrap */
  .mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0 !important;
    margin: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid var(--hero-gl-glass-border) !important;
    color: #ffffff !important;
    cursor: pointer;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
    box-shadow: none !important;
    outline: none !important;
  }

  /* Blochează pseudo-elementele create automat de teme/Bootstrap */
  .mobile-nav-toggle::before,
  .mobile-nav-toggle::after {
    content: none !important;
    display: none !important;
  }

  /* Control strict al celor două SVG-uri interne */
  .mobile-nav-toggle svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    pointer-events: none;
  }

  /* Starea INAȚIONALĂ (Meniu închis) -> Arată Hamburger, Ascunde X */
  .mobile-nav-toggle .ico-menu {
    display: block !important;
  }
  .mobile-nav-toggle .ico-close {
    display: none !important;
  }

  /* Starea ACTIVĂ (Meniu deschis) -> Ascunde Hamburger, Arată X */
  .navmenu.mobile-nav-active .mobile-nav-toggle .ico-menu {
    display: none !important;
  }
  .navmenu.mobile-nav-active .mobile-nav-toggle .ico-close {
    display: block !important;
  }

  /* Stiluri panou meniu drop-down */
  .navmenu ul {
    display: none;
    position: absolute;
    top: 75px;
    right: 22px;
    width: 230px; 
    background: rgba(8, 12, 18, 0.96) !important;
    border: 1px solid var(--hero-gl-glass-border);
    border-radius: 14px;
    flex-direction: column;
    padding: 10px 0;
    margin: 0;
    list-style: none !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
    backdrop-filter: blur(20px);
  }

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

  .navmenu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .navmenu a { 
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none !important;
  }

  .navmenu a::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--hero-gl-accent);
    opacity: 0.4;
    transition: transform 0.2s, opacity 0.2s;
    flex-shrink: 0;
  }

  .navmenu a:hover, 
  .navmenu .active {
    background: rgba(255, 255, 255, 0.06);
    color: var(--hero-gl-accent) !important;
  }

  .navmenu a:hover::before, 
  .navmenu .active::before {
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 0 6px var(--hero-gl-accent-glow);
  }
}

/* ==============================================================
   HEADER FLUID & ULTRA-ELEGANT CU BARA VERDE FINE
   ============================================================== */

/* Starea inițială (Baza fixă centrată) */
#hero .header,
.header {
  position: fixed !important;
  top: 15px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: min(1280px, 94vw) !important;
  z-index: 999;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px !important;
  border-radius: 24px !important;
  
  /* Fundal invizibil inițial */
  background: rgba(8, 12, 18, 0) !important;
  backdrop-filter: blur(0px) !important;
  -webkit-backdrop-filter: blur(0px);
  border: 1px solid rgba(255, 255, 255, 0) !important;
  box-shadow: 0 0 0 rgba(0,0,0,0) !important;

  /* Tranziție ultra-fluidă */
  transition: 
    width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.5s ease,
    backdrop-filter 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.5s ease !important;
}

/* Pseudo-elementul pentru linia verde fină de jos */
.header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(
    90deg, 
    transparent 0%, 
    rgba(46, 204, 113, 0.15) 20%, 
    rgba(46, 204, 113, 0.75) 50%, 
    rgba(46, 204, 113, 0.15) 80%, 
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: scaleX(0.7);
  pointer-events: none;
}

/* --------------------------------------------------------------
   STAREA SCROLLED (Când se dă în jos)
   -------------------------------------------------------------- */
.header.scrolled {
  width: min(1050px, 90vw) !important;
  padding: 10px 24px !important;
  
  /* Glassmorphic Dark UI */
  background: rgba(6, 9, 14, 0.78) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  
  /* Contur superior & lateral fin */
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.6) !important;
}

.header.scrolled::after {
  opacity: 1;
  transform: scaleX(1);
}

/* --------------------------------------------------------------
   STILIZARE LOGO (PĂSTRAT PERMANENT)
   -------------------------------------------------------------- */
.header .logo {
  display: inline-flex;
  align-items: center;
}

.header .logo img {
  height: 44px;
  width: auto;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* La scroll doar se micșorează ușor fără să dispară */
.header.scrolled .logo img {
  height: 36px;
}

/* ==============================================================
   MENIU MOBIL RESPONSIVE & CENTRAT (< 1199px)
   ============================================================== */
@media (max-width: 1199px) {
  .header {
    padding: 12px 20px !important;
  }

  .navmenu {
    position: relative;
    display: flex;
    align-items: center;
  }

  /* Buton Meniu Mobil */
  .mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0 !important;
    margin: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    cursor: pointer;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
  }

  .mobile-nav-toggle::before,
  .mobile-nav-toggle::after {
    content: none !important;
    display: none !important;
  }

  .mobile-nav-toggle svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    pointer-events: none;
  }

  .mobile-nav-toggle .ico-menu { display: block !important; }
  .mobile-nav-toggle .ico-close { display: none !important; }

  .navmenu.mobile-nav-active .mobile-nav-toggle .ico-menu { display: none !important; }
  .navmenu.mobile-nav-active .mobile-nav-toggle .ico-close { display: block !important; }

  /* --- CARD MENIU MOBIL (CU MII SPATIU SUB BARA PRINCIPALA) --- */
  .navmenu ul {
    display: none;
    position: fixed;
    top: 100%; /* Se poziționează automat exact sub bara de sus */
    margin-top: 10px; /* Mic spațiu fin între carduri */
    left: 50%;
    transform: translateX(-50%);
    
    width: min(340px, 88vw);
    padding: 14px 10px;
    
    /* Design Card Glassmorphic */
    background: rgba(8, 12, 18, 0.94) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);

    flex-direction: column;
    align-items: center;
    gap: 4px;
    list-style: none !important;
    z-index: 998;
  }

  .navmenu.mobile-nav-active ul {
    display: flex !important;
    animation: menuFadeDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes menuFadeDown {
    from {
      opacity: 0;
      transform: translate(-50%, -8px) scale(0.96);
    }
    to {
      opacity: 1;
      transform: translate(-50%, 0) scale(1);
    }
  }

  .navmenu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
  }

  .navmenu a { 
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    transition: background 0.25s ease, color 0.25s ease;
    width: 100%;
  }

  .navmenu a::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--hero-gl-accent, #2ecc71);
    opacity: 0.3;
    transition: transform 0.2s, opacity 0.2s;
    flex-shrink: 0;
  }

  .navmenu a:hover, 
  .navmenu .active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--hero-gl-accent, #2ecc71) !important;
  }

  .navmenu a:hover::before, 
  .navmenu .active::before {
    opacity: 1;
    transform: scale(1.4);
  }
}
/* ==============================================================
   PANEL STÂNGA & CONȚINUT SLIDES
   ============================================================== */
#hero .left-panel {
  position: absolute; z-index: 5;
  left: clamp(20px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(50px, 5vh);
  width: min(580px, 90vw);
}

@media (min-width: 981px) {
  #hero .left-panel {
    top: 54%;
    transform: translateY(-50%);
  }
}

#hero .content { position: relative; width: 100%; display: grid; }
#hero .slide-copy { 
  grid-area: 1 / 1; opacity: 0; pointer-events: none; transition: opacity 0.5s ease; 
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
#hero .slide-copy.is-active { opacity: 1; pointer-events: auto; z-index: 2; }
#hero .rv { opacity: 0; filter: blur(6px); transform: translateY(12px); transition: opacity 0.8s, filter 0.8s, transform 0.8s; }
#hero .slide-copy.is-active .rv { opacity: 1; filter: blur(0); transform: translateY(0); transition-delay: var(--d, 0ms); }

#hero .pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 5px 16px 5px 6px; border-radius: 999px; margin-bottom: 20px;
  border: 1px solid var(--hero-gl-glass-border); background: var(--hero-gl-glass-bg); backdrop-filter: blur(12px);
}
#hero .pill__tag { background: #205535; color: #fff301; font-weight: 700; font-size: clamp(10px, 1.8vw, 12px); padding: 4px 10px; border-radius: 999px; letter-spacing: 0.05em; text-transform: uppercase; }
#hero .pill__txt { font-size: clamp(12px, 2.2vw, 13.5px); color: #ffffff; font-weight: 500; }

#hero .title { color: #ffffff; font-family: var(--hero-gl-font-display); font-style: italic; font-weight: 500; font-size: clamp(32px, 4.8vw, 58px); line-height: 1.12; margin: 0 0 18px; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
#hero .title em { color: var(--hero-gl-accent); font-style: italic; }
#hero .lede { margin: 0 auto 24px; max-width: 480px; font-size: clamp(14px, 2vw, 16px); line-height: 1.65; font-weight: 300; color: rgba(255,255,255,0.92); }

#hero .hero-actions { display: flex; justify-content: center; width: 100%; }
#hero .cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: clamp(10px, 2vw, 13px) clamp(20px, 3vw, 28px); 
  border-radius: 999px; font-size: clamp(13px, 2.2vw, 15px); font-weight: 600; color: #f57a1b;
  border: 1px solid var(--hero-gl-glass-border); background: var(--hero-gl-glass-bg); backdrop-filter: blur(12px);
  transition: transform 0.3s var(--hero-gl-ease-out), border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
}
#hero .cta:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.15); box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
#hero .cta__ico { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid currentColor; display: flex; align-items: center; justify-content: center; transition: transform 0.3s var(--hero-gl-ease-out); }
#hero .cta:hover .cta__ico { transform: rotate(45deg); background: var(--hero-gl-accent); border-color: var(--hero-gl-accent); color: #000; }
#hero .cta__ico svg { width: 11px; height: 11px; stroke-width: 2.5; }

#hero .facts { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 24px; font-size: clamp(10px, 1.5vw, 11px); text-transform: uppercase; letter-spacing: 0.1em; color: #f57a1b; }
#hero .facts b { display: block; font-family: var(--hero-gl-font-display); font-style: italic; font-size: clamp(18px, 2.8vw, 22px); font-weight: 600; text-transform: none; color: #ffffff; line-height: 1.1; margin-bottom: 2px; }

/* ==============================================================
   BUTOANE CONTACT
   ============================================================== */
#hero .hero-contact-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 40px; 
}

#hero .btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  padding: 8px 18px;
  border-radius: 12px;
  font-size: clamp(12px, 1.8vw, 13.5px);
  font-weight: 600;
  color: #ffffff;
  background: var(--hero-gl-glass-bg);
  border: 1px solid var(--hero-gl-glass-border);
  backdrop-filter: blur(16px);
  transition: transform 0.3s var(--hero-gl-ease-out), background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

#hero .btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

#hero .btn-glass__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--hero-gl-accent);
  flex-shrink: 0;
}

#hero .btn-glass__ico svg { width: 13px; height: 13px; }

/* ==============================================================
   CARUSEL MINIATURI & BARĂ PROGRES
   ============================================================== */
#hero .rail { position: absolute; z-index: 5; top: 50%; right: clamp(50px, 6vw, 90px); width: 0; height: 0; }
#hero .rail__item { position: absolute; top: 0; left: 0; width: 0; height: 0; transition: transform 0.9s var(--hero-gl-ease-spring), opacity 0.5s ease; }

#hero .rail__thumb {
  position: absolute; top: 0; left: 0; border-radius: 50%; overflow: visible; background: #12181f;
  transform: translate(-50%, -50%); cursor: pointer; padding: 0;
  box-shadow: 0 16px 35px rgba(0,0,0,0.6);
  transition: width 0.9s var(--hero-gl-ease-spring), height 0.9s var(--hero-gl-ease-spring);
}
#hero .rail__thumb img { 
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%; 
  filter: saturate(0.7) brightness(0.75); transition: filter 0.4s, transform 0.4s; 
}
#hero .rail__thumb:hover img { filter: saturate(1) brightness(0.95); transform: scale(1.04); }

#hero .rail__item.is-center .rail__thumb img { filter: saturate(1.1) brightness(1); }
#hero .rail__item.is-hidden { opacity: 0; pointer-events: none; }

#hero .ring {
  position: absolute; inset: -8px; width: calc(100% + 16px); height: calc(100% + 16px);
  opacity: 0; pointer-events: none; transform: rotate(-90deg); transition: opacity 0.4s;
  z-index: 2;
}
#hero .rail__item.is-center .ring { opacity: 1; }
#hero .ring circle { fill: none; stroke-width: 3; stroke-linecap: round; }
#hero .ring .bg-c { stroke: rgba(255, 255, 255, 0.15); }
#hero .ring .fg-c { 
  stroke: var(--hero-gl-accent); 
  stroke-dasharray: 289; 
  stroke-dashoffset: 289; 
  filter: drop-shadow(0 0 6px var(--hero-gl-accent-glow));
}

#hero .rail__item.is-center.is-animating .ring .fg-c {
  animation: sweep var(--hero-gl-dur) linear forwards;
}

@keyframes sweep {
  from { stroke-dashoffset: 289; }
  to { stroke-dashoffset: 0; }
}

#hero .rail__label {
  position: absolute; top: 0; transform: translateY(-50%);
  text-align: right; white-space: nowrap; pointer-events: none;
  text-shadow: 0 2px 14px rgba(0,0,0,0.8); transition: right 0.9s var(--hero-gl-ease-spring);
}
#hero .rail__label b { display: block; font-family: var(--hero-gl-font-display); font-style: italic; font-size: 16px; color: #fff301; }
#hero .rail__label span { display: block; font-size: 16px; color: #f57a1b; font-weight: 600; }

/* ==============================================================
   RESPONSIVITATE MOBIL
   ============================================================== */
@media (max-width: 980px) {
  #hero .rail-zone { display: none !important; }
  
  #hero .left-panel {
    position: relative; left: auto; top: auto; transform: none;
    margin: 0 auto; 
    padding-top: 75px; 
    padding-bottom: 20px;
    width: 90%; gap: 20px;
  }

  #hero .content { min-height: 250px; }
  
  #hero .hero-contact-btns {
    flex-direction: row;
    gap: 10px;
    margin-top: 32px;
  }
  
  #hero .btn-glass {
    padding: 8px 14px;
    font-size: 12px;
  }

  #hero .rail {
    position: absolute; z-index: 5;
    top: auto; right: 0; left: 0; bottom: 25px;
    width: 100%; height: auto;
    display: flex; justify-content: center; align-items: center;
    gap: 20px;
  }
  #hero .rail__item {
    position: relative; top: auto; left: auto; width: auto; height: auto;
    transform: none !important; opacity: 1 !important;
  }
  #hero .rail__thumb {
    position: relative; top: auto; left: auto;
    transform: none !important;
    width: 48px !important; height: 48px !important;
    border-radius: 50%;
  }
  #hero .rail__thumb img { width: 100%; height: 100%; border-radius: 50%; }
  #hero .rail__label { display: none !important; }

  #hero .ring {
    inset: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
  }
}

@media (max-width: 600px) {
  #hero .hero-contact-btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
  }
  
  #hero .btn-glass {
    width: max-content;
    padding: 8px 14px;
  }
}



/* ==============================================
   DROPDOWN DESKTOP - SINGLE ARROW & HOVER BRIDGE
=============================================== */

/* Elimină orice altă săgeată generată automat din CSS de temă pe desktop */
.navmenu li.dropdown > a::after,
.navmenu li.dropdown > a::before {
  display: none !important;
  content: none !important;
}

.navmenu li.dropdown {
  position: relative;
}

.navmenu li.dropdown .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* Săgeata unică SVG */
.navmenu li.dropdown .dd-arrow-icon {
  transition: transform 0.3s ease;
}

.navmenu li.dropdown:hover .dd-arrow-icon,
.navmenu li.dropdown.is-open .dd-arrow-icon {
  transform: rotate(180deg);
  stroke: var(--pg-yellow, #fff201);
}

/* CARD DROPDOWN DESKTOP */
.navmenu .dropdown-card {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  
  width: 230px;
  padding: 8px;
  background: rgba(8, 12, 18, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 2px solid var(--pg-yellow, #fff201);
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 999;
}

/* PUNTE INVIZIBILĂ DESKTOP */
.navmenu .dropdown-card::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

/* Săgeată mică indicatoare sus */
.navmenu .dropdown-notch {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(8, 12, 18, 0.96);
  border-left: 1px solid var(--pg-yellow, #fff201);
  border-top: 1px solid var(--pg-yellow, #fff201);
}

/* AFISARE LA HOVER SAU CLICK PE DESKTOP */
@media (min-width: 1200px) {
  .navmenu li.dropdown:hover .dropdown-card,
  .navmenu li.dropdown.is-open .dropdown-card {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

/* LISTA SI LINK-URILE DESKTOP */
.navmenu .dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.navmenu .dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: #e2e8f0;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s ease;
  text-align: left;
}

.navmenu .dropdown-item:hover {
  background: rgba(255, 242, 1, 0.1);
  color: var(--pg-yellow, #fff201);
  padding-left: 18px;
}

/* ==============================================
   STILIZARE MOBIL INTEGRATĂ (< 1200px)
=============================================== */
@media (max-width: 1199px) {

  nav#navmenu ul {
    flex-direction: column !important;
    align-items: center !important;
    width: 230px !important;
    padding: 10px 0 !important;
    margin: 0 !important;
  }

  nav#navmenu ul > li {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin: 2px 0 !important;
    border: none !important;
  }

  nav#navmenu ul > li > a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 10px 16px !important;
    border: none !important;       
    outline: none !important;      
    background: transparent !important; 
    box-shadow: none !important;   
    color: #ffffff !important;
    font-weight: 700 !important;
    text-decoration: none !important;
  }

  /* BULINĂ GALBENĂ PE TOATE LINK-URILE PRINCIPALE (INCLUSIV SERVICII) PE MOBIL */
  nav#navmenu ul > li > a::before {
    content: '' !important;
    width: 7px !important;
    height: 7px !important;
    background-color: var(--pg-yellow, #fff201) !important;
    border-radius: 50% !important;
    box-shadow: 0 0 8px var(--pg-yellow, #fff201) !important;
    display: block !important;
    flex-shrink: 0 !important;
  }

  /* ELIMINARE NOTCH / TRIUNGHI PE MOBIL */
  nav#navmenu .dropdown-notch,
  nav#navmenu .dropdown-card::before,
  nav#navmenu .dropdown-card::after {
    display: none !important;
    content: none !important;
  }

  /* SUB-MENIU CURAT PE MOBIL (FĂRĂ CARD / BORDURĂ DUBLĂ) */
  nav#navmenu .dropdown-card {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 4px 0 8px 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: none !important; /* Ascuns implicit pe mobil */
  }

  /* AFISARE SUB-MENIU CÂND ESTE DESCHIS */
  nav#navmenu li.dropdown.is-open > .dropdown-card {
    display: block !important;
  }

  /* LISTA ȘI ELEMENTELE DIN SUB-MENIU MOBIL */
  nav#navmenu .dropdown-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  nav#navmenu .dropdown-item {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    padding: 8px 12px !important;
    border: none !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
  }

  /* BULINĂ GALBENĂ PENTRU CELE 3 SUB-ELEMENTE DIN DROPDOWN MOBIL */
  nav#navmenu .dropdown-item::before {
    content: '' !important;
    width: 5px !important;
    height: 5px !important;
    background-color: var(--pg-yellow, #fff201) !important;
    border-radius: 50% !important;
    box-shadow: 0 0 6px var(--pg-yellow, #fff201) !important;
    display: block !important;
    flex-shrink: 0 !important;
  }

  nav#navmenu .dropdown-item:hover {
    color: var(--pg-yellow, #fff201) !important;
    background-color: transparent !important;
    padding-left: 12px !important;
  }
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# PAGINĂ - DESPRE NOI
--------------------------------------------------------------*/

.pg-cover-section {
  --pg-yellow: #fff201;
  --pg-yellow-glow: rgba(255, 242, 1, 0.4);
  --pg-dark: #05070a;
  
  position: relative;
  width: 100%;
  min-height: 560px;
  padding-top: 140px;
  padding-bottom: 25px;
  display: flex;
  /* Readus la flex-end pentru a ține bara de navigare jos */
  align-items: flex-end;
  background-color: var(--pg-dark);
  color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
  font-family: "Space Grotesk", sans-serif;
}

.pg-cover-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* IMAGINE FUNDAL & OVERLAY-URI */
.pg-cover-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.pg-cover-bg picture,
.pg-cover-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pg-cover-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(5, 7, 10, 0.3) 0%, rgba(5, 7, 10, 0.85) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.95) 0%, rgba(5, 7, 10, 0.4) 40%, rgba(5, 7, 10, 0.95) 100%);
}

/* CONTAINER PRINCIPAL */
.pg-cover-container {
  position: relative;
  z-index: 2;
  width: min(1280px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 55px;
}

/* CONTENT CENTRAL (TITLU, LINIE, SLOGAN) - RIDICAT MAI SUS */
.pg-cover-content {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  /* Ridică DOAR titlul și sloganul mai sus pe ecran */
  transform: translateY(-50px);
}

.pg-cover-title {
  font-family: 'Archivo', "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  line-height: 1.1;
}

/* LINIA GALBENĂ CU MARGINI PIERDUTE */
.pg-cover-line-wrapper {
  display: flex;
  justify-content: center;
  margin: 18px 0;
}

.pg-cover-line {
  width: 180px;
  height: 3px;
  background: linear-gradient(
    90deg, 
    transparent 0%, 
    var(--pg-yellow) 30%, 
    var(--pg-yellow) 70%, 
    transparent 100%
  );
  border-radius: 2px;
  box-shadow: 0 0 12px var(--pg-yellow-glow);
}

.pg-cover-slogan {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: #e2e8f0;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

/* BARA BREADCRUMBS + TAGLINE (RĂMÂNE FIX JOS) */
.pg-cover-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pg-cover-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.pg-cover-breadcrumbs a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pg-cover-breadcrumbs a:hover {
  color: var(--pg-yellow);
}

.pg-bc-separator {
  color: #64748b;
  font-size: 0.8rem;
}

.pg-bc-current {
  color: #ffffff;
}

.pg-cover-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pg-yellow);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.pg-tagline-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--pg-yellow);
  box-shadow: 0 0 8px var(--pg-yellow);
}

/* ADAPTARE MONITOARE MARI (PC XL) */
@media (min-width: 1400px) {
  .pg-cover-section {
    min-height: 580px;
  }
}

/* ADAPTARE MOBIL & TABLETĂ */
@media (max-width: 768px) {
  .pg-cover-section {
    min-height: 400px;
    padding-top: 110px;
  }

  .pg-cover-container {
    gap: 35px;
  }

  .pg-cover-content {
    /* Ridicare ajustată pentru mobil (25px în sus) */
    transform: translateY(-25px); 
  }

  .pg-cover-bottom-bar {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
  }

  .pg-cover-line {
    width: 130px;
  }
}



/*--------------------------------------------------------------
# 1. SERVICES 5 BANNER (Custom EcoAgrotec Background)
--------------------------------------------------------------*/
.services5-banner {
  max-width: 1200px;
  width: 100%;
  min-height: 550px;
  margin: 60px auto 0px;
  padding: 60px 55px;
  border-radius: 15px;
  overflow: hidden;
  
  background: 
    linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.1) 100%),
    url('../img/banner/ecoagrotec-banner-03-pc.webp') center/cover no-repeat;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 25px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.services5-banner .banner-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: #a3d9b8;
  display: block;
}

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

.services5-banner .banner-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.75;
  margin: 10px auto;
  width: 85%;
}

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

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

.services5-banner .banner-call {
  background: #22c55e;
  color: #000000;
}

.services5-banner .banner-call:hover {
  background: transparent;
  border-color: #22c55e;
  color: #22c55e;
  transform: translateY(-3px);
}

.services5-banner .banner-mail {
  background: #fff301;
  color: #000000;
}

.services5-banner .banner-mail:hover {
  background: transparent;
  border-color: #fff301;
  color: #fff301;
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .services5-banner {
    padding: 40px 25px;
    min-height: auto;
    background: 
      linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.9) 70%, rgba(0, 0, 0, 0.4) 100%),
      url('../img/banner/ecoagrotec-banner-03-mobile.webp') center/cover no-repeat;
  }

  .services5-banner .banner-title {
    font-size: 1.6rem;
  }

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

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

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


/*--------------------------------------------------------------
# 2. SERVICES CARD SECTION (Responsive & Elegant)
--------------------------------------------------------------*/
.services {
  padding: 75px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 991px) {
  .services .services-card .services-content {
    width: 90%;
  }
  .services .services-card .services-content p {
    width: 85%;
  }
}

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

  .services .services-card .services-overlay {
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.95) 0%,
      rgba(0,0,0,0.80) 50%,
      rgba(0,0,0,0.40) 80%,
      rgba(0,0,0,0.15) 100%
    );
  }

  .services .services-card .services-content {
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 2.5rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .services .services-card .services-content h2 {
    font-size: 1.75rem;
    width: 100%;
    text-align: center;
    margin-bottom: 0.75rem;
  }

  .services .services-card .services-content p {
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
  }

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

  .services .transport-button {
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
    padding: 12px 18px;
  }

  .services .contact-icons {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 380px) {
  .services .services-card .services-content {
    padding: 2rem 1rem;
  }
  .services .services-card .services-content h2 {
    font-size: 1.5rem;
  }
  .services .contact-icon-link {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
}

@media (max-width: 350px) {
  .services .services-card .services-content {
    padding: 1.5rem 0.75rem;
  }
  
  .services .services-card .services-content h2 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
  }
  
  .services .services-card .services-content p {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
  }
  
  .services .transport-button {
    padding: 8px 12px;
    gap: 10px;
  }
  
  .services .transport-button .icon-box-contact {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
    border-radius: 8px;
  }
  
  .services .transport-button .transport-title {
    font-size: 0.9rem;
  }
  
  .services .transport-button .transport-subtitle {
    font-size: 0.75rem;
  }
  
  .services .transport-button .transport-arrow {
    font-size: 1rem;
  }
  
  .services .contact-icons {
    gap: 8px;
  }
  
  .services .contact-icon-link {
    width: 36px;
    height: 36px;
    font-size: 15px;
    border-radius: 8px;
  }
}


/*--------------------------------------------------------------
# 3. CALL TO ACTION SECTION - ECOAGROTEC (TALL & RIGHT-SIDE CENTERED)
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  padding: 130px 0; 
  min-height: 999px;
  display: flex;
  align-items: center;
  background: var(--default-color);
  overflow: hidden;
}

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

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

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

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

.call-to-action .cta-content2 {
  text-align: center;
}

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

.call-to-action .cta-brand-logo {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.call-to-action .cta-content2 h2.cta-title {
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.call-to-action .cta-content2 h2 .highlight {
  font-size: 2.35rem;
  display: block;
  color: #fff301;
  letter-spacing: -0.5px;
}

.call-to-action .cta-content2 p {
  font-size: 16px;
  font-weight: 400;
  margin: 0 auto 2rem auto;
  color: var(--contrast-color);
  line-height: 1.65;
  max-width: 580px;
  opacity: 0.95;
  text-align: center;
}

.call-to-action .cta-grid-compact {
  display: grid;
  grid-template-columns: repeat(2, 250px);
  gap: 16px;
  justify-content: center;
  margin: 0 auto 2.25rem auto;
}

.call-to-action .btn-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid transparent;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.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.2); }
.call-to-action .btn-whatsapp::before { background: rgba(37,211,102,0.2); }
.call-to-action .btn-email::before    { background: rgba(0,123,255,0.2); }
.call-to-action .btn-location::before { background: rgba(255,140,0,0.2); }

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

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

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

.call-to-action .btn-call .icon-box     { background: rgba(174,13,13,0.3);   color: #ff5252; }
.call-to-action .btn-whatsapp .icon-box { background: rgba(37,211,102,0.3); color: #25d366; }
.call-to-action .btn-email .icon-box    { background: rgba(0,123,255,0.3);   color: #5193ff; }
.call-to-action .btn-location .icon-box { background: rgba(255,140,0,0.3);   color: #ff9d1e; }

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

.call-to-action .btn-label {
  color: #fff301;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.call-to-action .btn-sublabel {
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  margin-top: 1px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

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

.call-to-action .cta-features .feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 1.25rem;
  position: relative;
}

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

.call-to-action .cta-features .feature-item i {
  font-size: 1.2rem;
  color: #fff301;
}

.call-to-action .cta-features .feature-item span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff301;
}

.call-to-action .cta-slogan-wrap {
  margin-top: 0.5rem;
}

.call-to-action .cta-hollow-slogan {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: transparent;
  -webkit-text-stroke: 1.5px #fff301;
  text-stroke: 1.5px #fff301;
  display: inline-block;
  text-align: center;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

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

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

  .call-to-action .cta-bg::before {
    background: rgba(0, 0, 0, 0.75);
  }

  .call-to-action .cta-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    max-width: 480px;
    margin: 0 auto 2rem auto;
  }
}

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

  .call-to-action .cta-content2 h2 .highlight {
    font-size: 1.75rem;
  }

  .call-to-action .cta-grid-compact {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .call-to-action .cta-features {
    flex-direction: column;
    gap: 12px;
  }

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

  .call-to-action .cta-hollow-slogan {
    font-size: 1.4rem;
    -webkit-text-stroke: 1px #fff301;
    text-stroke: 1px #fff301;
    letter-spacing: 1px;
  }
}


/*--------------------------------------------------------------
# 4. PREMIUM PRELOADER - ECOAGROTEC TRANS (3.2s Optimized)
--------------------------------------------------------------*/
#custom-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #08100c;
  pointer-events: none;
  
  animation: exitPreloader 0.8s cubic-bezier(0.7, 0, 0.2, 1) forwards 2.4s;
}

.preloader-bg {
  position: absolute;
  inset: 0;
  background: url('../img/preloader/ecoagrotec-preloader-pc.webp') center/cover no-repeat;
  filter: blur(4px);
  transform: scale(1.1);
  animation: kenBurnsBg 3.2s ease-out forwards;
}

@media (max-width: 768px) {
  .preloader-bg {
    background-image: url('../img/preloader/ecoagrotec-preloader-mobile.webp');
  }
}

.preloader-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center, 
    rgba(10, 24, 16, 0.72) 0%, 
    rgba(4, 10, 7, 0.85) 100%
  );
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.preloader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  max-width: 650px;
  width: 90%;
}

.preloader-logo-wrapper {
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: logoEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.15s;
}

.preloader-logo {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.6));
}

.preloader-slogan {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 2.2rem 0;
  opacity: 0;
  transform: translateY(15px);
  will-change: transform, opacity;
  animation: sloganReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

.preloader-slogan .highlight {
  color: #fff301;
  text-shadow: 0 0 12px rgba(255, 243, 1, 0.4);
}

.preloader-bar-wrapper {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeInBar 0.5s ease forwards 0.9s;
}

.preloader-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #28a745 0%, #fff301 100%);
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255, 243, 1, 0.8);
  animation: fillProgress 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.9s;
}

.preloader-status-text {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

@keyframes kenBurnsBg {
  from { transform: scale(1.15); }
  to   { transform: scale(1.0); }
}

@keyframes logoEntrance {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(-20px);
    filter: blur(10px) drop-shadow(0 0 0 rgba(0,0,0,0));
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0) drop-shadow(0 12px 25px rgba(0, 0, 0, 0.6));
  }
}

@keyframes sloganReveal {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInBar {
  to { opacity: 1; }
}

@keyframes fillProgress {
  0%   { width: 0%; }
  50%  { width: 65%; }
  100% { width: 100%; }
}

@keyframes exitPreloader {
  0% {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
    visibility: hidden;
  }
}

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

  .preloader-slogan {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }

  .preloader-bar-wrapper {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* =====================================================================
   SECȚIUNEA „DESPRE NOI” 
   ===================================================================== */

.am-section{
  --am-ink: var(--default-color, #20262e);
  --am-muted: color-mix(in srgb, var(--default-color, #20262e), transparent 42%);
  --am-card: #ffffff;
  --am-line: color-mix(in srgb, var(--default-color, #20262e), transparent 88%);
  --am-accent: var(--accent-color, #d81f2a);   /* roșu de brand */
  --am-blue:   #2563eb;                          /* albastru pentru hover */
  --am-on-accent: var(--contrast-color, #fff);

  --am-radius: 22px;
  --am-radius-sm: 16px;

  position: relative;
  padding: 90px 0 100px;
  color: var(--am-ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  overflow: hidden;
}

/* =========================== ANTET =========================== */
.am-head{ max-width: 780px; margin: 0 auto 60px; text-align: center; }
.am-eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:"Archivo",sans-serif; font-weight:700; font-size:13px;
  letter-spacing:3px; text-transform:uppercase; color:var(--am-accent);
}
.am-eyebrow-dot{
  width:8px;height:8px;border-radius:50%;background:var(--am-accent);
  box-shadow:0 0 0 4px color-mix(in srgb,var(--am-accent) 22%,transparent);
}
.am-title{
  font-family:"Archivo",sans-serif; font-weight:900;
  font-size:clamp(2.4rem,5.5vw,3.6rem); line-height:1.02;
  letter-spacing:-1px; text-transform:uppercase; margin:16px 0 18px; color:var(--am-ink);
}
.am-lead{ font-size:1.12rem; line-height:1.7; color:var(--am-muted); margin:0 auto; max-width:620px; }

/* =========================== HERO ============================ */
.am-hero{ margin-bottom: 30px; }
.am-copy .am-kicker{
  display:inline-block; font-family:"Archivo",sans-serif; font-weight:700;
  font-size:12px; letter-spacing:4px; text-transform:uppercase; color:var(--am-accent);
  padding-bottom:8px; border-bottom:2px solid color-mix(in srgb,var(--am-accent) 35%,transparent);
  margin-bottom:20px;
}
.am-heading{
  font-family:"Archivo",sans-serif; font-weight:800;
  font-size:clamp(1.7rem,3vw,2.15rem); line-height:1.15;
  letter-spacing:-.5px; margin:0 0 22px; color:var(--am-ink);
}
.am-copy p{ font-size:1.02rem; line-height:1.8; color:var(--am-muted); margin:0 0 1.15rem; }
.am-copy p:last-child{ margin-bottom:0; }
.am-copy p strong{ color:var(--am-ink); font-weight:600; }

.am-gallery{
  position:relative; display:grid; grid-template-columns:1.55fr 1fr; gap:16px; height:520px;
}
.am-shot{
  position:relative; margin:0; border-radius:var(--am-radius); overflow:hidden;
  background:linear-gradient(135deg,#c9d2d8,#e6ebee);
  box-shadow:0 18px 45px -22px rgba(20,26,34,.55);
}
.am-shot--main{ height:100%; }
.am-shot img{ position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block; }
.am-shot-col{ display:grid; grid-template-rows:1fr 1fr; gap:16px; }
.am-shot-col .am-shot{ height:100%; }
.am-badge{
  position:absolute; left:-14px; bottom:26px; z-index:3;
  display:flex; align-items:center; gap:14px; padding:16px 22px 16px 18px;
  background:var(--am-accent); color:var(--am-on-accent); border-radius:18px;
  box-shadow:0 22px 50px -18px color-mix(in srgb,var(--am-accent) 70%,black 5%);
}
.am-badge-year{ font-family:"Archivo",sans-serif; font-weight:900; font-size:2.15rem; line-height:1; letter-spacing:-1px; }
.am-badge-text{ font-size:.72rem; line-height:1.35; font-weight:600; letter-spacing:.4px; text-transform:uppercase; opacity:.92; }


/* ============ TESTIMONIAL: text în stânga + o poză portret în dreapta ============ */
.am-quote{
  margin:0;
  display:grid;
  grid-template-columns:1.4fr 1fr;   /* text mai lat, poză portret pe dreapta */
  gap:clamp(26px,3.5vw,54px);
  align-items:center;   /* text centrat pe verticală față de poză */
}
.am-quote-body{
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
}
.am-quote-mark{
  font-family:"Archivo",sans-serif; font-weight:900; font-size:4.5rem; line-height:.5;
  color:color-mix(in srgb,var(--am-accent) 25%,transparent); margin-bottom:14px;
}
.am-quote-eyebrow{
  font-family:"Archivo",sans-serif; font-weight:700; font-size:12px;
  letter-spacing:3px; text-transform:uppercase; color:var(--am-accent); margin-bottom:20px;
}
.am-quote-body blockquote{
  margin:0 0 18px; max-width:100%;
  font-size:clamp(1.05rem,1.4vw,1.2rem); line-height:1.7; color:var(--am-ink);
}
.am-quote-body blockquote em{ font-style:normal; font-weight:600; color:var(--am-accent); }
.am-quote-author{ margin-top:6px; }
.am-quote-name{ display:block; font-family:"Archivo",sans-serif; font-weight:800; font-size:1.1rem; color:var(--am-ink); }
.am-quote-role{ display:block; margin-top:3px; font-size:.85rem; color:var(--am-muted); }
.am-quote-logo{
  margin:24px auto 0; padding-top:22px;
  border-top:1px solid var(--am-line); width:100%; max-width:280px;
}
.am-quote-logo img{ width:180px; height:auto; max-width:70%; display:block; margin:0 auto; }

.am-quote-portrait{
  position:relative; margin:0; min-width:0; border-radius:var(--am-radius); overflow:hidden;
  height:600px;   /* înălțime fixă -> textul se centrează sigur lângă ea */
  background:linear-gradient(135deg,#c9d2d8,#e6ebee);
  box-shadow:0 20px 50px -30px rgba(20,26,34,.5);
}
.am-quote-portrait img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }

/* =========================== RESPONSIVE ====================== */
/* laptopuri mici / tablete în peisaj: poză mai scundă, tot lângă text */
@media (max-width: 1199.98px){
  .am-quote-portrait{ height:520px; }
}
@media (max-width: 991.98px){
  .am-quote{ grid-template-columns:1.3fr 1fr; gap:clamp(20px,3vw,36px); }
  .am-quote-portrait{ height:460px; }
}

@media (max-width: 767.98px){
  .am-section{ padding:64px 0 72px; }
  .am-copy{ text-align:center; }
  .am-copy .am-kicker{ border:none; padding:0; }
  /* galeria hero: toate pozele una sub alta pe dispozitive mici */
  .am-gallery{ display:flex; flex-direction:column; height:auto; gap:12px; }
  .am-shot{ height:230px; }
  .am-shot--main{ height:250px; }
  .am-shot-col{ display:flex; flex-direction:column; gap:12px; }
  .am-badge{ top:12px; left:12px; bottom:auto; padding:12px 16px; }
  .am-badge-year{ font-size:1.7rem; }
  .am-stats{ margin:50px 0; min-height:auto; padding:60px 0; }
  .am-stats-overlay{ background:linear-gradient(180deg, rgba(8,11,15,.25) 0%, rgba(8,11,15,.75) 100%); }
  .am-stats-cards{ max-width:none; margin-left:0; }

  /* pe telefon: poza sus, cu înălțime fluidă (scade odată cu rezoluția) */
  .am-quote{ grid-template-columns:1fr; gap:22px; }
  .am-quote-portrait{ order:1; width:100%; height:clamp(150px, 56vw, 300px); }
  .am-quote-body{ order:2; align-items:center; text-align:center; }
  .am-quote-logo{ max-width:none; text-align:center; }
  .am-quote-logo img{ margin:0 auto; }
}

/* sub 320px: poza scade continuu, proporțional cu rezoluția */
@media (max-width: 320px){
  .am-quote-portrait{ height:56vw; min-height:0; }
  .am-quote-body{ padding:20px 4px 0; }
}
@media (prefers-reduced-motion: reduce){
  .am-stat, .am-stat-ic{ transition:none; }
}


/* Styling Buton Landscape Verde */
.am-btn-landscape {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #205535;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px; /* Margini rotunjite tip pilon */
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(32, 85, 53, 0.25);
  transition: all 0.35s ease;
}

.am-btn-landscape i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

/* Efecte la Hover */
.am-btn-landscape:hover {
  background-color: #174027;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(32, 85, 53, 0.35);
}

.am-btn-landscape:hover i {
  transform: translateX(6px);
}

/* Adaptare pe mobil */
@media (max-width: 576px) {
  .am-btn-landscape {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}





/*--------------------------------------------------------------
# Statistics Section (ecoagrotec01)
--------------------------------------------------------------*/
.stats-section.ecoagrotec01-stats {
  position: relative;
  min-height: 55vh; 
  padding: 50px 0; 
  display: flex;
  align-items: center;
  background: var(--default-color);
  overflow: hidden;
}

.stats-section.ecoagrotec01-stats .stats-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.stats-section.ecoagrotec01-stats .stats-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(0.8) contrast(1.15) brightness(0.9);
}

/* Gradient pierdut: întunecat sus și jos, clar în mijloc */
.stats-section.ecoagrotec01-stats .stats-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95) 0%,     /* Întunecat sus */
    rgba(0, 0, 0, 0.35) 40%,    /* Transparent în mijloc */
    rgba(0, 0, 0, 0.35) 60%, 
    rgba(0, 0, 0, 0.95) 100%    /* Întunecat jos */
  );
  z-index: 1;
}

.stats-section.ecoagrotec01-stats .stats-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

/* GRID STATISTICI */
.stats-section.ecoagrotec01-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARD STATISTICĂ */
.stats-section.ecoagrotec01-stats .stat-card {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 3px solid #fff301; /* Modificat în galben */
  border-radius: 16px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stats-section.ecoagrotec01-stats .stat-card:hover {
  transform: translateY(-8px);
  background: rgba(0, 0, 0, 0.8);
  border-color: #fff301; /* Modificat în galben */
  box-shadow: 0 15px 35px rgba(255, 243, 1, 0.2);
}

/* ICONIȚE STATISTICI - GALBEN */
.stats-section.ecoagrotec01-stats .stat-icon-wrapper {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 243, 1, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff301; /* Iconițe galbene */
  transition: transform 0.3s ease;
}

.stats-section.ecoagrotec01-stats .stat-card:hover .stat-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: #fff301;
  color: #000000;
}

.stats-section.ecoagrotec01-stats .stat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stats-section.ecoagrotec01-stats .stat-number-holder {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

/* CIFRE STATISTICI - GALBEN */
.stats-section.ecoagrotec01-stats .stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff301; /* Cifre galbene */
  line-height: 1;
  letter-spacing: -1px;
}

.stats-section.ecoagrotec01-stats .stat-unit,
.stats-section.ecoagrotec01-stats .stat-plus {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff301; /* Cifre galbene (unitate/plus) */
  line-height: 1;
}

.stats-section.ecoagrotec01-stats .stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin-top: 5px;
}

/* PARTEA DE JOS (BARA SECONDARĂ) */
.stats-section.ecoagrotec01-stats .stats-bottom-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.stats-section.ecoagrotec01-stats .stats-bar-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.stats-section.ecoagrotec01-stats .stats-bottom-logo {
  max-height: 75px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.6));
}

.stats-section.ecoagrotec01-stats .stats-features {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0;
  margin-top: 5px;
}

.stats-section.ecoagrotec01-stats .stats-features .feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.stats-section.ecoagrotec01-stats .stats-features .feature-item:not(:last-child)::after {
  content: "•";
  color: #fff301; /* Modificat în galben */
  margin-left: 15px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ICONIȚE DIN BARA DE JOS - GALBEN */
.stats-section.ecoagrotec01-stats .stats-features .feature-item i {
  font-size: 1rem;
  color: #fff301; /* Iconițe galbene */
}

.stats-section.ecoagrotec01-stats .stats-features .feature-item span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--contrast-color);
  white-space: nowrap;
}

.stats-section.ecoagrotec01-stats .stats-img-mobile {
  display: none;
}

/* RESPONSIVITATE */
@media (max-width: 1199px) {
  .stats-section.ecoagrotec01-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .stats-section.ecoagrotec01-stats {
    padding: 40px 0;
  }

  .stats-section.ecoagrotec01-stats .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stats-section.ecoagrotec01-stats .stat-card {
    padding: 20px 15px;
  }

  .stats-section.ecoagrotec01-stats .stat-number {
    font-size: 2.3rem;
  }

  .stats-section.ecoagrotec01-stats .stats-img-desktop {
    display: none;
  }

  .stats-section.ecoagrotec01-stats .stats-img-mobile {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/* ============================================================
   SECȚIUNE ISTORIC — EXTINSĂ & AERISITĂ SPRE LOGO
   ============================================================ */

.ea-hist-pro-section {
  width: 100%;
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Manrope', system-ui, sans-serif;
  color: #0f172a;
  box-sizing: border-box;
}

.ea-hist-pro-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ea-hist-pro-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.ea-hist-pro-header {
  text-align: center;
  margin-bottom: 35px;
}

.ea-hist-pro-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: #205535;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ea-hist-pro-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #0f172a;
  margin: 8px 0 12px 0;
}

.ea-hist-pro-title em {
  font-style: normal;
  color: #205535;
}

.ea-hist-pro-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* BARA DE CONTROL */
.ea-hist-pro-nav-card {
  width: 100%;
  margin: 0 auto 30px auto;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.ea-hist-pro-nav-logo {
  flex-shrink: 0;
}

.ea-hist-pro-logo-img {
  height: 34px;
  width: auto;
  display: block;
}

/* TIMELINE TABS */
.ea-hist-pro-timeline-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  width: 100%;
}

.ea-hist-pro-line-bg {
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  height: 2.5px;
  background-color: #cbd5e1;
  transform: translateY(-50%);
  z-index: 1;
}

.ea-hist-pro-line-fill {
  height: 100%;
  width: 0%;
  background-color: #205535;
  transition: width 0.4s ease;
}

.ea-hist-pro-tab-btn {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 20px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ea-hist-pro-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #94a3b8;
  transition: background-color 0.3s ease;
}

.ea-hist-pro-tab-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.99rem;
  font-weight: 700;
  color: #64748b;
  transition: color 0.3s ease;
}

.ea-hist-pro-tab-btn:hover {
  border-color: #205535;
  transform: translateY(-2px);
}

.ea-hist-pro-tab-btn.active {
  background-color: #205535;
  border-color: #205535;
  box-shadow: 0 4px 10px rgba(32, 85, 53, 0.25);
}

.ea-hist-pro-tab-btn.active .ea-hist-pro-dot {
  background-color: #fff301;
}

.ea-hist-pro-tab-btn.active .ea-hist-pro-tab-year {
  color: #ffffff;
}

/* DISPLAY MAIN CARD */
.ea-hist-pro-display-card {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 35px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  min-height: 420px;
  overflow: hidden;
}

.ea-hist-pro-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #205535, #fff301);
  z-index: 10;
}

.ea-hist-pro-display-card.animating-bar .ea-hist-pro-progress-bar {
  animation: eaHistProProgressAnim 4.5s linear forwards;
}

@keyframes eaHistProProgressAnim {
  from { width: 0%; }
  to { width: 100%; }
}

.ea-hist-pro-item {
  display: none;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.ea-hist-pro-item.active {
  display: grid;
  animation: eaHisProFadeIn 0.5s ease forwards;
}

@keyframes eaHisProFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* IMAGINI & CONTAINER PICTURE */
.ea-hist-pro-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.ea-hist-pro-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.ea-hist-pro-badge-year {
  position: absolute;
  top: 18px;
  left: 18px;
  background-color: #205535;
  color: #fff301;
  font-family: 'Archivo', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

/* CONTAINER CLASIC (1 POZĂ) */
.ea-hist-pro-media-main {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #f1f5f9;
}

.ea-hist-pro-media-main:hover .ea-hist-pro-img-main {
  transform: scale(1.03);
}

/* LAYOUT MULTI-IMAGE GENERICE */
.ea-hist-pro-media-grid-3, 
.ea-hist-pro-media-grid-2 {
  position: relative;
  width: 100%;
  height: 360px;
  display: grid;
  gap: 12px;
}

/* ANUL 2021: GRID 3 POZE */
.ea-hist-pro-media-grid-3 {
  grid-template-columns: 1fr 1fr;
}

.ea-hist-pro-img-portrait {
  width: 100%;
  height: 90%;
  border-radius: 18px;
  overflow: hidden;
  background-color: #f1f5f9;
}

.ea-hist-pro-landscape-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 90%;
}

.ea-hist-pro-img-landscape {
  flex: 1;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background-color: #f1f5f9;
}

/* ANUL 2025: GRID 2 POZE */
.ea-hist-pro-media-grid-2 {
  grid-template-columns: 1.1fr 0.9fr;
}

.ea-hist-pro-img-portrait-half,
.ea-hist-pro-img-square {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background-color: #f1f5f9;
}

/* EFECT HOVER PENTRU SUB-IMAGINI */
.ea-hist-pro-img-portrait:hover .ea-hist-pro-img-main,
.ea-hist-pro-img-landscape:hover .ea-hist-pro-img-main,
.ea-hist-pro-img-portrait-half:hover .ea-hist-pro-img-main,
.ea-hist-pro-img-square:hover .ea-hist-pro-img-main {
  transform: scale(1.04);
}

/* INFORMAȚII TEXT (DREAPTA) */
.ea-hist-pro-info-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ea-hist-pro-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: #205535;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.ea-hist-pro-step-title {
  font-family: 'Archivo', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 14px 0;
  line-height: 1.2;
}

.ea-hist-pro-step-desc {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 22px;
}

.ea-hist-pro-step-desc.font-2021 {
  margin-bottom: 16px;
}

/* SUBCARD & BRAND BAR */
.ea-hist-pro-subcard {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #205535;
  padding: 12px 16px;
  border-radius: 12px;
}

.ea-hist-pro-subcard-img {
  width: 70px;
  height: 50px;
  border-radius: 8px;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  flex-shrink: 0;
}

.ea-hist-pro-logo-sub {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.ea-hist-pro-subcard-text strong {
  display: block;
  font-size: 0.68rem;
  font-family: 'JetBrains Mono', monospace;
  color: #205535;
  letter-spacing: 0.5px;
}

.ea-hist-pro-subcard-text span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1e293b;
}

.ea-hist-pro-brand-bar {
  width: 100%;
  background: linear-gradient(90deg, #f8fafc, #f1f5f9);
  border: 1px solid #e2e8f0;
  border-top: 3px solid #205535;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.01);
}

.ea-hist-pro-brand-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 1px;
  text-align: center;
}

.ea-hist-pro-brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ea-hist-pro-brand-item {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.ea-hist-pro-brand-item:hover {
  opacity: 1;
}

.ea-hist-pro-brand-item img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* ============================================================
   RESPONSIVITATE MOBIL & TABLETĂ
   ============================================================ */

@media (max-width: 991px) {
  .ea-hist-pro-nav-card {
    flex-direction: column;
    padding: 20px;
  }
  
  .ea-hist-pro-timeline-nav {
    width: 100%;
  }

  .ea-hist-pro-item {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .ea-hist-pro-display-card {
    padding: 20px;
    min-height: auto;
  }

  .ea-hist-pro-media-main {
    height: 280px;
  }

  .ea-hist-pro-media-grid-3, 
  .ea-hist-pro-media-grid-2 {
    height: 320px;
  }
}

@media (max-width: 768px) {
  /* ANI PE 2 RÂNDURI MOBIL */
  .ea-hist-pro-timeline-nav {
    overflow-x: visible;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 8px;
    padding-bottom: 0;
  }

  .ea-hist-pro-line-bg {
    display: none;
  }

  .ea-hist-pro-tab-btn {
    flex-shrink: 0;
    padding: 6px 14px;
  }

  .ea-hist-pro-step-title {
    font-size: 1.4rem;
  }

  .ea-hist-pro-media-main {
    height: 220px;
  }
  
  .ea-hist-pro-brand-logos {
    gap: 15px;
  }
  
  .ea-hist-pro-brand-item {
    height: 20px;
  }
}

@media (max-width: 576px) {
  .ea-hist-pro-media-grid-3, 
  .ea-hist-pro-media-grid-2 {
    height: auto;
    grid-template-columns: 1fr;
  }
  
  .ea-hist-pro-img-portrait, 
  .ea-hist-pro-img-portrait-half {
    height: 280px;
  }
  
  .ea-hist-pro-img-square {
    height: 280px;
  }
  
  .ea-hist-pro-landscape-stack {
    flex-direction: row;
    height: 120px;
  }
}

@media (max-width: 576px) {
  /* 1. Resetăm înălțimile fixe de pe containerele foto pe mobil */
  .ea-hist-pro-media-grid-3, 
  .ea-hist-pro-media-grid-2,
  .ea-hist-pro-img-portrait, 
  .ea-hist-pro-img-portrait-half,
  .ea-hist-pro-img-square,
  .ea-hist-pro-picture {
    height: auto !important;
    min-height: auto !important;
  }
  
  /* 2. Forțăm imaginea să fie 100% din lățime și să-și ia înălțimea naturală */
  .ea-hist-pro-picture .ea-hist-pro-img-main,
  .ea-hist-pro-img-portrait .ea-hist-pro-img-main,
  .ea-hist-pro-img-square .ea-hist-pro-img-main {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
  }

  /* Opțional: ajustăm flex-ul pentru pozele orizontale de dedesubt (dacă e cazul) */
  .ea-hist-pro-landscape-stack {
    height: auto !important;
    flex-direction: column !important;
  }
}
/


/* ==========================================================================
   SECȚIUNE BENTO GRID - EVENIMENTE (PROPORȚIONAL & FĂRĂ IMAGINI TĂIATE)
   ========================================================================== */

.ea-bento-section {
  background-color: #f8fafc;
  padding: 80px 5%;
  font-family: inherit;
}

.ea-bento-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* --- ANTET --- */
.ea-bento-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.ea-bento-eyebrow {
  display: inline-block;
  color: #fff301;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
  background-color: #205535;
  padding: 6px 16px;
  border-radius: 30px;
}

.ea-bento-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px 0;
  line-height: 1.15;
}

.ea-bento-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 0;
}

.ea-bento-desc strong {
  color: #0f172a;
  font-weight: 700;
}

/* --- BENTO GRID LAYOUT (DESKTOP) --- */
.ea-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 20px;
}

.ea-bento-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-color: #0f172a; /* Fundal închis pentru umplere elegantă dacă poza are proporții diferite */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ea-bento-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.ea-bento-item img {
  width: 100%;
  height: 100%;
  /* Asigură afișarea completă a pozei fără să taie din ea */
  object-fit: cover; 
  object-position: center;
  transition: transform 0.6s ease;
}

.ea-bento-item:hover img {
  transform: scale(1.05);
}

/* Dimensiuni Bento Desktop */
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-tall {
  grid-column: span 1;
  grid-row: span 2;
}

/* --- OVERLAY TEXT --- */
.ea-bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.3) 60%, rgba(15, 23, 42, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #ffffff;
  pointer-events: none;
  z-index: 2;
}

.ea-bento-overlay .badge {
  align-self: flex-start;
  background: #fff301;
  color: #0f172a;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.ea-bento-overlay h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
}

.ea-bento-card-desc {
  font-size: 0.85rem;
  line-height: 1.45;
  color: #e2e8f0;
  margin: 8px 0 0 0;
}

/* --- RESPONSIVE PROPORȚIONAL (Eleganta pe Tablete și Telefoane) --- */

/* Tablete (Max 992px) */
@media (max-width: 992px) {
  .ea-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 16px;
  }
}

/* Telefoane (Max 600px) - Limitare lățime + păstrare raport imagine */
@media (max-width: 600px) {
  .ea-bento-section {
    padding: 50px 16px;
  }

  .ea-bento-grid {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrează cardurile pe ecran */
    gap: 20px;
  }
  
  .ea-bento-item {
    width: 100%;
    max-width: 420px; /* Limitează lățimea cardului să nu ocupe tot ecranul pe telefoane mari */
    height: auto;
    aspect-ratio: auto; /* Permite imaginii să își păstreze proporția naturală */
  }

  .ea-bento-item img {
    height: auto;
    max-height: 450px;
    object-fit: contain; /* Păstrează poza întreagă fără tăieturi */
  }

  /* Ajustări specifice pe mobil pentru a nu deforma tipurile de imagini */
  .bento-large img,
  .bento-wide img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .bento-tall img {
    aspect-ratio: 3 / 4; /* Păstrează proporția portret pe mobil */
    object-fit: cover;
  }

  .ea-bento-overlay {
    padding: 16px;
  }

  .ea-bento-card-desc {
    font-size: 0.8rem;
  }
}





*--------------------------------------------------------------
# SERVICES CARD SECTION (Responsive & Elegant)
--------------------------------------------------------------*/
.services {
  padding: 75px 0;
}

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

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

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

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

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

.services .services-card .services-content h2 {
  color: #ffec1d;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# RESPONSIVE TABLET & MOBILE
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .services .services-card .services-content {
    width: 90%;
  }
  .services .services-card .services-content p {
    width: 85%;
  }
}

@media (max-width: 767px) {
  .services .services-card {
    min-height: auto; /* Permite cardului să se adapteze natural la conținut pe mobil */
  }

  .services .services-card .services-overlay {
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.95) 0%,
      rgba(0,0,0,0.80) 50%,
      rgba(0,0,0,0.40) 80%,
      rgba(0,0,0,0.15) 100%
    );
  }

  .services .services-card .services-content {
    position: relative; /* Schimbat din absolute în relative pe mobil pentru a lăsa cardul să crească fluid în înălțime */
    width: 100%;
    min-height: auto;
    padding: 2.5rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .services .services-card .services-content h2 {
    font-size: 1.75rem; /* Redus proporțional pentru a nu crea spărturi ciudate pe ecrane mici */
    width: 100%;
    text-align: center;
    margin-bottom: 0.75rem;
  }

  .services .services-card .services-content p {
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
  }

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

  .services .transport-button {
    width: 100%;
    max-width: 100%;
    justify-content: space-between; /* Distribuie elegant elementele pe lățime maximă */
    padding: 12px 18px;
  }

  .services .contact-icons {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap; /* Permite iconițelor să treacă pe rândul următor dacă ecranul este extrem de îngust (ex: 320px) */
    gap: 10px;
  }
}

/* Optimizare suplimentară pentru telefoane foarte mici (max 380px) */
@media (max-width: 380px) {
  .services .services-card .services-content {
    padding: 2rem 1rem;
  }
  .services .services-card .services-content h2 {
    font-size: 1.5rem;
  }
  .services .contact-icon-link {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
}

/*--------------------------------------------------------------
# RESPONSIVE ULTRA-NARROW SCREENS (Max 350px)
--------------------------------------------------------------*/
@media (max-width: 350px) {
  .services .services-card .services-content {
    padding: 1.5rem 0.75rem;
  }
  
  .services .services-card .services-content h2 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
  }
  
  .services .services-card .services-content p {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
  }
  
  .services .transport-button {
    padding: 8px 12px;
    gap: 10px;
  }
  
  .services .transport-button .icon-box-contact {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
    border-radius: 8px;
  }
  
  .services .transport-button .transport-title {
    font-size: 0.9rem;
  }
  
  .services .transport-button .transport-subtitle {
    font-size: 0.75rem;
  }
  
  .services .transport-button .transport-arrow {
    font-size: 1rem;
  }
  
  .services .contact-icons {
    gap: 8px;
  }
  
  .services .contact-icon-link {
    width: 36px;
    height: 36px;
    font-size: 15px;
    border-radius: 8px;
  }
}
.services2 {
  margin-top: 60px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.services3 {
  margin-top: 60px;
}

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

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

.services3-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
  color: var(--accent-color);
  background-color: rgba(14, 123, 218, 0.1);
  border-radius: 15px;
  transition: background 0.25s ease-out, color 0.25s ease-out;
}

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

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

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

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

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

.services4 {  
  margin-top: 60px; 
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .services4 h2 {
    line-height: 1.25;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 767.98px) {

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

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

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

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

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

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

/*--------------------------------------------------------------
# SERVICES 5 BANNER (Custom EcoAgrotec Background)
--------------------------------------------------------------*/
.services5-banner {
  /* DIMENSIUNI MĂRITE */
  max-width: 1200px; /* Lățime mai mare în laterale (era 1000px) */
  width: 100%;
  min-height: 550px; /* Înălțime mărită */
  margin: 60px auto 0px;
  padding: 60px 55px;
  border-radius: 15px;
  overflow: hidden; /* Asigură că imaginea nu iese din colțurile rotunjite */
  
  /* IMAGINE DE FUNDAL + OVERLAY NEGRU (Degrade) */
  background: 
    linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.1) 100%),
    url('../img/banner/ecoagrotec-banner-03-pc.webp') center/cover no-repeat;
  
  /* STRUCTURĂ FLEXBOX - Aliniere la partea de sus */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Împinge elementele sus, unde overlay-ul e plin */
  text-align: center;
  gap: 25px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.services5-banner .banner-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: #a3d9b8; /* Verde deschis pentru contrast cu negrul */
  display: block;
}

.services5-banner .banner-title {
  font-size: 2rem; /* Ușor mărit pentru impact */
  font-weight: 900;
  color: #fff301; /* Galben pentru impact maxim și branding */
  line-height: 1.25;
  margin: 5px 0 15px;
}

.services5-banner .banner-text {
  color: rgba(255, 255, 255, 0.85); /* Text alb semi-transparent */
  font-size: 17px;
  line-height: 1.75;
  margin: 10px auto;
  width: 85%;
}

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

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

/* Buton Apel (Verde) */
.services5-banner .banner-call {
  background: #22c55e;
  color: #000000; /* Contrast bun pe verde */
}

.services5-banner .banner-call:hover {
  background: transparent;
  border-color: #22c55e;
  color: #22c55e;
  transform: translateY(-3px);
}

/* Buton Mail (Galben) */
.services5-banner .banner-mail {
  background: #fff301;
  color: #000000; /* Text negru pentru lizibilitate maximă pe galben */
}

.services5-banner .banner-mail:hover {
  background: transparent;
  border-color: #fff301;
  color: #fff301;
  transform: translateY(-3px);
}

/* RESPONSIVE MOBILE */
@media (max-width: 767px) {
  .services5-banner {
    padding: 40px 25px; /* Spațiu optimizat pe telefon */
    min-height: auto;
    /* Pe mobil, degrade-ul coboară mai mult ca să acopere tot textul care e dispus pe o coloană mai lungă */
    background: 
      linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.9) 70%, rgba(0, 0, 0, 0.4) 100%),
      url('../img/banner/ecoagrotec-banner-03-mobile.webp') center/cover no-repeat;
  }

  .services5-banner .banner-title {
    font-size: 1.6rem;
  }

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

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

  .services5-banner .banner-call,
  .services5-banner .banner-mail {
    width: 100%;
    justify-content: center;
  }
}
/*--------------------------------------------------------------
# ECOAGROTEC - AGABARITIC SECTION
--------------------------------------------------------------*/
.tapa-premium {
    padding: 80px 0;
}

/* Imaginea Hero Principală */
.tapa-premium .tapa-hero-image {
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 65px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

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

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

/* Coloana din Stânga - Conținut */
.tapa-content {
    padding-right: 35px;
}

.tapa-badge {
    display: inline-block;
    background: var(--accent-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%);
}

/* Caracteristici (Features) */
.tapa-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 25px;
    border-radius: 18px;
    background: #fff;
    height: 100%;
    transition: transform .35s ease, box-shadow .35s ease;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
}

.tapa-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px 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;
}

/* Coloana din Dreapta - Cele 2 Poze Curate (Fără chenar alb) */
.tapa-side {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.certificate-card {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    overflow: hidden;
    border-radius: 20px; /* Margini rotunjite direct pe container */
}

.certificate-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 20px; /* Margini rotunjite aplicate imaginii */
    transition: transform .5s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,.08); /* O umbră discretă direct sub poză pentru adâncime */
}

.certificate-card:hover img {
    transform: scale(1.03);
}

/* Responsive / Optimizări Mobile */
@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;
    }
    .certificate-card img {
        height: 210px;
    }
}

@media(max-width:576px) {
    .tapa-premium .tapa-hero-image {
        margin-bottom: 40px;
        border-radius: 16px;
    }
    .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;
    }
}

/*
 ==========================================================================
       2. TOKENI / VARIABILE & CONTAINER PRINCIPAL
       ========================================================================== */
    .et-transport {
      --et-ink: #0d1512;
      --et-ink-2: #111d18;
      --et-surface: #16241d;
      --et-surface-2: #1d2f26;
      --et-line: rgba(255, 255, 255, .09);
      --et-eco: #5bbf6a;
      --et-eco-2: #8fe39a;
      --et-hi: #f5b43c;
      --et-hi-2: #ffce6b;
      --et-text: #eef4ef;
      --et-muted: #9db0a6;
      --et-radius: 24px;
      --et-radius-lg: 34px;
      --et-shadow: 0 30px 70px -30px rgba(0, 0, 0, .75);

      position: relative;
      box-sizing: border-box;
      padding: clamp(48px, 7vw, 110px) clamp(18px, 5vw, 64px);
      background:
        radial-gradient(120% 90% at 85% -10%, rgba(91, 191, 106, .14), transparent 55%),
        radial-gradient(90% 80% at 0% 110%, rgba(245, 180, 60, .10), transparent 55%),
        linear-gradient(180deg, var(--et-ink), var(--et-ink-2));
      color: var(--et-text);
      font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
      overflow: hidden;
    }

    .et-transport * { box-sizing: border-box; }

    .et-transport::before {
      content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .4;
      background: repeating-linear-gradient(-45deg, transparent 0 46px, rgba(245, 180, 60, .025) 46px 92px);
      mask: radial-gradient(120% 100% at 50% 0%, #000, transparent 75%);
      -webkit-mask: radial-gradient(120% 100% at 50% 0%, #000, transparent 75%);
    }

    .et-inner { position: relative; max-width: 1280px; margin: 0 auto; }

    /* ==========================================================================
       3. HEADER
       ========================================================================== */
    .et-head {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: clamp(26px, 4vw, 58px);
      align-items: center;
      margin-bottom: clamp(46px, 6vw, 84px);
    }

    .et-cover {
      position: relative; border-radius: var(--et-radius-lg); overflow: hidden;
      aspect-ratio: 5/4; box-shadow: var(--et-shadow); border: 1px solid var(--et-line);
      background: linear-gradient(135deg, #223a2e, #16241d);
    }
    .et-cover img {
      position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
      transition: transform 1.2s cubic-bezier(.2, .7, .2, 1);
    }
    .et-cover:hover img { transform: scale(1.05); }
    .et-cover::after {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(6, 12, 9, .55));
    }
    .et-cover__badge {
      position: absolute; left: 18px; top: 18px; z-index: 2;
      display: inline-flex; align-items: center; gap: 8px;
      padding: 9px 14px; border-radius: 100px;
      background: rgba(13, 21, 18, .6); backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, .14);
      font-family: 'Space Mono', monospace; font-size: 11.5px; letter-spacing: .06em;
      color: var(--et-hi-2); text-transform: uppercase;
    }
    .et-cover__badge i {
      width: 8px; height: 8px; border-radius: 50%; background: var(--et-hi);
      box-shadow: 0 0 0 4px rgba(245, 180, 60, .22); animation: et-pulse 2s infinite;
    }
    @keyframes et-pulse { 50% { box-shadow: 0 0 0 8px rgba(245, 180, 60, 0); } }

    .et-eyebrow {
      display: inline-flex; align-items: center; gap: 12px;
      font-family: 'Space Mono', monospace; font-size: 12.5px; font-weight: 700;
      letter-spacing: .22em; text-transform: uppercase; color: var(--et-eco-2); margin-bottom: 20px;
    }
    .et-eyebrow::before {
      content: ""; width: 34px; height: 2px; border-radius: 2px;
      background: linear-gradient(90deg, var(--et-hi), transparent);
    }
    .et-head__text h2 {
      margin: 0 0 18px; font-family: 'Archivo', sans-serif; font-weight: 800;
      font-size: clamp(30px, 4.4vw, 54px); line-height: 1.04; letter-spacing: -.02em;
    }
    .et-head__text h2 span {
      color: transparent; background: linear-gradient(120deg, var(--et-eco-2), var(--et-hi-2));
      -webkit-background-clip: text; background-clip: text;
    }
    .et-head__text p { margin: 0; max-width: 56ch; font-size: clamp(15px, 1.2vw, 17.5px); line-height: 1.65; color: var(--et-muted); }

    .et-stats {
      display: flex; flex-wrap: wrap; gap: 14px 30px; margin-top: 30px;
      padding-top: 26px; border-top: 1px solid var(--et-line);
    }
    .et-stat b { display: block; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(22px, 2.4vw, 30px); line-height: 1; color: var(--et-text); }
    .et-stat b em { font-style: normal; color: var(--et-hi); }
    .et-stat span { display: block; margin-top: 7px; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--et-muted); }

    /* ==========================================================================
       4. CARUSEL & TOPLINE
       ========================================================================== */
    .et-carousel { position: relative; }
    .et-carousel__topline {
      display: flex; align-items: flex-end; justify-content: space-between;
      gap: 18px; margin-bottom: 26px; flex-wrap: wrap;
    }
    .et-carousel__topline h3 { margin: 0; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: clamp(19px, 2vw, 26px); letter-spacing: -.01em; }
    .et-carousel__topline p { margin: 6px 0 0; color: var(--et-muted); font-size: 14.5px; }
    .et-counter { font-family: 'Space Mono', monospace; font-size: 14px; color: var(--et-muted); white-space: nowrap; }
    .et-counter b { color: var(--et-hi); font-size: 22px; }

    /* ==========================================================================
       5. SCENA COVERFLOW
       ========================================================================== */
    .et-stage {
      position: relative;
      height: clamp(420px, 52vw, 640px);
      perspective: 1600px;
      touch-action: pan-y;
      cursor: grab;
      -webkit-user-select: none; user-select: none; -webkit-touch-callout: none;
    }
    .et-stage:active { cursor: grabbing; }
    .et-stage::after { 
      content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 40;
      background: linear-gradient(90deg, var(--et-ink) -4%, transparent 18% 82%, var(--et-ink) 104%);
      opacity: .95;
    }
    .et-track { position: absolute; inset: 0; transform-style: preserve-3d; }

    /* ==========================================================================
       6. STRUCTURA SLIDE-ULUI (Poză Sus / Card Text Jos)
       ========================================================================== */
    .et-slide {
      position: absolute; top: 50%; left: 50%;
      width: clamp(260px, 55%, 680px);
      height: auto;
      transform: translate(-50%, -50%);
      display: flex;
      flex-direction: column;
      background: transparent;
      transition: transform .72s cubic-bezier(.16, .84, .24, 1), opacity .55s ease, filter .6s ease;
      will-change: transform, opacity;
    }

    /* Caseta Imaginii */
    .et-slide__img-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 16/10;
      border-radius: var(--et-radius);
      overflow: hidden;
      border: 1px solid var(--et-line);
      box-shadow: 0 20px 45px -15px rgba(0, 0, 0, .6);
      background: linear-gradient(135deg, var(--slide-a, #25402f), var(--slide-b, #152018));
    }
    .et-slide__img-wrap::after {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(6,12,9,0) 60%, rgba(5,10,8,0.4));
      z-index: 2;
    }
    .et-slide__img {
      position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
      opacity: 0; transition: opacity .6s ease; pointer-events: none;
    }
    .et-slide__img.et-loaded { opacity: 1; }

    /* ==========================================================================
       7. CARD TEXT SEPARAT (Sub imagine, complet centrat)
       ========================================================================== */
    .et-slide__card {
      margin-top: 20px;
      padding: 10px 20px;
      width: 100%;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0.4;
      transform: translateY(10px);
      transition: transform .6s cubic-bezier(.16, .84, .24, 1), opacity .5s ease;
    }

    /* Cardul Micuț Solicitat */
    .et-slide__tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--et-hi-2);
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .08);
      padding: 5px 14px;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .et-slide__card h4 {
      margin: 0;
      font-family: 'Archivo', sans-serif;
      font-weight: 700;
      font-size: clamp(16px, 2.2vw, 24px);
      line-height: 1.2;
      letter-spacing: -.01em;
      color: var(--et-text);
    }

    /* Stările coverflow controlate din proprietăți */
    .et-slide[data-pos="0"] { z-index: 30; opacity: 1; filter: none; }
    .et-slide[data-pos="0"] .et-slide__card { opacity: 1; transform: translateY(0); }
    .et-slide[data-pos="0"] .et-slide__img-wrap { box-shadow: 0 35px 70px -20px rgba(0, 0, 0, .85), 0 0 0 1px rgba(245, 180, 60, .25); }

    .et-slide[data-pos="-1"], .et-slide[data-pos="1"] { z-index: 20; opacity: .55; filter: brightness(.6) saturate(.8); }
    .et-slide[data-pos="-2"], .et-slide[data-pos="2"] { z-index: 10; opacity: 0; filter: brightness(.3); }
    .et-slide[data-pos="hidden"] { z-index: 1; opacity: 0; pointer-events: none; }

    /* ==========================================================================
       8. SĂGEȚI NAVIGARE
       ========================================================================== */
    .et-nav {
      position: absolute; top: 40%; transform: translateY(-50%); z-index: 50;
      width: 52px; height: 52px; border-radius: 50%;
      display: grid; place-items: center; cursor: pointer;
      background: rgba(20, 32, 26, .7); backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, .16); color: var(--et-text);
      transition: background .25s ease, transform .25s ease, border-color .25s ease;
    }
    .et-nav:hover { background: var(--et-hi); color: #141d10; border-color: var(--et-hi); transform: translateY(-50%) scale(1.07); }
    .et-nav:active { transform: translateY(-50%) scale(.94); }
    .et-nav svg { width: 22px; height: 22px; }
    .et-nav--prev { left: clamp(4px, 2vw, 18px); }
    .et-nav--next { right: clamp(4px, 2vw, 18px); }

    /* ==========================================================================
       9. ELEMENTE INFERIOARE (Progres & Underbar)
       ========================================================================== */
    .et-progress { display: flex; gap: 8px; margin-top: 26px; }
    .et-seg { position: relative; flex: 1; height: 4px; border-radius: 100px; background: rgba(255, 255, 255, .12); overflow: hidden; cursor: pointer; }
    .et-seg__fill { position: absolute; inset: 0; width: 0%; border-radius: 100px; background: linear-gradient(90deg, var(--et-eco), var(--et-hi)); }
    .et-seg.is-done .et-seg__fill { width: 100%; }

    .et-underbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
    .et-hint { font-family: 'Space Mono', monospace; font-size: 12px; color: var(--et-muted); letter-spacing: .04em; }
    .et-toggle {
      display: inline-flex; align-items: center; gap: 9px; cursor: pointer; padding: 9px 16px; border-radius: 100px;
      background: var(--et-surface); border: 1px solid var(--et-line); color: var(--et-text); font-size: 13px; font-weight: 600;
      transition: border-color .25s ease, background .25s ease;
    }
    .et-toggle:hover { border-color: var(--et-eco); background: var(--et-surface-2); }
    .et-toggle svg { width: 14px; height: 14px; color: var(--et-eco-2); }

    /* ==========================================================================
       10. RESPONSIVE MEDIA QUERIES
       ========================================================================== */
    @media (max-width: 900px) {
      .et-head { grid-template-columns: 1fr; }
      .et-cover { aspect-ratio: 16/10; max-height: 360px; }
      .et-slide { width: clamp(240px, 70%, 540px); }
      .et-stage { height: clamp(380px, 60vw, 520px); }
      .et-nav { top: 35%; }
    }

    @media (max-width: 560px) {
      .et-slide { width: 85%; }
      .et-slide__card { margin-top: 14px; padding: 10px 5px; }
      .et-slide__tag { font-size: 10px; padding: 4px 10px; }
      .et-slide[data-pos="-1"], .et-slide[data-pos="1"] { opacity: .28; }
      .et-nav { width: 44px; height: 44px; top: 35%; }
      .et-stage::after { background: linear-gradient(90deg, var(--et-ink), transparent 12% 88%, var(--et-ink)); }
      .et-stat { flex: 1 1 40%; }
    }

    @media (max-width: 400px) {
      .et-underbar { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
      .et-nav { display: none; }
      .et-stage { height: 360px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .et-slide, .et-slide__card, .et-cover img, .et-nav { transition-duration: .01ms !important; }
      .et-cover__badge i { animation: none; }
    }



/* ==========================================================================
       2. TOKENI / VARIABILE & CONTAINER PRINCIPAL
       ========================================================================== */
    .et-transport {
      --et-ink: #0d1512;
      --et-ink-2: #111d18;
      --et-surface: #16241d;
      --et-surface-2: #1d2f26;
      --et-line: rgba(255, 255, 255, .09);
      --et-eco: #5bbf6a;
      --et-eco-2: #8fe39a;
      --et-hi: #f5b43c;
      --et-hi-2: #ffce6b;
      --et-text: #eef4ef;
      --et-muted: #9db0a6;
      --et-radius: 24px;
      --et-radius-lg: 34px;
      --et-shadow: 0 30px 70px -30px rgba(0, 0, 0, .75);

      position: relative;
      box-sizing: border-box;
      padding: clamp(48px, 7vw, 110px) clamp(18px, 5vw, 64px);
      background:
        radial-gradient(120% 90% at 85% -10%, rgba(91, 191, 106, .14), transparent 55%),
        radial-gradient(90% 80% at 0% 110%, rgba(245, 180, 60, .10), transparent 55%),
        linear-gradient(180deg, var(--et-ink), var(--et-ink-2));
      color: var(--et-text);
      font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
      overflow: hidden;
    }

    .et-transport * { box-sizing: border-box; }

    .et-transport::before {
      content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .4;
      background: repeating-linear-gradient(-45deg, transparent 0 46px, rgba(245, 180, 60, .025) 46px 92px);
      mask: radial-gradient(120% 100% at 50% 0%, #000, transparent 75%);
      -webkit-mask: radial-gradient(120% 100% at 50% 0%, #000, transparent 75%);
    }

    .et-inner { position: relative; max-width: 1280px; margin: 0 auto; }

    /* ==========================================================================
       3. HEADER
       ========================================================================== */
    .et-head {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: clamp(26px, 4vw, 58px);
      align-items: center;
      margin-bottom: clamp(46px, 6vw, 84px);
    }

    .et-cover {
      position: relative; border-radius: var(--et-radius-lg); overflow: hidden;
      aspect-ratio: 5/4; box-shadow: var(--et-shadow); border: 1px solid var(--et-line);
      background: linear-gradient(135deg, #223a2e, #16241d);
    }
    .et-cover img {
      position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
      transition: transform 1.2s cubic-bezier(.2, .7, .2, 1);
    }
    .et-cover:hover img { transform: scale(1.05); }
    .et-cover::after {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(6, 12, 9, .55));
    }
    .et-cover__badge {
      position: absolute; left: 18px; top: 18px; z-index: 2;
      display: inline-flex; align-items: center; gap: 8px;
      padding: 9px 14px; border-radius: 100px;
      background: rgba(13, 21, 18, .6); backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, .14);
      font-family: 'Space Mono', monospace; font-size: 11.5px; letter-spacing: .06em;
      color: var(--et-hi-2); text-transform: uppercase;
    }
    .et-cover__badge i {
      width: 8px; height: 8px; border-radius: 50%; background: var(--et-hi);
      box-shadow: 0 0 0 4px rgba(245, 180, 60, .22); animation: et-pulse 2s infinite;
    }
    @keyframes et-pulse { 50% { box-shadow: 0 0 0 8px rgba(245, 180, 60, 0); } }

    .et-eyebrow {
      display: inline-flex; align-items: center; gap: 12px;
      font-family: 'Space Mono', monospace; font-size: 12.5px; font-weight: 700;
      letter-spacing: .22em; text-transform: uppercase; color: var(--et-eco-2); margin-bottom: 20px;
    }
    .et-eyebrow::before {
      content: ""; width: 34px; height: 2px; border-radius: 2px;
      background: linear-gradient(90deg, var(--et-hi), transparent);
    }
    .et-head__text h2 {
      margin: 0 0 18px; font-family: 'Archivo', sans-serif; font-weight: 800;
      font-size: clamp(30px, 4.4vw, 54px); line-height: 1.04; letter-spacing: -.02em;
    }
    .et-head__text h2 span {
      color: transparent; background: linear-gradient(120deg, var(--et-eco-2), var(--et-hi-2));
      -webkit-background-clip: text; background-clip: text;
    }
    .et-head__text p { margin: 0; max-width: 56ch; font-size: clamp(15px, 1.2vw, 17.5px); line-height: 1.65; color: var(--et-muted); }

    .et-stats {
      display: flex; flex-wrap: wrap; gap: 14px 30px; margin-top: 30px;
      padding-top: 26px; border-top: 1px solid var(--et-line);
    }
    .et-stat b { display: block; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(22px, 2.4vw, 30px); line-height: 1; color: var(--et-text); }
    .et-stat b em { font-style: normal; color: var(--et-hi); }
    .et-stat span { display: block; margin-top: 7px; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--et-muted); }

    /* ==========================================================================
       4. CARUSEL & TOPLINE
       ========================================================================== */
    .et-carousel { position: relative; }
    .et-carousel__topline {
      display: flex; align-items: flex-end; justify-content: space-between;
      gap: 18px; margin-bottom: 26px; flex-wrap: wrap;
    }
    .et-carousel__topline h3 { margin: 0; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: clamp(19px, 2vw, 26px); letter-spacing: -.01em; }
    .et-carousel__topline p { margin: 6px 0 0; color: var(--et-muted); font-size: 14.5px; }
    .et-counter { font-family: 'Space Mono', monospace; font-size: 14px; color: var(--et-muted); white-space: nowrap; }
    .et-counter b { color: var(--et-hi); font-size: 22px; }

    /* ==========================================================================
       5. SCENA COVERFLOW
       ========================================================================== */
    .et-stage {
      position: relative;
      height: clamp(420px, 52vw, 640px);
      perspective: 1600px;
      touch-action: pan-y;
      cursor: grab;
      -webkit-user-select: none; user-select: none; -webkit-touch-callout: none;
    }
    .et-stage:active { cursor: grabbing; }
    .et-stage::after { 
      content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 40;
      background: linear-gradient(90deg, var(--et-ink) -4%, transparent 18% 82%, var(--et-ink) 104%);
      opacity: .95;
    }
    .et-track { position: absolute; inset: 0; transform-style: preserve-3d; }

    /* ==========================================================================
       6. STRUCTURA SLIDE-ULUI (Poză Sus / Card Text Jos)
       ========================================================================== */
    .et-slide {
      position: absolute; top: 50%; left: 50%;
      width: clamp(260px, 55%, 680px);
      height: auto;
      transform: translate(-50%, -50%);
      display: flex;
      flex-direction: column;
      background: transparent;
      transition: transform .72s cubic-bezier(.16, .84, .24, 1), opacity .55s ease, filter .6s ease;
      will-change: transform, opacity;
    }

    /* Caseta Imaginii */
    .et-slide__img-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 16/10;
      border-radius: var(--et-radius);
      overflow: hidden;
      border: 1px solid var(--et-line);
      box-shadow: 0 20px 45px -15px rgba(0, 0, 0, .6);
      background: linear-gradient(135deg, var(--slide-a, #25402f), var(--slide-b, #152018));
    }
    .et-slide__img-wrap::after {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(6,12,9,0) 60%, rgba(5,10,8,0.4));
      z-index: 2;
    }
    .et-slide__img {
      position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
      opacity: 0; transition: opacity .6s ease; pointer-events: none;
    }
    .et-slide__img.et-loaded { opacity: 1; }

    /* ==========================================================================
       7. CARD TEXT SEPARAT (Sub imagine, complet centrat)
       ========================================================================== */
    .et-slide__card {
      margin-top: 20px;
      padding: 10px 20px;
      width: 100%;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0.4;
      transform: translateY(10px);
      transition: transform .6s cubic-bezier(.16, .84, .24, 1), opacity .5s ease;
    }

    /* Cardul Micuț Solicitat */
    .et-slide__tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--et-hi-2);
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .08);
      padding: 5px 14px;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .et-slide__card h4 {
      margin: 0;
      font-family: 'Archivo', sans-serif;
      font-weight: 700;
      font-size: clamp(16px, 2.2vw, 24px);
      line-height: 1.2;
      letter-spacing: -.01em;
      color: var(--et-text);
    }

    /* Stările coverflow controlate din proprietăți */
    .et-slide[data-pos="0"] { z-index: 30; opacity: 1; filter: none; }
    .et-slide[data-pos="0"] .et-slide__card { opacity: 1; transform: translateY(0); }
    .et-slide[data-pos="0"] .et-slide__img-wrap { box-shadow: 0 35px 70px -20px rgba(0, 0, 0, .85), 0 0 0 1px rgba(245, 180, 60, .25); }

    .et-slide[data-pos="-1"], .et-slide[data-pos="1"] { z-index: 20; opacity: .55; filter: brightness(.6) saturate(.8); }
    .et-slide[data-pos="-2"], .et-slide[data-pos="2"] { z-index: 10; opacity: 0; filter: brightness(.3); }
    .et-slide[data-pos="hidden"] { z-index: 1; opacity: 0; pointer-events: none; }

    /* ==========================================================================
       8. SĂGEȚI NAVIGARE
       ========================================================================== */
    .et-nav {
      position: absolute; top: 40%; transform: translateY(-50%); z-index: 50;
      width: 52px; height: 52px; border-radius: 50%;
      display: grid; place-items: center; cursor: pointer;
      background: rgba(20, 32, 26, .7); backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, .16); color: var(--et-text);
      transition: background .25s ease, transform .25s ease, border-color .25s ease;
    }
    .et-nav:hover { background: var(--et-hi); color: #141d10; border-color: var(--et-hi); transform: translateY(-50%) scale(1.07); }
    .et-nav:active { transform: translateY(-50%) scale(.94); }
    .et-nav svg { width: 22px; height: 22px; }
    .et-nav--prev { left: clamp(4px, 2vw, 18px); }
    .et-nav--next { right: clamp(4px, 2vw, 18px); }

    /* ==========================================================================
       9. ELEMENTE INFERIOARE (Progres & Underbar)
       ========================================================================== */
    .et-progress { display: flex; gap: 8px; margin-top: 26px; }
    .et-seg { position: relative; flex: 1; height: 4px; border-radius: 100px; background: rgba(255, 255, 255, .12); overflow: hidden; cursor: pointer; }
    .et-seg__fill { position: absolute; inset: 0; width: 0%; border-radius: 100px; background: linear-gradient(90deg, var(--et-eco), var(--et-hi)); }
    .et-seg.is-done .et-seg__fill { width: 100%; }

    .et-underbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
    .et-hint { font-family: 'Space Mono', monospace; font-size: 12px; color: var(--et-muted); letter-spacing: .04em; }
    .et-toggle {
      display: inline-flex; align-items: center; gap: 9px; cursor: pointer; padding: 9px 16px; border-radius: 100px;
      background: var(--et-surface); border: 1px solid var(--et-line); color: var(--et-text); font-size: 13px; font-weight: 600;
      transition: border-color .25s ease, background .25s ease;
    }
    .et-toggle:hover { border-color: var(--et-eco); background: var(--et-surface-2); }
    .et-toggle svg { width: 14px; height: 14px; color: var(--et-eco-2); }

    /* ==========================================================================
       10. RESPONSIVE MEDIA QUERIES
       ========================================================================== */
    @media (max-width: 900px) {
      .et-head { grid-template-columns: 1fr; }
      .et-cover { aspect-ratio: 16/10; max-height: 360px; }
      .et-slide { width: clamp(240px, 70%, 540px); }
      .et-stage { height: clamp(380px, 60vw, 520px); }
      .et-nav { top: 35%; }
    }

    @media (max-width: 560px) {
      .et-slide { width: 85%; }
      .et-slide__card { margin-top: 14px; padding: 10px 5px; }
      .et-slide__tag { font-size: 10px; padding: 4px 10px; }
      .et-slide[data-pos="-1"], .et-slide[data-pos="1"] { opacity: .28; }
      .et-nav { width: 44px; height: 44px; top: 35%; }
      .et-stage::after { background: linear-gradient(90deg, var(--et-ink), transparent 12% 88%, var(--et-ink)); }
      .et-stat { flex: 1 1 40%; }
    }

    @media (max-width: 400px) {
      .et-underbar { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
      .et-nav { display: none; }
      .et-stage { height: 360px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .et-slide, .et-slide__card, .et-cover img, .et-nav { transition-duration: .01ms !important; }
      .et-cover__badge i { animation: none; }
    }


/* ======================================================================== */
/* Secțiune Escortă & Autorizații transport agabaritic                     */
/* ======================================================================== */

.ea-section {
  --ea-white: #ffffff;
  --ea-soft: #f4f7f4;
  --ea-ink: #0f1a15;
  --ea-ink-2: #28352e;
  --ea-muted: #5b6b62;
  --ea-line: rgba(15, 26, 21, 0.11);
  --ea-green: #1f7a43;
  --ea-green-2: #2f9e5a;
  --ea-green-deep: #0e2a1b;
  --ea-amber: #e0952a;
  --ea-amber-2: #f5b43c;
  --ea-amber-3: #1f5535;
 --ea-amber-4: #FFCE1B;
  --accent-color: #1f5535;
  --ea-radius: 24px;
  --ea-radius-lg: 30px;

  position: relative;
  box-sizing: border-box;
  padding: clamp(52px, 7vw, 120px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(90% 60% at 100% 0%, rgba(47, 158, 90, 0.07), transparent 55%),
    radial-gradient(70% 50% at 0% 100%, rgba(245, 180, 60, 0.06), transparent 55%),
    var(--ea-white);
  color: var(--ea-ink);
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  overflow: hidden;
}

.ea-section * {
  box-sizing: border-box;
}

.ea-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

/* ======================================================================== */
/* HEADER CARD ECOAGROTEC TRANS                                 */
/* ======================================================================== */

.ea-head-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

/* Cardul Alb cu Margine Galbenă */
.ea-head-card {
  position: relative;
  background: #ffffff;
  border: 2px solid var(--ea-amber-3, #1f5535); 
  border-left: 6px solid var(--ea-amber-3,#1f5535);
  border-radius: var(--ea-radius, 24px);
  padding: clamp(28px, 4vw, 42px);
  box-shadow: 0 15px 35px -10px rgba(15, 26, 21, 0.08);
}

/* Sub-titlu / Badge Firma */
.ea-head-card .description-title {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ea-amber, #e0952a);
  display: inline-block;
  margin-bottom: 8px;
}

/* Titlu Principal */
.ea-head-card h2 {
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 800;
  margin: 0 0 12px;
  font-family: 'Archivo', sans-serif;
  color: var(--ea-ink, #0f1a15);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

/* LINIE DE DESIGN SUB TITLU */
.title-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--ea-amber-2, #f5b43c), var(--ea-green-2, #2f9e5a));
  border-radius: 4px;
  margin-bottom: 20px;
}

/* Descriere Extinsă */
.ea-head-desc {
  margin: 0;
  font-size: clamp(14.5px, 1.1vw, 16.5px);
  color: var(--ea-muted, #5b6b62);
  line-height: 1.7;
  font-weight: 400;
}

/* Imagine Dreapta */
.ea-head-split__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
  border-radius: var(--ea-radius, 24px);
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(15, 26, 21, 0.15);
  border: 1px solid var(--ea-line, rgba(15, 26, 21, 0.11));
}

.ea-head-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.ea-head-split__media:hover img {
  transform: scale(1.05);
}

/* Ajustare Responsivă */
@media (max-width: 900px) {
  .ea-head-split {
    grid-template-columns: 1fr;
  }
  
  .ea-head-card {
    border-left-width: 2px; /* uniformizare margine pe mobil */
    border-top: 5px solid var(--ea-amber-2, #f5b43c);
  }
}
/* ============== SPLIT: 2 PANOURI ============== */
.ea-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 32px);
  margin-bottom: clamp(46px, 6vw, 80px);
}

.ea-panel {
  position: relative;
  border-radius: var(--ea-radius-lg);
  padding: clamp(28px, 3.4vw, 44px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* --- Panoul ESCORTĂ (card închis, premium) --- */
.ea-panel--escort {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(245, 180, 60, 0.16), transparent 55%),
    linear-gradient(160deg, #123521, var(--ea-green-deep));
  color: #eef5ef;
  box-shadow: 0 40px 80px -40px rgba(14, 42, 27, 0.6);
}

.ea-panel--escort::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background: repeating-linear-gradient(-45deg, transparent 0 40px, rgba(245, 180, 60, 0.04) 40px 80px);
  mask: radial-gradient(120% 100% at 100% 0%, #000, transparent 70%);
}

/* --- Panoul AUTORIZAȚII (card alb, curat) --- */
.ea-panel--permits {
  background: var(--ea-white);
  border: 1px solid var(--ea-line);
  box-shadow: 0 30px 70px -44px rgba(15, 26, 21, 0.35);
}

.ea-panel__top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.ea-ico {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 26px;
}

.ea-panel--escort .ea-ico {
  background: rgba(245, 180, 60, 0.15);
  border: 1px solid rgba(245, 180, 60, 0.35);
  color: var(--ea-amber-2);
}

.ea-panel--permits .ea-ico {
  background: rgba(31, 122, 67, 0.1);
  border: 1px solid rgba(31, 122, 67, 0.22);
  color: var(--ea-green);
}

.ea-kicker {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.ea-panel--escort .ea-kicker { color: var(--ea-amber-3); }
.ea-panel--permits .ea-kicker { color: var(--ea-green); }


.ea-panel__top h3 {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(21px, 2.6vw, 29px);
  line-height: 1.1;
  letter-spacing: -0.015em;
color: var(--ea-amber-4);
}

.ea-panel__desc {
  position: relative;
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.65;
}

.ea-panel--escort .ea-panel__desc { color: rgba(238, 245, 239, 0.78); }
.ea-panel--permits .ea-panel__desc { color: var(--ea-muted); }

/* --- Media (Imagine) --- */
.ea-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #25402f, #152018);
}

.ea-panel--permits .ea-media {
  background: linear-gradient(135deg, #dbe6df, #eef3ef);
  border: 1px solid var(--ea-line);
}

.ea-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.ea-panel:hover .ea-media img { transform: scale(1.04); }

.ea-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 14, 9, 0.55));
}

.ea-panel--permits .ea-media::after {
  background: linear-gradient(180deg, transparent 55%, rgba(15, 26, 21, 0.28));
}

.ea-media__cap {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 100px;
  font-family: 'Space Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(14, 22, 18, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.ea-media__cap i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ea-amber-2);
}

/* --- Checklist --- */
.ea-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.ea-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 13px 8px;
  border-radius: 12px;
  font-size: 14.5px;
  line-height: 1.45;
  transition: background 0.25s ease, transform 0.25s ease;
}

.ea-list li:hover { transform: translateX(3px); }

.ea-panel--escort .ea-list li { border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
.ea-panel--escort .ea-list li:hover { background: rgba(255, 255, 255, 0.05); }

.ea-panel--permits .ea-list li { border-bottom: 1px solid var(--ea-line); }
.ea-panel--permits .ea-list li:hover { background: var(--ea-soft); }

.ea-list li:last-child { border-bottom: none; }

.ea-check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.ea-panel--escort .ea-check {
  background: rgba(245, 180, 60, 0.16);
  color: var(--ea-amber-2);
}

.ea-panel--permits .ea-check {
  background: rgba(31, 122, 67, 0.12);
  color: var(--ea-green-2);
}

.ea-panel--escort .ea-list strong { color: #fff; font-weight: 700; }
.ea-panel--permits .ea-list strong { color: var(--ea-ink); font-weight: 700; }

/* Baliză rotativă */
.ea-beacon {
  position: absolute;
  top: clamp(28px, 3.4vw, 44px);
  right: clamp(28px, 3.4vw, 44px);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Space Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 206, 107, 0.9);
}

.ea-beacon i {
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ea-amber-2);
}

.ea-beacon i::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--ea-amber-2);
  animation: ea-flash 1.6s infinite;
}

@keyframes ea-flash {
  0% { transform: scale(1); opacity: 0.9; }
  70% { transform: scale(2.6); opacity: 0; }
  100% { opacity: 0; }
}

/* ============== PROCES ============== */
.ea-process {
  position: relative;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.ea-process__h {
  text-align: center;
  margin-bottom: 44px;
}

.ea-process__h h3 {
  margin: 0 0 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: -0.02em;
  color: var(--ea-green);

}

.ea-process__h p {
  margin: 0;
  color: var(--ea-muted);
  font-size: 15px;
}

.ea-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 26px);
  position: relative;
}

.ea-steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ea-green-2) 0 10px, transparent 10px 20px);
  opacity: 0.5;
}

.ea-step {
  position: relative;
  text-align: center;
}

.ea-step__num {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ea-white);
  border: 2px solid var(--ea-green-2);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--ea-green);
  box-shadow: 0 8px 20px -8px rgba(31, 122, 67, 0.5);
}

.ea-step:nth-child(4) .ea-step__num {
  border-color: var(--ea-amber);
  color: var(--ea-amber);
  box-shadow: 0 8px 20px -8px rgba(224, 149, 42, 0.55);
}

.ea-step h4 {
  margin: 0 0 7px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ea-green);

}

.ea-step p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ea-muted);
}

/* ============== CTA ============== */
.ea-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--ea-radius-lg);
  padding: clamp(30px, 4vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, #123521, var(--ea-green-deep));
  color: #eef5ef;
  box-shadow: 0 40px 80px -44px rgba(14, 42, 27, 0.55);
}

.ea-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
  background: repeating-linear-gradient(-45deg, transparent 0 46px, rgba(245, 180, 60, 0.05) 46px 92px);
  mask: radial-gradient(120% 120% at 90% 0%, #000, transparent 70%);
}

.ea-cta__t {
  position: relative;
  max-width: 70ch;
}

.ea-cta__t h3 {
  margin: 0 0 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(21px, 1.6vw, 30px);
  letter-spacing: -0.02em;
}

.ea-cta__t p {
  margin: 0;
  color: rgba(238, 245, 239, 0.78);
  font-size: 15px;
  line-height: 1.6;
}

.ea-btn {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  background: linear-gradient(120deg, var(--ea-amber-2), var(--ea-amber));
  color: #1b1206;
  border: none;
  box-shadow: 0 14px 30px -12px rgba(245, 180, 60, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ea-btn i {
  font-size: 18px;
  display: flex;
}

.ea-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px rgba(245, 180, 60, 0.7);
}

.ea-btn:active { transform: translateY(0); }

.ea-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  .ea-head-split { grid-template-columns: 1fr; }
  .ea-split { grid-template-columns: 1fr; }
  .ea-steps { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .ea-steps::before { display: none; }
  .ea-cta { text-align: left; }
}

@media (max-width: 520px) {
  .ea-steps { grid-template-columns: 1fr; }
  .ea-beacon { display: none; }
  .ea-cta { flex-direction: column; align-items: flex-start; }
  .ea-btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .ea-beacon i::after { animation: none; }
  .ea-list li, .ea-btn { transition: none; }
}
/*--------------------------------------------------------------
# Banner Transport Section
--------------------------------------------------------------*/
.transport-banner-hero {
    overflow: visible;
    padding: 90px 0;
    background: rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

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

.btn-transport {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: transform 0.3s ease,
                background-color 0.3s ease,
                color 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* ======================================================================== */
/* SECTION RECENZII                                                         */
/* ======================================================================== */

.rv-section {
  --rv-white: #ffffff;
  --rv-soft: #f4f7f4;
  --rv-ink: #0f1a15;
  --rv-ink-2: #28352e;
  --rv-muted: #5b6b62;
  --rv-line: rgba(15, 26, 21, 0.11);
  --rv-green: #1f7a43;
  --rv-green-2: #2f9e5a;
  --rv-green-deep: #0e2a1b;
  --rv-amber: #e0952a;
  --rv-amber-2: #f5b43c;
  --rv-radius: 22px;
  --rv-radius-lg: 30px;

  position: relative;
  box-sizing: border-box;
  padding: clamp(35px, 5vw, 90px) clamp(12px, 4vw, 64px);
  background:
    radial-gradient(80% 55% at 0% 0%, rgba(47, 158, 90, 0.07), transparent 55%),
    radial-gradient(70% 50% at 100% 100%, rgba(245, 180, 60, 0.06), transparent 55%),
    var(--rv-white);
  color: var(--rv-ink);
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  overflow: hidden;
}

.rv-section * { box-sizing: border-box; }
.rv-inner { position: relative; max-width: 1240px; margin: 0 auto; }

/* ============== GRID STÂNGA / DREAPTA ============== */
.rv-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

/* ---- STÂNGA: PORTRAIT & TITLU GLOBAL ---- */
.rv-intro {
  display: flex;
  flex-direction: column;
}

.rv-intro .section-title {
  text-align: left;
  padding: 10px 0;
  margin-bottom: 25px;
}

.rv-intro .section-title span {
  left: 0;
  right: auto;
}

/* Imagine Portrait */
.rv-portrait {
  position: relative;
  border-radius: var(--rv-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  width: 100%;
  max-width: 480px;
  background: linear-gradient(135deg, #25402f, #152018);
  box-shadow: 0 25px 50px -20px rgba(14, 42, 27, 0.35);
  border: 1px solid var(--rv-line);
}

.rv-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.rv-portrait:hover img { transform: scale(1.05); }

.rv-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 14, 9, 0.65));
}

/* Card plutitor rating peste portret */
.rv-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.rv-badge__score { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 26px; line-height: 1; }
.rv-badge__stars { display: flex; gap: 2px; color: var(--rv-amber-2); font-size: 11px; margin-bottom: 2px; }
.rv-badge__meta { font-size: 11px; color: rgba(255, 255, 255, 0.9); }

/* ============== DREAPTA: CONVEYOR RECENZII ============== */
.rv-reviews { position: relative; }

.rv-stack {
  position: relative;
  height: clamp(400px, 48vw, 500px);
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.rv-card {
  position: absolute;
  top: 50%;
  left: 4px;
  right: 4px;
  padding: clamp(16px, 2.2vw, 28px);
  border-radius: var(--rv-radius);
  background: var(--rv-white);
  border: 1px solid var(--rv-line);
  box-shadow: 0 20px 45px -25px rgba(15, 26, 21, 0.25);
  transform: translateY(-50%);
  transition: transform 0.7s cubic-bezier(0.16, 0.84, 0.24, 1),
              opacity 0.6s ease, filter 0.6s ease, box-shadow 0.6s ease;
  will-change: transform, opacity;
}

/* Poziționare Conveyor */
.rv-card[data-pos="0"] {
  z-index: 30; opacity: 1; filter: none;
  transform: translateY(-50%) scale(1);
  box-shadow: 0 30px 60px -20px rgba(15, 26, 21, 0.35), 0 0 0 1px rgba(31, 122, 67, 0.2);
}
.rv-card[data-pos="-1"] {
  z-index: 20; opacity: 0.55; filter: brightness(0.75);
  transform: translateY(calc(-50% - 130px)) scale(0.9);
}
.rv-card[data-pos="1"] {
  z-index: 20; opacity: 0.55; filter: brightness(0.75);
  transform: translateY(calc(-50% + 130px)) scale(0.9);
}
.rv-card[data-pos="-2"] { z-index: 10; opacity: 0; transform: translateY(calc(-50% - 220px)) scale(0.8); }
.rv-card[data-pos="2"] { z-index: 10; opacity: 0; transform: translateY(calc(-50% + 220px)) scale(0.8); }
.rv-card[data-pos="hidden"] { z-index: 1; opacity: 0; pointer-events: none; transform: translateY(-50%) scale(0.7); }

/* Detalii Card */
.rv-card__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.rv-card__stars { display: flex; gap: 3px; color: var(--rv-amber-2); font-size: 14px; }
.rv-card__quote { font-size: 26px; line-height: 1; color: rgba(31, 122, 67, 0.25); }
.rv-card__num {
  position: absolute; top: 14px; right: 16px;
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 13px;
  color: var(--rv-green); opacity: 0.3;
}
.rv-card__text {
  margin: 0 0 16px;
  font-size: clamp(13.5px, 1.05vw, 15.5px);
  line-height: 1.55;
  color: var(--rv-ink-2);
  word-break: break-word;
  
  /* Am eliminat -webkit-line-clamp pentru a nu mai tăia textul */
  display: block;
  overflow-y: auto;
  max-height: 200px; /* Permite scroll fin dacă o recenzie este extrem de lungă, fără a strica înălțimea cardului */
  padding-right: 4px;
}

/* Personalizare scrollbar discret pentru recenziile foarte lungi */
.rv-card__text::-webkit-scrollbar {
  width: 4px;
}
.rv-card__text::-webkit-scrollbar-thumb {
  background: var(--rv-green);
  border-radius: 10px;
}
.rv-card__foot { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  padding-top: 12px; 
  border-top: 1px solid var(--rv-line); 
}
.rv-avatar {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 13.5px;
  background: linear-gradient(135deg, var(--rv-green-2), var(--rv-green-deep));
}

/* ANTI-TRUNCHIERE (FĂRĂ TREI PUNCTE) */
.rv-who { flex: 1; min-width: 0; }
.rv-who b { 
  display: block; 
  font-family: 'Archivo', sans-serif; 
  font-weight: 700; 
  font-size: 13.5px; 
  white-space: normal; 
  word-break: break-word; 
  line-height: 1.25; 
}
.rv-who span { 
  display: block; 
  font-size: 11.5px; 
  color: var(--rv-muted); 
  margin-top: 2px; 
  white-space: normal; 
  word-break: break-word; 
  line-height: 1.25; 
}
.rv-src { 
  flex: 0 0 auto; 
  display: inline-flex; 
  align-items: center; 
  gap: 4px; 
  font-size: 11px; 
  color: var(--rv-muted); 
  font-family: 'Space Mono', monospace; 
  white-space: nowrap; 
}
.rv-src .bi-google { color: #2f9e5a; }
.rv-src .bi-patch-check-fill { color: var(--rv-green-2); }

/* CONTROALE */
.rv-controls { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.rv-nav {
  width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto; cursor: pointer;
  display: grid; place-items: center; font-size: 16px; color: var(--rv-ink);
  background: var(--rv-white); border: 1px solid var(--rv-line);
  box-shadow: 0 8px 20px -10px rgba(15, 26, 21, 0.3);
  transition: all 0.25s ease;
}
.rv-nav:hover { background: var(--rv-green); color: #fff; border-color: var(--rv-green); transform: translateY(-2px); }
.rv-dots { display: flex; gap: 5px; flex: 1; flex-wrap: wrap; }
.rv-dot { position: relative; width: 24px; height: 5px; border-radius: 100px; cursor: pointer; background: var(--rv-line); overflow: hidden; border: none; padding: 0; }
.rv-dot__fill { position: absolute; inset: 0; width: 0; border-radius: 100px; background: linear-gradient(90deg, var(--rv-green-2), var(--rv-amber)); transition: width 0.3s ease; }
.rv-dot.is-done .rv-dot__fill { width: 100%; }
.rv-count { font-family: 'Space Mono', monospace; font-size: 12.5px; color: var(--rv-muted); }
.rv-count b { color: var(--rv-green); font-size: 16px; }

/* ============== SUB SECȚIUNE: POZĂ LANDSCAPE ============== */
.rv-landscape {
  position: relative;
  margin-top: clamp(35px, 5vw, 65px);
  border-radius: var(--rv-radius-lg);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 420px;
  background: var(--rv-green-deep);
  border: 1px solid var(--rv-line);
  box-shadow: 0 20px 40px -20px rgba(15, 26, 21, 0.3);
}

.rv-landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.rv-landscape:hover img {
  transform: scale(1.03);
}

.rv-landscape__overlay {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  padding: clamp(14px, 2vw, 24px);
  background: linear-gradient(360deg, rgba(14, 42, 27, 0.88) 0%, rgba(14, 42, 27, 0.4) 70%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-size: clamp(12.5px, 1.2vw, 16px);
  font-weight: 700;
}

.rv-landscape__overlay i {
  color: var(--rv-amber-2);
  font-size: 20px;
  flex: 0 0 auto;
}

/* ============== ADAPTARE RESPONSIVE =============== */

@media (max-width: 900px) {
  .rv-grid { grid-template-columns: 1fr; gap: 32px; }
  
  .rv-intro .section-title { text-align: center; }
  .rv-intro .section-title span { left: 0; right: 0; }
  
  .rv-portrait { max-width: 500px; margin: 0 auto; }
  .rv-stack { height: 420px; }
  
  .rv-card[data-pos="-1"] { transform: translateY(calc(-50% - 110px)) scale(0.9); }
  .rv-card[data-pos="1"] { transform: translateY(calc(-50% + 110px)) scale(0.9); }
  
  .rv-landscape { aspect-ratio: 16 / 9; }
}

/* MOBIL EXTREM & ECRANE MICI (SUB 360px și SUB 300px) */
@media (max-width: 360px) {
  .rv-section { padding: 25px 8px; }
  .rv-card { padding: 12px; }
  .rv-card__text { -webkit-line-clamp: initial; display: block; font-size: 13px; }
  
  /* Aranjare verticală la subsolul cardului pe ecrane microscopice */
  .rv-card__foot { flex-wrap: wrap; }
  .rv-src { width: 100%; margin-top: 4px; justify-content: flex-end; }
  
  .rv-dots { display: none; } /* Ascundem punctele pentru a lăsa loc butoanelor */
  .rv-landscape { aspect-ratio: 4 / 3; }
  .rv-landscape__overlay { font-size: 11px; padding: 10px; }
}



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

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

.why-us .hero-badge {
  display: block;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 5px;
}

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

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

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

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

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

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

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

.why-us .hero-visual .primary-image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

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

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

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

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

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

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


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

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

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

  .why-us .hero-content .hero-description {
    margin-bottom: 2rem;
  }

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

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

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

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

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

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

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

  .why-us .hero-visual .primary-image-container .experience-badge .badge-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .why-us .hero-visual .primary-image-container .experience-badge .badge-info .years {
    font-size: 1.5rem;
    line-height: 1;
    margin: 0;
  }

  .why-us .hero-visual .primary-image-container .experience-badge .badge-info .text {
    font-size: 0.7rem;
    line-height: 1.1;
    margin: 0;
  }
}

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

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

.why-us .why-interactive-card {
  position: relative;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  gap: 20px;
  overflow: hidden;
  z-index: 1;
}

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

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

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

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

.why-us .portrait-image-wrapper {
  position: relative;
  height: 550px;
  border-radius: 25px;
  overflow: hidden;
  perspective: 1000px;
}

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

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

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

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

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

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

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

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

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

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

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

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

  .why-us .portrait-image-wrapper {
    width: 100%;
    height: 420px;
    border-radius: 20px;
  }

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

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

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

.why-preface .preface-card {
  background: var(--default-color);
  border-radius: 25px;
  padding: 30px 40px;
  width: 80%;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Call To Action Section - ECOAGROTEC (TALL & RIGHT-SIDE CENTERED)
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  padding: 130px 0; 
  min-height: 999px;
  display: flex;
  align-items: center;
  background: var(--default-color);
  overflow: hidden;
}

/* Fundal și Imagini */
.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.85) contrast(1.1) brightness(0.75);
}

/* Gradient întunecat pentru lizibilitate optimă pe dreapta */
.call-to-action .cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right, 
    rgba(0,0,0,0.2) 0%, 
    rgba(0,0,0,0.7) 50%, 
    rgba(0,0,0,0.92) 100%
  );
  z-index: 1;
}

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

/* Conținut Text */
.call-to-action .cta-content2 {
  text-align: center;
}

/* Stil pentru Logo în loc de badge text */
.call-to-action .cta-logo-wrap {
  margin-bottom: 1.25rem;
}

.call-to-action .cta-brand-logo {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.call-to-action .cta-content2 h2.cta-title {
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

/* Titlul principal pe Galben */
.call-to-action .cta-content2 h2 .highlight {
  font-size: 2.35rem;
  display: block;
  color: #fff301;
  letter-spacing: -0.5px;
}

.call-to-action .cta-content2 p {
  font-size: 16px;
  font-weight: 400;
  margin: 0 auto 2rem auto;
  color: var(--contrast-color);
  line-height: 1.65;
  max-width: 580px;
  opacity: 0.95;
  text-align: center;
}

/* Grid Compact Contact (Mărit ușor: lățime coloane crescută la 250px) */
.call-to-action .cta-grid-compact {
  display: grid;
  grid-template-columns: repeat(2, 250px);
  gap: 16px;
  justify-content: center;
  margin: 0 auto 2.25rem auto;
}

/* Stil Butoane Custom (Padding mărit pentru dimensiuni mai mari) */
.call-to-action .btn-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid transparent;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

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

/* Culori Borduri & Hover */
.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.2); }
.call-to-action .btn-whatsapp::before { background: rgba(37,211,102,0.2); }
.call-to-action .btn-email::before    { background: rgba(0,123,255,0.2); }
.call-to-action .btn-location::before { background: rgba(255,140,0,0.2); }

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

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

/* Iconițe */
.call-to-action .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.call-to-action .btn-call .icon-box     { background: rgba(174,13,13,0.3);   color: #ff5252; }
.call-to-action .btn-whatsapp .icon-box { background: rgba(37,211,102,0.3); color: #25d366; }
.call-to-action .btn-email .icon-box    { background: rgba(0,123,255,0.3);   color: #5193ff; }
.call-to-action .btn-location .icon-box { background: rgba(255,140,0,0.3);   color: #ff9d1e; }

/* Text Butoane */
.call-to-action .btn-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  overflow: hidden;
}

/* Titlurile cardurilor pe Galben */
.call-to-action .btn-label {
  color: #fff301;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.call-to-action .btn-sublabel {
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  margin-top: 1px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* Feature-uri (Jos) - Iconițe și texte pe galben */
.call-to-action .cta-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}

.call-to-action .cta-features .feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 1.25rem;
  position: relative;
}

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

.call-to-action .cta-features .feature-item i {
  font-size: 1.2rem;
  color: #fff301;
}

.call-to-action .cta-features .feature-item span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff301;
}

/* Stil Slogan cu Efect Gol în Interior (Hollow / Stroke Text) */
.call-to-action .cta-slogan-wrap {
  margin-top: 0.5rem;
}

.call-to-action .cta-hollow-slogan {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: transparent;
  -webkit-text-stroke: 1.5px #fff301;
  text-stroke: 1.5px #fff301;
  display: inline-block;
  text-align: center;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* Imagini Responsive Desktop / Mobile */
.call-to-action .cta-img-mobile { 
  display: none; 
}

/* Responsive / Dispozitive mobile */
@media (max-width: 991px) {
  .call-to-action {
    padding: 80px 0;
    min-height: auto;
  }

  .call-to-action .cta-bg::before {
    background: rgba(0, 0, 0, 0.75);
  }

  .call-to-action .cta-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    max-width: 480px;
    margin: 0 auto 2rem auto;
  }
}

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

  .call-to-action .cta-content2 h2 .highlight {
    font-size: 1.75rem;
  }

  .call-to-action .cta-grid-compact {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .call-to-action .cta-features {
    flex-direction: column;
    gap: 12px;
  }

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

  .call-to-action .cta-hollow-slogan {
    font-size: 1.4rem;
    -webkit-text-stroke: 1px #fff301;
    text-stroke: 1px #fff301;
    letter-spacing: 1px;
  }
}






/* ==============================================
   SECȚIUNE BANNER TRANSPORTURI
=============================================== */

:root {
  --amber-main: #fff301;
  --card-glass: rgba(18, 18, 26, 0.15);
  --border-glass: rgba(255, 170, 0, 0.25);
}

/* --- CONTAINERUL PRINCIPAL --- */
.hero-section {
  position: relative;
  width: 97%;
  max-width: 1380px;
  margin: 4em auto 3em;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

/* --- GIROFAR RESPONSIVE PREMIUM --- */
.lightbar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  
  width: fit-content; 
  max-width: 95%;
  
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6em 0.8em;
  
  font-size: clamp(4.5px, 0.7vw, 8px); 
  
  /* Gradient fin care imită aluminiul/plasticul închis */
  background: linear-gradient(180deg, #2a2a32 0%, #111116 40%, #050508 100%);
  border-radius: 1.5em;
  
  /* Folosim pixeli ficși pentru a evita pixelarea la scalare */
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.9);
  
  /* Umbre fine, realiste */
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.3),
    0 10px 20px rgba(255, 170, 0, 0.08),
    inset 0 1px 2px rgba(255,255,255,0.15);
}

/* Scalare girofar pe mobil */
@media (max-width: 768px) {
  .lightbar { font-size: 5px; }
  .lightbar-projection { height: 100px; }
}

@media (max-width: 480px) {
  .lightbar { font-size: 3.8px; }
  .lightbar-projection { height: 80px; }
}

/* Reflexia girofarului pe banner */
.lightbar-projection {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 150px;
  pointer-events: none;
  z-index: 5;
  opacity: 0.5;
  mix-blend-mode: screen;
  animation: projection-flash 1000ms infinite;
}

@keyframes projection-flash {
  0%, 9%, 15%, 19%, 25%, 100% { opacity: 0; }
  10%, 14%, 20%, 24% {
    background: radial-gradient(ellipse at top, rgba(255, 170, 0, 0.4) 0%, rgba(255, 102, 0, 0.1) 40%, transparent 70%);
    opacity: 1;
  }
}

/* --- MODULELE DE LUMINĂ (Sticla LED-urilor) --- */
.light {
  width: 9.6em; 
  height: 2.6em; 
  margin: 0 0.25em;
  flex-shrink: 0;
  position: relative;
  border-radius: 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2em; /* Spațiu puțin mai mare între LED-uri */
  
  /* Fundal foarte fin, fără culori contrastante dure */
  background: linear-gradient(180deg, #121218 0%, #030305 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 1em rgba(0,0,0,0.8), 0 2px 5px rgba(0,0,0,0.5);
  overflow: hidden;
}

/* Efect premium de sticlă deasupra modulului */
.light::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
  border-radius: 0.5em 0.5em 0 0;
  pointer-events: none;
  z-index: 15;
}

.inner-light {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  border-radius: 0.5em;
  opacity: 0;
  z-index: 5;
  pointer-events: none;
}

/* --- LED-urile INDIVIDUALE (Bulbs) --- */
.bulb {
  width: 1.1em;
  height: 1.1em;
  /* Forma rotundă dă aspectul de LED adevărat și elimină pixelarea colțurilor */
  border-radius: 50%; 
  position: relative;
  z-index: 10;
  
  /* Aspectul stins (sticla LED-ului) */
  background: radial-gradient(circle at 35% 35%, #4a2e00 0%, #0a0600 100%);
  /* Fără border! Folosim umbre pentru un aspect fin de 3D */
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.15), 
    0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Timings & Animații Girofar */
.delay .bulb, .delay .inner-light { animation-delay: 500ms; }
.strobe .bulb { animation: led-flash 1000ms infinite; }
.strobe.amber .inner-light { animation: module-glow-amber 1000ms infinite; }

/* Aprinderea LED-urilor (Efect de orbire / Glow premium) */
@keyframes led-flash {
  0%, 9%, 15%, 19%, 25%, 100% { 
    background: radial-gradient(circle at 35% 35%, #4a2e00 0%, #0a0600 100%);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 1px 2px rgba(0, 0, 0, 0.8);
  }
  10%, 14%, 20%, 24% { 
    /* Centrul LED-ului devine alb/galben foarte luminos */
    background: #fff; 
    box-shadow: 
      0 0 0.5em #fff,
      0 0 1.2em #ffaa00, 
      0 0 2em #ff5500;
  }
}

/* Lumina ambientală din interiorul sticlei modulului */
@keyframes module-glow-amber {
  0%, 9%, 15%, 19%, 25%, 100% { opacity: 0; }
  10%, 14%, 20%, 24% { 
    background: linear-gradient(180deg, rgba(255, 170, 0, 0.5) 0%, rgba(255, 85, 0, 0.1) 100%);
    box-shadow: 0 0 2.5em 0.5em rgba(255, 102, 0, 0.5), inset 0 0 1em rgba(255, 200, 0, 0.6);
    opacity: 1;
  }
}

/* --- BANNERUL PRINCIPAL --- */
.banner-container {
  position: relative;
  border-radius: 2.2rem; 
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); 
  overflow: hidden;
}

.banner {
  position: relative;
  width: 100%;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #08080c;
}

.banner-bg {
  position: absolute;
  inset: 0;
  background: url('../img/ecoagrotec-hero-02.webp') center center / cover no-repeat;
  transform: scale(1.02);
  transition: transform 0.8s ease-out;
}

.banner-container:hover .banner-bg {
  transform: scale(1.06);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(5, 5, 10, 0.4) 0%, rgba(7, 8, 14, 0.85) 65%, #050508 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

.tech-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 170, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 170, 0, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 3;
  pointer-events: none;
}

/* --- HEADER TOP BAR (Logo + Slogan) --- */
.banner-top-bar {
  position: relative;
  z-index: 4;
  padding: 3rem 2.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255,255,255,0.2));
}

.status-tag {
  font-family: 'Rajdhani', sans-serif;
  color: var(--amber-main);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* --- CONȚINUT CENTRAL (Titlu & Subtitlu) --- */
.banner-content {
  position: relative;
  z-index: 4;
  padding: 1.5rem 2.5rem;
  text-align: center;
  margin: auto 0;
}

.main-title {
  margin: 0;
  font-size: clamp(24px, 4.2vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.main-title span {
  display: block;
  color: var(--amber-main);
  text-shadow: 0 0 20px rgba(255, 170, 0, 0.4);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 18px auto;
  width: 60%;
  max-width: 300px;
}

.title-divider .line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber-main), transparent);
}

.title-divider .diamond {
  width: 8px;
  height: 8px;
  background: var(--amber-main);
  transform: rotate(45deg);
  box-shadow: 0 0 8px var(--amber-main);
}

.subtitle {
  color: #e0e0e0;
  font-size: clamp(14px, 1.6vw, 19px);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0;
  text-transform: uppercase;
}

/* --- BARA DE SPECIFICAȚII (Bottom Spec Cards) --- */
.spec-bar {
  position: relative;
  z-index: 4;
  padding: 0 2rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.spec-card {
  background: var(--card-glass);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.spec-card:hover {
  border-color: var(--amber-main);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5), 0 0 15px rgba(255, 170, 0, 0.2);
}

.spec-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 170, 0, 0.12);
  border: 1px solid rgba(255, 170, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--amber-main);
  flex-shrink: 0;
}

.spec-icon svg { width: 22px; height: 22px; fill: currentColor; }

.spec-info label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #8a8a9e;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.spec-info val {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
}

/* --- ADJUSTĂRI RESPONSIVE GENERALE --- */
@media (max-width: 768px) {
  .hero-section { margin-top: 3.5em; }
  
  /* Centrarea logo-ului și ajustare padding */
  .banner-top-bar { 
    padding: 2.2rem 1.5rem 0; 
    justify-content: center; 
  }
  
  /* Imagine de fundal dedicată pentru mobil */
  .banner-bg {
    background-image: url('../img/ecoagrotec-hero-02-mobile.webp');
    background-position: center center; /* Asigură încadrarea corectă pe verticală */
  }

  .banner-content { padding: 1rem 1.5rem; }
  .spec-bar { padding: 0 1.2rem 1.5rem; grid-template-columns: 1fr; }
  
  /* Sloganul dispare pe mobil pentru a lăsa loc curat logo-ului pe centru */
  .status-tag { display: none; } 
}









/* ==============================================
   CSS STILIZARE SECȚIUNE TRAILERE & BARA LOGO-URI
=============================================== */
.trailer-ecoagrotec-section {
  padding: 90px 20px;
  background-color: #ffffff;
  color: #0f172a;
  overflow: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.trailer-ecoagrotec-container {
  max-width: 1320px;
  margin: 0 auto;
}

/* Header Secțiune */
.trailer-ecoagrotec-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px auto;
}

.trailer-ecoagrotec-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #205535;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.trailer-ecoagrotec-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px 0;
  line-height: 1.25;
}

.trailer-ecoagrotec-desc {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Grid Principal 2 Coloane */
.trailer-ecoagrotec-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 45px;
  align-items: center;
}

/* ----------------------------------------------
   STÂNGA: 3 CAPETE TRACTOR
------------------------------------------------ */
.trailer-ecoagrotec-left {
  background: #f8fafc;
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid #e2e8f0;
}

.trailer-ecoagrotec-tractors-title {
  margin-bottom: 22px;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 12px;
}

.trailer-ecoagrotec-tractors-title h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 4px 0;
  color: #0f172a;
}

.trailer-ecoagrotec-tractors-title span {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
}

.trailer-ecoagrotec-tractor-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trailer-ecoagrotec-tractor-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f5f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trailer-ecoagrotec-tractor-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 20px rgba(32, 85, 53, 0.1);
  border-color: rgba(32, 85, 53, 0.3);
}

.trailer-ecoagrotec-tractor-img-wrap {
  width: 100px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trailer-ecoagrotec-tractor-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
}

.trailer-ecoagrotec-tractor-info h4 {
  font-size: 0.98rem;
  font-weight: 800;
  margin: 4px 0 2px 0;
  color: #0f172a;
}

.trailer-ecoagrotec-tractor-info p {
  font-size: 0.78rem;
  color: #64748b;
  margin: 0;
}

.trailer-ecoagrotec-tractor-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 10px;
  background: #205535;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* ----------------------------------------------
   DREAPTA: SLIDER VERTICAL 2 POZE
------------------------------------------------ */
.trailer-ecoagrotec-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.trailer-ecoagrotec-vstage-wrapper {
  position: relative;
  width: 100%;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trailer-ecoagrotec-vstage {
  position: relative;
  width: 100%;
  height: 100%;
}

.trailer-ecoagrotec-vslide {
  position: absolute;
  left: 40%;
  top: 50%;
  width: 480px;
  max-width: 80%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.35, 1), opacity 0.65s ease, filter 0.65s ease;
  cursor: pointer;
  user-select: none;
}

.trailer-ecoagrotec-trailer-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Poziții Poze */
.trailer-ecoagrotec-vslide[data-vpos="main"] {
  transform: translate(-50%, calc(-50% + 40px)) scale(1.15);
  z-index: 10;
  opacity: 1;
  filter: grayscale(0%) drop-shadow(0 18px 28px rgba(0, 0, 0, 0.2));
}

.trailer-ecoagrotec-vslide[data-vpos="top"] {
  transform: translate(calc(-50% + 50px), calc(-50% - 110px)) scale(0.68);
  z-index: 5;
  opacity: 0.45;
  filter: grayscale(100%);
}

.trailer-ecoagrotec-vslide[data-vpos="hidden"] {
  transform: translate(-50%, -50%) scale(0.2);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

/* ----------------------------------------------
   SĂGEȚI NAVIGARE CU TIMER PROGRESS RING
------------------------------------------------ */
.trailer-ecoagrotec-vnav-group {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 25;
}

.trailer-ecoagrotec-vnav {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #205535;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.trailer-ecoagrotec-vnav .trailer-ecoagrotec-nav-icon,
.trailer-ecoagrotec-vnav svg:not(.trailer-ecoagrotec-progress-ring) {
  width: 20px;
  height: 20px;
  z-index: 2;
  position: relative;
}

.trailer-ecoagrotec-vnav:hover {
  background: #205535;
  color: #ffffff;
  border-color: #205535;
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(32, 85, 53, 0.3);
}

.trailer-ecoagrotec-progress-ring {
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  transform: rotate(-90deg);
  pointer-events: none;
  z-index: 1;
}

.trailer-ecoagrotec-ring-bg {
  fill: none;
  stroke: rgba(32, 85, 53, 0.15);
  stroke-width: 3;
}

.trailer-ecoagrotec-ring-fill {
  fill: none;
  stroke: #205535;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 125.66;
  stroke-dashoffset: 125.66;
  transition: stroke-dashoffset 0.1s linear;
}

.trailer-ecoagrotec-vnav:hover .trailer-ecoagrotec-ring-fill {
  stroke: #86efac;
}

/* ----------------------------------------------
   DOTS PAGINARE
------------------------------------------------ */
.trailer-ecoagrotec-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.trailer-ecoagrotec-dot {
  width: 100%;
  max-width: 10px;
  height: 10px;
  border-radius: 20px;
  background-color: #cbd5e1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s ease;
}

.trailer-ecoagrotec-dot:hover {
  background-color: #94a3b8;
}

.trailer-ecoagrotec-dot.active {
  max-width: 28px;
  background-color: #205535;
}

/* ----------------------------------------------
   BARĂ LOGO-URI - VIZIBILĂ PE DESKTOP (PC)
------------------------------------------------ */
.trailer-ecoagrotec-logo-bar {
  display: flex;
  justify-content: center; /* Schimbat din space-between în center */
  align-items: center;
  padding: 12px 20px;
  background: #f8fafc;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  gap: 25px; /* Mărit puțin spațiul dintre grupuri pentru un aspect mai aerisit */
}

.trailer-ecoagrotec-brand-logos {
  display: flex;
  align-items: center;
  justify-content: center; /* Adăugat pentru a centra logo-urile din interior */
  gap: 20px;
  flex-wrap: wrap;
}

.eco-bfit-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition: transform 0.3s ease;
}

.eco-bfit-logo-item:hover {
  transform: translateY(-2px);
}

.eco-bfit-logo-item img {
  max-height: 32px;
  max-width: 120px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.trailer-ecoagrotec-company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trailer-ecoagrotec-company-logo img {
  max-height: 36px;
  max-width: 140px;
  object-fit: contain;
}
/* ----------------------------------------------
   CARD VERDE #205535 (VERSIUNE COMPACTĂ)
------------------------------------------------ */
.trailer-ecoagrotec-card-green {
  background-color: #205535;
  border-radius: 14px;
  padding: 12px 20px; /* Redus de la 18px 28px pentru înălțime mai mică */
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(32, 85, 53, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.trailer-ecoagrotec-card-slider {
  position: relative;
  min-height: 26px; /* Redus de la 85px la 26px pentru a nu lăsa spațiu gol */
}

.trailer-ecoagrotec-details-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.trailer-ecoagrotec-details-item.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.trailer-ecoagrotec-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0; /* Eliminat padding-ul inferior */
  margin-bottom: 0;  /* Eliminată marginea inferioară */
  border-bottom: none; /* Eliminată linia de separare */
}

.trailer-ecoagrotec-card-type {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #86efac;
}

.trailer-ecoagrotec-card-brand {
  font-size: 0.9rem;
  font-weight: 800;
  color: #ffffff;
}
/* ----------------------------------------------
   SEPARATOR CU LINIE GALBENĂ ȘI LOGO CENTRAL
------------------------------------------------ */
.trailer-ecoagrotec-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 6px 0;
  width: 100%;
}

/* Linia Orizontală Galbenă (#fff301) */
.trailer-ecoagrotec-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px; /* Grosimea liniei */
  background-color: #fff301; /* Culoarea galbenă solicitată */
  transform: translateY(-50%);
  z-index: 1;
}

/* Logo-ul din mijloc pe fundal transparent */
.trailer-ecoagrotec-divider-logo {
  position: relative;
  z-index: 2;
  background-color: #205535; /* Același verde ca al cardului pentru a acoperi linia în spatele imaginii */
  padding: 0 12px;           /* Spațiu stânga-dreapta în jurul logo-ului */
  height: 28px;              /* Înălțimea logo-ului (ajustează după preferință) */
  width: auto;
  object-fit: contain;
  display: block;
}
/* ----------------------------------------------
   BANNER LANDSCAPE (3 CASETE)
------------------------------------------------ */
.trailer-ecoagrotec-full-banner {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 20px;
  width: 100%;
  margin-top: 50px;
}

.trailer-ecoagrotec-banner-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trailer-ecoagrotec-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
}

.trailer-ecoagrotec-yellow-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: #facc15;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0f172a;
}

.trailer-ecoagrotec-yellow-icon svg {
  width: 28px;
  height: 28px;
}

.trailer-ecoagrotec-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trailer-ecoagrotec-banner-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.trailer-ecoagrotec-banner-sub {
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 500;
}

.trailer-ecoagrotec-banner-card--center {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 22px 20px;
  justify-items: center;
}

.trailer-ecoagrotec-stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.trailer-ecoagrotec-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #205535;
}

.trailer-ecoagrotec-stat-lbl {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
}

.trailer-ecoagrotec-stat-divider {
  width: 1px;
  height: 40px;
  background-color: #e2e8f0;
}

/* ----------------------------------------------
   BUTON CTA FINAL
------------------------------------------------ */
.trailer-ecoagrotec-bottom-cta {
  text-align: center;
  margin-top: 45px;
}

.trailer-ecoagrotec-btn-landscape {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #205535;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 38px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(32, 85, 53, 0.25);
  transition: all 0.35s ease;
}

.trailer-ecoagrotec-btn-landscape svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.trailer-ecoagrotec-btn-landscape:hover {
  background-color: #174027;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(32, 85, 53, 0.35);
}

.trailer-ecoagrotec-btn-landscape:hover svg {
  transform: translateX(6px);
}

/* ==============================================
   RESPONSIVITATE AVANSATĂ & ECOAN
=============================================== */

/* Tablete mari & Laptop-uri mici (<= 1100px) */
@media (max-width: 1100px) {
  .trailer-ecoagrotec-grid {
    grid-template-columns: 340px 1fr;
    gap: 30px;
  }

  .trailer-ecoagrotec-full-banner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Tablete & Ecran Mediu (<= 992px) */
@media (max-width: 992px) {
  .trailer-ecoagrotec-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .trailer-ecoagrotec-left {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .trailer-ecoagrotec-vslide {
    left: 50%;
  }

  .trailer-ecoagrotec-vslide[data-vpos="main"] {
    transform: translate(-50%, calc(-50% + 35px)) scale(1.05);
  }

  .trailer-ecoagrotec-vslide[data-vpos="top"] {
    transform: translate(-50%, calc(-50% - 90px)) scale(0.68);
  }
}

/* Telefoane & Tablete (<= 768px) - ASCUNDE BARA DE LOGO-URI PE MOBIL */
@media (max-width: 768px) {
  .trailer-ecoagrotec-logo-bar {
    display: none !important;
  }

  .trailer-ecoagrotec-section {
    padding: 50px 16px;
  }

  .trailer-ecoagrotec-card-body {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 10px;
  }

  .trailer-ecoagrotec-vstage-wrapper {
    height: 270px;
  }

  .trailer-ecoagrotec-vslide {
    width: 340px;
    height: 160px;
  }

  .trailer-ecoagrotec-vnav-group {
    right: 5px;
  }

  .trailer-ecoagrotec-vnav {
    width: 38px;
    height: 38px;
  }

  .trailer-ecoagrotec-vnav .trailer-ecoagrotec-nav-icon,
  .trailer-ecoagrotec-vnav svg:not(.trailer-ecoagrotec-progress-ring) {
    width: 16px;
    height: 16px;
  }

  .trailer-ecoagrotec-banner-card--center {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 16px;
  }

  .trailer-ecoagrotec-stat-divider {
    width: 80%;
    height: 1px;
    background-color: #e2e8f0;
  }
}

/* Telefoane foarte mici (<= 480px) - TOATE ELEMENTELE VIN UNELE SUB ALTELE */
@media (max-width: 480px) {
  /* Specificațiile tehnice din cardul verde vin 1 câte 1 vertical */
  .trailer-ecoagrotec-card-body {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  /* Cardurile de tractor se rearanjează pe verticală */
  .trailer-ecoagrotec-tractor-card {
    flex-direction: column;
    text-align: center;
    padding: 14px 12px;
  }

  .trailer-ecoagrotec-tractor-img-wrap {
    width: 100%;
    height: 75px;
  }

  /* Banner-ele informative vin pe verticală, aliniate la centru */
  .trailer-ecoagrotec-banner-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
  }

  .trailer-ecoagrotec-card-green {
    padding: 16px;
  }

  .trailer-ecoagrotec-card-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .trailer-ecoagrotec-card-brand {
    text-align: center;
  }

  .trailer-ecoagrotec-vstage-wrapper {
    height: 220px;
  }

  .trailer-ecoagrotec-vslide {
    width: 270px;
    height: 130px;
  }

  .trailer-ecoagrotec-vslide[data-vpos="main"] {
    transform: translate(-50%, calc(-50% + 20px)) scale(1);
  }

  .trailer-ecoagrotec-vslide[data-vpos="top"] {
    transform: translate(-50%, calc(-50% - 70px)) scale(0.65);
  }

  .trailer-ecoagrotec-btn-landscape {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.92rem;
  }

  .trailer-ecoagrotec-stat-num {
    font-size: 1.2rem;
  }

  .trailer-ecoagrotec-stat-lbl {
    font-size: 0.8rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 767.98px) {
  .fleet-trucks-card {
    border-left: 0;
    border-bottom: 5px solid var(--accent-color);
    text-align: center;
    align-items: center;
    padding: 2rem 1.5rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .bento2-item {
    height: 250px;
  }

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

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

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

/* ============================================================
   SECȚIUNE BANNER FLOTĂ — STIL LIGHT (FUNDAL ALB)
   ============================================================ */

.eco-bfit-section {
  --bfit-yellow: #facc15;
  --bfit-yellow-dark: #205535;
  --bfit-text-main: #0f172a;
  --bfit-text-muted: #475569;
  --bfit-card-bg: #f8fafc;
  --bfit-border: #e2e8f0;
  
  width: 100%;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background-color: #ffffff;
  color: var(--bfit-text-main);
  padding: 60px 20px;
  box-sizing: border-box;
}

.eco-bfit-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.eco-bfit-wrapper {
  max-width: 1240px;
  margin: 0 auto;
}

/* HEADER TITLU & DESCRIERE */
.eco-bfit-header {
  margin-bottom: 35px;
}

.eco-bfit-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bfit-yellow-dark);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

.eco-bfit-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--bfit-text-main);
  line-height: 1.15;
  margin-bottom: 16px;
}

.eco-bfit-title span {
  color: var(--bfit-yellow-dark);
}

.eco-bfit-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--bfit-text-muted);
  max-width: 900px;
}

.eco-bfit-desc strong {
  color: var(--bfit-text-main);
}

/* GRID PRINCIPAL: HERO LANDSCAPE + LOGO-URI */
.eco-bfit-hero-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  margin-bottom: 30px;
}

/* POZA PRINCIPALĂ LANDSCAPE (DESKTOP) */
.eco-bfit-main-image-card {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--bfit-border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  background: var(--bfit-card-bg);
}

.eco-bfit-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.eco-bfit-main-image-card:hover .eco-bfit-main-img {
  transform: scale(1.03);
}

.eco-bfit-img-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--bfit-border);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--bfit-text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  z-index: 2;
}

.eco-badge-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

/* CARD LOGO-URI DREAPTA */
.eco-bfit-brands-card {
  background: var(--bfit-card-bg);
  border: 1px solid var(--bfit-border);
  border-radius: 24px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eco-bfit-brands-header {
  margin-bottom: 16px;
  text-align: center;
}

.eco-bfit-brands-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--bfit-text-muted);
  letter-spacing: 1.5px;
}

.eco-bfit-brands-line {
  height: 2px;
  width: 30px;
  background: var(--bfit-yellow-dark);
  margin: 6px auto 0 auto;
  border-radius: 2px;
}

.eco-bfit-logo-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eco-bfit-logo-item {
  background: #ffffff;
  border: 1px solid var(--bfit-border);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eco-bfit-logo-item:hover {
  transform: translateX(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.eco-bfit-logo-item img {
  max-height: 28px;
  width: auto;
  object-fit: contain;
}

/* SPECIFICAȚII TEHNICE (3 CARDURI) */
.eco-bfit-stats-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr 0.9fr;
  gap: 20px;
  margin-bottom: 30px;
}

.eco-bfit-stat-card {
  background: var(--bfit-card-bg);
  border: 1px solid var(--bfit-border);
  border-radius: 18px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.eco-bfit-stat-card:hover {
  border-color: var(--bfit-yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.04);
}

.eco-bfit-icon-box {
  width: 48px;
  height: 48px;
  background-color: var(--bfit-yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eco-bfit-icon-box svg {
  width: 24px;
  height: 24px;
  color: #0f172a;
}

.eco-bfit-stat-info strong {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--bfit-text-main);
}

.eco-bfit-stat-info span {
  display: block;
  font-size: 0.82rem;
  color: var(--bfit-text-muted);
  margin-top: 2px;
}

/* CARDUL 2 DIN MIJLOC — 3 COLOANE CU LINII DIVIZOARE */
.eco-card-split-3 {
  justify-content: space-between;
  padding: 16px 20px;
}

.eco-split-col {
  text-align: center;
  flex: 1;
}

.eco-split-col strong {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.1;
}

.eco-split-col span {
  display: block;
  font-size: 0.78rem;
  color: var(--bfit-text-muted);
  margin-top: 4px;
}

.eco-split-divider {
  width: 1px;
  height: 38px;
  background: var(--bfit-border);
  flex-shrink: 0;
}

.txt-accent {
  color: var(--bfit-yellow-dark) !important;
}

/* SEPARATOR FINE */
.eco-bfit-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--bfit-border) 50%, transparent 100%);
  margin: 30px 0;
}

/* PASTILE (PILLS) */
.eco-bfit-pills-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 45px;
}

.eco-bfit-pill {
  background: var(--bfit-card-bg);
  border: 1px solid var(--bfit-border);
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--bfit-text-main);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.eco-bfit-pill:hover {
  border-color: var(--bfit-yellow-dark);
  transform: translateY(-2px);
  color: var(--bfit-yellow-dark);
}

.eco-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--bfit-yellow-dark);
}

/* GALERIE IMAGINI FOTO LANDSCAPE */
.eco-bfit-footer-gallery {
  margin-top: 20px;
}

.eco-bfit-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.eco-bfit-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 200px;
  border: 1px solid var(--bfit-border);
  background: var(--bfit-card-bg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.eco-bfit-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.eco-frame-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 16px 14px 10px 14px; /* Un pic mai înalt pentru lizibilitate */
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.9) 100%);
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  box-sizing: border-box; /* Asigură întinderea de la 0 la 100% fără depășire */
}

.eco-bfit-frame:hover img {
  transform: scale(1.06);
}

.eco-bfit-frame:hover .eco-frame-caption {
  opacity: 1;
}

/* RESPONSIVE TABLETĂ */
@media (max-width: 1024px) {
  .eco-bfit-hero-grid {
    grid-template-columns: 1fr;
  }

  .eco-bfit-main-image-card {
    height: 350px;
  }

  .eco-bfit-logo-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .eco-bfit-logo-item {
    flex: 1 1 180px;
  }

  .eco-bfit-stats-grid {
    grid-template-columns: 1fr;
  }

  .eco-bfit-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* RESPONSIVE MOBIL */
@media (max-width: 600px) {
  /* Prima poză landscape - scalare proporțională */
  .eco-bfit-main-image-card {
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
  }

  .eco-bfit-main-img {
    object-fit: cover;
  }

  /* CENTRARE CARDURI SPECIFICAȚII DOAR PE MOBIL (21m x 3.2m și Twistlock) */
  .eco-bfit-stat-card {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 22px 16px;
  }

  .eco-bfit-stat-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Cardul 2 din mijloc pe mobil */
  .eco-card-split-3 {
    flex-direction: column;
    gap: 12px;
  }

  .eco-split-divider {
    width: 80%;
    height: 1px;
    margin: 0 auto;
  }

  /* Galerie de jos pe mobil */
  .eco-bfit-gallery-grid {
    grid-template-columns: 1fr;
  }

  .eco-bfit-frame {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .eco-bfit-frame img {
    object-fit: cover;
  }

  .eco-bfit-pills-row {
    flex-direction: column;
  }

  .eco-bfit-pill {
    width: 100%;
    justify-content: center;
  }
}


/*--------------------------------------------------------------
# Semiremorci Section Style
--------------------------------------------------------------*/
.semirem-section {
  padding: 80px 0;
  background-color: var(--background-color, #f8f9fa);
}

.semirem-subtitle {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--accent-color, #111827);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.semirem-main-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--accent-color, #111827);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.semirem-description {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--default-color, #4b5563);
}

/*--------------------------------------------------------------
# Hero Banner & Overlapping Cutout Cards
--------------------------------------------------------------*/
.semirem-hero-wrapper {
  position: relative;
  margin: 50px 0; /* Spațiu pentru cardurile plutitoare sus/jos */
}

/* Cardul rotunjit din partea de SUS (Logo EcoAgrotec) cu efect de tăietură */
.semirem-hero-top-logo {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  padding: 5px 15px;
  border-radius: 30px;
  /* Secretul "tăieturii": prima umbră (8px) este solidă și imită fundalul, a doua dă efectul de plutire */
  box-shadow: 0 0 0 8px var(--background-color, #f8f9fa), 0 15px 25px rgba(0,0,0,0.1);
  z-index: 10;
}

.semirem-hero-top-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  
  /* Coboară doar logo-ul cu 6px (ajustează valoarea după bunul plac) */
  transform: translateY(16px); 
}

/* Bannerul Principal */
.semirem-hero-banner {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.semirem-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.semirem-hero-banner:hover .semirem-hero-bg {
  transform: scale(1.03);
}

.semirem-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65); 
  transition: background-color 0.15s ease-out;
  will-change: background-color;
}

.semirem-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.semirem-hero-text {
  color: #fff301;
  font-size: 2rem;
  font-weight: 900;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.85);
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.3;
}

/* Cardul rotunjit din partea de JOS (Logouri Semiremorci) cu efect de tăietură */
.semirem-hero-bottom-logos {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  padding: 15px 40px;
  border-radius: 40px;
  border: 3px solid #0f5132; /* Verde închis profesional */
  /* Același secret: 8px de spațiu fals decupat din banner */
  box-shadow: 0 0 0 8px var(--background-color, #f8f9fa), 0 15px 30px rgba(0,0,0,0.1);
  z-index: 10;
  
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  width: max-content;
  max-width: 95%;
}

.semirem-hero-bottom-logos img {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: grayscale(15%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.semirem-hero-bottom-logos img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/*--------------------------------------------------------------
# Trailer Cards Style
--------------------------------------------------------------*/
.semirem-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.semirem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Card Image & Soft Pierdut Alb Overlay */
.semirem-img-wrapper {
  position: relative;
  height: 250px;
  width: 100%;
  overflow: hidden;
}

.semirem-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.semirem-card:hover .semirem-img-wrapper img {
  transform: scale(1.05);
}

.semirem-img-fade {
  position: absolute;
  inset: 0;
  /* Am urcat startul efectului de la 40% la 65% (imaginea rămâne clară mult mai jos) */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0.85) 88%, #ffffff 100%);
  pointer-events: none;
}
.semirem-card-title {
  position: absolute;
  bottom: 12px;
  left: 24px;
  right: 24px;
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(255,255,255,0.8);
}

/* Card Body & Specs */
.semirem-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.semirem-card-text {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Dotted Line Leader List Design */
.semirem-specs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  background: #f9fafb;
  border-radius: 12px;
  padding: 14px 18px;
  border: 1px solid #f3f4f6;
}

.semirem-specs-list li {
  display: flex;
  align-items: baseline;
  padding: 8px 0;
  font-size: 0.925rem;
}

.semirem-specs-list li:not(:last-child) {
  border-bottom: 1px dashed #e5e7eb;
}

.spec-label {
  font-weight: 700;
  color: #374151;
  white-space: nowrap;
}

.spec-leader {
  flex-grow: 1;
  border-bottom: 2px dotted #cbd5e1;
  margin: 0 10px;
  position: relative;
  top: -3px;
}

.spec-value {
  font-weight: 800;
  color: #0f172a;
  text-align: right;
  white-space: nowrap;
}

/* Logo Landscape Centrat Jos */
.semirem-brand-logo {
  margin-top: auto;
  padding-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #f3f4f6;
}

.semirem-brand-logo img {
  max-height: 38px;
  width: auto;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.semirem-card:hover .semirem-brand-logo img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Responsive Rules
--------------------------------------------------------------*/
@media (max-width: 991.98px) {
  .semirem-hero-banner {
    height: 260px;
  }
  .semirem-hero-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  /* Ajustări pentru mobil - Carduri plutitoare */
  .semirem-hero-top-logo {
    padding: 10px 25px;
    top: -25px;
  }
  .semirem-hero-top-logo img {
    height: 35px;
  }
  .semirem-hero-bottom-logos {
    padding: 12px 20px;
    gap: 15px;
    bottom: -30px;
  }
  .semirem-hero-bottom-logos img {
    height: 22px;
  }
}

@media (max-width: 575.98px) {
  .semirem-hero-wrapper {
    margin: 60px 0; /* Mai mult spațiu pentru wrap */
  }
  .semirem-hero-banner {
    height: 220px;
  }
  .semirem-hero-text {
    font-size: 1.2rem;
  }
  .semirem-hero-bottom-logos {
    flex-wrap: wrap; /* Permite logourilor să treacă pe 2 rânduri dacă nu încap */
    padding: 15px;
    border-radius: 20px;
    bottom: -45px;
  }
  .semirem-specs-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .spec-leader {
    display: none;
  }
  .spec-value {
    text-align: left;
  }
}


/*--------------------------------------------------------------
# Secțiune Semiremorci Specializate - Design & Responsive
--------------------------------------------------------------*/
.config-semirem-section {
  background: linear-gradient(135deg, #ffffff 0%, #f4f7f6 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* --- Hero Top --- */
.config-hero-row {
  margin-bottom: 60px;
}

.config-badge-sub {
  display: inline-block;
  background-color: rgba(15, 81, 50, 0.08);
  color: #0f5132;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.config-main-title {
  color: #1a202c;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.config-main-desc {
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.config-quote-box {
  border-left: 4px solid #0f5132;
  background-color: #ffffff;
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.config-quote-box p {
  color: #2d3748;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.config-hero-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 81, 50, 0.1);
}

.config-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.config-hero-img-wrapper:hover .config-hero-img {
  transform: scale(1.04);
}

.config-hero-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 81, 50, 0.9);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tag-dot {
  width: 8px; height: 8px;
  background-color: #2ec4b6;
  border-radius: 50%;
}

/* --- Lista de Carduri --- */
.config-interactive-area {
  margin-top: 10px;
}

.config-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.config-list-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid transparent;
  border-radius: 16px;
  padding: 18px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.config-list-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
  border-color: #cbd5e1;
}

.config-list-item.active {
  border-color: #e2e8f0;
  border-left-color: #0f5132;
  box-shadow: 0 12px 30px rgba(15, 81, 50, 0.08);
}

/* Structura internă desktop - Buton fixat la marginea dreaptă */
.config-card-main-content {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.config-thumb-preview {
  width: 190px;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.config-thumb-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
}

.config-item-info {
  flex: 1 1 auto;
  padding-right: 15px;
}

.config-card-title {
  color: #1a202c;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.config-axles-badge {
  background-color: #0f5132;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.config-features-list li {
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.config-features-list li i {
  color: #0f5132;
  font-size: 0.95rem;
}

/* Buton Desktop */
.config-view-btn {
  background-color: #f8fafc;
  color: #0f5132;
  border: 1px solid #e2e8f0;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  
  display: flex; 
  flex-direction: row; 
  align-items: center; 
  justify-content: center;
  gap: 8px;
  
  flex: 0 0 auto;
  margin-left: auto;
  transition: all 0.3s ease;
}

.config-list-item:hover .config-view-btn {
  background-color: #0f5132;
  color: #ffffff;
  border-color: #0f5132;
}

.config-list-item.active .config-view-btn {
  background-color: #0f5132;
  color: #ffffff;
  border-color: #0f5132;
  box-shadow: 0 4px 12px rgba(15,81,50,0.2);
}

.config-view-btn .btn-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

/* --- Sertar Galerie Mobil --- */
.config-mobile-drawer {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.config-mobile-drawer.open {
  display: block;
  animation: fadeInDrawer 0.4s ease forwards;
}

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

.config-mobile-drawer-inner {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
  width: 100%;
}

.config-mobile-active-view {
  width: 100%;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
}

.config-mobile-preview-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.config-mobile-thumbs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.config-mobile-thumbs img {
  width: 100%; height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.config-mobile-thumbs img.active,
.config-mobile-thumbs img:hover {
  opacity: 1;
  border-color: #0f5132;
}

/* --- Galerie Desktop & Logo --- */
.config-gallery-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  height: 100%;
}

/* Imagine principală Landscape fixă pe PC */
.config-gallery-active-view {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 240px; /* Înălțime controlată pentru a păstra aspectul landscape */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

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

.config-gallery-overlay-badge {
  position: absolute;
  top: 15px; left: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: #0f5132;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.config-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.config-sub-thumb {
  width: 100%; height: 75px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.config-sub-thumb:hover, .config-sub-thumb.active {
  opacity: 1;
  border-color: #0f5132;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(15,81,50,0.15);
}

/* Stil pentru logo-ul de sub galerie pe PC */
.config-gallery-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.config-gallery-logo {
  max-height: 38px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.config-gallery-logo:hover {
  opacity: 1;
}


 .config-company-logo-main {
    max-height: 36px;
    object-fit: contain;
  }
  .config-gallery-brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Actualizat la 4 coloane pentru cele 4 logo-uri */
    gap: 10px;
    align-items: center;
    justify-items: center;
  }
  .config-gallery-brands-grid img {
    width: 100%;
    max-height: 24px;
    object-fit: contain;
  }

/* =========================================
    MEDIA QUERIES - RESPONSIVITATE TOTALĂ
========================================= */

@media (max-width: 1199px) {
  .config-semirem-section { padding: 60px 0; }
  .config-hero-img { height: 320px; }
  .config-main-title { font-size: 2.2rem; }
  .config-view-btn { padding: 10px 14px; font-size: 0.8rem; }
  .config-gallery-active-view { height: 220px; }
}

@media (max-width: 991px) {
  .config-hero-row { margin-bottom: 40px; }
  .config-hero-img { height: 300px; }
  .config-main-title { font-size: 2rem; }
  .config-main-desc { font-size: 1rem; }
  
  .config-card-main-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  
  .config-thumb-preview { width: 150px; height: 86px; }
  
  .config-item-info {
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .config-card-title { justify-content: center; }
  .config-features-list li { justify-content: center; }

  .config-view-btn {
    margin-left: 0;
    width: 100%; 
    max-width: 100%;
    margin-top: 5px;
  }

  .config-list-item.active .config-view-btn .btn-icon {
    transform: rotate(90deg);
  }

  .config-mobile-drawer,
  .config-mobile-drawer-inner,
  .config-mobile-active-view,
  .config-mobile-thumbs {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .config-semirem-section { padding: 50px 0; }
  .config-hero-img { height: 280px; }
  .config-main-title { font-size: 1.8rem; }
  .config-quote-box p { font-size: 0.9rem; }
  .config-thumb-preview { width: 130px; height: 75px; }
  .config-mobile-active-view { height: 210px; }
}

@media (max-width: 576px) {
  .config-semirem-section { padding: 40px 0; }
  .config-hero-img { height: 240px; }
  .config-main-title { font-size: 1.6rem; }
  .config-card-title { font-size: 1.05rem; }
  .config-features-list li { font-size: 0.8rem; }
  .config-thumb-preview { width: 110px; height: 64px; }
  
  .config-mobile-thumbs { gap: 6px; }
  .config-mobile-thumbs img { height: 50px; }
  .config-mobile-active-view { height: 180px; }
}
/*--------------------------------------------------------------
# Secțiune Semiremorci Specializate & Configurații Flotă
--------------------------------------------------------------*/
.config-semirem-section {
  background-color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* --- Hero Top (Titlu Stânga + Imagine Dreapta) --- */
.config-hero-row {
  margin-bottom: 60px;
}

.config-badge-sub {
  display: inline-block;
  background-color: rgba(15, 81, 50, 0.1);
  color: #0f5132;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.config-main-title {
  color: #0f5132;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.config-main-desc {
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.config-quote-box {
  border-left: 4px solid #0f5132;
  background-color: #f8f9fa;
  padding: 15px 20px;
  border-radius: 0 12px 12px 0;
}

.config-quote-box p {
  color: #1a202c;
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.5;
}

/* Imagine Landscape Dreapta (Sus) */
.config-hero-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 81, 50, 0.12);
}

.config-hero-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.config-hero-img-wrapper:hover .config-hero-img {
  transform: scale(1.03);
}

.config-hero-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 81, 50, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tag-dot {
  width: 8px;
  height: 8px;
  background-color: #2ec4b6;
  border-radius: 50%;
  display: inline-block;
}



/* --- PARTEA INFERIOARĂ: LISTĂ CONFIGURAȚII + GALERIE --- */
.config-interactive-area {
  margin-top: 20px;
}

.config-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.config-list-item {
  background: #f8f9fa;
  border: 1px solid rgba(15, 81, 50, 0.15);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.3s ease;
}

.config-list-item:hover {
  background: #ffffff;
  border-color: #0f5132;
  box-shadow: 0 10px 25px rgba(15, 81, 50, 0.08);
  transform: translateY(-2px);
}

.config-item-info {
  flex: 1;
}

.config-card-title {
  color: #0f5132;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.config-axles-badge {
  background-color: #0f5132;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

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

.config-features-list li {
  color: #4a5568;
  font-size: 0.83rem;
  font-weight: 500;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.config-bullet {
  width: 5px;
  height: 5px;
  background-color: #0f5132;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Butonul "Vezi transporturile" */
.config-view-btn {
  background-color: #0f5132;
  color: #ffffff;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.config-view-btn:hover {
  background-color: #198754;
  transform: scale(1.03);
}

/* --- GALERIA DINAMICĂ DIN DREAPTA --- */
.config-gallery-container {
  background: #f1f5f9;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(15, 81, 50, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.config-gallery-active-view {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.config-preview-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.config-gallery-overlay-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(15, 81, 50, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.config-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.config-thumb {
  width: 100%;
  height: 65px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}

.config-thumb:hover, .config-thumb.active {
  opacity: 1;
  border-color: #0f5132;
  transform: translateY(-2px);
}

/* Responsivitate pentru Telefoane */
@media (max-width: 991px) {
  .config-list-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .config-view-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .config-main-title {
    font-size: 1.8rem;
  }
  .config-hero-img {
    height: 250px;
  }
  .config-gallery-active-view {
    height: 220px;
  }
}









/* ==============================================
   SECȚIUNE TRAILERE DETALII TEHNICE - index
=============================================== */
.ea-tr-v2-section {
  background-color: #f8fafc;
  padding: clamp(35px, 6vw, 70px) 15px;
  color: #0f172a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.ea-tr-v2-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 35px);
}

/* TITLU ȘI DESCRIERE PRINCIPALĂ SECȚIUNE */
.ea-tr-v2-main-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 10px auto;
}

.ea-tr-v2-eyebrow {
  color: #205535;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.ea-tr-v2-main-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.ea-tr-v2-main-desc {
  font-size: clamp(0.88rem, 2vw, 1rem);
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* STAGE PRINCIPAL CU SLIDES */
.ea-tr-v2-stage {
  position: relative;
  width: 100%;
}

.ea-tr-v2-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: clamp(15px, 3vw, 30px);
  align-items: stretch;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.ea-tr-v2-slide.active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

/* COLOANA STÂNGA: CARD IMAGINE MARE INTEGRATĂ */
.ea-tr-v2-media-card {
  background: #ffffff;
  border-radius: clamp(16px, 3vw, 24px);
  padding: 0;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  height: 100%;
  min-height: clamp(280px, 45vh, 480px);
}

.ea-tr-v2-img-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ea-tr-v2-main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ea-tr-v2-media-card:hover .ea-tr-v2-main-img {
  transform: scale(1.03);
}

/* OVERLAY INTEGRAT JOS PE POZĂ */
.ea-tr-v2-media-overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.4) 70%, transparent 100%);
  backdrop-filter: blur(4px);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.ea-tr-v2-brand-logo {
  font-weight: 900;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  letter-spacing: -0.5px;
  background: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.logo-eco { color: #205535; }
.logo-agrotec { color: #0f172a; }

/* SLOGAN CARD VERDE #205535 */
.ea-tr-v2-slogan-text {
  background-color: #205535;
  color: #fff301;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: clamp(0.7rem, 1.5vw, 0.82rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  white-space: nowrap;
}

/* COLOANA DREAPTA: PANOU INFORMAȚII */
.ea-tr-v2-info-panel {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 16px);
}

.ea-tr-v2-header-card {
  background: #ffffff;
  border-radius: clamp(14px, 2.5vw, 20px);
  padding: clamp(16px, 2.5vw, 24px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  border: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.ea-tr-v2-type-badge {
  display: inline-block;
  background: #f1f5f9;
  color: #205535;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.ea-tr-v2-title {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.25;
}

.ea-tr-v2-brand-wrap {
  height: clamp(35px, 5vw, 45px);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ea-tr-v2-brand-img {
  max-height: 100%;
  max-width: clamp(80px, 15vw, 120px);
  object-fit: contain;
}

.ea-tr-v2-specs-card {
  background: #ffffff;
  border-radius: clamp(14px, 2.5vw, 20px);
  padding: clamp(16px, 2.5vw, 24px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  border: 1px solid #e2e8f0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ea-tr-v2-description {
  font-size: clamp(0.82rem, 1.8vw, 0.9rem);
  color: #475569;
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.ea-tr-v2-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(8px, 1.5vw, 12px);
  margin-bottom: 16px;
}

/* ANIMAȚIE SUBTILĂ LA HOVER */
.ea-tr-v2-spec-item {
  background: #f8fafc;
  padding: clamp(8px, 1.5vw, 12px) clamp(10px, 2vw, 14px);
  border-radius: 12px;
  border-left: 3px solid #205535;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.ea-tr-v2-spec-item:hover {
  transform: translateY(-3px);
  background-color: #ffffff;
  box-shadow: 0 6px 15px rgba(15, 23, 42, 0.06);
}

.ea-tr-v2-spec-item .lbl {
  font-size: clamp(0.62rem, 1.2vw, 0.7rem);
  color: #64748b;
  text-transform: uppercase;
  font-weight: 600;
}

.ea-tr-v2-spec-item .val {
  font-size: clamp(0.78rem, 1.5vw, 0.88rem);
  color: #0f172a;
  font-weight: 700;
  margin-top: 2px;
}

/* BARA DE SARCINI */
.ea-tr-v2-weights-bar {
  background: linear-gradient(135deg, #163c25 0%, #205535 60%, #112e1c 100%);
  color: #ffffff;
  padding: clamp(10px, 2vw, 14px) clamp(12px, 3vw, 20px);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  font-weight: 600;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4), 0 6px 15px rgba(32, 85, 53, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.25s ease;
}

.ea-tr-v2-weights-bar:hover {
  transform: translateY(-2px);
}

.weight-tag span {
  color: #fff301;
  font-weight: 800;
}

.weight-divider {
  color: rgba(255, 255, 255, 0.3);
}

/* SLIDER MINIATURI (THUMBNAILS) */
.ea-tr-v2-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  width: 100%;
}

.ea-tr-v2-arrow {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  width: clamp(36px, 5vw, 42px);
  height: clamp(36px, 5vw, 42px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #0f172a;
  flex-shrink: 0;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.ea-tr-v2-arrow:hover {
  background: #205535;
  color: #ffffff;
  border-color: #205535;
}

.ea-tr-v2-arrow svg {
  width: 18px;
  height: 18px;
}

.ea-tr-v2-thumbnails-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 2vw, 12px);
  width: 100%;
  max-width: 800px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  padding: 4px 0;
}

.ea-tr-v2-thumbnails-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.ea-tr-v2-thumb {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: clamp(10px, 2vw, 16px);
  padding: 4px;
  height: clamp(60px, 12vw, 85px);
  flex: 1;
  min-width: clamp(80px, 18vw, 140px);
  max-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.ea-tr-v2-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(6px, 1.5vw, 10px);
  transition: transform 0.3s ease;
}

.ea-tr-v2-thumb:hover img {
  transform: scale(1.08);
}

.ea-tr-v2-thumb.active {
  border-color: #205535;
  box-shadow: 0 8px 20px rgba(32, 85, 53, 0.15);
  background: #f0fdf4;
}

.ea-tr-v2-thumb.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #205535;
}

/* ==============================================
   RESPONSIVE DESIGN COMPLETA (MOBIL / TABLETĂ)
=============================================== */
/* ==============================================
   RESPONSIVE DESIGN COMPLETA (MOBIL / TABLETĂ)
=============================================== */
@media (max-width: 992px) {
  .ea-tr-v2-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  /* Anulăm cutiile div-urilor părinte pentru a putea reordona copiii direct */
  .ea-tr-v2-stage,
  .ea-tr-v2-slide.active {
    display: contents;
  }

  /* 1. Titlul secțiunii sus */
  .ea-tr-v2-main-header {
    order: 1;
  }

  /* 2. Poza mare cu logo și slogan */
  .ea-tr-v2-media-card {
    order: 2;
    height: clamp(260px, 40vh, 380px);
    width: 100%;
  }

  /* 3. Slider-ul cu miniaturi vine acum EXACT sub poza mare */
  .ea-tr-v2-slider-wrapper {
    order: 3;
    margin: 5px 0 10px 0;
    width: 100%;
  }

  /* 4. Panoul de detalii trece ultimul */
  .ea-tr-v2-info-panel {
    order: 4;
    width: 100%;
  }

  /* Centrare pe mobil pentru Header-ul din panoul de detalii */
  .ea-tr-v2-header-card {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .ea-tr-v2-header-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ea-tr-v2-brand-wrap {
    margin-top: 4px;
  }
}

@media (max-width: 768px) {
  .ea-tr-v2-media-overlay {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 14px;
  }

  .ea-tr-v2-slogan-text {
    white-space: normal;
  }

  .ea-tr-v2-thumbnails-track {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .ea-tr-v2-specs-grid {
    grid-template-columns: 1fr;
  }

  .ea-tr-v2-weights-bar {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .weight-divider {
    display: none;
  }
}







/* ==============================================
   SLIDER FLOTĂ AXE - ULTIMATE RESPONSIVE
=============================================== */
:root {
  --ea-green-dark: #134e29;
  --ea-green-main: #1e5535;
  --ea-green-light: #2c7a4b;
  --ea-green-accent: #86efac;
  --ea-text-dark: #0f172a;
  --ea-text-gray: #475569;
  --ea-bg-light: #f8fafc;
}

.ea-axe-slider-section {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #ffffff, var(--ea-bg-light));
  color: var(--ea-text-dark);
  overflow: hidden;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.ea-fl-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Header Secțiune */
.ea-fl-header {
  text-align: center;
  margin-bottom: 30px;
}

.ea-eyebrow-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 12px;
}

.ea-fl-line {
  height: 1px;
  width: 40px;
  background: linear-gradient(90deg, transparent, var(--ea-green-main));
}

.ea-fl-line:last-child {
  background: linear-gradient(270deg, transparent, var(--ea-green-main));
}

.ea-fl-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--ea-green-main);
  text-transform: uppercase;
}

.ea-fl-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin: 0 0 16px 0;
  color: var(--ea-text-dark);
  letter-spacing: -0.5px;
}

.ea-fl-desc {
  max-width: 680px;
  margin: 0 auto;
  color: var(--ea-text-gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Arena Slider Semi-Lună Inversă */
.ea-arc-stage-wrapper {
  position: relative;
  width: 100%;
  height: 440px;
  margin: 10px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ea-arc-stage {
  position: relative;
  width: 100%;
  max-width: 1050px;
  height: 100%;
}

.ea-arc-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  max-width: 90%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.35, 1), opacity 0.8s ease, filter 0.8s ease;
  cursor: pointer;
  user-select: none;
}

/* Efect de strălucire sub camion */
.ea-truck-glow {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(30,85,53,0.3) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.ea-arc-truck-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.35, 1), filter 0.5s ease;
  z-index: 2;
  position: relative;
}

/* Animație Levitație la Hover */
.ea-arc-slide[data-pos="0"]:hover .ea-arc-truck-img {
  transform: translateY(-10px) scale(1.03);
  filter: drop-shadow(0 35px 45px rgba(30, 85, 53, 0.25));
}

.ea-arc-slide[data-pos="0"]:hover .ea-truck-glow {
  opacity: 1;
}

/* Poziționare U-Shape pe PC */
.ea-arc-slide[data-pos="0"] {
  transform: translate(-50%, -45%) scale(1.35);
  z-index: 10;
  opacity: 1;
}

.ea-arc-slide[data-pos="-1"] {
  transform: translate(calc(-50% - 320px), calc(-50% - 85px)) scale(0.85) rotate(6deg);
  z-index: 5;
  opacity: 0.5;
  filter: grayscale(30%) blur(1px);
}

.ea-arc-slide[data-pos="1"] {
  transform: translate(calc(-50% + 320px), calc(-50% - 85px)) scale(0.85) rotate(-6deg);
  z-index: 5;
  opacity: 0.5;
  filter: grayscale(30%) blur(1px);
}

.ea-arc-slide[data-pos="hidden"] {
  transform: translate(-50%, -90%) scale(0.4);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

/* Săgeți Navigare PC */
.ea-arc-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 20;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(30, 85, 53, 0.1);
  color: var(--ea-green-main);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ea-arc-nav:hover {
  background: var(--ea-green-main);
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 15px 35px rgba(30, 85, 53, 0.25);
}

.ea-arc-prev { left: 15px; }
.ea-arc-next { right: 15px; }

/* Dots Navigare PC */
.ea-arc-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 50px;
  position: relative;
  z-index: 15;
}

.ea-arc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.35, 1);
}

.ea-arc-dot.active {
  background: var(--ea-green-main);
  width: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(30, 85, 53, 0.3);
}

/* Panou Inferior (3 Coloane pe Desktop) */
.ea-fl-info-row {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr;
  align-items: center;
  gap: 40px;
}

/* Coloana Stânga: Brand */
.ea-fl-info-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.ea-logo-box {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.ea-fl-brand-logo {
  max-width: 200px;
  height: auto;
}

.ea-fl-slogan {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ea-green-main);
}

.slogan-bold { font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.slogan-light { font-weight: 400; font-style: italic; }

/* Coloana Centru: Card Verde */
.ea-fl-card-green {
  background: linear-gradient(145deg, var(--ea-green-main) 0%, var(--ea-green-dark) 100%);
  border-radius: 28px;
  padding: 32px 30px;
  box-shadow: 0 25px 50px rgba(19, 78, 41, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.ea-fl-card-green::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.ea-fl-card-inner-slider {
  position: relative;
  min-height: 140px;
}

.ea-fl-details-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ea-fl-details-item.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ea-fl-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.ea-fl-card-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ea-fl-card-axles {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--ea-green-accent);
}

.ea-fl-card-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.2), transparent);
  margin-bottom: 20px;
}

/* Detaliile din Card: În linie (pe 1 singur rând) pe PC */
.ea-fl-card-body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.ea-fl-detail-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ea-fl-lbl {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ea-fl-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
}

.ea-fl-val small {
  font-size: 0.8rem;
  color: var(--ea-green-accent);
  font-weight: 600;
}

/* Coloana Dreapta: Volvo Logo + Buton */
.ea-fl-info-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.ea-volvo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ea-fl-volvo-logo {
  max-width: 160px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(0,0,0,0.08));
}

.ea-btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ea-green-main);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(30, 85, 53, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.35, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ea-btn-premium svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.ea-btn-premium:hover {
  background: var(--ea-green-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(30, 85, 53, 0.35);
  color: #ffffff;
}

.ea-btn-premium:hover svg {
  transform: translateX(4px);
}

/* Animații Reveal */
.ea-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.35, 1), transform 0.8s cubic-bezier(0.25, 1, 0.35, 1);
}

.ea-axe-slider-section.ea-animated .ea-reveal {
  opacity: 1;
  transform: translateY(0);
}

.ea-delay-1 { transition-delay: 0.15s; }
.ea-delay-2 { transition-delay: 0.30s; }
.ea-delay-3 { transition-delay: 0.45s; }
.ea-delay-4 { transition-delay: 0.60s; }


/* ==============================================
   RESPONSIVE DESIGN (TABLETĂ & MOBIL)
=============================================== */

@media (max-width: 1100px) {
  .ea-arc-slide[data-pos="-1"] { transform: translate(calc(-50% - 240px), calc(-50% - 65px)) scale(0.75) rotate(5deg); }
  .ea-arc-slide[data-pos="1"] { transform: translate(calc(-50% + 240px), calc(-50% - 65px)) scale(0.75) rotate(-5deg); }
}

/* Tabletă & Mobil Generale */
@media (max-width: 992px) {
  .ea-fl-info-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  /* Ordine pe ecran mic: Card Verde (1), Logo EcoAgrotec (2), Volvo (3) */
  .ea-fl-card-green {
    order: 1;
    width: 100%;
    box-sizing: border-box;
  }

  .ea-fl-info-left {
    order: 2;
    align-items: center;
    justify-content: center;
  }

  .ea-fl-info-right {
    order: 3;
    justify-content: center;
    width: 100%;
  }

  .ea-volvo-wrapper {
    align-items: center;
    justify-content: center;
  }

  .ea-arc-stage-wrapper { 
    height: 380px; 
  }
}

/* ==============================================
   RESPONSIVE DESIGN CURAT (SUB 600px)
=============================================== */
@media (max-width: 600px) {
  .ea-axe-slider-section {
    padding: 40px 15px;
  }

  .ea-fl-title { font-size: 1.8rem; }
  .ea-fl-desc { font-size: 0.95rem; }

  /* Reducem dimensiunea containerului foto ca să nu mai ocupe spațiu excesiv */
  .ea-arc-stage-wrapper { 
    height: 200px; 
    margin-bottom: 0;
  }
  
  .ea-arc-slide { 
    width: 260px; 
    height: 160px; 
  }

  /* Ascundem camioanele laterale pe mobil ca să nu iasă din ecran */
  .ea-arc-slide[data-pos="-1"], 
  .ea-arc-slide[data-pos="1"] {
    opacity: 0;
    pointer-events: none;
  }

  /* 1. DOTS-URILE (Poziționate imediat sub imagine) */
  .ea-arc-dots { 
    margin-top: 10px;
    margin-bottom: 15px; 
  }

  /* 2. SĂGEȚILE (Poziționate centrat sub dots-uri) */
  .ea-arc-nav {
    position: relative; /* Scoase din pozitionarea absoluta problematică */
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: 44px;
    height: 44px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    display: inline-flex;
  }

  .ea-arc-nav:hover {
    transform: scale(1.05);
  }

  /* Container wrapper invizibil creat automat prin margine pentru săgeți */
  .ea-arc-stage-wrapper::after {
    content: '';
    display: block;
    clear: both;
  }

  /* Creăm spațiu suplimentar între zona de navigare și Cardul Verde */
  .ea-fl-info-row {
    margin-top: 35px;
  }

  .ea-fl-card-green { 
    padding: 24px 20px; 
  }

  /* Între 390px și 600px: Detaliile sunt așezate pe 2 COLOANE */
  .ea-fl-card-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    text-align: left;
  }

  .ea-fl-detail-block {
    align-items: flex-start;
  }

  .ea-fl-card-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* SUB 390px: Detaliile trec pe 1 SINGURĂ COLOANĂ */
@media (max-width: 389px) {
  .ea-fl-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .ea-fl-detail-block {
    align-items: center;
  }

  .ea-fl-card-green {
    padding: 20px 14px;
  }

  .ea-fl-card-top {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
/* ============================================================
   ECOAGROTEC TRANS — Secțiune AXE CAMIOAN
   ============================================================ */

.ea-fl-section {
  width: 100%;
  padding: 80px 20px;
  background-color: #f8fafc;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}
.ea-fl-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ea-fl-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}
.ea-fl-eyebrow {
  font-size: 0.9rem;
  font-weight: 700;
  color: #205535;
  letter-spacing: 2px;
}
.ea-fl-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0f172a;
  margin: 10px 0;
}
.ea-fl-desc {
  font-size: 1rem;
  color: #475569;
}

.ea-fl-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.ea-fl-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 25px;
  align-items: stretch;
}

/* CARD STÂNGA */
.ea-fl-card {
  position: relative;
  width: 100%;
  min-height: 480px;
  border-radius: 24px;
  background-color: #1a1a1a;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 1;
}
.ea-fl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.ea-fl-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s ease;
}
.ea-fl-card:hover .ea-fl-bg {
  transform: scale(1.05);
}

.ea-fl-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

.ea-fl-border-inner {
  position: absolute;
  top: 12px; left: 12px; right: 12px; bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  pointer-events: none;
  z-index: 2;
}

/* LOGO BADGE DUBLU (GLASSMORPHISM) */
.ea-fl-logo-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 8px 16px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22), inset 0 1px 1px rgba(255, 255, 255, 0.9);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ea-fl-card:hover .ea-fl-logo-badge {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 1);
}

.ea-fl-logo-img {
  height: 26px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

.ea-fl-logo-img.brand-logo {
  height: 22px;
}

.ea-fl-logo-divider {
  width: 1px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.15);
  transition: height 0.3s ease;
}

/* CONȚINUT TEXT */
.ea-fl-content {
  position: relative;
  z-index: 10;
  padding: 30px;
}

.ea-fl-badge-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(32, 85, 53, 0.45);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.ea-fl-badge-glass svg { width: 14px; height: 14px; }
.ea-fl-badge-glass:hover {
  transform: translateY(-2px);
  background-color: rgba(32, 85, 53, 0.95);
}

.ea-fl-truck-name {
  font-size: 2.4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 2px;
}
.ea-fl-truck-sub {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-weight: 500;
  margin-bottom: 18px;
}

/* CUTIE SPECIFICAȚII */
.ea-fl-spec-box {
  position: relative;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 14px 18px 8px 18px;
  color: #ffffff;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.ea-fl-spec-box:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(32, 85, 53, 0.9);
  transform: translateY(-2px);
}
.ea-fl-spec-label {
  position: absolute;
  top: -10px;
  left: 10px;
  background-color: #205535;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.ea-fl-spec-value { display: flex; align-items: baseline; gap: 6px; }
.ea-fl-big-num { font-size: 2.5rem; font-weight: 900; line-height: 0.8; letter-spacing: -1px; color: #fff;}
.ea-fl-small-txt { font-size: 0.85rem; font-weight: 700; line-height: 1; color: #e2e8f0;}

/* PILLS JOS */
.ea-fl-pills { display: flex; gap: 10px; }
.ea-fl-pill {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 8px 10px;
  color: #ffffff;
  transition: all 0.3s ease;
}
.ea-fl-pill:hover {
  background-color: rgba(32, 85, 53, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}
.ea-fl-pill-txt { font-size: 0.7rem; line-height: 1.2; }
.ea-fl-pill-txt strong { font-size: 0.85rem; }
.ea-fl-pill svg { width: 20px; height: 20px; opacity: 0.8; }

/* DREAPTA: POZĂ LANDSCAPE */
.ea-fl-media {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.ea-fl-landscape-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ea-fl-media:hover .ea-fl-landscape-img {
  transform: scale(1.03);
}

/* ===================================================
   RESPONSIVITATE PROGRESIVĂ + CENTRARE MOBIL
   =================================================== */

/* Laptopuri & Tablete mari (Max 1200px) */
@media (max-width: 1200px) {
  .ea-fl-logo-badge {
    top: 18px;
    right: 18px;
    padding: 7px 14px;
    gap: 10px;
  }
  .ea-fl-logo-img { height: 22px; }
  .ea-fl-logo-img.brand-logo { height: 18px; }
  .ea-fl-logo-divider { height: 16px; }
}

/* Tablete orizontale / Ecrane Medii (Max 991px) */
@media (max-width: 991px) {
  .ea-fl-row { grid-template-columns: 1fr; }
  .ea-fl-media { height: 320px; }
  .ea-fl-title { font-size: 2rem; }

  .ea-fl-logo-badge {
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    gap: 8px;
  }
  .ea-fl-logo-img { height: 20px; }
  .ea-fl-logo-img.brand-logo { height: 16px; }
  .ea-fl-logo-divider { height: 14px; }
}

/* MOBIL (Max 576px) -> CENTRAT PE ORIZONTALĂ & SCALAT */
@media (max-width: 576px) {
  .ea-fl-logo-badge {
    top: 16px;
    right: 50%;
    transform: translateX(50%);
    padding: 5px 12px;
    gap: 8px;
    border-radius: 10px;
    width: max-content;
  }

  .ea-fl-card:hover .ea-fl-logo-badge {
    transform: translateX(50%) translateY(-2px) scale(1.02);
  }

  .ea-fl-logo-img { height: 16px; }
  .ea-fl-logo-img.brand-logo { height: 13px; }
  .ea-fl-logo-divider { height: 12px; }

  .ea-fl-content { padding: 20px 16px; }
  .ea-fl-truck-name { font-size: 1.8rem; }
  .ea-fl-big-num { font-size: 2rem; }
  .ea-fl-card { min-height: 420px; }
}

/* Telefoane foarte mici (Max 380px) */
@media (max-width: 380px) {
  .ea-fl-logo-badge {
    padding: 4px 8px;
    gap: 6px;
  }
  .ea-fl-logo-img { height: 14px; }
  .ea-fl-logo-img.brand-logo { height: 11px; }
  .ea-fl-logo-divider { height: 10px; }
}

/* ============================================================
   ECOAGROTEC TRANS — DESIGN SYSTEM & RESPONSIVE CSS
   ============================================================ */

/* --- VARIABILE SI RESETARI DE BAZA --- */
:root {
  --eco-green: #205535;
  --eco-green-light: #f1f8f3;
  --eco-yellow: #fff301;
  --eco-dark: #0f172a;
  --eco-slate: #64748b;
  --eco-bg-subtle: #f8fafc;
  --eco-border: #e2e8f0;
  --eco-white: #ffffff;
  
  --eco-radius-card: 20px;
  --eco-radius-inner: 12px;
  --eco-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --eco-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
  --eco-shadow-lg: 0 20px 40px rgba(32, 85, 53, 0.16);
  
  --eco-transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- STRUCTURA PRINCIPALĂ --- */
.eco-agri-transports-section {
  background-color: var(--eco-white);
  color: var(--eco-dark);
  padding: clamp(40px, 8vw, 90px) clamp(16px, 4vw, 32px);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

.eco-agri-transports-section *,
.eco-agri-transports-section *::before,
.eco-agri-transports-section *::after {
  box-sizing: inherit;
}

.eco-trans-container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

/* --- HEADER SECȚIUNE --- */
.eco-trans-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto clamp(30px, 6vw, 55px) auto;
}

.eco-trans-eyebrow {
  display: inline-block;
  font-size: clamp(0.72rem, 1.5vw, 0.85rem);
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--eco-green);
  background: var(--eco-green-light);
  padding: 6px 16px;
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eco-trans-title {
  font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  font-weight: 900;
  color: var(--eco-dark);
  line-height: 1.25;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.eco-trans-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--eco-green) 0%, var(--eco-yellow) 100%);
  margin: 0 auto;
  border-radius: 4px;
}

/* --- GRID CARDURI --- */
.eco-trans-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
}

/* --- CARD PORTRAIT --- */
.eco-portrait-card {
  background: var(--eco-white);
  border-radius: var(--eco-radius-card);
  border: 1px solid var(--eco-border);
  overflow: hidden;
  box-shadow: var(--eco-shadow-md);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--eco-transition);
  height: 100%;
}

/* Efect Hover doare pe dispozitive cu mouse */
@media (hover: hover) {
  .eco-portrait-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--eco-shadow-lg);
    border-color: var(--eco-green);
  }
}

/* --- HEADER TRASEU & STEAGURI --- */
.eco-card-route-header {
  background: var(--eco-green);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--eco-white);
  gap: 8px;
}

.eco-country-flag-box {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: clamp(0.75rem, 1.2vw, 0.88rem);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.eco-flag-img {
  width: 24px;
  height: 17px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.eco-route-arrow-anim {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--eco-yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.eco-route-arrow-anim svg {
  width: 18px;
  height: 18px;
  animation: pulseMove 1.8s infinite ease-in-out;
}

@keyframes pulseMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* --- IMAGINE ANSAMBLU (ASPECT RATIO DINAMIC) --- */
.eco-main-landscape-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--eco-dark);
  overflow: hidden;
}

.eco-main-landscape-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

@media (hover: hover) {
  .eco-portrait-card:hover .eco-main-landscape-img {
    transform: scale(1.04);
  }
}

/* --- ECHIPAMENTE (CAMION & REMORCĂ) --- */
.eco-equipment-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px clamp(12px, 2vw, 16px);
  background: var(--eco-bg-subtle);
  border-bottom: 1px solid var(--eco-border);
}

.eco-equip-item {
  background: var(--eco-white);
  border: 1px solid var(--eco-border);
  border-radius: var(--eco-radius-inner);
  padding: 8px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--eco-shadow-sm);
}

.eco-equip-tag {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--eco-green);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: block;
  margin-bottom: 4px;
}

.eco-equip-img-wrap {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 0;
}

.eco-equip-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.eco-equip-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--eco-dark);
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- SPECIFICAȚII TEHNICE --- */
.eco-card-specs-body {
  padding: clamp(12px, 2vw, 16px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.eco-weight-highlight {
  background: var(--eco-green);
  color: var(--eco-white);
  border-radius: var(--eco-radius-inner);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: 4px solid var(--eco-yellow);
}

.eco-weight-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.95;
  letter-spacing: 0.3px;
}

.eco-weight-val {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 900;
  color: var(--eco-yellow);
}

/* GRILA DIMENSIUNI */
.eco-dims-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: var(--eco-bg-subtle);
  padding: 10px 6px;
  border-radius: var(--eco-radius-inner);
  border: 1px solid var(--eco-border);
  text-align: center;
}

.eco-dim-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.eco-dim-lbl {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--eco-slate);
  text-transform: uppercase;
}

.eco-dim-val {
  font-size: clamp(0.82rem, 1.5vw, 0.92rem);
  font-weight: 900;
  color: var(--eco-dark);
}

.eco-dim-val span {
  font-size: 0.7rem;
  color: var(--eco-green);
}

/* --- FOOTER CARD --- */
.eco-card-footer {
  padding: 10px 16px;
  border-top: 1px solid var(--eco-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--eco-white);
  margin-top: auto;
}

.eco-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--eco-green);
  letter-spacing: 0.4px;
}

.eco-status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--eco-yellow);
  border: 2px solid var(--eco-green);
  border-radius: 50%;
  flex-shrink: 0;
}

.eco-accent-line-bottom {
  height: 4px;
  width: 100%;
  background: var(--eco-yellow);
}

/* ============================================================
   BREAKPOINTS OPTIMIZATE PENTRU TOATE DISPOZITIVELE
   ============================================================ */

/* 1. ECRANE ULTRA-WIDE (> 1400px) */
@media (min-width: 1401px) {
  .eco-trans-container {
    max-width: 1360px;
  }
}

/* 2. LAPTOP-URI MEDII & TABLETE LANDSCAPE (992px - 1200px) */
@media (max-width: 1200px) {
  .eco-trans-cards-grid {
    gap: 20px;
  }
  
  .eco-card-route-header {
    padding: 10px 12px;
  }
  
  .eco-country-flag-box {
    font-size: 0.78rem;
  }
}

/* 3. TABLETE PORTRAIT & DESKTOP MIC (768px - 991px) */
@media (max-width: 991px) {
  .eco-trans-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 850px;
    margin: 0 auto;
  }
}

/* 4. TELEFOANE MARI / TABLETE MICI (576px - 767px) */
@media (max-width: 767px) {
  .eco-trans-cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .eco-main-landscape-wrap {
    aspect-ratio: 16 / 10; /* Un pic mai înalt pe mobil pentru vizibilitate sporită */
  }
}

/* 5. TELEFOANE MOBILE STANDARD & MICI (< 480px) */
@media (max-width: 480px) {
  .eco-agri-transports-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .eco-card-route-header {
    padding: 10px clamp(8px, 3vw, 12px);
  }

  .eco-country-flag-box span {
    font-size: 0.75rem;
  }

  .eco-route-arrow-anim span {
    display: none; /* Ascunde textul "TRANZIT" pe ecrane foarte înguste pentru a nu aglomera steagurile */
  }

  .eco-route-arrow-anim svg {
    width: 22px;
    height: 22px;
  }

  .eco-equipment-pair {
    padding: 10px;
    gap: 8px;
  }

  .eco-equip-img-wrap {
    height: 42px;
  }

  .eco-dims-grid {
    padding: 8px 4px;
  }
}

/* 6. DISPOZITIVE FOARTE MICI (Ex: iPhone SE / sub 360px) */
@media (max-width: 360px) {
  .eco-country-flag-box {
    gap: 4px;
  }
  
  .eco-flag-img {
    width: 20px;
    height: 14px;
  }

  .eco-weight-highlight {
    padding: 8px 10px;
  }

  .eco-weight-lbl {
    font-size: 0.65rem;
  }
}




/* ============================================================
   ACOPERIRE EUROPEANĂ BANNER & SECTION
   ============================================================ */

/* --- STILIZARE GENERALĂ SECȚIUNE --- */
.eco-section {
  background-color: #ffffff;
  padding: 80px 20px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #0f172a;
}

.eco-container {
  max-width: 1380px;
  margin: 0 auto;
}

/* --- BANNER LANDSCAPE PREMIUM --- */
.eco-banner {
  position: relative;
  background: linear-gradient(135deg, #0c1f13 0%, #205535 60%, #112a1a 100%);
  border-radius: 32px;
  padding: 50px 30px;
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(32, 85, 53, 0.3);
  border: 1px solid rgba(255, 243, 1, 0.2);
  margin-bottom: 70px;
}

.eco-banner-bg-pattern {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: radial-gradient(rgba(255, 243, 1, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.eco-banner-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.eco-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 243, 1, 0.1);
  border: 1px solid #fff301;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff301;
  margin-bottom: 16px;
}

.eco-badge-dot {
  width: 8px;
  height: 8px;
  background-color: #fff301;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff301;
}

.eco-banner-title {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #ffffff;
}

.eco-banner-desc {
  font-size: 1.05rem;
  color: #e2e8f0;
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/* --- STRUCTURĂ BANNER CU IMAGINI PE LATERALE --- */
.eco-banner-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.eco-banner-side-img {
  width: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eco-banner-side-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.35));
  transition: transform 0.4s ease;
}

.eco-banner-side-img:hover img {
  transform: scale(1.05);
}

.eco-banner-center-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* CASATE METRICI (100T & 1.2M CMR) */
.eco-key-metrics {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.eco-metric-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 243, 1, 0.3);
  padding: 14px 24px;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.eco-metric-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

.eco-metric-icon {
  color: #fff301;
  display: flex;
  align-items: center;
}

.eco-metric-text {
  text-align: left;
}

.eco-metric-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff301;
}

.eco-metric-label {
  font-size: 0.75rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* LINII DESIGN & STEAGURI */
.eco-line-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.eco-line {
  height: 1px;
  width: 50px;
  background: linear-gradient(to right, transparent, #fff301, transparent);
}

.eco-line-title {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #fff301;
  font-weight: 700;
}

.eco-flags-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.eco-flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.eco-flag-item img {
  width: 36px;
  height: 26px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2);
}

.eco-flag-item span {
  font-size: 0.75rem;
  color: #ffffff;
  font-weight: 500;
}

.eco-flag-item:hover {
  transform: translateY(-4px) scale(1.1);
}

/* ============================================================
   GRID & CARDURI FLOTĂ
   ============================================================ */

/* 1. Container Grid Adaptiv */
.eco-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 30px);
  width: 100%;
  box-sizing: border-box;
  padding: 20px 0;
}

/* 2. Cardul Custom Fluid */
.eco-card-custom {
  background: #ffffff;
  border: 2px solid #205535;
  border-radius: 20px;
  padding: clamp(16px, 1.8vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-height: 180px;
  position: relative;
  overflow: visible !important;
  box-sizing: border-box;
  cursor: pointer;
}

.eco-card-custom:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(32, 85, 53, 0.18), 0 0 0 1px #fff301;
}

/* 3. Partea Stângă (Text & Buton) */
.eco-card-left {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  padding-right: 10px;
}

.eco-card-subtitle {
  display: inline-block;
  font-size: clamp(0.65rem, 0.75vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 1px;
  color: #205535;
  background-color: #fff301;
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
  text-transform: uppercase;
  width: fit-content;
  white-space: nowrap;
}

.eco-card-title {
  font-size: clamp(1.1rem, 1.4vw, 1.45rem);
  font-weight: 900;
  color: #205535;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

/* Buton Responsive & Efecte Hover (Când treci cu mouse-ul pe card) */
.eco-btn-landscape {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: #205535;
  color: #ffffff;
  padding: clamp(8px, 1vw, 11px) clamp(10px, 1.2vw, 16px);
  border-radius: 10px;
  text-decoration: none;
  font-size: clamp(0.68rem, 0.78vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 165px;
  border: 1.5px solid #205535;
  white-space: nowrap;
}

.eco-btn-landscape svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* EFECT HOVER PE BUTON LA HOVER PE CARD SAU PE BUTON DIRECT */
.eco-card-custom:hover .eco-btn-landscape,
.eco-btn-landscape:hover {
  background-color: #fff301;
  color: #205535;
  border-color: #fff301;
  box-shadow: 0 4px 14px rgba(255, 243, 1, 0.4);
}

.eco-card-custom:hover .eco-btn-landscape svg,
.eco-btn-landscape:hover svg {
  transform: translateX(4px);
}

/* 4. Partea Dreaptă & Poză Fluidă cu Efect Hover */
.eco-card-right {
  flex: 0 0 45%;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.eco-card-img {
  position: absolute;
  top: clamp(-35px, -2.5vw, -20px);
  right: clamp(-25px, -1.8vw, -10px);
  width: 155%;
  max-width: clamp(190px, 18vw, 270px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 14px rgba(0, 0, 0, 0.28));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
  z-index: 10;
  pointer-events: auto;
}

/* EFECT MĂRIRE POZĂ LA HOVER PE CARD */
.eco-card-custom:hover .eco-card-img {
  transform: translateY(-8px) scale(1.08);
  filter: drop-shadow(0 25px 20px rgba(0, 0, 0, 0.35));
}

/* ============================================================
   5. ADAPTARE SPECIFICĂ PE REZOLUȚII
   ============================================================ */

/* Banner side images hide */
@media (max-width: 1200px) {
  .eco-banner-side-img {
    display: none;
  }
}

/* Laptop-uri Mici (1025px - 1280px) */
@media (max-width: 1280px) {
  .eco-card-custom {
    min-height: 170px;
  }
  .eco-card-img {
    max-width: 220px;
    right: -15px;
  }
}

/* Tablete (768px - 1024px) -> 2 Coloane */
@media (max-width: 1024px) {
  .eco-cards-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .eco-card-custom:nth-child(3) {
    grid-column: span 2;
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
  }

  .eco-card-img {
    max-width: 240px;
    top: -30px;
    right: -10px;
  }
}

/* Telefoane & Tablete Mici (< 767px) -> 1 Coloană */
@media (max-width: 767px) {
  .eco-cards-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .eco-card-custom:nth-child(3) {
    grid-column: span 1;
    max-width: 100%;
  }

  .eco-card-custom {
    min-height: 160px;
    padding: 20px;
  }

  .eco-card-left {
    flex: 1 1 60%;
  }

  .eco-card-right {
    flex: 0 0 40%;
  }

  .eco-card-title {
    font-size: 1.3rem;
  }

  .eco-card-img {
    top: -25px;
    right: -5px; 
    width: 140%;
    max-width: 300px;
  }
}

/* Telefoane Medii (401px - 421px) - Poze Mărite */
@media (min-width: 401px) and (max-width: 501px) {
  .eco-card-custom {
    padding: 18px 14px;
    min-height: 175px;
  }

  .eco-card-left {
    flex: 0 0 52%;
  }

  .eco-card-right {
    flex: 0 0 48%;
  }

  .eco-card-title {
    font-size: 1.15rem;
  }

  .eco-btn-landscape {
    max-width: 135px;
    padding: 8px 10px;
    font-size: 0.7rem;
  }

  .eco-card-img {
    width: 175%;
    max-width: 240px;
    top: -32px;
    right: -12px;
  }
}

/* Telefoane Foarte Mici (< 400px) - Reducere Dimensiune Poze */
@media (max-width: 400px) {
  .eco-card-custom {
    padding: 16px 12px;
    min-height: 155px;
  }

  .eco-card-left {
    flex: 0 0 58%;
  }

  .eco-card-right {
    flex: 0 0 42%;
  }

  .eco-card-title {
    font-size: 1.05rem;
    margin-bottom: 12px;
  }

  .eco-btn-landscape {
    max-width: 125px;
    padding: 7px 9px;
    font-size: 0.65rem;
  }

  .eco-card-img {
    width: 140%;
    max-width: 165px;
    top: -20px;
    right: -6px;
  }
}




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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Overlay întunecat pe stânga pentru lizibilitatea textului */
.banner-promo-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    to right, 
    rgba(0, 0, 0, 0.92) 0%, 
    rgba(0, 0, 0, 0.85) 35%, 
    rgba(0, 0, 0, 0.50) 65%, 
    rgba(0, 0, 0, 0.20) 100%
  );
}

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

/* Aliniere la STÂNGĂ */
.banner-premium-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Aliniat la stânga */
  text-align: left;        /* Text pe stânga */
  padding-right: 20px;
  padding-left: 0;
}

.banner-experience-tag {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 243, 1, 0.35); /* Bordură galbenă */
  padding: 10px 25px;
  border-radius: 50px;
  width: fit-content;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.banner-experience-tag .exp-number {
  font-size: 3rem;
  font-weight: 900;
  color: #fff301; /* GALBEN */
  line-height: 1;
}

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

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

.banner-experience-tag .exp-subtitle {
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff301; /* GALBEN */
  letter-spacing: 0.75px;
}

/* Titlu Galben */
.banner-main-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff301; /* GALBEN */
  position: relative;
  margin-bottom: 25px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

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

.banner-lead-text {
  font-size: 17px;
  line-height: 1.75;
  color: #ffffff;
  margin-bottom: 25px;
}

.add-trust-card {
  width: 100%;
  max-width: 700px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 243, 1, 0.35); /* Bordură galbenă */
  border-radius: 25px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

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

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

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

.add-trust-message {
  font-size: 0.9rem;
  font-weight: 900;
  color: #fff301; /* GALBEN */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.5;
  text-align: left; 
}

/* Mod mobil - Centrare pe ecran mic */
@media (max-width: 767.98px) {
  .banner-promo-section {
    min-height: auto;
    padding: 90px 0;
    background-image: url('../img/banner/ecoagrotec-banner-mobile-02.webp');
    background-position: center;
    background-size: cover;
  }

  .banner-promo-section::before {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.70) 50%,
      rgba(0, 0, 0, 0.90) 100%
    );
  }

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

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

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

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

  .banner-lead-text {
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
  }

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

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

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

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

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




/* ==============================================
   SECȚIUNE FLOTĂ COMPATIBILITATE (CLASE EA-FL2)
=============================================== */
.ea-fl2-section {
  padding: 80px 20px;
  background-color: #f8fafc;
  color: #0f172a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow: hidden;
}

.ea-fl2-container {
  max-width: 1320px;
  margin: 0 auto;
}

.ea-fl2-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px auto;
}

.ea-fl2-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #205535;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ea-fl2-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
}

.ea-fl2-desc {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Grid 2 Coloane */
.ea-fl2-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 35px;
  align-items: start;
}

@media (max-width: 1024px) {
  .ea-fl2-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------
   STÂNGA: LISTA CAMIOANE (5 CARDURI)
------------------------------------------------ */
.ea-fl2-left {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.ea-fl2-trucks-header {
  margin-bottom: 16px;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 10px;
}

.ea-fl2-trucks-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 2px 0;
  color: #0f172a;
}

.ea-fl2-trucks-header span {
  font-size: 0.78rem;
  color: #64748b;
}

.ea-fl2-truck-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ea-fl2-truck-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  padding: 10px 14px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.35, 1);
}

/* Stare activă automatizată din JS */
.ea-fl2-truck-card.is-compatible {
  opacity: 1;
  filter: grayscale(0%);
  background: #ffffff;
  border-color: #205535;
  box-shadow: 0 8px 20px rgba(32, 85, 53, 0.12);
  transform: translateX(4px);
}

.ea-fl2-truck-badge-compat {
  position: absolute;
  top: -9px;
  right: 12px;
  background: #205535;
  color: #86efac;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s ease;
}

.ea-fl2-truck-card.is-compatible .ea-fl2-truck-badge-compat {
  opacity: 1;
  transform: translateY(0);
}

.ea-fl2-truck-img-wrap {
  width: 85px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ea-fl2-truck-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ea-fl2-truck-tag {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  color: #205535;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ea-fl2-truck-info h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 1px 0;
  color: #0f172a;
}

.ea-fl2-truck-info p {
  font-size: 0.75rem;
  color: #64748b;
  margin: 0;
}

/* Stiluri pentru Butonul de Pauză / Play */
.ea-fl2-vnav.ea-fl2-pause .icon-play {
  display: none;
  width: 14px;
  height: 14px;
  margin-left: 2px;
}

.ea-fl2-vnav.ea-fl2-pause .icon-pause {
  display: block;
  width: 14px;
  height: 14px;
}

/* Starea când este pus pe Pauză */
.ea-fl2-vnav.ea-fl2-pause.is-paused {
  background: #f1f5f9;
  border-color: #205535;
  color: #205535;
}

.ea-fl2-vnav.ea-fl2-pause.is-paused .icon-pause {
  display: none;
}

.ea-fl2-vnav.ea-fl2-pause.is-paused .icon-play {
  display: block;
}

/* ----------------------------------------------
   DREAPTA: GALERIE TRAILERE
------------------------------------------------ */
.ea-fl2-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ea-fl2-vstage-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.ea-fl2-vstage {
  position: relative;
  width: 100%;
  height: 100%;
}

.ea-fl2-vslide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 480px;
  max-width: 85%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.35, 1), opacity 0.65s ease, filter 0.65s ease;
  user-select: none;
}

.ea-fl2-trailer-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Poziții Slide-uri */
.ea-fl2-vslide[data-vpos="main"] {
  transform: translate(-50%, -50%) scale(1.1);
  z-index: 10;
  opacity: 1;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.ea-fl2-vslide[data-vpos="top"] {
  transform: translate(-50%, -120%) scale(0.65);
  z-index: 5;
  opacity: 0.3;
  filter: grayscale(100%);
}

.ea-fl2-vslide[data-vpos="hidden"] {
  transform: translate(-50%, -50%) scale(0.2);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

/* Navigare Nav */
.ea-fl2-vnav-group {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 25;
}

.ea-fl2-vnav {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #205535;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ea-fl2-vnav:hover {
  background: #205535;
  color: #ffffff;
}

.ea-fl2-vnav svg:not(.ea-fl2-progress-ring) {
  width: 18px;
  height: 18px;
  z-index: 2;
}

.ea-fl2-progress-ring {
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  transform: rotate(-90deg);
  pointer-events: none;
}

.ea-fl2-ring-bg {
  fill: none;
  stroke: rgba(32, 85, 53, 0.15);
  stroke-width: 3;
}

.ea-fl2-ring-fill {
  fill: none;
  stroke: #205535;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 125.66;
  stroke-dashoffset: 125.66;
}

/* Dots */
.ea-fl2-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.ea-fl2-dot {
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ea-fl2-dot.active {
  width: 28px;
  background: #205535;
}

/* Bară Logo-uri */
.ea-fl2-logo-bar {
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 20px;
  border: 1px solid #e2e8f0;
}

.ea-fl2-brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ea-fl2-logo-item img {
  max-height: 28px;
  max-width: 100px;
  object-fit: contain;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.ea-fl2-logo-item.active img {
  opacity: 1;
}

/* Card Verde cu Specificații Tehnice */
.ea-fl2-card-green {
  background-color: #205535;
  border-radius: 16px;
  padding: 18px 22px;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(32, 85, 53, 0.18);
}

.ea-fl2-card-slider {
  position: relative;
  min-height: 50px;
}

.ea-fl2-details-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.ea-fl2-details-item.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ea-fl2-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ea-fl2-card-type {
  font-size: 0.75rem;
  font-weight: 800;
  color: #86efac;
  letter-spacing: 1.5px;
}

.ea-fl2-card-brand {
  font-size: 0.95rem;
  font-weight: 800;
}

.ea-fl2-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 12px 0;
}

.ea-fl2-divider::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff301;
}

.ea-fl2-divider-logo {
  position: relative;
  z-index: 2;
  background: #205535;
  padding: 0 10px;
  height: 24px;
}

.ea-fl2-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.ea-fl2-tech-spec {
  display: flex;
  flex-direction: column;
}

.ea-fl2-tech-spec .lbl {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.ea-fl2-tech-spec .val {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
}




/* ==============================================
   ADAPTARE CARD VERDE PENTRU ECRANE SUB 334PX
=============================================== */
@media (max-width: 334px) {
  /* Reducem padding-ul cardului pentru a economisi spațiu */
  .ea-fl2-card-green {
    padding: 16px 12px;
    text-align: center;
  }

  /* Partea superioară: Titlu și Tip semiremorcă una sub alta, centrate */
  .ea-fl2-card-top {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    text-align: center;
  }

  .ea-fl2-card-brand {
    font-size: 0.88rem;
    text-align: center;
  }

  .ea-fl2-card-type {
    font-size: 0.7rem;
    text-align: center;
  }

  /* Linia cu Logo-ul centrată */
  .ea-fl2-divider {
    justify-content: center;
    margin: 10px 0 14px 0;
  }

  .ea-fl2-divider-logo {
    height: 20px;
  }

  /* Specificațiile tehnice: 1 singură coloană, elementele centrate pe mijloc */
  .ea-fl2-tech-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
  }

  .ea-fl2-tech-spec {
    align-items: center;
    text-align: center;
  }

  .ea-fl2-tech-spec .lbl {
    font-size: 0.65rem;
  }

  .ea-fl2-tech-spec .val {
    font-size: 0.9rem;
  }
}







/* ==============================================
     STILURI CSS PENTRU SECȚIUNEA CONTACT 
=============================================== */

:root {
  --contact-bg: #ffffff;
  --contact-text: #4b5563;
  --contact-heading: #111827;
  --contact-green: #0a4229; 
  --contact-yellow: #fff301; 
}

.contact-premium-section {
  background-color: var(--contact-bg);
  padding: 100px 0;
  position: relative;
  font-family: inherit;
}

/* --- Partea stângă: Text & Titluri --- */
.contact-logo {
  max-width: 200px;
  height: auto;
}

.premium-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--contact-green);
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-left: 35px;
}

.premium-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 25px; height: 2px;
  background-color: var(--contact-green);
}

.custom-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: black;
  line-height: 1.25;
  margin-bottom: 15px;
}

.premium-desc {
  font-size: 1rem;
  color: var(--contact-text);
  line-height: 1.6;
  max-width: 90%;
}

/* --- Link-uri de contact direct (Stânga: Telefon, WhatsApp, Email) --- */
.direct-contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.premium-contact-link {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.premium-contact-link .icon-box {
  width: 44px; height: 44px;
  background: #ffffff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--contact-green);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.premium-contact-link .info {
  margin-left: 15px;
  display: flex;
  flex-direction: column;
}

.premium-contact-link .info .label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 2px;
  transition: color 0.3s ease;
}

.premium-contact-link .info .value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--contact-heading);
  transition: color 0.3s ease;
}

.premium-contact-link .info .value small {
  font-weight: 500;
  color: #94a3b8;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.premium-contact-link .action-icon {
  margin-left: auto;
  font-size: 1.5rem;
  color: #cbd5e1;
  transition: all 0.3s ease;
}

/* --- EFECT HOVER PENTRU CARDURILE DIN STÂNGA --- */
/* Cardul devine verde */
.premium-contact-link:hover {
  background: var(--contact-green);
  border-color: var(--contact-green);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(10, 66, 41, 0.2);
}

/* Caseta pictogramei la hover */
.premium-contact-link:hover .icon-box {
  background: rgba(255, 255, 255, 0.15);
  color: var(--contact-yellow);
}

/* Toate textele și pictograma din dreapta devin galbene */
.premium-contact-link:hover .info .label,
.premium-contact-link:hover .info .value,
.premium-contact-link:hover .info .value small,
.premium-contact-link:hover .action-icon {
  color: var(--contact-yellow);
}

.premium-contact-link:hover .action-icon {
  transform: translateX(4px);
}

/* --- Carduri separate din dreapta --- */
.right-cards-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card-item {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: border-color 0.2s ease;
}

.info-card-item:hover {
  border-color: rgba(10, 66, 41, 0.15);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.section-header i {
  font-size: 1.25rem;
  color: var(--contact-green);
  background: rgba(10, 66, 41, 0.06);
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
}

.section-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--contact-heading);
  margin: 0;
}

.address-text {
  font-size: 0.95rem;
  color: var(--contact-text);
  line-height: 1.6;
  margin-bottom: 10px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--contact-green);
  text-decoration: none;
}

.map-link:hover {
  text-decoration: underline;
}

/* Grid pentru datele companiei în card */
.company-data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.data-item {
  display: flex;
  flex-direction: column;
}

.data-item .k {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.data-item .v {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--contact-heading);
}

/* Platforme */
.platforms-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  padding: 12px 15px;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
}

.platform-badge .icon {
  font-size: 1.3rem;
  color: var(--contact-green);
}

.platform-badge .details {
  display: flex;
  flex-direction: column;
}

.platform-badge .details span {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
}

.platform-badge .details strong {
  font-size: 1rem;
  color: var(--contact-heading);
}

/* --- Responsivitate --- */
@media (max-width: 991px) {
  .contact-premium-section { padding: 70px 0; }
  .custom-title { font-size: 1.9rem; }
  .company-data-grid, .platforms-wrapper { grid-template-columns: 1fr; }
  .right-cards-container { margin-top: 30px; }
}

@media (max-width: 576px) {
  .info-card-item { padding: 20px; }
  .premium-contact-link { padding: 10px 12px; }
}/*


 /* =========================================
   BANNER CONTACT
========================================= */
.premium-team-sec {
  position: relative;
  padding: 100px 0;
  /* Calea către imaginea de fundal actualizată */
  background: url('../img/ecoagrotec-transport-exceptional.webp') center center / cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.premium-team-bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  /* Gradient închis pentru lizibilitate optimă */
  background: linear-gradient(135deg, rgba(10, 14, 20, 0.95) 0%, rgba(15, 25, 35, 0.8) 100%);
  z-index: 1;
}

.premium-team-container {
  position: relative;
  z-index: 2;
}

/* =========================================
   VIDEO PORTRAIT STYLING
========================================= */
.premium-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 340px; 
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  z-index: 5;
}

.premium-portrait-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 2;
  background-color: #1a1a1a; 
}

/* Glow adaptat la galbenul #fff301 */
.premium-video-glow {
  position: absolute;
  top: 5%;
  left: 5%;
  right: -5%;
  bottom: -5%;
  background: rgba(255, 243, 1, 0.15); /* Galben translucid */
  filter: blur(50px);
  z-index: 1;
  border-radius: 50%;
}

/* =========================================
   CONȚINUT DREAPTA (TEXT)
========================================= */
.premium-content-wrapper {
  padding-left: 30px;
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #e5e5e5;
  backdrop-filter: blur(5px);
}

/* Punct pulsativ galben */
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #fff301;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff301;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 243, 1, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 243, 1, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 243, 1, 0); }
}

/* Clasă nouă pentru titlul din banner */
.banner-contact-title {
  font-size: 2.0rem;
  font-weight: 800;
  line-height: 0.9;
  margin-bottom: 20px;
}

/* Culoare de accent galbenă pentru titlu */
.text-accent {
  color: #fff301;
  text-shadow: 0 0 20px rgba(255, 243, 1, 0.3); /* Strălucire subtilă */
}

.premium-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 40px;
  max-width: 90%;
}

/* =========================================
   CARD CITAT (GLASSMORPHISM)
========================================= */
.premium-quote-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.premium-quote-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 243, 1, 0.3); /* Border-ul prinde o tentă galbenă la hover */
}

/* Iconiță cu fundal galben și text negru pentru contrast maxim */
.quote-icon-box {
  position: absolute;
  top: -20px;
  left: 40px;
  width: 45px;
  height: 45px;
  background: #fff301;
  color: #0a0e14; /* Text închis la culoare pe galben */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
  box-shadow: 0 10px 20px rgba(255, 243, 1, 0.3);
}

.quote-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #ffffff;
}

.quote-text {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

.quote-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.footer-info strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.footer-info span {
  display: block;
  font-size: 0.8rem;
  color: #94a3b8;
}

.footer-icon {
  font-size: 1.5rem;
  color: #fff301; /* Iconița camionului galbenă */
}

/* =========================================
   MEDIA QUERIES (RESPONSIVITATE)
========================================= */
@media (max-width: 991px) {
  .premium-team-sec { padding: 80px 0; }
  .premium-content-wrapper { padding-left: 0; text-align: center; margin-top: 50px; }
  .premium-description { max-width: 100%; margin-left: auto; margin-right: auto; }
  .premium-badge { margin: 0 auto 25px auto; }
  .premium-quote-card { text-align: left; padding: 30px 20px; }
  .quote-icon-box { left: 20px; }
  .premium-video-wrapper { max-width: 300px; margin: 0 auto; }
}

@media (max-width: 767px) {
  .banner-contact-title { font-size: 2.2rem; }
  .premium-video-wrapper { max-width: 260px; } 
}

@media (max-width: 576px) {
  .premium-team-sec { padding: 60px 0; }
  .banner-contact-title { font-size: 1.8rem; }
  .quote-title { font-size: 1.2rem; }
}





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



