@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  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";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Lato",  sans-serif;
}

/* 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: #1d353f; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #112344; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #d72229; /* 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: #ffffff; /* 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: #3c4049;  /* The default color of the main navmenu links */
  --nav-hover-color: #175cdd; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #3c4049; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #175cdd; /* 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: #f4f8ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #021418;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #11262a;
  --contrast-color: #ffffff;
}

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

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

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(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message,
.php-email-form .error-message {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.php-email-form .visible {
  opacity: 1;
}

.php-email-form .fade-out {
  opacity: 0;
}


.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  transition: all 0s;
  z-index: 997;
  background-color: var(--background-color);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

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

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

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

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--default-color);
    font-size: 16px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

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

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

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

.navmenu ul {
  display: none;
  list-style: none;
  position: absolute;
  top: 60px;       /* poziționare verticală față de toggle */
  left: 20px;      /* poziționare stânga */
  right: 20px;     /* păstrează lățimea ca înainte */
  padding: 10px 0;
  margin: 0;
  border-radius: 15px;
  background-color: var(--nav-mobile-background-color);
  overflow: visible; /* să crească doar cât e textul */
  transition: 0.3s;
  z-index: 99999;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  height: auto;     /* înălțimea se adaptează la conținut */
}

  .navmenu a,
  .navmenu a:focus {
    color: var(--default-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

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

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

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* Stiluri de bază */
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 60px 0 30px;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
  display: inline-flex;    /* MODIFICARE: Face link-ul să fie doar cât imaginea */
  width: fit-content;      /* MODIFICARE: Garantează că nu se întinde mai mult */
}

/* Efectul de hover rămâne la fel, dar acum se va declanșa doar pe imagine */
.footer .footer-about .logo img {
  max-height: 75px;
  transition: transform 0.3s ease-in-out;
}

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

.footer .footer-about p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px); /* Mic efect de ridicare și pentru social icons */
}

.footer h4 {
  font-size: 17px;
  color: var(--accent-color);
  font-weight: 800;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  text-decoration: none;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.footer .footer-contact p a {
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  text-decoration: none;
}

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

.footer .copyright {
  padding: 25px 15px;
  border-radius: 15px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

/* --- AJUSTĂRI MOBIL --- */
@media (max-width: 991px) {
  .footer {
    text-align: center;
  }

.footer .footer-about .logo {
    display: flex;
    justify-content: center;
    width: 100%;       /* MODIFICARE: Ocupă tot rândul pentru a putea centra conținutul */
    margin-left: auto;  /* Siguranță suplimentară */
    margin-right: auto; /* Siguranță suplimentară */
    margin-bottom: 25px;
}
  
  /* Opțional: dezactivăm mărirea pe mobil pentru a evita click-uri accidentale */
  .footer .footer-about .logo:hover img {
    transform: none; 
  }

  .footer .social-links {
    justify-content: center;
    margin-right: 0;
    margin-bottom: 40px;
  }

  .footer .footer-links ul li {
    justify-content: center;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px !important;
  }

  .footer .copyright {
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

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

.scroll-top i {
  font-size: 30px;
  color: var(--contrast-color);
  line-height: 0;
}

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

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

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

/*--------------------------------------------------------------
# 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);
  position: relative;
  padding-top: 100px;
}

.page-title .heading {
  padding: 80px 0;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 500;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

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

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

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

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

@media (max-width: 1199px) {

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

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

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

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 800;
  font-size: 50px;
  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: 576px) {
  .section-title p {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

.section-title2 {
  text-align: center;
  padding: 150px 0 30px;
  position: relative;
}

.section-title2 h2 {
  font-size: 35px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
  color: #000000;
}

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

@media (max-width: 575px) {
  .section-title2 h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

@media (max-width: 576px) {
  .section-title2 p {
    padding: 0 15px;  /* adaugă spațiu lateral */
    text-align: center; /* opțional, dacă vrei pe mijloc */
  }
}
}

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

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

/*--------------------------------------------------------------
# Hero Section - ACASĂ
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 60px 0 30px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .hero-content {
  padding: 0px;
}

.hero .hero-content .trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero .hero-content .trust-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 15px;
  color: var(--default-color);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero .hero-content .trust-badges .badge-item i {
  font-size: 1.25rem;
}

@media (max-width: 576px) {
  .hero .hero-content .trust-badges {
    gap: 0.5rem;
  }

  .hero .hero-content .trust-badges .badge-item {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}

.hero .hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin: 1.75rem 0;
  color: var(--accent-color);
}

.hero .hero-content h1 .highlight {
  color: var(--default-color);
  font-size: 1.75rem;
  position: relative;
}

@media (max-width: 992px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .hero-content .hero-description {
  font-size: 1.22rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  margin-bottom: 2rem;
  max-width: 700px;
}

.hero .hero-content .hero-stats {
  display: flex;
  gap: 2rem;
}

.hero .hero-content .hero-stats .stat-item {
  text-align: left;
}

.hero .hero-content .hero-stats .stat-item h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-color);
  margin: 0;
  line-height: 1;
}

.hero .hero-content .hero-stats .stat-item p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin: 0.25rem 0 0 0;
  font-size: 0.90rem;
  font-weight: 500;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-stats {
    gap: 1rem;
  }

  .hero .hero-content .hero-stats .stat-item h3 {
    font-size: 1.5rem;
  }
}

.hero .hero-content .hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.hero .hero-content .hero-actions .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero .hero-content .hero-actions .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-content .hero-actions .btn.btn-primary:hover {
  background: var(--default-color);
  transform: translateY(-5px);
}

.hero .hero-content .hero-actions .btn.btn-outline {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background: transparent;
}

.hero .hero-content .hero-actions .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
}

@media (max-width: 576px) {
  .hero .hero-content .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .hero-content .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }
}

.hero .hero-content .emergency-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.hero .hero-content .emergency-contact .emergency-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.hero .hero-content .emergency-contact .emergency-info small {
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-size: 0.90rem;
  font-weight: 500;
  margin-bottom: 0.1rem;
}

.hero .hero-content .emergency-contact .emergency-info strong {
  color: var(--default-color);
  font-size: 1.125rem;
  font-weight: 700;
}

.hero .hero-content .emergency-contact .emergency-info strong a {
  color: var(--accent-color);
}

.hero .hero-content .emergency-contact .emergency-info strong a:hover {
  color: var(--default-color);
  text-decoration: underline;
}

/* 1. Resetăm padding-ul și marginile textului */
.hero .hero-content {
  padding: 0; /* Eliminăm padding-ul intern */
  margin-top: 60px; /* Spațiu de sus pentru layout */
  margin-bottom: 60px; /* Spațiu de jos pentru layout */
}

/* 2. Containerul pentru imagine */
.hero .hero-visual {
  position: relative;
  margin-top: 60px; /* Spațiu egal cu cel al textului */
  margin-bottom: 0px;
  height: calc(100% - 120px); /* Ajustăm pentru marginile de sus și jos */
  display: flex;
  border-radius: 15px;
  overflow: hidden; /* Taie imaginea conform colțurilor rotunjite */
}

/* 3. Imaginea principală */
.hero .hero-visual .main-image {
  width: 100%;
  height: 100%;
  min-height: 450px; /* Înălțime minimă desktop */
  border-radius: 0; /* Colțurile sunt aplicate containerului */
  overflow: hidden;
}

.hero .hero-visual .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Imaginea acoperă complet containerul */
}

