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


/* Firefox */
html {
  scrollbar-width: none;
}

/* Chrome, Edge, Safari */
html::-webkit-scrollbar {
  display: none;
}

/* Edge / IE vechi */
html {
  -ms-overflow-style: none;
}


/*--------------------------------------------------------------
# Root Variables
--------------------------------------------------------------*/

: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
--------------------------------------------------------------*/

:root {
  --background-color: #ffffff;
  --default-color: #000000;
  --heading-color: #ededed;
  --accent-color: #7dcd2e;
  --surface-color: #31302d;
  --contrast-color: #ffffff;
}


/*--------------------------------------------------------------
# Nav Menu Colors
--------------------------------------------------------------*/

:root {
  --nav-color: #d0d0d0;
  --nav-hover-color: #ff9f1c;
  --nav-mobile-background-color: #393939;
  --nav-dropdown-background-color: #393939;
  --nav-dropdown-color: #d0d0d0;
  --nav-dropdown-hover-color: #ff9f1c;
}


/*--------------------------------------------------------------
# Color Presets
--------------------------------------------------------------*/

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


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

body {
  color: var(--default-color);
  background-color: var(--background-color);
}

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

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

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


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

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

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

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

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

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

.topbar {
  background: transparent;
  color: var(--contrast-color);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  max-height: 44px;
  opacity: 1;
  transition:
    max-height 0.25s ease,
    opacity 0.25s ease,
    border-color 0.25s ease;
    background-color 0.25s ease;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 44px;
}

.topbar a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}

.topbar .contact-info {
  display: flex;
  align-items: center;
  gap: 45px;
  flex-wrap: wrap;
}

.topbar .contact-info > * {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

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

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

.topbar .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar .social-links a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.10);
  color: var(--contrast-color);
  border-radius: 5px;
}

.topbar .social-links a:hover {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  background: rgba(255, 255, 255, 0.20);
}

.topbar-toggle {
  display: none;
}

.scrolled .topbar,
.scrolled .topbar.topbar-open {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

@media (max-width: 991px) {
  .topbar {
    max-height: 38px;
  }

  .topbar.topbar-open {
    max-height: 275px;
  }

  .topbar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 38px;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--contrast-color);
    font-family: var(--banner-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
  }

  .topbar-toggle i {
    font-size: 15px;
    color: var(--contrast-color);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .topbar.topbar-open .topbar-toggle i {
    transform: rotate(180deg);
  }

.topbar .container {
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-height: 0;
  padding-bottom: 15px;
}

.topbar .contact-info {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 5px 0 15px;
  font-size: 14px;
  text-align: center;
}

.topbar .social-links {
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

  .topbar .social-links a {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.10);
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar,
  .topbar-toggle i {
    transition: none;
  }
}

@media (max-width: 991px) {
  .header:has(.topbar.topbar-open) {
    --background-color: rgba(0, 0, 0, 0.9);
  }
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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


/*--------------------------------------------------------------
# Header & Navigation - Smooth Floating Scroll Effect
--------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 997;
  padding: 22px 0;
  background-color: transparent;
  box-shadow: none;
  
  /* Tranziție ultra-smooth */
  transition: 
    top 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  
  will-change: top, padding;
}

/* Constrângerea containerului interior la scroll pentru a nu ieși logo-ul în afară */
.header .container,
.header .container-fluid {
  transition: max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s ease;
}

/* Fundalul flotant (Glassmorphism) care apare și se extinde din centru la scroll */
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0); /* Strâns în centru inițial */
  width: 88%;
  max-width: 1240px;
  height: 100%;
  z-index: -1;
  
  background-color: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  box-shadow: 
    0 15px 35px -5px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(0, 123, 200, 0.15);
    
  opacity: 0;
  transform-origin: center center;
  transition: 
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease,
    border-radius 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Linia de accent inferioară - calculată să rămână ÎN INTERIORUL capsulei */
.header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%; /* Redus de la 80% pentru a nu ieși din curbura capsulei */
  max-width: 1000px;
  height: 2px;
  background: linear-gradient(
    90deg, 
    transparent 0%, 
    var(--accent-color, #007bc8) 50%, 
    transparent 100%
  );
  opacity: 0;
  z-index: 0;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Starea Meniului la Scroll */
.header.header-scrolled {
  top: 15px;
  padding: 8px 0;
}

/* Constrângem elementele din interior (logo + nav) în lățimea capsulei */
.header.header-scrolled .container,
.header.header-scrolled .container-fluid {
  max-width: 1200px;
  padding-left: 35px;
  padding-right: 35px;
}

/* Activarea extinderii din centru a fundalului */
.header.header-scrolled::before {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

/* Animarea liniei de jos la scroll */
.header.header-scrolled::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

/* Ajustare interacțiune link-uri pe Desktop */
@media (min-width: 1200px) {
  .header .navmenu a {
    transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
  }

  .header.header-scrolled .navmenu a,
  .header.header-scrolled .navmenu a:focus {
    padding: 10px 18px;
  }
}

/* Ajustare Mobil */
@media (max-width: 1199px) {
  .header.header-scrolled {
    top: 10px;
    padding: 8px 0;
  }

  .header.header-scrolled::before {
    width: 92%;
    border-radius: 20px;
  }

  .header.header-scrolled .container,
  .header.header-scrolled .container-fluid {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .header::after {
    width: 75%;
  }
}




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

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--accent-color);
  }

  .navmenu {
    padding: 0;
    position: static;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    top: calc(100% + 22px);
    left: 20px;
    right: 20px;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    border-radius: 15px;
    background-color: var(--default-color);
    box-shadow: 0 0 30px rgba(0, 0, 0, .35);
    max-height: 70vh;
    overflow-y: auto;
    z-index: 99999;
  }

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

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

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

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

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

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

  .mobile-nav-active .navmenu::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(33, 37, 41, .8);
    z-index: 9996;
  }

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

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

  .header .logo {
    position: relative;
    z-index: 9998;
  }

}
/* ==============================================================
   FOOTER SECTION - STILURI CSS
   ============================================================== */
.simple-site-footer {
  background-color: #ffffff;
  padding: 60px 0 30px 0;
  color: #0d2238;
}

/* Logo */
.footer-logo {
  max-width: 180px;
  height: auto;
  display: inline-block;
}

/* Text Descriere Italic */
.footer-italic-text {
  font-style: italic;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 850px;
  margin: 0 auto 25px auto;
}

/* Pictograme Circulare Negre */
.footer-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 35px;
}

