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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg, 
    rgba(239, 122, 34, 0) 0%, 
    #d96515 20%, 
    #EF7A22 50%, 
    #d96515 80%, 
    rgba(239, 122, 34, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.header .branding {
  min-height: 50px;
  padding: 0 10px;
}

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

/* Starea header-ului când dai scroll în jos (devine negru) */
body.scrolled .header {
  background-color: #000000 !important; /* Negru complet */
  /* Dacă vrei un negru semi-transparent cu efect de sticlă, folosește în schimb: */
  /* background-color: rgba(0, 0, 0, 0.88) !important; */
  
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8) !important;
  top: 15px !important;
  padding: 6px 0 !important;
  border-radius: 20px !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Asigură-te și că linia luminoasă de sub header (dacă o ai) devine vizibilă la scroll */
body.scrolled .header::after {
  opacity: 1 !important;
}
/* --------------------------------------------------------------
# Navmenu Desktop (>= 1200px)
-------------------------------------------------------------- */
@media (min-width: 1200px) {
  .mobile-nav-toggle {
    display: none !important;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: #ffffff;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
    transform-origin: center;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #EF7A22;
    transform: scale(1.14);
    text-shadow: 0 0 12px rgba(239, 122, 34, 0.5);
  }
}

/* Containerul dropdown - poziționare */
.navmenu .dropdown {
  position: relative;
}

/* Submeniul stilizat Premium (Efect Glassmorphism) */
.navmenu .dropdown > ul {
  display: block; /* Menținem în DOM pentru animație */
  position: absolute;
  top: calc(100% + 12px); /* Un mic spațiu sub butonul principal */
  left: 50%;
  transform: translateX(-50%) translateY(15px); /* Animație dinspre jos */
  
  /* Fundal semi-transparent mat (Glassmorphism) */
  background: rgba(18, 18, 22, 0.75); 
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  
  /* Contur fin și umbră modernă */
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  
  padding: 8px;
  min-width: 190px;
  list-style: none;
  margin: 0;
  
  /* Stare inițială ascunsă + animație */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

/* Săgeată mică de design sus în mijlocul submeniului */
.navmenu .dropdown > ul::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(18, 18, 22, 0.75);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* Pod invizibil (previne închiderea meniului când miști mouse-ul rapid spre submeniu) */
.navmenu .dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 15px;
}

/* Apariția la Hover */
.navmenu .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0); /* Glisează lin în sus */
}

/* Stilul fiecărui element/opțiune */
.navmenu .dropdown ul li {
  margin: 2px 0;
}

.navmenu .dropdown ul a {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* Efect interactiv la HOVER pe fiecare opțiune (Arad 2024, etc.) */
.navmenu .dropdown ul a:hover {
  color: #EF7A22;
  background: rgba(239, 122, 34, 0.12); /* Nuanță fină de portocaliu pe fundal */
  transform: translateX(4px); /* Punctul se deplasează discret spre dreapta */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}



/* --------------------------------------------------------------
# Responsive Mobil (< 1200px) - Ultrarapid & Instant
-------------------------------------------------------------- */
@media (max-width: 1199px) {
  .header {
    top: 15px;
    width: 92%;
  }

  /* Elimină delay-ul de 300ms la atingere pe mobil */
  .mobile-nav-toggle {
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    display: block;
    line-height: 1;
    z-index: 100001;
    touch-action: manipulation; /* Instant Click! */
    -webkit-tap-highlight-color: transparent;
  }

  body.mobile-nav-active .header {
    z-index: 100000 !important;
  }

  /* Overlay fundal cu accelerare GPU */
  body.mobile-nav-active::before {
    content: '' !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.82) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    z-index: 99999 !important;
    will-change: opacity;
  }

  body.mobile-nav-active {
    overflow: hidden !important;
  }

  body.mobile-nav-active .mobile-nav-toggle {
    color: #EF7A22 !important;
  }

  .navmenu ul {
    display: none;
  }

  /* Cardul Negru Centrat */
  body.mobile-nav-active .navmenu > ul {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    
    position: fixed !important;
    top: 85px !important;
    left: 50% !important;
    transform: translate3d(-50%, 0, 0) !important; /* GPU Acceleration */
    
    width: 88% !important;
    max-width: 340px !important;
    background-color: #080808 !important;
    padding: 28px 20px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9) !important;
    
    list-style: none !important;
    margin: 0 !important;
    z-index: 100001 !important;
    will-change: transform, opacity;
    animation: dropDownFast 0.18s cubic-bezier(0, 0, 0.2, 1) forwards; /* Animație super rapidă */
  }

  body.mobile-nav-active .navmenu li {
    width: 100% !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.mobile-nav-active .navmenu a,
  body.mobile-nav-active .navmenu a:focus {
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 10px 0 !important;
    display: block !important;
    width: 100% !important;
    text-decoration: none !important;
    text-align: center !important;
    background: transparent !important;
    transition: color 0.2s ease, transform 0.2s ease !important;
  }

  body.mobile-nav-active .navmenu .active,
  body.mobile-nav-active .navmenu a:hover {
    color: #EF7A22 !important;
    transform: scale(1.05) !important;
  }

  /* =========================================
     NOU: Integrare Dropdown pentru Mobil 
     (Se aplică perfect în designul tău)
  ========================================= */
  
  /* Suprascriem poziționarea absolută de pe desktop */
  body.mobile-nav-active .navmenu .dropdown > ul {
    display: none !important; /* Ascuns implicit */
    position: static !important;
    transform: none !important;
    width: 90% !important;
    margin: 10px auto 0 auto !important;
    background: rgba(255, 255, 255, 0.05) !important; /* Un fundal fin în interiorul cardului negru */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
    border-radius: 12px !important;
    padding: 10px 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* Afișează submeniul pe mobil când primește clasa .active de la JS */
  body.mobile-nav-active .navmenu .dropdown.active > ul {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Ascundem detaliile de design specifice desktop-ului (săgeata și podul) */
  body.mobile-nav-active .navmenu .dropdown > ul::before,
  body.mobile-nav-active .navmenu .dropdown::after {
    display: none !important;
  }

  /* Stilurile pentru linkurile din interiorul dropdown-ului pe mobil */
  body.mobile-nav-active .navmenu .dropdown > ul a {
    font-size: 15px !important;
    font-weight: 600 !important;
    text-transform: none !important; /* Fără majuscule agresive în submeniu */
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 8px 0 !important;
    letter-spacing: 0.5px !important;
  }

  body.mobile-nav-active .navmenu .dropdown > ul a:hover {
    color: #EF7A22 !important;
    transform: translateY(0) scale(1) !important; /* Fără efecte de mărire exagerate în submeniu */
  }
}

/* Animație optimizată GPU */
@keyframes dropDownFast {
  from {
    opacity: 0;
    transform: translate3d(-50%, -10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
}






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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

.preloader-overlay {
  position: absolute;
  inset: 0;
  /* Overlay negru semi-transparent */
  background: radial-gradient(
    circle at center, 
    rgba(0, 0, 0, 0.75) 0%, 
    rgba(0, 0, 0, 0.95) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

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

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

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

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

.preloader-slogan .highlight {
  color: #ef7a22;
  text-shadow: 0 0 12px rgba(239, 122, 34, 0.4);
}

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

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

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  /* Gradient dinamic cu culoarea #ef7a22 */
  background: linear-gradient(90deg, #ef7a22 0%, #ff9d42 100%);
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(239, 122, 34, 0.8);
  animation: fillProgress 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.9s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Hero Section - ACASĂ
--------------------------------------------------------------*/
/* --- PREMIUM STATIC HERO STYLING --- */
.premium-hero-section-static {
  position: relative;
  padding: 140px 0 60px 0;
  overflow: hidden;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #050505;
}

/* Imagine de fundal unică (Statică) */
.premium-hero-section-static .hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url('../img/hero/ecoagrotec-hero-01.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  animation: staticSubtleZoom 20s infinite alternate ease-in-out;
}

@media (max-width: 991px) {
  .premium-hero-section-static .hero-bg-image { 
    background-image: url('../img/hero/ecoagrotec-hero-mobile-01.webp'); 
  }
}

/* Animație subtilă și lentă de mișcare pentru imaginea statică */
@keyframes staticSubtleZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

/* Overlay întunecat mai opac în stânga și transparent în dreapta */
.premium-overlay {
  position: absolute;
  inset: 0;
  /* Modificat de la radial-gradient la linear-gradient orientat spre dreapta */
  background: linear-gradient(to right, rgba(5, 5, 5, 0.7) 0%, rgba(5, 5, 5, 0.6) 60%, rgba(5, 5, 5, 0.8) 100%);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 767px) {
  .premium-overlay {
    background: linear-gradient(to top, rgba(5, 5, 5, 0.9) 0%, rgba(10, 10, 10, 0.6) 60%, rgba(10, 10, 10, 0.4) 100%);
  }
}

.premium-hero-section-static .hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

/* --- TEXTE ȘI BADGE-URI PREMIUM (ALINIIERE STÂNGA) --- */
.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 10, 10, 0.5); 
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 25px;
}

.premium-badge .badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-color);
  animation: pulseGlow 2s infinite;
}

.premium-badge .badge-text {
  color: #f3f4f6;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
}

.premium-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 25px;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); 
  text-transform: uppercase;
}


/* Testimonial stilizat elegant - Stânga */
.premium-testimonial {
  position: relative;
  gap: 15px;
  margin-bottom: 25px;
  padding: 0 0 0 20px;
  border-left: 3px solid #fff200;
  justify-content: flex-start;
  align-items: center;
}

.premium-testimonial .quote-icon {
  font-size: 2.5rem;
  font-family: serif;
  line-height: 1;
  color: #fff200;
  opacity: 0.9;
  margin-top: -10px;
}

.premium-testimonial .testimonial-text {
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
  color: #fff200;
  margin: 0;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f3f4f6; 
  max-width: 750px;
  margin-bottom: 40px;
}

/* --- BUTOANE PREMIUM --- */
.hero-actions-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Buton Principal (Solid Glow) */
.btn-primary-premium {
  background-color: var(--accent-color);
  color: #fff;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.btn-primary-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.btn-primary-premium:hover::before {
  left: 100%;
}

.btn-primary-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 40%);
  color: #fff;
}