/*--------------------------------------------------------------
# Mobil
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .hero .hero-visual {
    margin-top: 0px; /* Margină de sus redusă */
    margin-bottom: 30px; /* Margină de jos */
    height: auto; /* Înălțime automată pentru conținut */
    border-radius: 15px; /* Păstrează colțurile rotunjite */
    overflow: hidden; /* Imaginea respectă border-radius */
  }

  .hero .hero-visual .main-image {
    min-height: 300px; /* Înălțime minimă pe mobil */
  }
}

/*--------------------------------------------------------------
# About Section - DESPRE NOI
--------------------------------------------------------------*/
.about {
  padding: 60px 0;
}

.about .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.about .content h2 {
  font-weight: 700;
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}

.about .content h5 {
  font-weight: 500;
  color: var(--default-color);
}

.about .content p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about .features-list {
  margin-top: 2rem;
}

.about .features-list .feature-item {
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.about .features-list .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about .features-list .feature-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
}

.about .features-list .feature-item h5 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--default-color);
  margin-bottom: 10px;
}

.about .features-list .feature-item p {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    margin-bottom: 2rem;
  }

  .about .content {
    text-align: center;
  }

  .about .content h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .about .features-list .feature-item {
    margin-bottom: 1.5rem;
  }
}

.about .testimonial-highlight {
  padding: 75px 0 0px;
}

.about .testimonial-highlight .testimonial-card {
  background: var(--surface-color);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.075);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 15%);
  position: relative;
}

.about .testimonial-highlight .quote-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .testimonial-highlight .quote-icon i {
  color: var(--contrast-color);
  font-size: 1.3rem;
}

.about .testimonial-highlight blockquote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  margin: 2rem 0;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
}

.about .testimonial-highlight .testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.about .testimonial-highlight .testimonial-author .author-info {
  text-align: center;
}

.about .testimonial-highlight .testimonial-author .author-info h5 {
  margin: 1px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-color);
}

.about .testimonial-highlight .testimonial-author .author-info span {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--default-color);
}


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

.services .service-feature {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.services .service-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.services .service-feature .feature-image {
  position: relative;
  height: 275px;
  overflow: hidden;
}


/* Mobil */
@media (max-width: 768px) {
  .services .service-feature .feature-image {
    height: 190px; /* sau orice valoare vrei tu */
  }
}

.services .service-feature .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.services .service-feature .feature-image .feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(215, 34, 41, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services .service-feature .feature-image .feature-overlay .feature-icon {
  background: var(--contrast-color);
  color: var(--accent-color);
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.services .service-feature .feature-image:hover img {
  transform: scale(1.05);
}

.services .service-feature .feature-image:hover .feature-overlay {
  opacity: 1;
}

.services .service-feature .feature-image:hover .feature-overlay .feature-icon {
  transform: scale(1);
}

.services .service-feature .feature-content {
  padding: 30px;
}

.services .service-feature .feature-content h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--default-color);
}

.services .service-feature .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  margin-bottom: 25px;
  line-height: 1.6;
}