.icon-circle {
  width: 40px;
  height: 40px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.icon-circle:hover {
  background-color: #82c341;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Bară Verde Rotunjită (Pill Bar) */
.footer-pill-bar {
  background-color: #82c341;
  color: #ffffff;
  border-radius: 50px;
  padding: 14px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(130, 195, 65, 0.2);
}

.copyright-text {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.tagline-text {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Adaptabilitate Ecrane Mici */
@media (max-width: 767.98px) {
  .simple-site-footer {
    padding: 40px 0 20px 0;
  }
  .footer-italic-text {
    font-size: 0.88rem;
    padding: 0 10px;
  }
  .footer-pill-bar {
    flex-direction: column;
    gap: 6px;
    border-radius: 20px;
    padding: 12px 20px;
    text-align: center;
  }
  .copyright-text, .tagline-text {
    font-size: 0.75rem;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#custom-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999999999999999999999999;
  background:
    radial-gradient(
      circle at center,
      #ffffff 0%,
      #f8f9fa 100%
    );

  display: flex !important;
  visibility: visible;
  opacity: 1;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  perspective: 1000px;
  animation:
    zoomDissolveOut
    0.7s
    cubic-bezier(0.7, 0, 0.84, 0)
    forwards;
  animation-delay: 1.5s;
  pointer-events: none;
}

.preloader-logo {
  width: 95%;
  max-width: 850px;
  height: auto;
  display: block;
  margin: 0 auto;
  animation:
    emergeFromDepth
    1.2s
    cubic-bezier(0.16, 1, 0.3, 1)
    forwards;
  will-change: transform, opacity;
  filter:
    drop-shadow(
      0 10px 15px rgba(0, 0, 0, 0.05)
    );

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: translateZ(0);
}

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

@keyframes emergeFromDepth {
  from {
    opacity: 0;
    transform: scale(0.5) translateZ(0);
  }

  60% {
    opacity: 1;
  }

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

@keyframes zoomDissolveOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.5);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
:root {
  --history-color: #f0a132;
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 25px;
  bottom: 15px;
  z-index: 99999;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: transparent;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.scroll-top::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--accent-color);
}

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

.scroll-top:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 5px;
}

.progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: visible;
  pointer-events: none;
}

.progress-circle path {
  fill: none;
}

.progress-track {
  stroke: var(--default-color);
  stroke-opacity: 0.25;
  stroke-width: 5;
}

.progress-history {
  stroke-width: 5;
  stroke-linecap: round;
}

.progress-value {
  stroke: var(--accent-color);
  stroke-width: 5;
  stroke-linecap: butt;
}

.scroll-top .scroll-percent,
.scroll-top i {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  color: var(--contrast-color);
  line-height: 1;
  transition: opacity 0.25s ease;
}

.scroll-top .scroll-percent {
  font-family: var(--banner-font);
  color: var(--contrast-color);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.scroll-top i {
  font-size: 20px;
  opacity: 0;
}

.scroll-top:hover .scroll-percent,
.scroll-top:focus-visible .scroll-percent {
  opacity: 0;
}

.scroll-top:hover i,
.scroll-top:focus-visible i {
  opacity: 1;
}

@media (hover: none) {
  .scroll-top:active .scroll-percent {
    opacity: 0;
  }

  .scroll-top:active i {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top,
  .scroll-top .scroll-percent,
  .scroll-top i {
    transition: none;
  }
}

/*--------------------------------------------------------------
# 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-wrap {
  padding: 0 0 75px;
}

.section-title {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.section-title-logo {
  display: inline-block;
  padding: 0.5rem 1rem;
  border:
    1px solid
    color-mix(
      in srgb,
      var(--accent-color),
      transparent 75%
    );
  border-radius: 25px;
  line-height: 0;
}

.section-title-logo img {
  display: block;
  width: 225px;
  height: auto;
}

.section-title-heading {
  margin: 0.75rem;
  color: var(--default-color);
  font-family: var(--banner-font);
  font-size: 45px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.section-title-text {
  margin: 0 auto;
  color:
    color-mix(
      in srgb,
      var(--default-color),
      transparent 5%
    );

  font-size: 17px;
  line-height: 1.5;
}

/*--------------------------------------------------------------
# Tablet
--------------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-title {
    max-width: 700px;
    padding: 0 15px;
  }

  .section-title-logo img {
    width: 190px;
  }

  .section-title-heading {
    font-size: 34px;
    letter-spacing: 3px;
  }

  .section-title-text {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/
@media (max-width: 767.98px) {
  .section-title {
    width: 100%;
    max-width: 100%;

    padding: 0 10px;
  }

  .section-title-logo img {
    width: 200px;
  }

  .section-title-heading {
    font-size: 35px;
  }
}

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

@media (max-width: 768px) {

  .mobile-br {
    display: inline;
  }
}

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

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

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

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

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

.hero .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.90) 0%,
    rgba(10, 10, 10, 0.80) 45%,
    rgba(10, 10, 10, 0.50) 75%,
    rgba(10, 10, 10, 0.40) 100%
  );
}

.hero .carousel-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center; /* Centrare pe verticală */
  justify-content: flex-start; /* Poziționarea întregului bloc în stânga */
  padding: 0 8%; /* Margine stânga/dreapta */
  z-index: 3;
}

/* Blocul ancorat pe stânga, dar cu elementele interne centrate */
.hero .hero-content-left {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centrează elementele din interior (titlu, butoane etc.) */
  text-align: center;  /* Centrează textul din interior */
  max-width: 650px;    /* Lățime fixă pentru o încadrare proporțională */
  width: 100%;
}

.hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700; /* Modificat de la 600 la 700 sau bold */
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.hero h2 {
  font-family: var(--banner-font);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 10px;
  text-align: center;
}

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

.hero .hero-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--contrast-color);
  margin-bottom: 0px;
  max-width: 100%;
  text-align: center;
}

.hero .btn-browse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-family: var(--banner-font);
  color: var(--contrast-color);
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-top: 35px;
  transition: background-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
  will-change: transform;
  backface-visibility: hidden;
}

.hero .btn-browse:hover {
  background-color: var(--accent-color);
  color: var(--default-color);
  transform: translate3d(0, -3px, 0);
}

.hero .btn-browse i {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.hero .btn-browse span {
  display: inline-flex;
  align-items: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 45px;
  height: 45px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  opacity: 0.5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.25s ease,
    opacity 0.25s ease,
    color 0.25s ease;
}

.hero .carousel-control-prev {
  left: 25px;
}

.hero .carousel-control-next {
  right: 25px;
}

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

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 1;
  color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.25);
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  background: none;
  font-size: 30px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

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

.hero .hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  margin-top: 35px;
}

.hero .hero-feature {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  padding: 15px;
  text-align: left;
  background: color-mix(in srgb, var(--default-color), transparent 25%);
  border-radius: 15px;
}

.hero .hero-feature .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--contrast-color);
  font-size: 22px;
  line-height: 1;
}

.hero .hero-feature .feature-icon i {
  line-height: 1;
}

.hero .hero-feature-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  min-width: 0;
  text-align: left;
}

.hero .hero-feature h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
  color: var(--contrast-color);
  font-family: var(--banner-font);
}

.hero .hero-feature p {
  margin: 0;
  font-size: 13px;
  color: color-mix(in srgb, var(--contrast-color), transparent 5%);
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero .hero-content-left {
    max-width: 550px;
  }
}

@media (max-width: 992px) {
  .hero .carousel-container {
    padding: 0 5%;
  }
  .hero .hero-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .hero .carousel-container {
    padding: 100px 20px 50px 20px;
    justify-content: center;
  }

  .hero .hero-content-left {
    max-width: 100%;
  }

  .hero h2 {
    font-size: 33px;
    margin-bottom: 10px;
  }

  .hero .hero-slogan {
    font-size: 19px;
  }

  .hero .hero-description {
    font-size: 16px;
  }

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

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

  .hero .btn-browse:first-child {
    margin-top: 35px;
  }

  .hero .hero-features {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 500px;
    gap: 15px;
    margin-top: 40px;
  }

  .hero .carousel {
    height: auto;
    min-height: 100svh;
  }
}

/*--------------------------------------------------------------
# ELIMINARE FUNDAL ALB NEDORIT (Rezolvare Problemă Imagine)
--------------------------------------------------------------*/
/* Această regulă anulează orice fundal solid moștenit pe header
   atunci când bara este în starea plutitoare (scrolled). */
.header.header-scrolled {
  background-color: transparent !important;
  background-image: none !important;
  background: transparent !important;
  
  /* Asigură-te că nicio umbră nu se întinde pe toată lățimea */
  box-shadow: none !important;
}

/* De asemenea, asigură-te că niciun container interior nu are fundal alb */
.header.header-scrolled .container,
.header.header-scrolled .container-fluid {
  background-color: transparent !important;
  background: transparent !important;
}


/*--------------------------------------------------------------
# 1. Definitie Variabile Imagini Banner
--------------------------------------------------------------*/
:root {
  --banner-bg-pc: url('../img/banner/valerika-es-banner-01-pc.webp');
  --banner-bg-mobile: url('../img/banner/valerika-es-banner-01-mob.webp');
}

/*--------------------------------------------------------------
# 2. About Section - DESPRE NOI (Conținut & Media)
--------------------------------------------------------------*/
.about-intro {
  padding: 75px 0;
}

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

.about-intro-title {
  font-family: var(--banner-font);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.25;
  color: var(--accent-color);
  margin: 0 0 1rem;
}

.about-intro-lead {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--accent-color);
  margin-bottom: 1.25rem;
}

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

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

/* Pills / Etichete */
.about-intro-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 1.5rem 0 0;
}

.about-intro-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem 0.4rem 0.4rem;
  background: transparent;
  border: 1px solid var(--accent-color);
  border-radius: 999px;
  font-family: var(--banner-font);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--default-color);
}

.about-intro-pill i {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.9rem;
  background: var(--accent-color);
  color: var(--contrast-color);
}