/* Buton Secundar (Outline) */
.btn-outline-premium {
  background-color: rgba(10, 10, 10, 0.4);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.btn-outline-premium:hover {
  background-color: #fff;
  color: #000;
  border-color: #fff;
  transform: translateY(-3px);
}

/* Buton Text Link */
.btn-link-premium {
  color: #f3f4f6;
  padding: 10px 15px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.btn-link-premium:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

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

.btn-premium:hover .btn-arrow i {
  transform: translateX(3px);
}

/* --- CARDURI STATISTICI COMPACTE (MAI MICI, CENTRATE PE ORIZONTALĂ) --- */
.premium-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 800px; /* Lățime fixă a gridului pentru centrare simetrică */
  margin: 0 auto;    /* Centrarea orizontală perfectă în mijlocul containerului */
}

.stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;               
  background: rgba(10, 10, 10, 0.65); 
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 15px;      
  border-radius: 16px;     
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.stat-card:hover {
  background: rgba(20, 20, 20, 0.85);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.stat-card.highlighted-stat {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.stat-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;             
  height: 42px;            
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--accent-color);
  font-size: 1.25rem;       
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon-wrapper {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 12px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.stat-details {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.stat-label {
  font-size: 0.68rem;      
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #9ca3af;
  margin-bottom: 2px;
}

.stat-value {
  font-size: 1.15rem;      
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Efect strălucire la hover */
.card-border-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid transparent;
  pointer-events: none;
  transition: all 0.4s ease;
}

.stat-card:hover .card-border-glow {
  border-color: color-mix(in srgb, var(--accent-color), transparent 65%);
  box-shadow: inset 0 0 10px color-mix(in srgb, var(--accent-color), transparent 90%);
}

/* --- ANIMATIONS KEYFRAMES --- */
@keyframes pulseGlow {
  0% { transform: scale(1); box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent-color), transparent 40%); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 10px transparent; }
  100% { transform: scale(1); box-shadow: 0 0 0 0 transparent; }
}

/* --- RESPONSIVITATE --- */
@media (max-width: 991px) {
  .premium-hero-section-static {
    padding-top: 150px;
    padding-bottom: 60px;
  }
  
  .premium-title {
    font-size: 3rem;
  }

  .premium-testimonial {
    border-left: none;
    border-right: none;
    border-bottom: 1.5px solid var(--accent-color);
    padding: 0 0 10px 0;
    margin-bottom: 25px;
  }

  .premium-testimonial .testimonial-text {
    font-size: 1.15rem;
  }

  .hero-actions-group {
    justify-content: flex-start;
    gap: 12px;
  }

  .btn-premium {
    width: 100%;
    max-width: 280px;
  }
  
  .premium-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 40px;
    max-width: 280px; 
  }
}

@media (max-width: 768px) {
  /* Pe telefoane păstrăm centrarea optic curată pentru interfața mobilă */
  .premium-hero-section-static .text-content-wrapper,
  .premium-hero-section-static .hero-content,
  .premium-hero-section-static .hero-actions-group {
    text-align: center !important;
    justify-content: center !important;
  }

  .premium-testimonial {
    justify-content: center;
    padding-left: 0;
  }

  .hero-description {
    text-align: center !important;
  }

  .premium-stats-grid {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .premium-title {
    font-size: 2.3rem;
  }

  .premium-badge .badge-text {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
  }
}

/* =====================================================================
   SECȚIUNEA DESPRE NOI - FUNDAL ALB
   ===================================================================== */
.about-tsr-section {
  background-color: #ffffff; /* Fundal Alb Curat */
  color: #111827;
  overflow: hidden;
}

/* Texte Antet */
.tsr-subtitle {
  display: inline-block;
  color: #EF7A22;
  font-weight: 800;
  letter-spacing: 4px;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tsr-main-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #111827; /* Text închis la culoare */
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.text-orange {
  color: #EF7A22 !important;
}

/* Decor Poză Stânga */
.about-image-wrapper {
  position: relative;
  z-index: 1;
}

.orange-accent-box {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid #EF7A22;
  border-radius: 16px;
  z-index: -1;
  opacity: 0.5; /* Contur vizibil și elegant pe alb */
}

/* Caseta portocalie pentru ultimul paragraf */
.alert-orange {
  background-color: rgba(239, 122, 34, 0.08); /* Fundal portocaliu fin */
  border-left: 4px solid #EF7A22;
  padding: 20px 24px;
  border-radius: 4px 12px 12px 4px;
  color: #1f2937; /* Text închis */
  font-weight: 500;
  line-height: 1.6;
}

/* =====================================================================
   CARDURI LANDSCAPE (LOCAȚIE & DATĂ)
   ===================================================================== */
.tsr-info-card {
  position: relative;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #EF7A22; /* Margine portocalie aprinsă */
  background-color: #111111;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tsr-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(239, 122, 34, 0.3);
}

.tsr-info-card .card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 1;
}

.tsr-info-card:hover .card-bg {
  transform: scale(1.08);
}

.tsr-info-card .card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.82); /* Păstrăm interiorul cardului întunecat pentru contrast maxim pe imagine */
  z-index: 2;
}

.tsr-info-card .card-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 0 35px;
}

.tracking-wide {
  letter-spacing: 2px;
}

/* =====================================================================
   RESPONSIVITATE
   ===================================================================== */