.services .service-feature .feature-content .btn-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 25px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services .service-feature .feature-content .btn-feature:hover {
  background: var(--default-color);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

/* CORECTIE SPATIERE BOOTSTRAP */
.services .row {
  margin-bottom: 0;
}

.services .row + .row {
  margin-top: 0;
}

/* TRAILER SECTION */
.services .trailer-section {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 15px;
  padding: 50px;
  margin-top: 45px;
}

@media (max-width: 768px) {
  .services .trailer-section {
    padding: 30px 20px;
  }
}

.services .trailer-section .trailer-content h3 {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--default-color);
}

.services .trailer-section .trailer-content .lead {
  font-size: 18px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  margin-bottom: 30px;
  line-height: 1.6;
}

.services .trailer-section .trailer-content .trailer-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.services .trailer-section .trailer-content .trailer-highlights li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--default-color);
}

.services .trailer-section .trailer-content .trailer-highlights li i {
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 16px;
}

.services .trailer-section .trailer-images {
  position: relative;
}

.services .trailer-section .trailer-images .main-image {
  border-radius: 15px;
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* Mobil */
@media (max-width: 768px) {
  .services .trailer-section .trailer-images .main-image {
    height: 200px; /* Înălțime adaptată pentru mobil */
  }
}

.services .service-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services .service-card:hover .card-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.services .service-card .card-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  transition: all 0.3s ease;
}

.services .service-card h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--default-color);
}

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

@media (max-width: 768px) {
  .services .service-feature .feature-content {
    padding: 25px 20px;
  }

  .services .service-feature .feature-content h3 {
    font-size: 20px;
  }

  .services .service-card {
    padding: 25px 20px;
  }

  .services .service-card h4 {
    font-size: 16px;
  }
}

.services .routes-section {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.services .routes-image-wrapper img {
  width: 100%;
  height: 400px; /* Înălțime adaptată pentru 2 rânduri de carduri */
  object-fit: cover;
  border-radius: 15px;
}

.services .routes-content h3 {
  font-size: 25px;
  font-weight: 800;
  color: var(--default-color);
}

.services .routes-content p {
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
}

.services .main-route-highlight {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-left: 4px solid var(--accent-color);
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 25px;
  display: flex;
  align-items: center; /* centrează vertical */
  justify-content: flex-start; /* aliniere la stânga */
  text-align: left; /* text la stânga */
}

.services .main-route-highlight .content {
  width: 100%; /* să ocupe tot spațiul */
}

.services .main-route-highlight .content h3 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--default-color);
}

.services .main-route-highlight .content p {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.services .main-route-highlight .text-highlight {
  font-weight: 700;
  color: var(--accent-color);
}


/* Carduri Tari și Steaguri */
.services .country-mini-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: transparent;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  transition: all 0.3s ease;
  height: 100%;
}

.services .flag-wrapper {
  width: 35px;
  height: 25px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border: 1px solid #eee;
}

.services .flag-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services .country-mini-card h5 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-color);
}

.services .country-mini-card small {
  font-size: 12px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  display: block;
}

.services .country-mini-card:hover {
  background: var(--surface-color);
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Ajustări Responsivitate */
@media (max-width: 991px) {
  .services .routes-image-wrapper img {
    height: 250px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  /* Containerul care ține coloanele/cardurile */
  /* Ajustăm părintele pentru a centra elementele de tip coloană */
  .services .row {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrează cardurile pe orizontală */
    gap: 15px; /* Spațiu între carduri */
  }

  /* Resetăm coloanele Bootstrap (dacă le folosești) pentru a nu mai forța lățimea completă */
  .services [class*="col-"] {
    width: auto !important; 
    max-width: 90%; /* Prevenim ieșirea din ecran pe ecrane foarte mici */
    padding: 0;
  }

  .services .country-mini-card {
    display: inline-flex; /* Cardul va avea lățimea egală cu conținutul său */
    width: fit-content;   /* Adaptare strictă pe lungimea cuvântului */
    min-width: 160px;     /* Opțional: o lățime minimă pentru aspect estetic */
    padding: 10px 20px;
    gap: 12px;
    margin: 0 auto;       /* Asigură centrarea suplimentară */
    height: auto;
  }

  .services .country-mini-card h5 {
    font-size: 14px;
    white-space: nowrap; /* Menține numele țării pe un singur rând */
  }
}

/*--------------------------------------------------------------
# Why Cards Section - DE CE KBN
--------------------------------------------------------------*/
.why-cards {
  padding: 60px 0;
}

/* Containerul Grid Principal */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 coloane egale */
  gap: 25px;
  margin-top: 0px;
}

/* Cardul Individual */
.why-cards .bento-card {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 15px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(215, 34, 41, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Cardurile care ocupă 2 coloane */
.why-cards .span-col-2 {
  grid-column: span 2;
  flex-direction: row; /* Aliniere orizontală pe ecrane mari */
  align-items: center;
  gap: 30px;
}

/* Hover Effect */
.why-cards .bento-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

/* Styling Iconiță */
.why-cards .card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.why-cards .span-col-2 .card-icon {
  margin-bottom: 0; /* Scoatem marginea când e layout row */
}

.why-cards .card-icon i {
  font-size: 30px;
  color: var(--accent-color);
}

.why-cards .bento-card:hover .card-icon {
  background: var(--accent-color);
}

.why-cards .bento-card:hover .card-icon i {
  color: #ffffff;
}

/* Text Content */
.why-cards .card-info h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--default-color);
  margin-bottom: 10px;
}

.why-cards .card-info p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  margin: 0;
}