/* Dreapta: Structură Media */
.about-media-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-photo-landscape {
  margin: 0;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.about-photo-landscape img,
.about-photo-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card Albastru 25+ Ani - Full Responsive Fluid (Nu se mai rupe rândul) */
.about-exp-card {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(0.5rem, 2vw, 1.25rem);
  padding: clamp(10px, 2vw, 15px) clamp(12px, 3vw, 25px);
  background: var(--accent-color);
  color: #fff;
  border-radius: 15px;
  width: 100%;
}

.about-exp-card-icon {
  width: clamp(38px, 5vw, 50px);
  height: clamp(38px, 5vw, 50px);
  flex: 0 0 clamp(38px, 5vw, 50px);
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: clamp(1rem, 2vw, 1.4rem);
  background: var(--default-color);
  color: var(--contrast-color);
}

.about-exp-card-content {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(0.4rem, 1.5vw, 1rem);
  min-width: 0;
}

.about-exp-card-number {
  font-family: var(--banner-font);
  font-weight: 900;
  font-size: clamp(24px, 4.5vw, 38px);
  line-height: 1;
  white-space: nowrap;
}

.about-exp-card-label {
  font-family: var(--banner-font);
  font-weight: 700;
  font-size: clamp(0.65rem, 1.2vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* Grid Poze Pătrate alăturate */
.about-photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.about-photo-square {
  margin: 0;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

/*--------------------------------------------------------------
# 3. Banner Statistici & Overlay Reparat (Fix Acoperire 100%)
--------------------------------------------------------------*/
.about-stats-banner {
  margin-top: 60px;
  border-radius: 20px;
  min-height: 500px; /* Folosim min-height pentru flexibilitate */
  overflow: hidden;
  background-image: var(--banner-bg-pc);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex; /* Asigură extinderea pe verticală */
}

/* Overlay-ul este FORȚAT să acopere 100% din imagine mereu */
.about-stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2rem);
  
  /* Gradient complet inversat de la transparent sus la întunecat jos */
  background: linear-gradient(
    to bottom, 
    rgba(0, 0, 0, 0.15) 0%, 
    rgba(0, 0, 0, 0.40) 40%,
    rgba(0, 0, 0, 0.88) 100%
  );
  box-sizing: border-box;
}

/* Grilă Statistici */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 20px;
}

/* Carduri transparente */
.about-stats-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  text-align: center;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: #fff;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.about-stats-card:hover {
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-4px);
}

.about-stats-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 1.25rem;
  background: var(--accent-color);
  color: #fff;
}

.about-stats-value {
  font-family: var(--banner-font);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  color: #fff;
}

.about-stats-label {
  margin-top: 0.3rem;
  font-family: var(--banner-font);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/*--------------------------------------------------------------
# 4. Responsivitate Ajustată
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .about-stats-banner {
    min-height: 520px; /* Oferă spațiu vertical suficient pe tablete pentru cele 2 rânduri */
  }

  /* Overlay-ul RĂMÂNE ABSOLUTE și acoperă 100% din banner */
  .about-stats-overlay {
    position: absolute;
    height: 100%;
  }

  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .about-stats-banner {
    background-image: var(--banner-bg-mobile);
    margin-top: 40px;
    min-height: 560px; /* Înălțime ajustată pentru poza verticală de mobil */
  }
}

@media (max-width: 576px) {
  .about-stats-banner {
    min-height: 580px; /* Spațiu vertical pentru cardurile una sub alta */
  }

  .about-stats-overlay {
    padding: 1.25rem 0.85rem;
  }

  .about-stats-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .about-stats-card {
    padding: 0.85rem 0.75rem;
  }
}




/*--------------------------------------------------------------
# Cuvânt de la Administrator Section
--------------------------------------------------------------*/
.about-testimonial-section {
  padding: 80px 0;
  -webkit-font-smoothing: antialiased;
}

/* Card Principal Container */
.admin-card-wrapper {
  position: relative;
  background: color-mix(in srgb, var(--accent-color), transparent 93%);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

/* Element decorativ fundal (Ghilimele uriașe) */
.admin-quote-watermark {
  position: absolute;
  top: -3rem;
  left: -2rem;
  font-size: 18rem;
  line-height: 0.5;
  color: color-mix(in srgb, var(--accent-color), transparent 92%);
  pointer-events: none;
  z-index: 0;
}

.admin-content {
  position: relative;
  z-index: 1;
}

.admin-eyebrow {
  display: block;
  font-family: var(--banner-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--default-color);
  margin-bottom: 8px;
}

.admin-title {
  font-family: var(--banner-font);
  font-weight: 800;
  font-size: 30px;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

/* Textul citatului */
.admin-quote-body p {
  font-size: 16.5px;
  line-height: 1.75;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  margin-bottom: 1.2rem;
}

.admin-quote-body p:last-child {
  margin-bottom: 0;
}

/* Subsol (Nume & Logo) */
.admin-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.admin-name {
  display: block;
  font-family: var(--banner-font);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent-color);
}

.admin-role {
  display: block;
  font-family: var(--banner-font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--default-color);
  margin-top: 2px;
}

.admin-signature-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* Card Poză Portret (Dreapta) */
.admin-portrait-card {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.admin-portrait-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 4px solid #ffffff;
}

.admin-portrait-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

/* Insulă/Badge peste poză */
.admin-portrait-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--banner-font);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Adaptare Responsive */
@media (max-width: 991.98px) {
  .admin-card-wrapper {
    padding: 2.5rem 1.5rem;
  }

  .admin-title {
    font-size: 26px;
  }

  .admin-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .admin-signature-logo {
    height: 40px;
  }
}

@media (max-width: 575.98px) {
  .admin-quote-watermark {
    font-size: 12rem;
    top: -1rem;
    left: -1rem;
  }
  
  .admin-portrait-frame {
    max-width: 100%;
  }
}



/*--------------------------------------------------------------
# Section Title (Stiluri Titlu Original)
--------------------------------------------------------------*/
.section-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.section-title-logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.section-title-heading {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  margin: 0;
  position: relative;
}

.section-title-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color, #0056b3);
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-title-text {
  max-width: 650px;
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

/*--------------------------------------------------------------
# MPM Logistics Section
--------------------------------------------------------------*/
.mpm-logistics-section {
  padding: 70px 0;
  background-color: #f8fafc;
  position: relative;
  font-family: inherit;
}

/* Layout Introductiv & Poză Redusă */
.mpm-intro-row {
  margin-bottom: 45px;
}

.mpm-intro-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mpm-intro-media {
  position: relative;
  width: 100%;
  height: 240px; /* Înălțime mai mică și fixată */
  max-height: 240px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
}

.mpm-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mpm-intro-media:hover img {
  transform: scale(1.04);
}

/* Semi-titlu Stânga */
.mpm-eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.mpm-line-accent {
  width: 35px;
  height: 2px;
  background: var(--accent-color, #0056b3);
}

.mpm-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-color, #0056b3);
}

.mpm-main-title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.mpm-subtitle {
  font-size: 14.5px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Carduri Servicii */
.mpm-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mpm-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--accent-color, #0056b3), transparent 70%);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.mpm-card-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.mpm-card:hover .mpm-card-media img {
  transform: scale(1.08);
}

.mpm-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.4) 0%, transparent 60%);
}

.mpm-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.mpm-card-badge.thermo { background: rgba(14, 165, 233, 0.85); }
.mpm-card-badge.tarp { background: rgba(245, 158, 11, 0.85); }
.mpm-card-badge.box { background: rgba(16, 185, 129, 0.85); }

.mpm-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mpm-card-title {
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.mpm-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 18px;
}

.mpm-specs-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px dashed #e2e8f0;
}