@media (max-width: 991px) {
  .about-image-wrapper {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .orange-accent-box {
    left: -10px;
    bottom: -10px;
  }
  .tsr-info-card {
    height: 130px;
  }
  .tsr-info-card .card-content {
    padding: 0 20px;
  }
  .tsr-info-card .display-4 {
    font-size: 2.2rem;
  }
}
 /* --------------------------------------------------------------
     STILURI SECȚIUNE SPONSORI (#ef7a22 accent)
  -------------------------------------------------------------- */
  .ts-sponsors-section {
    background-color: #ffffff;
    padding: 70px 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #0f172a;
  }

  .ts-sponsors-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Antet */
  .ts-sponsors-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px auto;
  }

  .ts-sponsors-badge {
    display: inline-block;
    background-color: rgba(239, 122, 34, 0.12);
    color: #ef7a22;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
  }

  .ts-sponsors-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin: 0 0 16px 0;
    color: #0f172a;
    line-height: 1.25;
  }

  .ts-sponsors-desc {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
  }

  /* Carusel Wrapper & Controls */
  .ts-carousel-wrapper {
    position: relative;
    padding: 10px 0 30px 0;
  }

  .ts-carousel-top-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
  }

  .ts-pause-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .ts-pause-btn:hover {
    border-color: #ef7a22;
    color: #ef7a22;
    background: #fff;
  }

  .ts-carousel-viewport {
    overflow: hidden;
    border-radius: 20px;
    padding: 10px 5px;
  }

  .ts-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
  }

  .ts-sponsor-slide {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
  }

  @media (min-width: 640px) {
    .ts-sponsor-slide {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }

  @media (min-width: 1024px) {
    .ts-sponsor-slide {
      flex: 0 0 33.333%;
      max-width: 33.333%;
    }
  }

  /* Sponsor Card Structure */
  .ts-sponsor-card {
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
  }

  .ts-sponsor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(239, 122, 34, 0.12);
    border-color: rgba(239, 122, 34, 0.3);
  }

  /* Imagine cu margini rotunjite */
  .ts-logo-wrapper {
    width: 100%;
    height: 190px;
    background-color: #f8fafc;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    border-bottom: 1px solid #f1f5f9;
  }

  .ts-sponsor-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }

  .ts-sponsor-card:hover .ts-sponsor-img {
    transform: scale(1.04);
  }

  /* Card Detalii */
  .ts-card-details {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    background: #ffffff;
    border-radius: 0 0 20px 20px;
  }

  .ts-main-sponsor-badge {
    background-color: #ef7a22;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .ts-partner-badge {
    background-color: #334155;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .ts-sponsor-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #0f172a;
  }

  .ts-sponsor-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    font-size: 0.9rem;
    color: #64748b;
  }

  .ts-info-item, .ts-info-web {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .ts-info-web {
    color: #ef7a22;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
  }

  .ts-info-web:hover {
    text-decoration: underline;
    opacity: 0.85;
  }

  /* Linie de Design */
  .ts-design-line {
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ef7a22, transparent);
    margin: 18px 0;
    opacity: 0.6;
  }

  /* Social Icons Centrate */
  .ts-social-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  .ts-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .ts-social-link:hover {
    background: #ef7a22;
    color: #ffffff;
    transform: translateY(-2px);
  }

  /* Navigare Săgeți */
  .ts-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
  }

  .ts-nav-arrow:hover {
    background: #ef7a22;
    color: #ffffff;
    border-color: #ef7a22;
    box-shadow: 0 6px 18px rgba(239, 122, 34, 0.3);
  }

  .ts-prev { left: -15px; }
  .ts-next { right: -15px; }

  @media (max-width: 768px) {
    .ts-prev { left: 0px; }
    .ts-next { right: 0px; }
  }

  /* Dots de Încărcare Animată */
  .ts-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
  }

  .ts-dot {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 10px;
    background: #e2e8f0;
    border: none;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    transition: width 0.3s ease;
  }

  .ts-dot.active {
    width: 34px;
    background: #e2e8f0;
  }

  .ts-dot-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #ef7a22;
    border-radius: 10px;
  }

  .ts-dot.active .ts-dot-fill {
    animation: dotProgress 4s linear forwards;
  }

  .ts-dot.active.paused .ts-dot-fill {
    animation-play-state: paused;
  }

  @keyframes dotProgress {
    0% { width: 0%; }
    100% { width: 100%; }
  }

  /* Mesaj Mulțumire Centrat */
  .ts-sponsors-thanks {
    margin: 40px auto 0 auto;
    max-width: 800px;
    background: linear-gradient(135deg, #fff7f2 0%, #ffffff 100%);
    border: 1px solid rgba(239, 122, 34, 0.2);
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    text-align: center;
  }

  .ts-thanks-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .ts-thanks-icon {
    font-size: 1.6rem;
  }

  .ts-thanks-content p {
    margin: 0;
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.5;
  }

  /* Butoane Arhivă Sponsori (Portocalii + Hover Inversat) */
  .ts-archive-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
  }

  .ts-archive-btn {
    display: inline-block;
    padding: 12px 26px;
    background-color: #ffffff;
    color: #ef7a22;
    border: 2px solid #ef7a22;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(239, 122, 34, 0.08);
  }

  .ts-archive-btn:hover {
    background-color: #ef7a22;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(239, 122, 34, 0.25);
  }

  @media (max-width: 640px) {
    .ts-sponsors-title { font-size: 1.7rem; }
    .ts-thanks-content { flex-direction: column; text-align: center; }
    .ts-archive-buttons { flex-direction: column; width: 100%; }
    .ts-archive-btn { width: 100%; max-width: 280px; text-align: center; box-sizing: border-box; }






  }
/*--------------------------------------------------------------
# SPONSORI BUTON
--------------------------------------------------------------*/
  /* Wrapper Principal */
  .ts-archive-wrapper {
    margin-top: 35px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Butoanele de Arhivă */
  .ts-archive-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
  }

  .ts-archive-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #ffffff;
    color: #ef7a22;
    border: 2px solid #ef7a22;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(239, 122, 34, 0.08);
    box-sizing: border-box;
  }

  .ts-archive-btn:hover,
  .ts-archive-btn.active {
    background-color: #ef7a22;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(239, 122, 34, 0.3);
  }

  /* Container Galerie Ascunsă / Vizibilă */
  .ts-archive-gallery-container {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
    width: 100%;
  }

  .ts-archive-gallery-container.open {
    max-height: 5000px;
    opacity: 1;
    margin-top: 25px;
  }

  /* Panouri Galerie */
  .ts-gallery-panel {
    display: none;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
  }

  .ts-gallery-panel.active {
    display: block;
    animation: fadeInSlide 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .ts-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #fff7f2;
    gap: 10px;
  }

  .ts-gallery-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
  }

  .ts-gallery-count {
    background: rgba(239, 122, 34, 0.1);
    color: #ef7a22;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
  }

  /* --------------------------------------------------------------
     1. GALERIE 2024: CĂSUȚE PĂTRATE
  -------------------------------------------------------------- */
  .ts-square-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 14px;
  }

  .ts-square-item {
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
  }

  .ts-square-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

  .ts-square-item:hover {
    border-color: #ef7a22;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(239, 122, 34, 0.15);
  }

  .ts-square-item:hover img {
    transform: scale(1.08);
  }

  /* --------------------------------------------------------------
     2. GALERIE 2025: BENTO GRID LAYOUT
  -------------------------------------------------------------- */
  .ts-bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    grid-auto-rows: 110px;
    gap: 14px;
  }

  .ts-bento-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    box-sizing: border-box;
  }

  .ts-bento-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

  .ts-bento-item:hover {
    border-color: #ef7a22;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(239, 122, 34, 0.15);
  }

  .ts-bento-item:hover img {
    transform: scale(1.08);
  }

  /* Bento Layout Spans Dinamice */
  .ts-bento-item.bento-hero {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, #ffffff 0%, #fffbf8 100%);
    border-color: rgba(239, 122, 34, 0.3);
  }

  .ts-bento-item.bento-wide {
    grid-column: span 2;
  }

  .ts-bento-item.bento-tall {
    grid-row: span 2;
  }

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

  /* --------------------------------------------------------------
     OPTIMIZARE RESPONSIVE PENTRU DISPOZITIVE MICI (MOBIL & TABLETĂ)
  -------------------------------------------------------------- */
  @media (max-width: 768px) {
    .ts-archive-buttons {
      gap: 10px;
    }

    .ts-archive-btn {
      flex: 1 1 calc(50% - 10px);
      padding: 10px 16px;
      font-size: 0.85rem;
    }

    .ts-gallery-panel {
      padding: 18px;
      border-radius: 18px;
    }

    .ts-square-grid,
    .ts-bento-grid {
      grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
      gap: 10px;
    }

    .ts-bento-grid {
      grid-auto-rows: 95px;
    }
  }

  @media (max-width: 480px) {
    .ts-archive-buttons {
      flex-direction: column;
    }

    .ts-archive-btn {
      width: 100%;
    }

    .ts-gallery-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
    }

    .ts-gallery-header h3 {
      font-size: 1.1rem;
    }

    .ts-square-grid,
    .ts-bento-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .ts-square-item,
    .ts-bento-item {
      padding: 6px;
      border-radius: 12px;
    }

    .ts-bento-grid {
      grid-auto-rows: 85px;
    }

    /* Ajustare Bento pe telefoane foarte mici pentru a preveni ruperi de layout */
    .ts-bento-item.bento-hero {
      grid-column: span 2;
      grid-row: span 2;
    }

    .ts-bento-item.bento-wide {
      grid-column: span 2;
    }

    .ts-bento-item.bento-tall {
      grid-row: span 2;
    }
  }

  @media (max-width: 360px) {
    .ts-square-grid,
    .ts-bento-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

/* ==========================================================================
   TSR - ECHIPA ORGANIZATORI (FUNDAL ALB & ACCENTE PORTOCALII)
   ========================================================================== */
.tsr-team-section {
  --tsr-orange: #FF6B00;
  --tsr-orange-glow: rgba(255, 107, 0, 0.2);
  --tsr-amber: #E65100;
  --tsr-bg-white: #FFFFFF;
  --tsr-card-bg: #FFFFFF;
  --tsr-border: rgba(255, 107, 0, 0.2);
  --tsr-border-hover: rgba(255, 107, 0, 0.65);
  --tsr-text-main: #1C1917;
  --tsr-text-muted: #6B7280;

  position: relative;
  box-sizing: border-box;
  padding: clamp(60px, 8vw, 110px) 20px;
  background-color: var(--tsr-bg-white);
  color: var(--tsr-text-main);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.tsr-team-section * { 
  box-sizing: border-box; 
}

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

/* Header Secțiune */
.tsr-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tsr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.25);
  color: var(--tsr-amber);
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.tsr-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--tsr-orange);
  box-shadow: 0 0 6px var(--tsr-orange);
}