/* Iconiță de fundal subtilă pentru cardurile mari */
.why-cards .card-bg-icon {
  position: absolute;
  right: -15px;
  bottom: -20px;
  opacity: 0.075;
  transform: rotate(-15deg);
  transition: 0.5s ease;
  pointer-events: none;
}

.why-cards .card-bg-icon i {
  font-size: 140px;
  color: var(--accent-color);
}

.why-cards .bento-card:hover .card-bg-icon {
  transform: scale(1.1) rotate(0deg);
  opacity: 0.15;
}

.why-footer {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

/* Liniile laterale pe Desktop */
.signature-line {
  height: 2px;
  flex-grow: 1;
  background: linear-gradient(
    to var(--direction, right), 
    transparent, 
    color-mix(in srgb, var(--accent-color), transparent 50%)
  );
  max-width: 200px;
}

/* Inversăm gradientul pentru linia din dreapta */
.why-footer div:last-child {
  --direction: left;
}

.signature-content {
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent-color);
  font-size: 18px;
  text-transform: uppercase;
}

.separator {
  color: var(--accent-color);
  font-weight: 500;
  opacity: 0.75;
}

.slogan-text {
  margin: 0;
  font-size: 18px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-weight: 500;
}

/* ==========================================
   Responsivitate pentru Mobile 
   ========================================== */

@media (max-width: 768px) {
  .why-footer {
    flex-direction: column;
    gap: 15px;
    padding: 0px 0px;
  }
  
  /* Ascundem liniile laterale de pe desktop */
  .signature-line {
    display: none; 
  }
  
  .signature-content {
    flex-direction: column;
    text-align: center;
    gap: 0;
    width: 100%;
  }
  
  .separator {
    display: none; /* Ascundem bara verticală | */
  }
  
  .brand-name {
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 8px;
  }

  /* Linia cu gradient centrat sub nume */
  .brand-name::after {
    content: "";
    display: block;
    width: 150px; /* Lungimea liniei pe mobil */
    height: 2px;
    margin-top: 12px;
    /* Gradient: Transparent -> Culoare -> Transparent */
    background: linear-gradient(
      to right, 
      transparent, 
      var(--accent-color), 
      transparent
    );
  }
  
  .slogan-text {
    font-size: 16px;
    margin-top: 5px;
  }
}
/* --- RESPONSIVITATE --- */

/* Pentru Tablete (Max 992px) */
@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 pe rând */
  }

  .why-cards .span-col-2 {
    grid-column: span 2;
    flex-direction: column; /* Revenim la vertical pe spații mai mici */
    align-items: flex-start;
  }
  
  .why-cards .span-col-2 .card-icon {
    margin-bottom: 20px;
  }
}

/* Pentru Mobile (Max 768px) */
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr; /* 1 singur card pe rând */
    gap: 20px;
  }

  .why-cards .span-col-2 {
    grid-column: span 1; /* Cardurile mari devin normale pe mobil */
  }

  .why-cards .bento-card {
    padding: 30px 25px;
  }

  .why-cards .card-info h4 {
    font-size: 19px;
  }
}


/*--------------------------------------------------------------
# CTA Premium Section
--------------------------------------------------------------*/
.cta-premium {
  padding: 60px 0;
  /* Fundal var(--accent-color) cu transparenta 10% */
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  position: relative;
  overflow: hidden;
}

/* Cardul principal - Tabul separat */
.cta-wrapper {
  background-color: var(--default-color);
  border-radius: 30px;
  padding: 80px 60px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.cta-body h2 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  font-style: italic;
  display: block; /* forțează h2 să fie block */
  margin-bottom: 2px; /* spațiu între titluri */
}

.cta-body h2 span {
  color: var(--accent-color);
  font-size: 1.85rem;
  display: block; /* span-ul devine block pentru spațiu */
  margin-top: 10px; /* spațiu între span și titlul următor */
  margin-bottom: 30px;
}

/* Mobil */
@media (max-width: 768px) {
  .cta-body h2 {
    font-size: 2.25rem;
    margin-bottom: 15px;
  }

  .cta-body h2 span {
    font-size: 1.5rem;
    margin-top: 20px;
  }
}


.cta-body p {
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
}