.mpm-spec-item {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mpm-spec-item i {
  color: var(--accent-color, #0056b3);
  font-size: 15px;
}

.mpm-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 20px;
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 700;
  font-size: 13px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mpm-card-btn i {
  transition: transform 0.3s ease;
}

.mpm-card:hover .mpm-card-btn {
  background: var(--accent-color, #0056b3);
  color: #ffffff;
}

.mpm-card:hover .mpm-card-btn i {
  transform: translateX(5px);
}

/* Banner Landscape */
.mpm-landscape-banner {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 20px;
  padding: 35px 45px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mpm-banner-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at right, color-mix(in srgb, var(--accent-color, #0056b3), transparent 70%) 0%, transparent 70%);
  pointer-events: none;
}

.mpm-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.mpm-banner-info {
  max-width: 650px;
}

.mpm-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.mpm-banner-heading {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.mpm-banner-desc {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}

.mpm-btn-banner-call {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--accent-color, #0056b3);
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.mpm-btn-banner-call i {
  font-size: 20px;
}

.mpm-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.mpm-btn-text small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

.mpm-btn-text strong {
  font-size: 15px;
  font-weight: 800;
}

.mpm-btn-banner-call:hover {
  background: #ffffff;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Responsivitate Mobile & Tablete */
@media (max-width: 991px) {
  .mpm-intro-media {
    height: 220px;
  }

  .mpm-landscape-banner {
    padding: 30px;
  }

  .mpm-banner-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .mpm-btn-text {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .mpm-logistics-section {
    padding: 50px 0;
  }

  .mpm-card-body {
    padding: 20px;
  }
}





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

.transport-card-banner {
  position: relative;
  background: var(--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: 5px;
  color: var(--contrast-color);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.transport-title-banner {
  font-family: var(--banner-font);
  font-size: 30px;
  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;
  max-width: 100%;
}

.btn-transport {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--banner-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: normal;
  word-break: break-word;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-transport i {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.btn-transport:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-transport:hover i {
  transform: translateX(4px);
}

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

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

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

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

/* Responsivitate Media Queries */
@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;
  }

  .transport-actions-banner {
    width: 100%;
    justify-content: center;
  }

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

  .btn-transport {
    width: 100%;
    max-width: 320px;
    padding: 14px 20px;
    font-size: 0.8rem;
  }

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

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

@media (max-width: 380px) {
  .btn-transport {
    padding: 12px 16px;
    font-size: 0.75rem;
    gap: 8px;
  }

  .btn-transport i {
    font-size: 1.1rem;
  }
}



/*--------------------------------------------------------------
# MPM Refrigerated Section Style (Fundal Alb)
--------------------------------------------------------------*/
.mpm-frigo-section {
  padding: 80px 0;
  background: #ffffff;
  color: #0f172a;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.mpm-frigo-main-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.mpm-frigo-intro-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 12px;
}

.mpm-frigo-hero-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
}

.mpm-frigo-hero-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.mpm-frigo-badge-floating {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid #e2e8f0;
  color: var(--accent-color, #0056b3);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

/* Termometru Widget Stânga */
.mpm-thermo-widget {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 30px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.mpm-thermo-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  background: rgba(2, 132, 199, 0.12);
  filter: blur(50px);
  border-radius: 50%;
  top: 35%;
  pointer-events: none;
  transition: background 0.5s ease;
}

.mpm-thermo-display {
  text-align: center;
  margin-bottom: 25px;
}

.mpm-thermo-status-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color, #0056b3);
  margin-bottom: 6px;
}

.mpm-thermo-digital {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: #0f172a;
  font-family: monospace;
}

.mpm-thermo-digital small {
  font-size: 26px;
  color: #64748b;
}

.mpm-thermo-range-text {
  font-size: 13px;
  color: #64748b;
  display: block;
  margin-top: 6px;
  font-weight: 600;
}

/* Termometru Grafic */
.mpm-thermo-gauge-container {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 220px;
  margin-bottom: 20px;
}

.mpm-thermo-ticks {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  font-family: monospace;
}

.mpm-thermo-glass {
  width: 24px;
  height: 100%;
  background: #ffffff;
  border: 2px solid #cbd5e1;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  padding: 3px;
  display: flex;
  align-items: flex-end;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.mpm-thermo-mercury {
  width: 100%;
  height: 65%;
  background: #0284c7;
  border-radius: 20px;
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1), background 0.6s ease;
  box-shadow: 0 0 10px rgba(2, 132, 199, 0.4);
}

.mpm-thermo-footer {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Carduri Dreapta */
.mpm-cargo-card {
  position: relative;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.mpm-cargo-card:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06);
}

.mpm-cargo-card.active {
  background: #ffffff;
  border-color: var(--accent-color, #0056b3);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.12);
}

/* Bara de progres Autoplay */
.mpm-cargo-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent-color, #0056b3);
  transition: width 0.1s linear;
}

.mpm-cargo-card.active .mpm-cargo-progress {
  width: 100%;
  transition: width 4.5s linear;
}

.mpm-cargo-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.mpm-cargo-icon.cold { color: #0284c7; }
.mpm-cargo-icon.freeze { color: #2563eb; }
.mpm-cargo-icon.ambient { color: #d97706; }

.mpm-cargo-content {
  flex: 1;
}

.mpm-cargo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}

.mpm-cargo-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

/* Temperatură Mărită în Carduri */
.mpm-temp-pill {
  font-size: 14px; /* Dimensiune mărită */
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.mpm-temp-pill.cold { background: #e0f2fe; color: #0369a1; border: 1px solid #bae6fd; }
.mpm-temp-pill.freeze { background: #dbeafe; color: #1d4ed8; border: 1px solid #bfdbfe; }
.mpm-temp-pill.ambient { background: #fef3c7; color: #b45309; border: 1px solid #fde68a; }

.mpm-cargo-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #475569;
  margin-bottom: 12px;
}

.mpm-cargo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mpm-cargo-tags span {
  font-size: 12.5px;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 5px;
}

.mpm-cargo-tags i {
  color: var(--accent-color, #0056b3);
  font-size: 14px;
}

/* Responsivitate Mobile */
@media (max-width: 991px) {
  .mpm-cargo-card {
    flex-direction: column;
  }
}

/* Linia de design pentru progresul timpului */
.mpm-cargo-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: var(--accent-color, #0056b3);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  box-shadow: 0 0 8px rgba(2, 132, 199, 0.5);
  z-index: 5;
}

/* Animație declanșată doar pe cardul activ */
.mpm-cargo-card.active .mpm-cargo-progress {
  animation: thermoTimerProgress 4.5s linear forwards;
}

/* Regula de animație CSS pentru timp (de la 0% la 100%) */
@keyframes thermoTimerProgress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* ==============================================================
   RESPONSIVE: ADAPTARE MOBIL & DISPOZITIVE MICI (< 992px)
   ============================================================== */
@media (max-width: 991.98px) {
  /* 1. Ascunde cardurile neactive pe mobil (apare doar 1 singur card) */
  .mpm-cargo-card:not(.active) {
    display: none !important;
  }

  /* 2. Animație de tranziție lină când se schimbă cardul pe mobil */
  .mpm-cargo-card.active {
    display: flex !important;
    animation: mpmCardFadeIn 0.35s ease-in-out;
  }

  /* 3. Ajustări spațiere pe ecran mic */
  .mpm-thermo-widget {
    margin-bottom: 10px;
    padding: 20px 15px;
  }

  .mpm-cargo-card {
    flex-direction: column;
    padding: 18px;
  }
}

/* Animație Fade-In la schimbarea cardului pe mobil */
@keyframes mpmCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ==============================================================
  TRANSPORT  MARFĂ GENERALĂ
   ============================================================== */
.mpm-biz-section {
  background-color: #ffffff !important;
  color: #0b132b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* --- KICKER & TITLURI EXECUTIVE --- */
.mpm-biz-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #1e3a8a;
  text-transform: uppercase;
  background: #f0f3ff;
  padding: 6px 14px;
  border-radius: 20px;
}

.mpm-dot-active {
  width: 6px;
  height: 6px;
  background-color: #2563eb;
  border-radius: 50%;
}

.mpm-biz-heading {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  line-height: 1.18;
}

.mpm-biz-lead {
  font-size: 15.5px;
  line-height: 1.65;
  color: #475569;
}

/* Imagini & Frames */
.mpm-biz-main-img {
  width: 100%;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
}

.mpm-biz-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid #cbd5e1;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 700;
  color: #0f172a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.text-gold {
  color: #b45309;
}

/* Carduri Mici cu Iconiță */
.mpm-biz-mini-card {
  background: transparent;
  border: 1px solid #e2e8f0;
  transition: border-color 0.3s ease;
}

.mpm-biz-mini-card:hover {
  border-color: #94a3b8;
}

.mpm-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #e0e7ff;
  color: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* --- CARD LANDSCAPE EXECUTIVE --- */
.mpm-biz-landscape-card {
  background: transparent;
  border: 1.5px solid #cbd5e1;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.03);
  transition: all 0.3s ease;
}

.mpm-biz-landscape-card:hover {
  border-color: #1e40af;
  box-shadow: 0 20px 45px rgba(30, 64, 175, 0.06);
}

/* Liniile Decupate Sus / Jos (Cut-out Chip) */
.mpm-biz-cutline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  white-space: nowrap;
}

.mpm-biz-cutline-top {
  top: -15px;
}

.mpm-biz-cutline-bottom {
  bottom: -15px;
}

.mpm-biz-chip {
  background-color: #ffffff;
  padding: 5px 26px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #0f172a;
  text-transform: uppercase;
  border: 1.5px solid #cbd5e1;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

/* Carduri Servicii Interioare */
.mpm-biz-service-card {
  background: transparent;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.mpm-biz-service-card:hover {
  background: transparent;
  border-color: #3b82f6;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.mpm-biz-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.mpm-biz-card-sub {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mpm-biz-card-text {
  font-size: 13px;
  line-height: 1.6;
}

/* Box Imagine Simpla (Fara stil de card/bordura) */
.mpm-biz-img-box {
  height: 200px;
  width: 100%;
  border: none;
  background: transparent;
  overflow: hidden;
  border-radius: 12px;
}

.mpm-biz-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mpm-biz-service-card:hover .mpm-biz-card-img {
  transform: scale(1.05);
}

/* Poza Camion Centru - Format Portrait */
.mpm-biz-hero-truck {
  max-height: 340px;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.mpm-biz-landscape-card:hover .mpm-biz-hero-truck {
  transform: scale(1.03);
}

/* Buton Premium Business */
.mpm-biz-btn {
  background: #0f172a;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
  transition: all 0.3s ease;
}

.mpm-biz-btn:hover {
  background: #1e40af;
  box-shadow: 0 14px 30px rgba(30, 64, 175, 0.3);
  transform: translateY(-2px);
}

/* Responsivitate Mobil */
@media (max-width: 991.98px) {
  .mpm-biz-chip {
    font-size: 9.5px;
    padding: 3px 14px;
    letter-spacing: 1px;
  }
  .mpm-biz-landscape-card {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}






/* ==============================================================
   DE CE NOI SECTION - STILURI CSS
   ============================================================== */
.why-us-section {
  background-color: #ffffff;
  padding: 80px 0;
  font-family: inherit;
}

/* Header Secțiune */
.why-us-header {
  max-width: 750px;
  margin: 0 auto 50px auto;
}

.why-us-eyebrow {
  display: inline-block;
  color: #82c341;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.why-us-title {
  color: #0d2238;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

.why-us-divider {
  width: 60px;
  height: 4px;
  background-color: #82c341;
  margin: 0 auto 20px auto;
  border-radius: 2px;
}

.why-us-subtitle {
  color: #55606d;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

/* Carduri Beneficii */
.why-us-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 12px;
  padding: 35px 25px;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.why-us-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  transition: background-color 0.35s ease;
}

.why-us-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 30px rgba(130, 195, 65, 0.15);
  border-color: rgba(130, 195, 65, 0.3);
}

.why-us-card:hover::before {
  background-color: #82c341;
}

/* Pictogramă Cerc */
.why-us-icon-wrap {
  width: 65px;
  height: 65px;
  background-color: rgba(130, 195, 65, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.35s ease;
}

.why-us-icon-wrap i {
  font-size: 1.75rem;
  color: #82c341;
  transition: color 0.35s ease;
}

.why-us-card:hover .why-us-icon-wrap {
  background-color: #82c341;
}

.why-us-card:hover .why-us-icon-wrap i {
  color: #ffffff;
}

/* Titlu & Text Card */
.why-us-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0d2238;
  margin-bottom: 12px;
}

.why-us-card-text {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Adaptabilitate Mobile & Tabletă */
@media (max-width: 991.98px) {
  .why-us-section {
    padding: 60px 0;
  }
  .why-us-title {
    font-size: 1.85rem;
  }
}

@media (max-width: 575.98px) {
  .why-us-card {
    padding: 25px 20px;
  }
  .why-us-icon-wrap {
    width: 55px;
    height: 55px;
  }
  .why-us-icon-wrap i {
    font-size: 1.4rem;
  }
  .why-us-title {
    font-size: 1.6rem;
  }
}




/* ==============================================================
   FLOTĂ SECTION - STILURI CSS
   ============================================================== */
.fleet-section {
  background-color: #ffffff;
  padding: 80px 0;
}

/* Stânga: Text */
.fleet-eyebrow {
  display: inline-block;
  color: #82c341;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.fleet-title {
  color: #0d2238;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.25;
}

.fleet-lead {
  color: #0d2238;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 10px;
}

.fleet-description {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Card Verde Principal (Semiremorci Box) */
.fleet-card-green {
  background-color: #82c341;
  color: #ffffff;
  border-radius: 12px;
  padding: 22px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 25px rgba(130, 195, 65, 0.25);
  transition: transform 0.3s ease;
}

.fleet-card-green:hover {
  transform: translateY(-3px);
}

.fleet-card-icon {
  width: 55px;
  height: 55px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fleet-card-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.fleet-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
}

.fleet-card-text {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.95;
  line-height: 1.4;
}

/* Mini Carduri (24T & Euro 6) */
.fleet-mini-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.fleet-mini-card:hover {
  border-color: #82c341;
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.fleet-mini-icon {
  width: 42px;
  height: 42px;
  background-color: rgba(130, 195, 65, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fleet-mini-icon i {
  font-size: 1.3rem;
  color: #82c341;
}

.fleet-mini-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0d2238;
  margin: 0;
  line-height: 1.2;
}

.fleet-mini-label {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

/* Dreapta: Media & Badge 6 Camioane */
.fleet-media-wrapper {
  position: relative;
  padding-bottom: 20px;
  padding-right: 20px;
}

.fleet-photo-holder {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.fleet-photo-holder img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* Card Verde Suprapus pe Poză */
.fleet-badge-card {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #82c341;
  color: #ffffff;
  border-radius: 14px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  border: 3px solid #ffffff;
}

.fleet-badge-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-badge-icon i {
  font-size: 1.6rem;
  color: #ffffff;
}

.fleet-badge-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.fleet-badge-text {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Adaptabilitate Mobile & Tabletă */
@media (max-width: 991.98px) {
  .fleet-section {
    padding: 60px 0;
  }
  .fleet-title {
    font-size: 1.85rem;
  }
  .fleet-media-wrapper {
    margin-top: 20px;
    padding-bottom: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 575.98px) {
  .fleet-card-green {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .fleet-badge-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -30px;
    margin-left: 15px;
    margin-right: 15px;
    justify-content: center;
  }
  .fleet-media-wrapper {
    padding: 0;
  }
}












/* ==========================================================================
   1. VARIABILE GLOBALE
   ========================================================================== */
:root {
  --accent-color: #7dcd2e;
  --accent-hover: #42020c;
  --accent-glow: rgba(91, 3, 17, 0.15);
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --border-color: rgba(91, 3, 17, 0.15);
}

/* ==========================================================================
   2. ANTI-LEAK HEADER FIX (CENTRARE GARANTATĂ PENTRU TITLURI)
   ========================================================================== */
.tmg-why-section-v2 .tmg-header,
.tmg-fl-section .tmg-header {
  text-align: center !important;
  width: 100%;
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tmg-why-section-v2 .tmg-subtitle,
.tmg-fl-section .tmg-subtitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 auto 8px auto;
  text-align: center;
}

.tmg-why-section-v2 .tmg-main-title,
.tmg-fl-section .tmg-main-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 auto 12px auto;
  line-height: 1.2;
  text-align: center !important;
  width: 100%;
}

.tmg-why-section-v2 .tmg-header-desc,
.tmg-fl-section .tmg-header-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center !important;
}

/* Container & Butoane generale */
.tmg-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}

.tmg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tmg-btn-fl-primary {
  background: var(--accent-color);
  color: #ffffff;
  border: 1px solid var(--accent-color);
}

.tmg-btn-fl-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--accent-glow);
}

.tmg-btn-fl-secondary {
  background: #ffffff;
  color: var(--text-dark);
  border: 1px solid #cbd5e1;
}

.tmg-btn-fl-secondary:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* ==========================================================================
   3. SECȚIUNE DE CE NOI? (V2 COMPLETE & ISOLATED)
   ========================================================================== */
.tmg-why-section-v2 {
  padding: 80px 20px;
  background-color: var(--bg-light);
  box-sizing: border-box;
}

.tmg-why-section-v2 * {
  box-sizing: border-box;
}

/* Grid Partea Superioară */
.tmg-why-section-v2 .tmg-why-top-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 30px;
  align-items: stretch;
  margin-bottom: 40px;
}

/* CARD PORTRAIT STÂNGA (MODIFICAT: COLȚURI ROTUNJITE CURATE) */
.tmg-why-section-v2 .tmg-why-main-portrait-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: 24px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.tmg-why-section-v2 .tmg-why-portrait-img-bg {
  width: 100%;
  height: 100%;
  min-height: 440px;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tmg-why-section-v2 .tmg-why-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.5s ease;
}

.tmg-why-section-v2 .tmg-why-main-portrait-card:hover .tmg-why-portrait-img {
  transform: scale(1.05);
}

.tmg-why-section-v2 .tmg-why-main-portrait-badge {
  position: absolute;
  bottom: 26px;
  left: 26px;
  right: 26px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 18px;
  border-radius: 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.tmg-why-section-v2 .tmg-why-main-portrait-badge i {
  font-size: 26px;
  color: var(--accent-color);
}

.tmg-why-section-v2 .tmg-why-main-portrait-badge strong {
  display: block;
  font-size: 14px;
}

.tmg-why-section-v2 .tmg-why-main-portrait-badge span {
  font-size: 11.5px;
  color: #94a3b8;
}

/* Cele 4 Carduri Dreapta (NOUA STRUCTURĂ VERICALĂ) */
.tmg-why-section-v2 .tmg-why-4cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tmg-why-section-v2 .tmg-why-mini-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
}

.tmg-why-section-v2 .tmg-why-mini-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px var(--accent-glow);
}

/* Antet Card: Iconiță + Titlu pe aceeași linie */
.tmg-why-section-v2 .tmg-mini-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.tmg-why-section-v2 .tmg-mini-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(91, 3, 17, 0.08);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.tmg-why-section-v2 .tmg-mini-title {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
  text-align: left;
  line-height: 1.3;
}

.tmg-why-section-v2 .tmg-mini-text {
  font-size: 13px;
  color: var(--text-light);
  margin: 0 0 16px 0;
  line-height: 1.5;
  text-align: left;
}

/* Poza Landscape Centrată în Card - Eliminare Blur & Pixelare */
.tmg-why-section-v2 .tmg-mini-card-landscape {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background: #f1f5f9;
  margin-top: auto;
  border: 1px solid #cbd5e1;
  /* Previne artefactele de subpixeli în container */
  transform: translateZ(0);
}

.tmg-why-section-v2 .tmg-mini-card-landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  
  /* Resetăm randarea nativă optimă pentru fotografii */
  image-rendering: auto;
  
  /* Optimizare pentru tranziții fluide fără blur */
  will-change: transform;
  transition: transform 0.3s ease;
}

/* Zoom redus la hover pentru a păstra claritatea */
.tmg-why-section-v2 .tmg-why-mini-card:hover .tmg-mini-card-landscape img {
  transform: scale(1.02);
}

.tmg-why-section-v2 .tmg-why-mini-card:hover .tmg-mini-card-landscape img {
  transform: scale(1.06);
}

/* Bara Statistici */
.tmg-why-section-v2 .tmg-why-stats-bar {
  background: #0f172a;
  border-radius: 20px;
  padding: 24px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
}

.tmg-why-section-v2 .tmg-why-stat-num {
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
}

.tmg-why-section-v2 .tmg-why-stat-lbl {
  font-size: 12.5px;
  color: #94a3b8;
  font-weight: 600;
  display: block;
}

.tmg-why-section-v2 .tmg-why-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* Cele 2 Carduri Landscape (MODIFICAT: BUTOANE CENTRATE) */
.tmg-why-section-v2 .tmg-why-landscape-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.tmg-why-section-v2 .tmg-landscape-card {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
}

.tmg-why-section-v2 .tmg-landscape-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 18px 40px var(--accent-glow);
}

.tmg-why-section-v2 .tmg-landscape-img-wrapper {
  position: relative;
  width: 100%;
  height: 210px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #f1f5f9;
}

.tmg-why-section-v2 .tmg-landscape-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.tmg-why-section-v2 .tmg-landscape-card:hover .tmg-landscape-img {
  transform: scale(1.06);
}

.tmg-why-section-v2 .tmg-landscape-img-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tmg-why-section-v2 .tmg-landscape-img-badge i {
  color: var(--accent-color);
}

.tmg-why-section-v2 .tmg-landscape-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex-grow: 1;
}

.tmg-why-section-v2 .tmg-landscape-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.tmg-why-section-v2 .tmg-landscape-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 10px 0;
  line-height: 1.3;
  text-align: left;
}

.tmg-why-section-v2 .tmg-landscape-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 22px 0;
  text-align: left;
}

/* Centrare Buton în Cardul Landscape */
.tmg-why-section-v2 .tmg-landscape-content .tmg-btn {
  align-self: center;
  margin-top: auto;
}

/* Banner Slogan */
.tmg-why-section-v2 .tmg-slogan-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1a1d20 100%);
  border-radius: 24px;
  padding: 45px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tmg-why-section-v2 .tmg-slogan-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.tmg-why-section-v2 .tmg-slogan-logo img {
  max-height: 55px;
  width: auto;
  margin-bottom: 18px;
}

.tmg-why-section-v2 .tmg-slogan-title {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px 0;
  text-align: center;
}

.tmg-why-section-v2 .tmg-slogan-subtitle {
  font-size: 15px;
  color: #94a3b8;
  margin: 0 0 20px 0;
  line-height: 1.5;
  text-align: center;
}

.tmg-why-section-v2 .tmg-slogan-line {
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  margin: 0 auto;
  border-radius: 2px;
}

/* ==========================================================================
   4. ADAPTARE RESPONSIVE & ASCUNDERE POZE MOBIL
   ========================================================================== */
@media (max-width: 1024px) {
  .tmg-why-section-v2 .tmg-why-top-grid {
    grid-template-columns: 1fr;
  }

  .tmg-why-section-v2 .tmg-why-portrait-img-bg {
    min-height: 320px;
  }

  .tmg-why-section-v2 .tmg-why-landscape-grid {
    grid-template-columns: 1fr;
  }

  .tmg-why-section-v2 .tmg-why-stats-bar {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .tmg-why-section-v2 .tmg-why-stat-divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .tmg-why-section-v2 {
    padding: 50px 14px;
  }

  .tmg-why-section-v2 .tmg-main-title {
    font-size: 25px;
  }

  .tmg-why-section-v2 .tmg-why-4cards-grid {
    grid-template-columns: 1fr;
  }

  /* ASCUNDERE POZE PE MOBIL PENTRU CELE 4 CARDURI MINI */
  .tmg-why-section-v2 .tmg-mini-card-landscape {
    display: none;
  }

  .tmg-why-section-v2 .tmg-mini-text {
    margin-bottom: 0;
  }

  .tmg-why-section-v2 .tmg-landscape-card {
    padding: 16px;
  }

  .tmg-why-section-v2 .tmg-landscape-img-wrapper {
    height: 170px;
  }

  .tmg-why-section-v2 .tmg-landscape-title {
    font-size: 19px;
  }

  .tmg-why-section-v2 .tmg-slogan-banner {
    padding: 30px 18px;
  }

  .tmg-why-section-v2 .tmg-slogan-title {
    font-size: 20px;
  }
}





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

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

.faq .faq-title {
  font-size: 27px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--default-color);
  font-family: var(--banner-font);
  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 color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 15px !important;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: border-color .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);
}

.faq .faq-accordion .accordion-button {
  font-family: var(--banner-font);
  font-weight: 700;
  font-size: 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.75;
  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: transparent;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  overflow: hidden;
}

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

.faq .contact-card2 h3 {
  font-family: var(--banner-font);
  font-size: 25px;
  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: 17px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  position: relative;
}

.faq .contact-card2 .contact-hint {
  font-family: var(--banner-font);
  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(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--contrast-color);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.faq .contact-btn:hover .bubble {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.faq .contact-meta {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  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-family: var(--banner-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--default-color);
}

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

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

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

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

.faq-testimonial .faq-testimonial-head h3 {
  font-family: var(--banner-font);
  font-size: 28px;
  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:color-mix(in srgb, var(--default-color), transparent 75%);
  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: 1.15rem;
}

.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-family: var(--banner-font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--default-color);
  margin: 0;
  line-height: 1.25;
}

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

@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: 750px;
  margin: 0;
  display: flex;
  align-items: center;
  color: #ffffff;
  background-image: url('../img/banner/valerika-es-banner-02.webp');
  background-size: cover;
  overflow: hidden;
  padding: 80px 0;
}

.banner-promo-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    to left, 
    rgba(0, 0, 0, 0.25) 25%, 
    rgba(0, 0, 0, 0.50) 50%, 
    rgba(0, 0, 0, 0.75) 75%, 
    rgba(0, 0, 0, 0.85) 100%
  );
}

.banner-promo-section .container {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding-left: 0px;
}

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

.banner-experience-tag {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.025) 100%);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border: 1px solid rgba(247, 67, 53, 0.25);
  padding: 10px 25px;
  border-radius: 50px;
  width: fit-content;
}

.banner-experience-tag .exp-number {
  font-family: var(--banner-font);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
}

.banner-experience-tag .exp-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.banner-experience-tag .exp-title {
  font-family: var(--banner-font);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
}

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

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

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

.banner-lead-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--contrast-color);
  margin-bottom: 35px;
}

.add-trust-card {
  width: 100%;
  max-width: 550px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.025) 100%);
  border: 1px solid rgba(247, 67, 53, 0.25); 
  border-radius: 25px;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

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

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

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

.add-trust-message {
  font-family: var(--banner-font);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.5;
  text-align: left; 
}

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

  .banner-promo-section .container {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

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

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

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

  .banner-experience-tag .exp-subtitle{
    font-size: 0.85rem;
  }

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

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

  .banner-lead-text {
    text-align: center;
    margin-bottom: 30px;
  }

  .add-trust-card {
    max-width: 100%;
  }

  .add-trust-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 18px;
    padding: 25px;
  }

  .add-trust-divider {
    display: none;
  }

  .add-trust-message {
    text-align: center;
    font-size: 1rem;
  }

  .add-banner-logo {
    max-height: 75px;
  }
}

/* ==============================================================
   CONTACT SECTION - STILURI CSS
   ============================================================== */
.contact-section {
  background-color: #ffffff;
  padding: 80px 0;
}

/* Header Secțiune */
.contact-header {
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.contact-eyebrow {
  display: inline-block;
  color: #82c341;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-title {
  color: #0d2238;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-divider {
  width: 60px;
  height: 4px;
  background-color: #82c341;
  margin: 0 auto 20px auto;
  border-radius: 2px;
}

.contact-subtitle {
  color: #64748b;
  font-size: 1.05rem;
  margin: 0;
}

/* Carduri Sus (Adresă, Telefon, Email) */
.contact-top-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 16px;
  padding: 30px 25px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-top-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(130, 195, 65, 0.12);
  border-color: rgba(130, 195, 65, 0.3);
}

.contact-top-icon {
  width: 58px;
  height: 58px;
  background-color: rgba(130, 195, 65, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.contact-top-icon i {
  color: #82c341;
  font-size: 1.6rem;
}

.contact-top-label {
  font-size: 0.8rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.contact-top-value {
  color: #0d2238;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.contact-top-value.link:hover {
  color: #82c341;
}

.contact-card-actions {
  display: flex;
  gap: 8px;
  width: 100%;
}

.btn-top-action {
  flex: 1;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.btn-top-action.primary {
  background-color: #82c341;
  color: #ffffff;
}

.btn-top-action.primary:hover {
  background-color: #72b033;
  color: #ffffff;
}

.btn-top-action.whatsapp {
  background-color: #25d366;
  color: #ffffff;
}

.btn-top-action.whatsapp:hover {
  background-color: #20bd5a;
  color: #ffffff;
}

/* Card Jos Landscape: Date de Identificare */
.company-landscape-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 35px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

.company-landscape-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #82c341;
}

.company-landscape-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #cbd5e1;
}

.company-badge-icon {
  width: 48px;
  height: 48px;
  background-color: #82c341;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.company-card-title {
  color: #0d2238;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
}

.company-card-sub {
  color: #64748b;
  font-size: 0.85rem;
  margin: 0;
}

/* Grilă orizontală pentru date */
.company-landscape-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.company-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.company-info-item .info-label {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.company-info-item .info-value {
  font-size: 0.95rem;
  color: #0d2238;
  font-weight: 800;
}

.company-info-item .info-value small {
  font-weight: 500;
  color: #64748b;
}

/* Responsivitate Mobile & Tabletă */
@media (max-width: 991.98px) {
  .company-landscape-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 575.98px) {
  .contact-section {
    padding: 50px 0;
  }
  .company-landscape-card {
    padding: 22px 20px;
  }
  .company-landscape-header {
    flex-direction: column;
    text-align: center;
  }
  .company-landscape-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/*--------------------------------------------------------------
# WhatsApp button
--------------------------------------------------------------*/
.floating_btn {
  position: fixed;
  right: 25px;
  bottom: 75px;
  z-index: 99999;
}

.wa {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
}

.wa__circle {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  background: #25d366;
}

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

.wa__bubble {
  position: absolute;
  top: 0;
  right: 65px;
  bottom: 0;
  display: grid;
  align-items: center;
  height: 40px;
  margin: auto 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.wa__bg {
  position: absolute;
  inset: 0;
  border-radius: 15px;
  background: #dcf8c6;
  transform: scale(0.5);
  transform-origin: 100% 50%;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.075));
  transition: transform 0.25s ease;
}

.wa__bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: -8px;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 9px solid #dcf8c6;
}

.wa__dots,
.wa__text {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  opacity: 0;
}

.wa__text {
  padding: 0 18px;
  font-size: 15px;
  color: var(--default-color);
  font-family: var(--banner-font);
  font-weight: 700;
  white-space: nowrap;
}

.wa__dots {
  display: flex;
  align-items: center;
  justify-self: center;
  align-self: center;
  gap: 5px;
  padding: 0 18px;
}

.wa__dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7a8b78;
}

.wa:hover .wa__bubble {
  opacity: 1;
}

.wa:hover .wa__bg {
  transform: scale(1);
}

.wa:hover .wa__dots {
  animation: waDots 1.5s linear forwards;
}

.wa:hover .wa__text {
  animation: waText 1.5s linear forwards;
}

.wa:hover .wa__dots i {
  animation: waBounce 1s ease-in-out infinite;
}

.wa:hover .wa__dots i:nth-child(2) {
  animation-delay: 0.15s;
}

.wa:hover .wa__dots i:nth-child(3) {
  animation-delay: 0.3s;
}

@media (hover: hover) {
  .wa.wa--muted .wa__bubble { opacity: 0; }
  .wa.wa--muted .wa__bg     { transform: scale(0.5); }
  .wa.wa--muted .wa__dots,
  .wa.wa--muted .wa__text   { animation: none; opacity: 0; }
}

@keyframes waDots {
  0%,
  14% {
    opacity: 0;
  }

  22%,
  50% {
    opacity: 1;
  }

  60%,
  100% {
    opacity: 0;
  }
}

@keyframes waText {
  0%,
  55% {
    opacity: 0;
  }

  72%,
  100% {
    opacity: 1;
  }
}

@keyframes waBounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }

  30% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

@media (hover: none) {
  .wa__bubble {
    opacity: 0;
    pointer-events: none;
  }

  .wa__bg {
    transform: scale(0.5);
  }

  .wa__dots,
  .wa__text {
    opacity: 0;
    animation: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wa__bubble,
  .wa__bg,
  .wa__text {
    transition: none;
  }

  .wa__dots {
    display: none;
  }

  .wa__text {
    opacity: 1;
  }

  .wa:hover .wa__dots,
  .wa:hover .wa__text,
  .wa:hover .wa__dots i {
    animation: none;
  }
}

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

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

.lang-widget span {
  display: none;
}

.lang-widget::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  margin-left: -27px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  background: var(--contrast-color);
  opacity: 0;
  pointer-events: none;
  transition:
    height 0.25s ease,
    opacity 0.25s ease;
}

.lang-widget.open::before {
  opacity: 1;
  height: 106px;
  transition:
    height 0.25s ease,
    opacity 0.35s ease;
}

.lang-widget .current-lang {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 25%);
  border-radius: 50%;
  background: var(--contrast-color);
  cursor: pointer;
  transition: background 0.25s ease;
}

.lang-widget .current-lang:hover {
  background: color-mix(in srgb, var(--default-color), transparent 50%);
}

.lang-widget.open .current-lang {
  background: color-mix(in srgb, var(--default-color), transparent 50%);
  border: 0;
}

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

.lang-widget .lang-options {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  bottom: 52px;
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
  pointer-events: none;
}

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

.lang-widget .lang-options li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: background 0.25s ease;
}

.lang-widget .lang-options li:hover {
  background: color-mix(in srgb, var(--default-color), transparent 50%);
}

.lang-widget.open .lang-options li {
  animation: langFlagIn 0.25s ease 0.25s both;
}

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

@media (prefers-reduced-motion: reduce) {
  .lang-widget::before,
  .lang-widget.open::before {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .lang-widget.open .lang-options li {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
  }
}

/*--------------------------------------------------------------
# GDPR Banner
--------------------------------------------------------------*/
#gdpr-root {
  --gdpr-soft: #f4f2ee;
  --gdpr-z: 4500000;
}

#gdpr-root *,
#gdpr-root *::before,
#gdpr-root *::after {
  box-sizing: border-box;
}

#gdpr-root [hidden] {
  display: none !important;
}

.gdpr-banner {
  position: fixed;
  left: 50%;
  bottom: 25px;
  width: min(750px, calc(100vw - 30px));
  padding: 25px 45px;
  background: var(--contrast-color);
  border: 1px solid var(--accent-color);
  border-radius: 25px;
  transform: translateX(-50%);
  z-index: 2500;
}

.gdpr-banner h2 {
  margin: 0 0 15px;
  font-family: var(--banner-font);
  font-size: 1.25rem;
  color: var(--default-color);
  font-weight: 800;
  letter-spacing: 0;
}

.gdpr-banner p {
  margin: 0 0 35px;
  color: var(--default-color);
  font-size: 17px;
  line-height: 1.75;
}

.gdpr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.gdpr-btn {
  padding: 10px 15px;
  border: 1px solid var(--default-color);
  border-radius: 10px;
  background: var(--contrast-color);
  color: var(--default-color);
  font-family: var(--banner-font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.gdpr-btn:hover {
  color: var(--accent-color);
}

.gdpr-btn--primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.gdpr-btn--primary:hover {
  background: var(--default-color);
  border-color: var(--default-color);
  color: var(--contrast-color);
}

.gdpr-actions .gdpr-btn {
  flex: 1 1 auto;
  min-width: 90px;
}

.gdpr-actions .gdpr-btn--ghost {
  flex: 0 0 auto;
  min-width: 0;
}

.gdpr-recall {
  position: fixed;
  left: 25px;
  bottom: 15px;
  width: 45px;
  height: 45px;
  padding: 0;
  border: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 6px 20px -6px rgba(0, 0, 0, 0.075);
  cursor: pointer;
  z-index: calc(var(--gdpr-z) - 2);
}

.gdpr-recall i {
  display: block;
  font-size: 21px;
  line-height: 1;
}

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

.gdpr-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(18, 17, 14, 0.5);
  backdrop-filter: blur(1px);
  z-index: calc(var(--gdpr-z) + 1);
}

.gdpr-dialog {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: min(800px, 100%);
  height: min(575px, 100%);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--contrast-color);
  border-radius: 25px;
}

.gdpr-dialog__head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
}

.gdpr-dialog__title {
  flex: 1;
  margin: 0;
  font-family: var(--banner-font);
  font-size: 1.15rem;
  color: var(--accent-color);
  font-weight: 800;
}

.gdpr-close {
  padding: 5px 10px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--accent-color);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.gdpr-close:hover {
  background: var(--default-color);
  color: var(--contrast-color);
}

.gdpr-tabs {
  flex: 0 0 auto;
  display: flex;
  gap: 5px;
  padding: 10px 12px 0;
  overflow-x: auto;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gdpr-tabs::-webkit-scrollbar {
  display: none;
}

.gdpr-tab {
  margin-bottom: -1px;
  padding: 10px 15px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 10px 10px 0 0;
  background: transparent;
  font-family: var(--banner-font);
  color: var(--default-color);
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s ease;
}

.gdpr-tab:hover {
  color: var(--accent-color);
}

.gdpr-tab[aria-selected="true"] {
  border-bottom-color: var(--default-color);
  color: var(--accent-color);
}

.gdpr-dialog__body {
  flex: 1 1 0;
  min-height: 0;
  padding: 20px 22px;
  overflow-y: auto;
  overscroll-behavior: contain;
  font-size: 16px;
  color: var(--default-color);
  line-height: 1.5;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) transparent;
}

.gdpr-dialog__foot {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  padding: 15px 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
}


.gdpr-doc h3 {
  margin: 25px 0 10px;
  font-family: var(--banner-font);
  color: var(--default-color);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0;
}

.gdpr-doc h3:first-child {
  margin-top: 0;
}

.gdpr-doc h4 {
  margin: 20px 0 5px;
  font-size: 0.95rem;
  font-family: var(--banner-font);
  color: var(--default-color);
  font-weight: 700;
}

.gdpr-doc p,
.gdpr-doc li {
  color: var(--default-color);
}

.gdpr-doc p {
  margin: 0 0 0px;
  color: var(--default-color);
  font-size: 16px;
}

.gdpr-doc ul,
.gdpr-doc ol {
  margin: 0 0 12px;
  padding-left: 20px;
}

.gdpr-doc li {
  margin-bottom: 6px;
}

.gdpr-doc strong {
  color: var(--default-color);
}

.gdpr-doc a {
  color: var(---accent-color);
}

.gdpr-doc code {
  padding: 1px 5px;
  border-radius: 5px;
  background: var(--gdpr-soft);
  font-size: 0.9em;
}

.gdpr-meta {
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 3px solid var(--accent-color);
  color: var(--default-color);
  font-size: 0.85rem;
}

.gdpr-fill {
  color: var(--default-color);
  font-weight: 700;
}

.gdpr-table {
  width: 100%;
  margin: 0 0 16px;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.gdpr-table th,
.gdpr-table td {
  padding: 8px 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  color: var(--default-color);
  text-align: left;
  vertical-align: top;
}

.gdpr-table th {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
}


.gdpr-cat {
  margin-bottom: 12px;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 10px;
}

.gdpr-cat__top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.gdpr-cat__name {
  flex: 1;
  margin: 0 0 5px;
  font-family: var(--banner-font);
  color: var(--default-color);
  font-size: 1.05rem;
  font-weight: 800;
}

.gdpr-cat p {
  margin: 0;
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.5;
}

.gdpr-cat__always {
  padding-top: 2px;
  color: #05e63d;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.gdpr-switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 25px;
  flex: 0 0 auto;
}

.gdpr-switch input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.gdpr-switch span {
  position: absolute;
  inset: 0;
  border-radius: 25px;
  background: #c9c5bd;
  cursor: pointer;
  transition: background 0.25s;
}

.gdpr-switch span::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 0.25s;
}

.gdpr-switch input:checked + span {
  background: var(--accent-color);
}

.gdpr-switch input:checked + span::before {
  transform: translateX(20px);
}

@media (prefers-reduced-motion: reduce) {
  .gdpr-banner {
    animation: none;
  }

  .gdpr-switch span,
  .gdpr-switch span::before {
    transition: none;
  }
}

@media (max-width: 768px) {
  /* ---- BANNER ---- */
  .gdpr-banner {
    left: 15px;
    right: 15px;
    bottom: 15px;
    width: auto;
    max-width: none;
    padding: 20px;
    border-radius: 20px;
    transform: none;
  }

  .gdpr-actions {
    gap: 10px;
  }

  .gdpr-actions .gdpr-btn {
    flex: 1 1 100%;
  }

  .gdpr-overlay {
    padding: 0;
  }

  .gdpr-dialog {
    position: absolute;
    left: 50%;
    bottom: 15px;
    width: calc(100% - 30px);
    height: 65vh;
    max-height: 70vh;
    transform: translateX(-50%);
    border-radius: 20px;
  }

  .gdpr-dialog__head {
    padding: 12px 15px;
  }

  .gdpr-tabs {
    padding: 8px 10px 0;
  }

  .gdpr-tab {
    padding: 8px 12px;
  }

  .gdpr-dialog__body {
    padding: 15px;
    overflow-wrap: anywhere;
  }

  .gdpr-dialog__foot {
    padding: 12px 15px;
    gap: 8px;
  }

  .gdpr-dialog__foot .gdpr-btn {
    flex: 1 1 auto;
  }

  .gdpr-cat {
    padding: 12px 14px;
  }

  .gdpr-cat__top {
    gap: 10px;
  }

  .gdpr-table,
  .gdpr-table tbody,
  .gdpr-table tr,
  .gdpr-table td {
    display: block;
    width: 100%;
  }

  .gdpr-table {
    border-collapse: separate;
  }

  .gdpr-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .gdpr-table tr {
    margin-bottom: 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
    border-radius: 10px;
    overflow: hidden;
  }

  .gdpr-table td {
    padding: 10px 12px;
    border: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    hyphens: none;
    overflow-wrap: break-word;
  }

  .gdpr-table td:last-child {
    border-bottom: 0;
  }

  .gdpr-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 3px;
    font-family: var(--banner-font);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--accent-color);
  }
}

/* Păstrează culoarea părinte pentru textele de limbă */
.navmenu a .lang,
.contact-info a .lang,
.topbar-toggle .lang {
  color: inherit !important;
  display: inline-block;
}