.tsr-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--tsr-text-main);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  text-align: center;
}

.tsr-title span {
  color: var(--tsr-orange);
  background: linear-gradient(120deg, #FF6B00, #E65100);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tsr-header p.text-muted {
  color: var(--tsr-text-muted) !important;
  margin: 0 auto;
  max-width: 680px;
  text-align: center;
}

/* Grid Carduri */
.tsr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card Individual */
.tsr-card {
  position: relative;
  background: var(--tsr-card-bg);
  border: 1px solid var(--tsr-border);
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s ease, 
              box-shadow 0.35s ease;
  overflow: hidden;
}

.tsr-card:hover {
  transform: translateY(-6px);
  border-color: var(--tsr-border-hover);
  box-shadow: 0 18px 36px -10px rgba(255, 107, 0, 0.18),
              0 6px 16px rgba(0, 0, 0, 0.06);
}

/* Frame Logo */
.tsr-card__logo-box {
  width: 100%;
  height: 150px;
  border-radius: 16px;
  background: #FAF9F8;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.tsr-card:hover .tsr-card__logo-box {
  background: #FFF5EE;
  transform: scale(1.02);
}

.tsr-card__logo-box img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

/* Linie Despărțitoare Portocalie Centrată */
.tsr-divider {
  width: 80%;
  height: 1px;
  margin: 20px auto;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.5), transparent);
  position: relative;
}

.tsr-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--tsr-orange);
}

/* Conținut Text Centrat */
.tsr-card__content {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}

.tsr-card__location {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tsr-amber);
  margin-bottom: 6px;
}

.tsr-card__name {
  font-family: 'Archivo', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--tsr-text-main);
  margin: 0;
  text-align: center;
}

/* 
  Container Social & Website 
  Modificat pentru PC: așezare pe rând (orizontală)
*/
.tsr-card__socials {
  display: flex;
  flex-direction: row; /* Pe PC stau pe același rând */
  flex-wrap: wrap;     /* Permite trecerea pe rândul următor dacă nu e loc */
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

/* Rând pentru iconițele sociale (FB + TikTok) */
.tsr-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Stil Butoane Sociale */
.tsr-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: var(--tsr-text-main);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

/* Buton Site Web - Ajustat pentru PC să ocupe spațiul corect alături de iconițe */
.tsr-social-link--web {
  flex: 1; /* Permite butonului să se extindă frumos lângă iconițe */
  white-space: nowrap; /* Previne ruperea textului pe 2 rânduri */
  min-width: 120px;
}

/* Butoane Rotunde (FB & TikTok) */
.tsr-social-link--fb,
.tsr-social-link--tt {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Fixare SVG-uri să nu se taie */
.tsr-social-link svg,
.tsr-social-link i {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
  overflow: visible;
  transition: all 0.25s ease;
  fill: currentColor; /* Preia culoarea textului */
}

/* Efect Hover - Elemente și text portocalii */
.tsr-social-link:hover {
  background: #FFF5EE; /* Fundal foarte subtil portocaliu */
  border-color: var(--tsr-orange);
  color: var(--tsr-orange); /* Textul și iconița devin portocalii */
  box-shadow: 0 4px 14px var(--tsr-orange-glow);
  transform: translateY(-2px);
}

.tsr-social-link:hover svg,
.tsr-social-link:hover i {
  transform: scale(1.15); /* Efect fin de mărire a iconiței la hover */
}

/* Responsive */
@media (max-width: 1024px) {
  .tsr-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .tsr-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tsr-card {
    padding: 24px 18px;
  }

  /* Modificări pentru Mobil - Revin unele sub altele */
  .tsr-card__socials {
    flex-direction: column; /* Pe mobil devin verticale */
    width: 100%;
  }

  .tsr-social-link--web {
    width: 100%;
    max-width: 260px; /* Limităm puțin lățimea pe mobil pentru aspect curat */
    flex: none;
  }
}

/* ==========================================================================
       BANNER 2027
    ========================================================================== */

  /* Stiluri Secțiune Principală */
  .ts-continuation-section {
    background-color: #ffffff; /* Fundal alb */
    padding: 60px 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1a1a;
  }

  .ts-container {
    max-width: 1400px;
    margin: 0 auto;
  }

  /* Zona de Text */
  .ts-content-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
  }

  .ts-badge {
    display: inline-block;
    background-color: #ef7a22; /* Culoarea nouă solicitată */
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
  }

  .ts-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0f172a;
    line-height: 1.2;
  }

  .ts-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 15px;
  }

  /* Banner Imagine Landscape */
  .ts-image-banner {
    position: relative;
    width: 100%;
    height: 580px; /* Format Landscape */
    border-radius: 20px; /* Margini rotunjite */
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .ts-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Overlay Semi-Transparent Negru peste Imagine */
  .ts-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Negru semi-transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
  }

  .ts-overlay-text h3 {
    color: #ef7a22;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }

  .ts-overlay-text p {
    color: #f1f5f9;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
  }

  /* Adaptare Mobile */
  @media (max-width: 768px) {
    .ts-continuation-section {
      padding: 40px 15px;
    }

    .ts-title {
      font-size: 1.6rem;
    }

    .ts-text {
      font-size: 1rem;
    }

    .ts-image-banner {
      height: 240px;
      border-radius: 12px;
    }

    .ts-overlay-text h3 {
      font-size: 1.5rem;
    }

    .ts-overlay-text p {
      font-size: 0.95rem;
    }
  }


/* ==========================================================================
   PROGRAM FESTIVAL 2027 - TRUCK SHOW ROMÂNIA
   ========================================================================== */
.tsr-program-section {
  --tsr-orange: #EF7A22;
  --tsr-orange-light: rgba(239, 122, 34, 0.08);
  --tsr-orange-glow: rgba(239, 122, 34, 0.22);
  --tsr-bg-white: #FFFFFF;

  /* Culori Card Oră */
  --tsr-time-bg: #B81104;
  --tsr-time-text-color: #fffacd;

  --tsr-text-main: #0F172A;
  --tsr-text-muted: #64748B;
  --tsr-border: #E2E8F0;
  --tsr-card-bg: #FFFFFF;
  --tsr-radius-large: 24px;
  --tsr-radius-medium: 16px;

  position: relative;
  background-color: var(--tsr-bg-white);
  padding: clamp(60px, 8vw, 110px) 20px;
  color: var(--tsr-text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.tsr-program-section * {
  box-sizing: border-box;
}

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

/* Header Secțiune */
.tsr-program-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  margin-bottom: clamp(45px, 6vw, 75px);
}

.tsr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--tsr-orange-light);
  border: 1px solid rgba(239, 122, 34, 0.25);
  color: var(--tsr-orange);
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

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

.tsr-program-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--tsr-text-main);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.tsr-program-title span {
  color: var(--tsr-orange);
}

.tsr-title-line {
  width: 65px;
  height: 4px;
  background: var(--tsr-orange);
  border-radius: 10px;
  margin-bottom: 20px;
}

.tsr-header-desc {
  color: var(--tsr-text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0;
}

/* Imagine Dreapta */
.tsr-program-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 400px;
  border-radius: var(--tsr-radius-large);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--tsr-border);
}

.tsr-program-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.tsr-program-image-wrapper:hover .tsr-program-img {
  transform: scale(1.05);
}

.tsr-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(15,23,42,0.5) 100%);
  pointer-events: none;
}