/* Butoane Modernizate */
.cta-btns {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.btn-cta-main {
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 18px 35px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.btn-cta-main:hover {
  transform: translateY(-5px);
  background-color: var(--accent-color);
  box-shadow: 0 15px 30px color-mix(in srgb, var(--surface-color), transparent 85%);
  color: #ffffff;
}

.btn-cta-tel {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-tel .icon-circle {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-cta-tel .tel-info {
  display: flex;
  flex-direction: column;
}

.btn-cta-tel .tel-info small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.btn-cta-tel .tel-info span {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
}

.btn-cta-tel:hover .icon-circle {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: rotate(15deg);
}

.btn-cta-tel:hover .tel-info span {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Imaginea (Tab-ul Vizual Separar) */
.cta-visual-container {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.image-frame {
  width: 100%;
  max-width: 550px;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 5px solid rgba(255, 255, 255, 0.05); /* Rama subtila */
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-frame:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
  .cta-wrapper {
    padding: 60px 30px;
    text-align: center;
  }
  .cta-body p {
    margin: 0 auto 35px auto;
  }
  .cta-btns {
    justify-content: center;
  }
  .cta-visual-container {
    justify-content: center;
    margin-top: 50px;
  }
  .image-frame {
    height: 280px;
  }
}


/*--------------------------------------------------------------
# Fleet Section - FLOTA DE TRANSPORT
--------------------------------------------------------------*/
/* Fleet Section Styling */
.fleet-gallery {
  padding: 60px 0;
}

/* Bento Grid */
.bento2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 15px;
  grid-auto-flow: dense;
}

.bento2-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #f4f4f4;
}

.bento2-item.tall { grid-row: span 2; }
.bento2-item.wide { grid-column: span 2; }

.bento2-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

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

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

.bento2-item:hover img { transform: scale(1.1); }
.bento2-item:hover .bento2-overlay { opacity: 1; }

/* Subcontractors Section */
.subcontractors-modern {
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  overflow: hidden;
}

.sub-image-container {
  height: 100%;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.sub-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ff4d00;
  color: white;
  padding: 6px 15px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.subcontractors-modern h3 {
  font-size: 25px;
  font-weight: 800;
  color: var(--default-color);
}

.subcontractors-modern p {
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
}

.fleet-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0px;
}

.fleet-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #444;
}

.fleet-features i {
  color: #ff4d00;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 992px) {
  .bento2-grid { 
    grid-template-columns: repeat(2, 1fr); 
    grid-auto-rows: auto; /* Permitem rândurilor să se adapteze */
  }
  .sub-image-container { min-height: 250px; }
}

@media (max-width: 576px) {
  .bento2-grid { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; /* Spațiu mai mare între imagini pe verticală */
  }

  .bento2-item { 
    height: auto; /* Eliminăm înălțimea fixă */
    width: 100%;
  }

  .bento2-item img { 
    width: 100%; 
    height: auto; /* Imaginea își păstrează proporția naturală */
    object-fit: contain; /* Garantează că întreaga imagine este vizibilă */
    display: block;
  }
  
  /* Resetăm span-urile pe mobil pentru a nu crea goluri în layout-ul flex */
  .bento2-item.tall, .bento2-item.wide { 
    grid-row: auto;
    grid-column: auto;
  }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  /* Left Sidebar */
  /* Testimonials Carousel */
  /* Swiper Pagination */
  /* Responsive Styles */
}

.testimonials .testimonials-sidebar {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-right: 40px;
}

.testimonials .testimonials-sidebar .sidebar-content .satisfied-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  margin-bottom: 24px;
}

.testimonials .testimonials-sidebar .sidebar-content .satisfied-badge i {
  font-size: 12px;
}

.testimonials .testimonials-sidebar .sidebar-content h3 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--default-color);
  margin-bottom: 15px;
}

.testimonials .testimonials-sidebar .sidebar-content p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  margin-bottom: 30px;
}

.testimonials .testimonials-carousel {
  padding-bottom: 60px;
}

.testimonials .testimonials-carousel .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-card {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 15px;
  padding: 32px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
}

.testimonials .testimonial-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #9333ea 40%));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonials .testimonial-card:hover::before {
  opacity: 1;
}

.testimonials .testimonial-card:hover .quote-mark {
  transform: scale(1.15);
  background: var(--accent-color);
  color: var(--contrast-color);
}

.testimonials .testimonial-card .card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.testimonials .testimonial-card .card-top .stars {
  display: flex;
  gap: 4px;
}

.testimonials .testimonial-card .card-top .stars i {
  color: #f59e0b;
  font-size: 16px;
}

.testimonials .testimonial-card .card-top .quote-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.testimonials .testimonial-card .card-top .quote-mark i {
  font-size: 22px;
}

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

.testimonials .testimonial-card .author-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  text-align: center;
}
.testimonials .testimonial-card .author-info .author-details h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--default-color);
  margin: 0 0 1px;
}

.testimonials .testimonial-card .author-info .author-details span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.testimonials .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: color-mix(in srgb, var(--default-color), transparent 75%);
  opacity: 1;
  margin: 0 6px;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 32px;
  border-radius: 10px;
  background: var(--accent-color);
}

@media (max-width: 1199px) {
  .testimonials .testimonials-sidebar {
    padding-right: 24px;
  }

  .testimonials .testimonials-sidebar .sidebar-content h3 {
    font-size: 28px;
  }

  .testimonials .testimonial-card {
    padding: 28px;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonials-sidebar {
    padding-right: 0;
    padding-bottom: 48px;
    text-align: center;
  }

  .testimonials .testimonials-sidebar .avatar-stack {
    justify-content: center;
  }

  .testimonials .testimonials-sidebar .sidebar-content h3 {
    font-size: 26px;
  }

  .testimonials .testimonials-sidebar .sidebar-content p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {

  .testimonials .testimonials-sidebar .avatar-stack .avatar,
  .testimonials .testimonials-sidebar .avatar-stack .avatar-count {
    width: 42px;
    height: 42px;
  }

  .testimonials .testimonials-sidebar .sidebar-content .satisfied-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .testimonials .testimonials-sidebar .sidebar-content h3 {
    font-size: 24px;
  }

  .testimonials .testimonials-sidebar .sidebar-content p {
    font-size: 15px;
  }

  .testimonials .testimonials-sidebar .sidebar-content .btn-view-all {
    padding: 12px 28px;
    font-size: 14px;
  }

  .testimonials .testimonial-card {
    padding: 24px;
  }

  .testimonials .testimonial-card .card-top .stars i {
    font-size: 14px;
  }

  .testimonials .testimonial-card .card-top .quote-mark {
    width: 40px;
    height: 40px;
  }

  .testimonials .testimonial-card .card-top .quote-mark i {
    font-size: 18px;
  }

  .testimonials .testimonial-card .testimonial-text {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .testimonials .testimonial-card .author-info {
    gap: 12px;
    padding-top: 16px;
  }

  .testimonials .testimonial-card .author-info .author-img {
    width: 46px;
    height: 46px;
  }

  .testimonials .testimonial-card .author-info .author-details h5 {
    font-size: 15px;
  }

  .testimonials .testimonial-card .author-info .author-details span {
    font-size: 13px;
  }

  .testimonials .testimonials-carousel {
    padding-bottom: 50px;
  }
}

@media (max-width: 575px) {

  .testimonials::before,
  .testimonials::after {
    display: none;
  }

  .testimonials .testimonials-sidebar {
    padding-bottom: 40px;
  }

  .testimonials .testimonials-sidebar .avatar-stack {
    margin-bottom: 24px;
  }

  .testimonials .testimonials-sidebar .avatar-stack .avatar,
  .testimonials .testimonials-sidebar .avatar-stack .avatar-count {
    width: 38px;
    height: 38px;
    margin-left: -10px;
  }

  .testimonials .testimonials-sidebar .avatar-stack .avatar:first-child,
  .testimonials .testimonials-sidebar .avatar-stack .avatar-count:first-child {
    margin-left: 0;
  }

  .testimonials .testimonials-sidebar .avatar-stack .avatar-count {
    font-size: 11px;
  }

  .testimonials .testimonials-sidebar .sidebar-content h3 {
    font-size: 22px;
  }

  .testimonials .testimonials-sidebar .sidebar-content p {
    font-size: 14px;
  }

  .testimonials .testimonial-card {
    padding: 20px;
  }

  .testimonials .testimonial-card .card-top {
    margin-bottom: 20px;
  }

  .testimonials .testimonial-card .card-top .quote-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .testimonials .testimonial-card .card-top .quote-mark i {
    font-size: 16px;
  }

  .testimonials .testimonial-card .testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .testimonials .testimonial-card .author-info .author-img {
    width: 42px;
    height: 42px;
    border-width: 2px;
  }

  .testimonials .testimonial-card .author-info .author-details h5 {
    font-size: 14px;
  }

  .testimonials .testimonial-card .author-info .author-details span {
    font-size: 12px;
  }

  .testimonials .testimonials-carousel {
    padding-bottom: 45px;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 5px;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 26px;
  }
}


/*--------------------------------------------------------------
# Contact Section - DATE DE CONTACT
--------------------------------------------------------------*/
.contact-portal-section {
    background: #ffffff;
    position: relative;
    padding: 60px 0;
}

.contact-card-premium {
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.contact-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.card-status {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--default-color);
    letter-spacing: 1px;
    opacity: 0.7;
}

/* 1. Secțiunea de Text Superior */
.contact-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-icon {
    width: 45px;
    height: 45px;
    border-radius: 30px;
    object-fit: cover;
}

.contact-card-premium h4 {
    color: var(--default-color);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.address-text {
    color: var(--default-color);
    font-weight: 400;
    margin-bottom: 0 !important; /* Resetat pentru a lăsa info-container să gestioneze spațiul */
    font-size: 0.9rem;
    line-height: 1.4;
    min-height: 45px; /* Menține alinierea chiar dacă adresa e pe 1 sau 2 rânduri */
}

/* 2. Container Central pentru Date (FISCAL + LOGISTIC) */
/* Această secțiune asigură distanța egală sus-jos */
.info-container {
    margin: 30px 0; 
    display: flex;
    flex-direction: column;
    gap: 15px; /* Distanța între rândul fiscal și cel logistic */
    justify-content: center;
}

.fiscal-details {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--default-color);
    opacity: 0.9;
}

.fiscal-details span:not(:last-child)::after {
    content: "|";
    margin-left: 15px;
    color: var(--accent-color);
    opacity: 0.5;
}

.logistics-ids {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.id-badge2 {
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--default-color);
    opacity: 0.9;
}

.id-badge2 strong {
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 800;
}

/* 3. Secțiunea de Butoane (Jos) */
.contact-actions {
    margin-top: 15px; /* Împinge totul la baza cardului */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.btn-contact.call {
    color: #000000;
    background: color-mix(in srgb, var(--accent-color), transparent 75%);
}

.btn-contact.call:hover {
    background: var(--accent-color);
    color: #ffffff;
}

.btn-contact.email-btn-alt {
    color: #000000;
    background: color-mix(in srgb, var(--default-color), transparent 75%);
}

.btn-contact.email-btn-alt:hover {
    background: var(--default-color);
    color: #ffffff;
}

/* --- PUNCTE DE LUCRU (CARD 3) --- */

/* Aceeași cutie ca la steaguri */
.contact-icon-box i {
    line-height: 80px; /* Centrare verticală pentru iconiță */
}

/* Containerul care gestionează spațiul central */
.info-container2 {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 25px; /* Spațiu între cele două puncte de lucru */
    flex-grow: 1; /* Împinge totul să ocupe spațiul central */
    justify-content: center;
}

.work-points-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.work-point-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Iconița mică de tip "bifă" deasupra fiecărei adrese */
.point-icon {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.work-point-item strong {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--default-color);
    display: block;
    line-height: 1.2;
}

.work-point-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--default-color);
    opacity: 0.9;
    margin-top: 2px;
}

/* ================================================================
   CARD HARTĂ & FORMULAR UNITAR (SIMETRIC)
   ================================================================ */
.contact {
  padding: 30px 0;
}

/* Cardul principal - Am setat un padding uniform pe toate laturile */
.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 40px; /* Spațiul egal de pe margini (stânga, dreapta, sus, jos) */
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Layout-ul interior cu spațiu între coloane */
.contact .contact-main-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px; /* Spațiul dintre hartă și formular */
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 1fr 1fr; /* Două coloane egale pentru simetrie perfectă */
    align-items: stretch;
  }
}