.tsr-image-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: #0F172A;
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--tsr-orange);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* Grid Carduri */
.tsr-program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Card Principal */
.tsr-day-card {
  position: relative;
  background: var(--tsr-card-bg);
  border: 1.5px solid var(--tsr-border);
  border-radius: var(--tsr-radius-large);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.tsr-day-card:hover {
  transform: translateY(-8px);
  border-color: var(--tsr-orange);
  box-shadow: 0 24px 48px -12px var(--tsr-orange-glow),
              0 12px 24px rgba(15, 23, 42, 0.04);
}

/* Header Card: Ziua + Data Mare */
.tsr-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.tsr-day-badge {
  background: var(--tsr-orange);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 900;
  padding: 8px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 14px var(--tsr-orange-glow);
}

.tsr-date-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F8FAFC;
  border: 1.5px solid var(--tsr-border);
  padding: 8px 16px;
  border-radius: 50px;
  font-family: monospace;
  font-size: 15px;
  font-weight: 800;
  color: var(--tsr-text-main);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.tsr-icon-calendar {
  width: 18px;
  height: 18px;
  color: var(--tsr-orange);
}

.tsr-day-card:hover .tsr-date-badge-large {
  background: var(--tsr-orange-light);
  border-color: rgba(239, 122, 34, 0.35);
}

.tsr-card-title-block {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--tsr-border);
}

.tsr-card-day-title {
  font-size: 23px;
  font-weight: 800;
  color: var(--tsr-text-main);
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.tsr-card-day-subtitle {
  font-size: 14px;
  color: var(--tsr-text-muted);
  margin: 0;
  line-height: 1.4;
}

/* Timeline Evenimente */
.tsr-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
  padding-left: 6px;
}

.tsr-timeline::before {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 62px;
  width: 2px;
  background: var(--tsr-border);
  z-index: 1;
}

.tsr-timeline-item {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--tsr-radius-medium);
  background: transparent;
  transition: background 0.25s ease, transform 0.25s ease;
}

.tsr-timeline-item:hover {
  background: #F8FAFC;
  transform: translateX(4px);
}

/* Capsulă Oră */
.tsr-time-capsule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: var(--tsr-time-bg);
  color: var(--tsr-time-text-color);
  padding: 7px 14px;
  border-radius: 10px;
  border-left: 3px solid var(--tsr-orange);
  box-shadow: 0 4px 12px rgba(184, 17, 4, 0.25);
}

.tsr-time-icon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tsr-time-text-color);
}

.tsr-time-text {
  font-family: monospace;
  font-size: 13px;
  font-weight: 800;
  color: var(--tsr-time-text-color);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.tsr-event-content {
  display: flex;
  flex-direction: column;
}

.tsr-event-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--tsr-text-main);
  margin: 0 0 2px 0;
}

.tsr-event-desc {
  font-size: 13px;
  color: var(--tsr-text-muted);
  margin: 0;
  font-style: italic;
}

/* Footer Card */
.tsr-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px dashed var(--tsr-border);
}

.tsr-status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--tsr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tsr-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tsr-orange);
  animation: tsrPulse 2s infinite;
}