/* Coloana din stânga (Hartă + Buton) */
.contact .map-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact .map-wrapper {
  height: 350px;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  flex-grow: 1;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    min-height: 450px;
  }
}

/* Butonul Google Maps */
.btn-google-maps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--default-color);
  color: #ffffff;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-google-maps:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/* --- SECȚIUNEA DREAPTĂ (STILURI NEMODIFICATE CONFORM CERINȚEI) --- */

.contact .contact-form-container h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--accent-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--default-color);
  border-radius: 2px;
}

.contact .contact-form-container > p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 95%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, #000000, transparent 15%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  widith: auto;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: var(--default-color);
}

.form-check {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.form-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin: 0;
  cursor: pointer;
}

.form-check-label {
  margin-left: 8px;
  line-height: 1;
  font-style: normal;
}

.form-check-label a {
  color: var(--accent-color);
}

.form-check-label a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.form-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin: 0;
  cursor: pointer;
}


.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: #000000;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }
}

/*--------------------------------------------------------------
# Privacy Section - POLITICA CONFIDENȚIALITATE
--------------------------------------------------------------*/
.privacy {
  padding: 30px 0 60px;
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.5rem;
  color: var(--accent-color) !important;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 0 1px currentColor;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.75rem;
  color: var(--accent-color) !important;
  margin-bottom: 25px;
  font-weight: 700;
  text-shadow: 0 0 1px currentColor;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p a:hover {
  color: var(--default-color);
  text-decoration: underline;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "\f26b";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--accent-color);
}


.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 0px;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--accent-color) !important;
  margin-bottom: 20px;
  font-weight: 800;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: rgba(0, 0, 0, 0.15);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--accent-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

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

.floating_btn {
  position: fixed;
  bottom: 75px;   /* WhatsApp jos */
  right: 15px;    /* Aliniere la dreapta */
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

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

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

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

.lang-widget {
  position: fixed;
  bottom: 15px;
  left: 15px;
  width: 90px;
  z-index: 9999;
  font-family: 'Inter', Arial, sans-serif;
}

/* Butonul principal */
.lang-widget .current-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 45px;
  background: #ffffff;
  border: 1px solid #d72229; /* Setează direct culoarea roșie pentru consistență */
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* SĂGEATA - Doar pentru Desktop */
@media (min-width: 992px) {
  .lang-widget .current-lang::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%; 
    width: 12px;
    height: 12px;
    border-left: 2.5px solid #d72229;
    border-top: 2.5px solid #d72229;
    transform: translateX(-50%) rotate(45deg); 
    pointer-events: none;
    margin-bottom: 8px;
    opacity: 0.3; 
    transition: opacity 0.3s ease, margin-bottom 0.3s ease;
  }

  .lang-widget .current-lang:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  .lang-widget:hover:not(.open) .current-lang::after {
    opacity: 1;
    animation: arrowFlyStrictlyUp 1.2s infinite ease-in-out;
  }
}