.tsr-card-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tsr-orange-light);
  color: var(--tsr-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.tsr-card-arrow svg {
  width: 18px;
  height: 18px;
}

.tsr-day-card:hover .tsr-card-arrow {
  background: var(--tsr-orange);
  color: #FFFFFF;
  transform: translateX(5px);
}

@keyframes tsrPulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

/* ==========================================================================
   OPTIMIZĂRI MOBIL (CENTRARE DATA, TITLU ȘI DESCRIERE)
   ========================================================================== */
@media (max-width: 1024px) {
  .tsr-program-header { grid-template-columns: 1fr; }
  .tsr-program-image-wrapper { height: 300px; }
  .tsr-program-grid { gap: 24px; }
}

@media (max-width: 768px) {
  .tsr-program-grid { 
    grid-template-columns: 1fr; 
  }

  /* Centrare Text Header Secțiune */
  .tsr-program-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .tsr-title-line {
    margin: 0 auto 20px auto;
  }

  .tsr-header-desc {
    text-align: center;
  }

  /* Centrare Header Card (Ziua + Data) */
  .tsr-card-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  /* Centrare Titlu & Subtitlu/Descriere Card */
  .tsr-card-title-block {
    text-align: center;
  }

  .tsr-card-day-title {
    text-align: center;
  }

  .tsr-card-day-subtitle {
    text-align: center;
  }

  .tsr-day-card { 
    padding: 24px; 
  }

  .tsr-date-badge-large { 
    font-size: 14px; 
    padding: 8px 18px; 
  }
}

@media (max-width: 480px) {
  .tsr-program-section { 
    padding: 45px 14px; 
  }

  .tsr-day-card { 
    padding: 20px 16px; 
    border-radius: 20px; 
  }

  /* Centrare detalii din evenimente pe ecran foarte mic */
  .tsr-timeline { 
    padding-left: 0; 
  }

  .tsr-timeline::before { 
    display: none; 
  }

  .tsr-timeline-item { 
    grid-template-columns: 1fr; 
    gap: 8px; 
    padding: 12px; 
    background: #F8FAFC; 
    text-align: center;
    justify-items: center;
  }

  .tsr-time-capsule { 
    width: fit-content; 
  }

  .tsr-event-content {
    align-items: center;
    text-align: center;
  }

  /* Centrare footer card pe ecrane foarte mici */
  .tsr-card-footer {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}


/* --------------------------------------------------------------
     T.S.R SECȚIUNE DISTRACȚIE ȘI ADRENALINĂ
  -------------------------------------------------------------- */
  .ts-experience-v2 {
    background-color: #ffffff;
    padding: 80px 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #0f172a;
  }

  .ts-experience-container-v2 {
    max-width: 1240px;
    margin: 0 auto;
  }

  /* 1. Hero Banner Responsive cu Imagini Dedicate */
  .ts-hero-banner-v2 {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    padding: 70px 40px;
    text-align: center;
    margin-bottom: 55px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
  }

  /* Container Imagine Responsive (<picture>) */
  .ts-hero-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .ts-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Overlay semi-transparent negru peste banner */
  .ts-hero-overlay-v2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(15, 23, 42, 0.88) 100%);
    z-index: 2;
    backdrop-filter: blur(1px);
  }

  .ts-hero-content-v2 {
    position: relative;
    z-index: 3;
    max-width: 880px;
    margin: 0 auto;
    color: #ffffff;
  }

  .ts-hero-badge-v2 {
    display: inline-block;
    background-color: #ef7a22;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(239, 122, 34, 0.4);
  }

  .ts-hero-title-v2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }

  .ts-hero-accent-v2 {
    width: 80px;
    height: 4px;
    background: #ef7a22;
    margin: 0 auto 24px auto;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(239, 122, 34, 0.7);
  }

  .ts-hero-text-v2 {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #f1f5f9;
    margin: 0;
  }

  .ts-hero-text-v2 strong {
    color: #ffffff;
  }

  /* 2. Grid Carduri */
  .ts-cards-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  /* 3. Card 2026: Design Modern cu Efect de Creștere (Scale) */
  .ts-card-v2 {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    will-change: transform;
  }

  .ts-card-v2:hover {
    transform: scale(1.035) translateY(-6px);
    box-shadow: 0 22px 45px rgba(239, 122, 34, 0.16);
    border-color: rgba(239, 122, 34, 0.4);
  }

  .ts-card-img-wrapper-v2 {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    background-color: #0f172a;
  }

  .ts-card-img-v2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .ts-card-v2:hover .ts-card-img-v2 {
    transform: scale(1.1);
  }

  .ts-card-img-shade-v2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5) 0%, transparent 60%);
  }

  .ts-badge-tsr-v2 {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(239, 122, 34, 0.95);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.78rem;
    padding: 6px 14px;
    border-radius: 10px;
    letter-spacing: 1.5px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 2;
  }

  .ts-card-body-v2 {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .ts-card-title-v2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
    line-height: 1.3;
  }

  .ts-card-line-v2 {
    width: 45px;
    height: 3px;
    background: #ef7a22;
    border-radius: 2px;
    margin-bottom: 16px;
    transition: width 0.3s ease;
  }

  .ts-card-v2:hover .ts-card-line-v2 {
    width: 80px;
  }

  .ts-card-text-v2 {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #475569;
    margin: 0 0 24px 0;
    flex-grow: 1;
  }

  .ts-card-footer-v2 {
    margin-top: auto;
  }

  .ts-btn-galerie-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background-color: #ffffff;
    color: #ef7a22;
    border: 2px solid #ef7a22;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }

  .ts-btn-galerie-v2 svg {
    transition: transform 0.3s ease;
  }

  .ts-btn-galerie-v2:hover {
    background-color: #ef7a22;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(239, 122, 34, 0.3);
  }

  .ts-btn-galerie-v2:hover svg {
    transform: translateX(4px);
  }

  /* --------------------------------------------------------------
     ADAPTARE RESPONSIVE (Mobil și Tabletă)
  -------------------------------------------------------------- */
  @media (max-width: 1024px) {
    .ts-cards-grid-v2 {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .ts-hero-title-v2 {
      font-size: 2.2rem;
    }
  }

  @media (max-width: 768px) {
    .ts-experience-v2 {
      padding: 50px 15px;
    }

    .ts-hero-banner-v2 {
      padding: 45px 20px;
      border-radius: 20px;
      margin-bottom: 35px;
      min-height: 280px;
    }

    .ts-hero-title-v2 {
      font-size: 1.75rem;
    }

    .ts-hero-text-v2 {
      font-size: 1rem;
    }

    .ts-cards-grid-v2 {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .ts-card-v2:hover {
      transform: scale(1.02) translateY(-4px);
    }

    .ts-card-img-wrapper-v2 {
      height: 200px;
    }

    .ts-card-body-v2 {
      padding: 22px 18px;
    }

    .ts-card-title-v2 {
      font-size: 1.2rem;
    }

    .ts-card-text-v2 {
      font-size: 0.93rem;
    }
  }


  /* --------------------------------------------------------------
     STILURI SECȚIUNE NOUTĂȚI (#ef7a22 accent)
  -------------------------------------------------------------- */
  .ts-news-list-section {
    background-color: #f8fafc;
    padding: 80px 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #0f172a;
  }

  .ts-news-list-container {
    max-width: 1000px; /* Lățime optimizată pentru layout vertical */
    margin: 0 auto;
  }

  /* Antet */
  .ts-news-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
  }

  .ts-news-badge {
    display: inline-block;
    background-color: rgba(239, 122, 34, 0.12);
    color: #ef7a22;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
  }

  .ts-news-title {
    font-size: 2.4rem;
    font-weight: 900;
    margin: 0 0 12px 0;
    color: #0f172a;
  }

  .ts-news-desc {
    font-size: 1.05rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
  }

  /* Container Lista Carduri */
  .ts-news-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* ---------------- CARD NOUTATE ---------------- */
  .ts-news-item {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .ts-news-item:hover:not(.ts-item-disabled) {
    box-shadow: 0 15px 40px rgba(239, 122, 34, 0.08);
    border-color: rgba(239, 122, 34, 0.3);
  }

  /* Rândul Principal (Vizibil mereu) */
  .ts-news-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 40px;
    gap: 40px;
  }

  /* Stânga: Conținut Text */
  .ts-news-text-content {
    flex: 1;
  }

  .ts-news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }

  .ts-tag {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 10px;
    color: #ffffff;
  }

  .ts-tag-orange { background-color: #ef7a22; }
  .ts-tag-gray { background-color: #94a3b8; }

  .ts-news-date {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
  }

  .ts-news-item-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
    line-height: 1.3;
  }

  .ts-news-item-excerpt {
    font-size: 1.02rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 24px 0;
  }

  /* Buton Expandare */
  .ts-btn-expand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: transparent;
    color: #ef7a22;
    border: 2px solid #ef7a22;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .ts-btn-expand:hover:not(.disabled) {
    background-color: #ef7a22;
    color: #ffffff;
  }

  .ts-btn-expand.disabled {
    border-color: #cbd5e1;
    color: #94a3b8;
    cursor: not-allowed;
  }

  .ts-btn-expand svg {
    transition: transform 0.3s ease;
  }

  /* Rotim săgeata când e deschis */
  .ts-btn-expand[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  /* Dreapta: Poza Pătrată */
  .ts-news-image-wrapper {
    flex-shrink: 0;
    width: 240px;
    height: 240px; /* Transformă containerul în pătrat */
    border-radius: 20px; /* Margini rotunjite poză */
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  }

  .ts-news-sq-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Taie poza proporțional să umple pătratul */
    display: block;
    transition: transform 0.5s ease;
  }

  .ts-news-item:hover .ts-news-sq-img {
    transform: scale(1.05); /* Efect fin de zoom la hover */
  }

  /* Poză Placeholder (În curând) */
  .ts-placeholder-img {
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #cbd5e1;
    box-shadow: none;
  }

  .ts-placeholder-icon {
    font-size: 3rem;
    opacity: 0.5;
  }

  /* ---------------- SECȚIUNEA ASCUNSĂ (DETALII) ---------------- */
  /* Folosim CSS Grid trick pentru animație fluidă pe înălțime */
  .ts-news-dropdown {
    display: grid;
    grid-template-rows: 0fr; /* Starea închisă */
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(180deg, #ffffff 0%, #fffbf8 100%);
  }

  .ts-news-dropdown.active {
    grid-template-rows: 1fr; /* Starea deschisă */
  }

  .ts-dropdown-inner {
    overflow: hidden; /* Foarte important pentru animație */
  }

  /* Conținutul Centrat din interiorul dropdown-ului */
  .ts-dropdown-content-centered {
    padding: 0 40px 40px 40px; /* Fără padding sus pentru continuitate, sau ajustăm */
    border-top: 1px solid #f1f5f9;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ts-details-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #0f172a;
    margin: 30px 0 10px 0;
  }

  .ts-details-desc {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 0 25px 0;
  }

  /* Info Cards (Data & Locația) - Centrate */
  .ts-info-cards-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
  }

  .ts-info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 12px 25px;
    min-width: 160px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  }

  .ts-info-lbl {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    color: #ef7a22;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }

  .ts-info-val {
    font-size: 1rem;
    color: #0f172a;
    font-weight: 800;
  }

  /* Banner Intrare Liberă */
  .ts-free-entry-banner {
    background: linear-gradient(135deg, #ef7a22 0%, #fa9647 100%);
    color: #ffffff;
    border-radius: 16px;
    padding: 16px 25px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(239, 122, 34, 0.3);
  }

  .ts-free-icon {
    font-size: 1.8rem;
  }

  .ts-free-text {
    text-align: left;
  }

  .ts-free-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.5px;
  }

  .ts-free-text p {
    margin: 2px 0 0 0;
    font-size: 0.85rem;
    opacity: 0.95;
  }

  /* Logouri */
  .ts-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
  }

  .ts-logo-img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
  }

  .ts-welcome-msg {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
  }

  /* --------------------------------------------------------------
     ADAPTARE RESPONSIVE (Tablete & Mobile)
  -------------------------------------------------------------- */
  @media (max-width: 768px) {
    .ts-news-main-row {
      flex-direction: column; /* Pune poza sub text pe ecrane mici */
      padding: 30px 20px;
      gap: 25px;
      text-align: center;
    }

    .ts-news-meta {
      justify-content: center;
    }

    .ts-news-item-title {
      font-size: 1.5rem;
    }

    .ts-news-image-wrapper {
      width: 100%;
      height: 250px; /* Poza se face dreptunghiulară/wide pe mobil */
      order: -1; /* Mută poza deasupra textului pe mobil (opțional, dacă vrei. Dacă nu, șterge 'order: -1') */
    }

    .ts-dropdown-content-centered {
      padding: 0 20px 30px 20px;
    }

    .ts-info-cards-row {
      flex-direction: column;
      width: 100%;
      gap: 10px;
    }

    .ts-info-card {
      width: 100%;
    }

    .ts-free-entry-banner {
      flex-direction: column;
      text-align: center;
      width: 100%;
    }

    .ts-free-text {
      text-align: center;
    }
  }




  /* --------------------------------------------------------------
     STILURI SECȚIUNE TRIMITERI GALERIE (#ef7a22 accent)
  -------------------------------------------------------------- */
  .ts-gallery-links-section {
    background-color: #ffffff;
    padding: 80px 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #0f172a;
  }

  .ts-gallery-links-container {
    max-width: 1240px;
    margin: 0 auto;
  }

  /* Antet Secțiune */
  .ts-gallery-links-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
  }

  .ts-gallery-badge {
    display: inline-block;
    background-color: rgba(239, 122, 34, 0.12);
    color: #ef7a22;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
  }

  .ts-gallery-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 0 14px 0;
    color: #0f172a;
    line-height: 1.2;
  }

  .ts-gallery-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
  }

  /* Grid Carduri */
  .ts-gallery-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  /* Structură Card Individual */
  .ts-gallery-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    text-decoration: none;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    will-change: transform;
  }

  /* Fundal Imagine cu Zoom la Hover */
  .ts-gallery-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #0f172a; /* Fallback dacă lipsește imaginea */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
  }

  .ts-gallery-card:hover .ts-gallery-card-bg {
    transform: scale(1.08);
  }

  /* Overlay gradient pentru lizibilitatea textului */
  .ts-gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.75) 60%, rgba(15, 23, 42, 0.95) 100%);
    z-index: 2;
    transition: background 0.4s ease;
  }

  .ts-gallery-card:hover .ts-gallery-card-overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.85) 60%, rgba(15, 23, 42, 0.98) 100%);
  }

  /* Conținut Card */
  .ts-gallery-card-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .ts-year-badge {
    display: inline-block;
    background-color: #ef7a22;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 10px;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(239, 122, 34, 0.4);
  }

  .ts-badge-current {
    background-color: #0ea5e9; /* Nuanță diferită opțională pentru anul curent */
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
  }

  .ts-card-heading {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #ffffff;
    line-height: 1.2;
  }

  .ts-card-desc {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0 0 24px 0;
  }

  /* Buton Link Intern Card */
  .ts-card-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
  }

  .ts-card-link-btn svg {
    transition: transform 0.3s ease;
  }

  .ts-gallery-card:hover .ts-card-link-btn {
    background-color: #ef7a22;
    border-color: #ef7a22;
    box-shadow: 0 4px 15px rgba(239, 122, 34, 0.4);
  }

  .ts-gallery-card:hover .ts-card-link-btn svg {
    transform: translateX(4px);
  }

  .ts-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(239, 122, 34, 0.2);
  }

  /* --------------------------------------------------------------
     ADAPTARE RESPONSIVE (Tablete și Mobile)
  -------------------------------------------------------------- */
  @media (max-width: 1024px) {
    .ts-gallery-cards-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
  }

  @media (max-width: 768px) {
    .ts-gallery-links-section {
      padding: 50px 15px;
    }

    .ts-gallery-title {
      font-size: 2rem;
    }

    .ts-gallery-cards-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .ts-gallery-card {
      height: 380px;
      padding: 28px;
    }

    .ts-card-heading {
      font-size: 1.5rem;
    }
  }



/*--------------------------------------------------------------
# GALERIE FOTO 2024 - PAGINĂ SEPARATĂ
--------------------------------------------------------------*/
/* ==========================================================================
   Variabile de Culoare și Layout
   ========================================================================== */
:root {
  --gallery-bg: #ffffff;
  --gallery-card-bg: #f8f9fa;
  --gallery-border: #e9ecef;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --orange-primary: #ff6b00;
  --orange-hover: #e66000;
  --radius-card: 12px;
  --gap-masonry: 16px;
}

/* ==========================================================================
   Secțiunea Principală & Bara de Status
   ========================================================================== */
.bento-section-light {
  padding: 40px 0 80px 0;
  background-color: var(--gallery-bg);
  width: 100%;
}

.gallery-meta-bar-light {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 15px 25px;
  background: var(--gallery-card-bg);
  border: 1px solid var(--gallery-border);
  border-radius: var(--radius-card);
}

.photo-count-light {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

.photo-count-light span {
  color: var(--orange-primary);
  font-weight: 800;
}

/* ==========================================================================
   Masonry CSS Pur (Așezare fără goluri pentru Landscape & Portrait)
   ========================================================================== */
.css-masonry {
  column-count: 1;
  column-gap: var(--gap-masonry);
  width: 100%;
  margin: 0 auto;
}

/* Responsive - Numărul de coloane se adaptează automat */
@media (min-width: 576px) { 
  .css-masonry { column-count: 2; } 
}
@media (min-width: 992px) { 
  .css-masonry { column-count: 3; } 
}
@media (min-width: 1400px) { 
  .css-masonry { column-count: 4; } 
}

/* ==========================================================================
   Cardul Individual (Elementul Foto)
   ========================================================================== */
.masonry-item {
  break-inside: avoid; /* Împiedică tăierea pozei între coloane */
  page-break-inside: avoid;
  margin-bottom: var(--gap-masonry); /* Spațiul vertical */
  display: inline-block;
  width: 100%;
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background-color: var(--gallery-card-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
  cursor: pointer;
}

.masonry-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

/* Imaginea din card */
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-card);
  transition: transform 0.5s ease;
}

.masonry-item:hover img {
  transform: scale(1.04);
}

/* ==========================================================================
   Overlay la Hover & Iconiță Zoom
   ========================================================================== */
.masonry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
  border-radius: var(--radius-card);
  transition: opacity 0.3s ease;
  pointer-events: none; /* Lasă click-ul de pe poză să funcționeze perfect */
}

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

.item-caption {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.zoom-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(255, 107, 0, 0.4);
}

/* ==========================================================================
   Buton "Încarcă Mai Multe"
   ========================================================================== */
.btn-load-more {
  background: var(--orange-primary);
  color: #ffffff;
  border: none;
  padding: 14px 40px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-load-more:hover {
  background: var(--orange-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}




/* ==============================================
     STILURI CSS PENTRU SECȚIUNEA CONTACT 
=============================================== */

:root {
  --contact-bg: #ffffff;
  --contact-text: #4b5563;
  --contact-heading: #111827;
  --contact-green: #0a4229; 
  --contact-yellow: #fff301; 
}

.contact-premium-section {
  background-color: var(--contact-bg);
  padding: 100px 0;
  position: relative;
  font-family: inherit;
}

/* --- Partea stângă: Text & Titluri --- */
.contact-logo {
  max-width: 200px;
  height: auto;
}

.premium-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--contact-green);
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-left: 35px;
}

.premium-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 25px; height: 2px;
  background-color: var(--contact-green);
}

.custom-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: black;
  line-height: 1.25;
  margin-bottom: 15px;
}

.premium-desc {
  font-size: 1rem;
  color: var(--contact-text);
  line-height: 1.6;
  max-width: 90%;
}

/* --- Link-uri de contact direct (Stânga: Telefon, WhatsApp, Email) --- */
.direct-contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.premium-contact-link {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.premium-contact-link .icon-box {
  width: 44px; height: 44px;
  background: #ffffff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--contact-green);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.premium-contact-link .info {
  margin-left: 15px;
  display: flex;
  flex-direction: column;
}

.premium-contact-link .info .label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 2px;
  transition: color 0.3s ease;
}

.premium-contact-link .info .value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--contact-heading);
  transition: color 0.3s ease;
}

.premium-contact-link .info .value small {
  font-weight: 500;
  color: #94a3b8;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.premium-contact-link .action-icon {
  margin-left: auto;
  font-size: 1.5rem;
  color: #cbd5e1;
  transition: all 0.3s ease;
}

/* --- EFECT HOVER PENTRU CARDURILE DIN STÂNGA --- */
/* Cardul devine verde */
.premium-contact-link:hover {
  background: var(--contact-green);
  border-color: var(--contact-green);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(10, 66, 41, 0.2);
}

/* Caseta pictogramei la hover */
.premium-contact-link:hover .icon-box {
  background: rgba(255, 255, 255, 0.15);
  color: var(--contact-yellow);
}

/* Toate textele și pictograma din dreapta devin galbene */
.premium-contact-link:hover .info .label,
.premium-contact-link:hover .info .value,
.premium-contact-link:hover .info .value small,
.premium-contact-link:hover .action-icon {
  color: var(--contact-yellow);
}

.premium-contact-link:hover .action-icon {
  transform: translateX(4px);
}

/* --- Carduri separate din dreapta --- */
.right-cards-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card-item {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: border-color 0.2s ease;
}

.info-card-item:hover {
  border-color: rgba(10, 66, 41, 0.15);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.section-header i {
  font-size: 1.25rem;
  color: var(--contact-green);
  background: rgba(10, 66, 41, 0.06);
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
}

.section-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--contact-heading);
  margin: 0;
}

.address-text {
  font-size: 0.95rem;
  color: var(--contact-text);
  line-height: 1.6;
  margin-bottom: 10px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--contact-green);
  text-decoration: none;
}

.map-link:hover {
  text-decoration: underline;
}

/* Grid pentru datele companiei în card */
.company-data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.data-item {
  display: flex;
  flex-direction: column;
}

.data-item .k {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.data-item .v {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--contact-heading);
}

/* Platforme */
.platforms-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  padding: 12px 15px;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
}

.platform-badge .icon {
  font-size: 1.3rem;
  color: var(--contact-green);
}

.platform-badge .details {
  display: flex;
  flex-direction: column;
}

.platform-badge .details span {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
}

.platform-badge .details strong {
  font-size: 1rem;
  color: var(--contact-heading);
}

/* --- Responsivitate --- */
@media (max-width: 991px) {
  .contact-premium-section { padding: 70px 0; }
  .custom-title { font-size: 1.9rem; }
  .company-data-grid, .platforms-wrapper { grid-template-columns: 1fr; }
  .right-cards-container { margin-top: 30px; }
}