/* MOBIL - Sincronizare Puls cu WhatsApp */
@media (max-width: 991px) {
  .lang-widget .current-lang::after {
    display: none; 
  }

  /* Puls identic cu WhatsApp ca ritm, dar culoare #d72229 */
  .lang-widget:not(.open) .current-lang {
    animation: buttonPulseLanguage 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    box-shadow: 0 0 0 0 #d72229;
  }
}

/* Ascundem săgeata de pe desktop când meniul e deschis */
.lang-widget.open .current-lang::after {
  display: none !important;
}

/* ANIMAȚIE SĂGEATĂ (Desktop) */
@keyframes arrowFlyStrictlyUp {
  0% { margin-bottom: 2px; opacity: 0; }
  30% { opacity: 1; }
  100% { margin-bottom: 28px; opacity: 0; }
}

/* NOUA ANIMAȚIE PULS LIMBA (Sincronizată) */
@keyframes buttonPulseLanguage {
  to {
    /* Unda se extinde la 10px, la fel ca la WhatsApp */
    box-shadow: 0 0 0 10px rgba(215, 34, 41, 0);
  }
}

/* Container Opțiuni */
.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;
}

/* Limbile secundare */
.lang-widget .lang-options li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 45px;
  background: #ffffff;
  border: 1px solid rgba(215, 34, 41, 0.2); 
  border-radius: 10px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px) scale(0.9); 
  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);
}

/* Efect Cascadă la deschidere */
.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; }
.lang-widget.open .lang-options li:nth-child(3) { transition-delay: 0.12s; }

/* Efect Hover Desktop */
@media (min-width: 992px) {
  .lang-widget .lang-options li:hover {
    border-color: #d72229 !important;
    transform: translateX(8px) !important; 
    box-shadow: -2px 4px 10px rgba(0, 0, 0, 0.1) !important;
    transition-delay: 0s !important; 
    background-color: #fff !important;
  }
}

/* Stiluri imagini și text */
.lang-widget img {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
}

.lang-widget span {
  font-size: 15px;
  font-weight: 700;
  color: #000;
}

/*--------------------------------------------------------------
# Banner avertizare fraudă
--------------------------------------------------------------*/
:root {
  --fraud-red: #e02b25;
  --fraud-red-soft: #f28d89;
}

.fraud-banner {
  position: relative;
  z-index: 998;
  display: block;
  max-width: 100%;
  overflow: hidden;
  background: var(--default-color);
  color: #fff;
  line-height: 1.3;
}

.fraud-banner,
.fraud-banner *,
.fraud-banner *::before,
.fraud-banner *::after {
  box-sizing: border-box;
}

.fraud-banner::before,
.fraud-banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  background: var(--fraud-red);
  pointer-events: none;
}

.fraud-banner::before {
  left: 0;
}

.fraud-banner::after {
  right: 0;
}

.fraud-banner__inner {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 10px 30px;

  display: flex;
  align-items: center;
  gap: 20px;
}

.fraud-banner p {
  margin: 0;
}

.fraud-banner__shield {
  flex: 0 0 auto;
  width: 32px;
  height: auto;
}

.fraud-banner__titles {
  flex: 0 0 auto;
  min-width: 0;
}

.fraud-banner__title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.fraud-banner__subtitle {
  color: var(--fraud-red-soft);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.fraud-banner__address {
  flex: 1 1 auto;
  min-width: 0;

  display: flex;
  align-items: center;
  gap: 12px;
}

.fraud-banner__lead {
  min-width: 0;
  color: #d3d9e6;
  font-size: 13px;
}

.fraud-banner__email {
  flex: 0 0 auto;
  padding: 6px 14px;
  background: #fff;
  color: var(--fraud-red);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  user-select: all;
}

.fraud-banner__rules {
  flex: 0 0 auto;
  font-size: 13.5px;
  font-weight: 700;
}

.fraud-banner__meta {
  flex: 0 0 auto;
  margin-left: auto;
  text-align: right;
}

.fraud-banner__note {
  color: #aab2c4;
  font-size: 12.5px;
}

.fraud-banner__company {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.fraud-banner__titles,
.fraud-banner__address,
.fraud-banner__rules {
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 1400px) {
  .fraud-banner__inner {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .fraud-banner__titles,
  .fraud-banner__address,
  .fraud-banner__rules {
    padding-right: 0;
    border-right: 0;
  }

  .fraud-banner__address {
    flex: 1 1 100%;
    order: 3;
  }

  .fraud-banner__meta {
    order: 2;
  }

  .fraud-banner__rules {
    order: 4;
  }
}

@media (max-width: 640px) {
  .fraud-banner::before,
  .fraud-banner::after {
    width: 5px;
  }

  .fraud-banner__inner {
    padding: 10px 16px;
    gap: 8px 14px;
  }

  .fraud-banner__title {
    font-size: 16px;
    white-space: normal;
  }

  .fraud-banner__subtitle {
    white-space: normal;
  }

  .fraud-banner__address {
    flex-wrap: wrap;
    gap: 8px;
  }

  .fraud-banner__email {
    font-size: 14px;
    white-space: normal;
    word-break: break-all;
  }

  .fraud-banner__meta {
    margin-left: 0;
    text-align: left;
  }

  .fraud-banner__rules {
    font-size: 12.5px;
  }
}