@media (max-width: 576px) {
  .info-card-item { padding: 20px; }
  .premium-contact-link { padding: 10px 12px; }
}/*


 /* =========================================
   BANNER CONTACT
========================================= */
.premium-team-sec {
  position: relative;
  padding: 100px 0;
  /* Calea către imaginea de fundal actualizată */
  background: url('../img/ecoagrotec-transport-exceptional.webp') center center / cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.premium-team-bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  /* Gradient închis pentru lizibilitate optimă */
  background: linear-gradient(135deg, rgba(10, 14, 20, 0.95) 0%, rgba(15, 25, 35, 0.8) 100%);
  z-index: 1;
}

.premium-team-container {
  position: relative;
  z-index: 2;
}

/* =========================================
   VIDEO PORTRAIT STYLING
========================================= */
.premium-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 340px; 
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  z-index: 5;
}

.premium-portrait-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 2;
  background-color: #1a1a1a; 
}

/* Glow adaptat la galbenul #fff301 */
.premium-video-glow {
  position: absolute;
  top: 5%;
  left: 5%;
  right: -5%;
  bottom: -5%;
  background: rgba(255, 243, 1, 0.15); /* Galben translucid */
  filter: blur(50px);
  z-index: 1;
  border-radius: 50%;
}

/* =========================================
   CONȚINUT DREAPTA (TEXT)
========================================= */
.premium-content-wrapper {
  padding-left: 30px;
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #e5e5e5;
  backdrop-filter: blur(5px);
}

/* Punct pulsativ galben */
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #fff301;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff301;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 243, 1, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 243, 1, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 243, 1, 0); }
}

/* Clasă nouă pentru titlul din banner */
.banner-contact-title {
  font-size: 2.0rem;
  font-weight: 800;
  line-height: 0.9;
  margin-bottom: 20px;
}

/* Culoare de accent galbenă pentru titlu */
.text-accent {
  color: #fff301;
  text-shadow: 0 0 20px rgba(255, 243, 1, 0.3); /* Strălucire subtilă */
}

.premium-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 40px;
  max-width: 90%;
}

/* =========================================
   CARD CITAT (GLASSMORPHISM)
========================================= */
.premium-quote-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.premium-quote-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 243, 1, 0.3); /* Border-ul prinde o tentă galbenă la hover */
}

/* Iconiță cu fundal galben și text negru pentru contrast maxim */
.quote-icon-box {
  position: absolute;
  top: -20px;
  left: 40px;
  width: 45px;
  height: 45px;
  background: #fff301;
  color: #0a0e14; /* Text închis la culoare pe galben */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
  box-shadow: 0 10px 20px rgba(255, 243, 1, 0.3);
}

.quote-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #ffffff;
}

.quote-text {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

.quote-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.footer-info strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.footer-info span {
  display: block;
  font-size: 0.8rem;
  color: #94a3b8;
}

.footer-icon {
  font-size: 1.5rem;
  color: #fff301; /* Iconița camionului galbenă */
}

/* =========================================
   MEDIA QUERIES (RESPONSIVITATE)
========================================= */
@media (max-width: 991px) {
  .premium-team-sec { padding: 80px 0; }
  .premium-content-wrapper { padding-left: 0; text-align: center; margin-top: 50px; }
  .premium-description { max-width: 100%; margin-left: auto; margin-right: auto; }
  .premium-badge { margin: 0 auto 25px auto; }
  .premium-quote-card { text-align: left; padding: 30px 20px; }
  .quote-icon-box { left: 20px; }
  .premium-video-wrapper { max-width: 300px; margin: 0 auto; }
}

@media (max-width: 767px) {
  .banner-contact-title { font-size: 2.2rem; }
  .premium-video-wrapper { max-width: 260px; } 
}

@media (max-width: 576px) {
  .premium-team-sec { padding: 60px 0; }
  .banner-contact-title { font-size: 1.8rem; }
  .quote-title { font-size: 1.2rem; }
}





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

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

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

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


/* ==============================================================
   DESIGN SECȚIUNE ÎNSCRIERE - FUNDAL ALB & LANDSCAPE
============================================================== */
.tsr-registration-section {
  padding: 90px 0;
  background: #ffffff !important; /* Fundal alb curat */
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.tsr-reg-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.tsr-reg-logo {
  max-height: 60px;
  width: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.tsr-badge-tag {
  display: inline-block;
  background: rgba(239, 122, 34, 0.1);
  color: #EF7A22;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 1px solid rgba(239, 122, 34, 0.25);
}

.tsr-reg-header h2 {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #111111;
}

.tsr-event-details {
  font-size: 16px;
  color: #555555;
  margin-bottom: 12px;
}

.tsr-event-details i {
  color: #EF7A22;
}

.tsr-reg-intro {
  font-size: 15px;
  color: #666666;
}

/* Card Principal Formular - Format Landscape Orizontal */
.tsr-reg-card {
  max-width: 1050px; /* Lat generos pentru landscape */
  margin: 0 auto;
  background: #f8f9fa; /* Fundal discret deschis pentru card */
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Grid Landscape pe 2 coloane mari */
.tsr-landscape-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 20px;
}

.tsr-column {
  display: flex;
  flex-direction: column;
}

.tsr-full-width {
  grid-column: span 2;
}

.tsr-form-group {
  margin-bottom: 20px;
}

.tsr-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: #333333;
}

.required {
  color: #EF7A22;
}

.optional {
  color: #888888;
  font-weight: 400;
  font-size: 11px;
}

.tsr-form-group input,
.tsr-form-group textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 13px 16px;
  color: #111111;
  font-size: 15px;
  transition: all 0.3s ease;
}

.tsr-form-group input:focus,
.tsr-form-group textarea:focus {
  outline: none;
  border-color: #EF7A22;
  box-shadow: 0 0 12px rgba(239, 122, 34, 0.15);
}

/* Selector Tip Înscriere (Radio Carduri) */
.tsr-type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.tsr-radio-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  padding: 14px 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  color: #333333;
}

.tsr-radio-card input {
  display: none;
}

.tsr-radio-card i {
  font-size: 20px;
  color: #888888;
  transition: color 0.3s ease;
}

.tsr-radio-card.active {
  border-color: #EF7A22;
  background: rgba(239, 122, 34, 0.05);
  color: #EF7A22;
}

.tsr-radio-card.active i {
  color: #EF7A22;
}

/* Secțiune Facturare Firmă */
.tsr-billing-container {
  background: rgba(239, 122, 34, 0.04);
  border: 1px dashed rgba(239, 122, 34, 0.35);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  animation: tsrFadeIn 0.4s ease forwards;
}

.tsr-billing-title {
  font-size: 13px;
  font-weight: 700;
  color: #EF7A22;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

/* Dropzone Poze */
.tsr-file-dropzone {
  position: relative;
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tsr-file-dropzone:hover {
  border-color: #EF7A22;
  background: rgba(239, 122, 34, 0.02);
}

.tsr-file-dropzone input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.tsr-file-dropzone i {
  font-size: 28px;
  color: #EF7A22;
  display: block;
  margin-bottom: 6px;
}

.tsr-file-dropzone span {
  font-size: 12px;
  color: #555555;
}

.tsr-file-list {
  font-size: 12px;
  color: #EF7A22;
  margin-top: 6px;
}

/* Buton Trimite WhatsApp */
.tsr-submit-btn {
  width: 100%;
  background: #25D366;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 16px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
  margin-top: 10px;
}

.tsr-submit-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.35);
}

.tsr-submit-btn i {
  font-size: 20px;
}

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

/* ==============================================================
   STILURI SUPLIMENTARE PENTRU CHECKBOX POLITICĂ DE CONFIDENȚIALITATE
============================================================== */
.tsr-privacy-group {
  margin: 20px 0 10px 0;
  display: flex;
  align-items: center;
}

.tsr-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13.5px;
  color: #444444;
  line-height: 1.4;
  user-select: none;
}

.tsr-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #EF7A22; /* Schimbă culoarea bifei în portocaliul specific */
  margin-top: 2px;
  cursor: pointer;
}

.tsr-checkbox-label a {
  color: #EF7A22;
  text-decoration: underline;
  font-weight: 600;
}

.tsr-checkbox-label a:hover {
  color: #d66518;
}

/* Responsiveness Mobil (Revine la o singură coloană pe ecran mic) */
@media (max-width: 992px) {
  .tsr-landscape-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .tsr-reg-card {
    padding: 20px;
    width: 92%;
  }
  .tsr-type-selector {
    grid-template-columns: 1fr;
  }
}



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

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

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

.lang-widget span {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

