@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: "Raleway",  sans-serif;
  --nav-font: "Poppins",  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: #000000; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1c4b56; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e21f28; /* 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: rgba(255, 255, 255, 0.7);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* 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: #051e23; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #008cad; /* 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: #f2f8f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #031013;
  --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);
  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);
}

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

.header .header-container {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.25);
}

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

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

@media (max-width: 768px) {
  .header .logo img {
    max-height: 50px; /* setează aici înălțimea dorită pe mobil */
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #ffffff;
    font-size: 30px;
    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: 75px;       
  left: 20px;      
  right: 20px;     
  padding: 10px 0;
  margin: 0;
  border-radius: 10px;
  background-color: var(--nav-mobile-background-color);
  overflow: visible; 
  transition: 0.3s;
  z-index: 99999;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  height: auto;     
}

  .navmenu a,
  .navmenu a:focus {
    color: #000000;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    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: #ffffff;
    position: absolute;
    font-size: 30px;
    top: 27px;
    right: 25px;
    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
--------------------------------------------------------------*/
.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: 30px;
  display: inline-flex;    
  width: fit-content;      
}

.footer .footer-about .logo img {
  max-height: 125px;
  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 10%);
  max-width: 475px;
}

.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); 
}

.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 10%);
  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 10%);
  text-decoration: none;
}

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

.footer .footer-top .row {
  justify-content: center;
  text-align: center;
}

.footer .footer-about,
.footer .footer-links,
.footer .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer .footer-about p {
  margin-left: auto;
  margin-right: auto;
}

.footer .social-links {
  justify-content: center;
}

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

.footer .footer-contact p {
  text-align: center;
}

.footer .copyright {
  padding: 25px 15px;
  border-radius: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 120px;
}

.footer .copyright p {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.footer .copyright .credits {
  margin-top: 5px;
  font-size: 15px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .footer .copyright {
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
    min-height: 100px;
    padding: 20px 15px;
  }

  .footer .copyright p {
    font-size: 13px;
  }

  .footer .copyright .credits {
    font-size: 12px;
    margin-top: 6px;
  }
}

@media (max-width: 991px) {
  .footer {
    text-align: center;
  }

.footer .footer-about .logo {
    display: flex;
    justify-content: center;
    width: 100%;       
    margin-left: auto;  
    margin-right: auto; 
    margin-bottom: 0px;
}
  
  .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;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#custom-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    animation: fadeOutCustom 0.5s forwards;
    animation-delay: 1s;
    pointer-events: none;
}

.preloader-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.preloader-logo {
    width: 90%;             
    max-width: 850px;       
    height: auto;               
    display: block;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInLogo 0.5s ease-out;
}

@keyframes fadeOutCustom {
    0% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
}

@keyframes fadeInLogo {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

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

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

.scroll-top i {
  font-size: 27px;
  color: var(--surface-color); 
  line-height: 0;
  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;
}

@media (max-width: 1199px) {

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

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

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

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

.section-title h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--default-color);
  letter-spacing: 2px;
  margin: 0;
  line-height: 1.1;
}

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

.fancy-divider .line {
  width: 90px;
  height: 2px;
  border-radius: 10px;
  /* Gradient: Transparent -> Culoare Accent */
  background: linear-gradient(90deg, transparent, var(--accent-color));
  opacity: 0.8;
}

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

.fancy-divider .dot {
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid var(--accent-color); 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 10px color-mix(in srgb, var(--accent-color), transparent 80%);
}

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

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

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

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

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

.section-title2 {
  text-align: center;
  padding: 60px 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 span {
  position: absolute;
  top: 10px;
  color: color-mix(in srgb, #bd1a2d, transparent 85%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1;
}

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

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

  .section-title2 span {
    font-size: 35px;
  }

@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 Section - ACASĂ
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 145px 0 90px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
background: linear-gradient(
  to bottom,
  color-mix(in srgb, var(--background-color), transparent 25%) 0%,
  color-mix(in srgb, var(--background-color), transparent 35%) 50%,
  color-mix(in srgb, var(--background-color), transparent 0%) 100%);

  z-index: 1;
}

.brand-wrapper {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-company-name {
  font-size: 4.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--contrast-color);
  margin-bottom: 1.5rem;
}

.hero-services-line {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 0rem;
}

.services-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem; 
  margin-top: 1rem;
}

.service-item {
  font-size: 1.25rem; 
  font-weight: 600;
  color: var(--contrast-color);
  text-transform: uppercase;
  letter-spacing: 5px;
  white-space: nowrap; 
  transition: all 0.3s ease;
}

.divider {
  width: 2px;
  height: 25px; 
  background-color: var(--accent-color);
  box-shadow: 0 0 8px var(--accent-color);
  opacity: 0.85;
}

.hero-text {
  position: relative;
  z-index: 2;
  margin-bottom: 2.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #ffffff;
  max-width: 800px;
  margin: 2.5rem auto 2.5rem;
  opacity: 0.85;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-buttons .btn {
  background: transparent;
  border: 1px solid var(--accent-color);
  color: #fff;
  padding: 15px 45px;
  border-radius: 15px;
  font-size: 0.95rem; 
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.75px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  transform: translateY(-5px);
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
  border-color: var(--accent-color);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

.hero-stats-minimal {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  background: rgba(0, 140, 173, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 40px;
  border-radius: 30px;
  backdrop-filter: blur(15px);
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
}

.stat-small-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.stat-big-value {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--contrast-color);
  line-height: 1;
}

.stat-big-value span {
  font-size: 0.95rem;
  font-weight: 400;
  margin-left: 4px;
  opacity: 0.5;
}

.v-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 120px 0 60px;
    align-items: flex-start;
  }

  .brand-wrapper {
    margin-bottom: 2rem;
  }

  .hero-company-name {
    font-size: 3rem;
  }

  .hero-services-line {
    font-size: 1rem;
    letter-spacing: 0.25rem;
    margin-left: 0;
    display: block;
    margin-top: 8px;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 60px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-stats-minimal {
    width: 100%;
    flex-direction: column;
    gap: 18px;
    border-radius: 20px;
    margin-top: 30px;
    padding: 15px 20px;
  }

  .v-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-background img {
    content: url("../img/hero/cxp-trans-hero-mobile-01.webp");
  }
}

@media (max-width: 768px) {

  .services-row {
    flex-direction: column;
    gap: 12px; 
    margin-top: 15px;
  }

  .divider {
    display: none;
  }

  .service-item {
    font-size: 0.95rem; /* aici modifici dimensiunea textului */
    letter-spacing: 2px;
    white-space: normal;
    text-align: center;
  }

}

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

.about .image-wrapper {
  position: relative;
}

.about .image-wrapper .image-box {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about .image-wrapper .image-box img {
  transition: 0.3s transform;
}

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

.about .image-wrapper .experience-box {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 5;
  white-space: nowrap;
  overflow: hidden;
  animation: floating 3s ease-in-out infinite;
}

.about .image-wrapper .experience-box i {
  font-size: 30px;
  color: var(--accent-color);
  line-height: 1;
}

.about .image-wrapper .experience-box .years {
  font-size: 25px;
  font-weight: 900;
  color: var(--contrast-color);
  line-height: 1;
}

.about .image-wrapper .experience-box .text {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--contrast-color);
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 1;
}

.about .image-wrapper .experience-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shine 3s infinite linear;
}

@keyframes floating {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 150%; }
  100% { left: 150%; }
}

.about .content {
  padding-left: 2rem;
}

.about .content .section-header {
  margin-bottom: 2rem;
}

.about .content .section-header .subtitle {
  display: inline-block;
  background-color: color-mix(in srgb, var(--default-color), transparent 10%);
  color: var(--accent-color);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.about .content .section-header h2 {
  font-size: 1.85rem;
  margin-bottom: 0;
  font-weight: 800;
  color: var(--accent-color);
}

.about .content .highlight-text {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 2rem;
}

.about .content .features-list {
  margin-bottom: 0rem;
}

.about .content .features-list .feature-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about .content .features-list .feature-item:last-child {
  margin-bottom: 0;
}

.about .content .features-list .feature-item .icon-box {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  transition: 0.3s;
}

.about .content .features-list .feature-item .icon-box:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
}

.about .content .features-list .feature-item .text h4 {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.about .content .features-list .feature-item .text p {
  font-size: 1.05rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

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

  .about .content {
    padding-left: 0;
    margin-top: 0px;
  }

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

  .about .content .highlight-text {
    text-align: center;
    margin-bottom: 60px;
  }

  .about .content .features-list .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .about .content .features-list .feature-item .icon-box {
    margin-bottom: 5px;
  }

  .about .content .features-list .feature-item .text h4 {
    font-size: 1.1rem;
  }

  .about .content .features-list .feature-item .text p {
    font-size: 0.95rem;
  }
}


/*--------------------------------------------------------------
# Transport Section - SERVICII
--------------------------------------------------------------*/
.transport {
  padding: 60px 0 30px;
  overflow: visible;
}

.transport .transport-truck {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.transport .transport-truck:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.transport .transport-truck .truck-overlay {
  position: relative;
  height: 100%;
  width: 100%;
}

.transport .transport-truck .truck-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.transport .transport-truck .truck-overlay:hover img {
  transform: scale(1.05);
}

.transport .transport-truck .truck-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 1) 100%);
  z-index: 1;
}

.transport .transport-truck .truck-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 2;
  color: white;
  text-align: center;
}

.transport .transport-truck .truck-info h3 {
  font-size: 35px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.transport .transport-truck .truck-info h4 {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.transport .transport-truck .truck-info .description {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--background-color), transparent 10%);
}

.transport .transport-truck .truck-info .truck-meta {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
  font-size: 14px;
}

.transport .transport-truck .truck-info .explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--accent-color);
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-right: 20px;
}

.transport .transport-truck .truck-info .explore-btn:last-child {
  margin-right: 0;
}

.transport .transport-truck .truck-info .explore-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
}

.transport .transport-truck .truck-info .explore-btn i {
  transition: transform 0.3s ease;
}

.transport .compact-truck {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.085);
  transition: all 0.3s ease;
  height: 100%; 
}

.transport .compact-truck:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  transform: translateX(5px);
}

.transport .compact-truck .truck-image {
  flex-shrink: 0;
  width: 200px;
  position: relative;
  overflow: hidden;
}

.transport .compact-truck .truck-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.transport .compact-truck:hover .truck-image img {
  transform: scale(1.1);
}

.transport .compact-truck .truck-details {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.transport .compact-truck .truck-details h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 10px;
  line-height: 1.5;
}

.transport .compact-truck .truck-details .brief {
  font-size: 14px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 10px;
}

.equipment-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  padding: 5px 0;
}

.equipment-item {
  display: flex;
  align-items: center;
  gap: 5px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease;
}

.equipment-item:hover {
  background: var(--accent-color);
  color: #fff;
}

.transport .row > .col-12:not(:last-child) {
  margin-bottom: 25px;
}

.transport .row > .col-12:last-child {
  margin-bottom: 0;
}

.col-lg-6.flex-column {
  display: flex;
  flex-direction: column;
}

.col-lg-6.flex-column > .row {
  flex: 1;
}

.col-lg-6.flex-column .col-12 {
  display: flex;
  flex: 1;
}

@media (max-width: 992px) {
  .transport .transport-truck {
    height: 500px;
  }

  .transport .transport-truck .truck-info h3 {
    font-size: 28px;
  }

  .transport .transport-truck .truck-info .price-info .amount {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .transport {
    padding: 30px 0;
  }

  .transport .transport-truck {
    height: 425px;
    margin-bottom: 30px;
  }

  .transport .transport-truck .truck-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .transport .transport-truck .truck-info h3 {
    font-size: 25px;
  }

  .transport .transport-truck .truck-info h4 {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .transport .transport-truck .truck-info .truck-meta {
    flex-direction: column;
    align-items: center;
  }

  .transport .transport-truck .truck-info .description {
    font-size: 15px;
    margin-bottom: 10px;
    text-align: center;
  }

  .transport .transport-truck .truck-info .explore-btn {
    margin: 0 0 20px 0;
    white-space: nowrap;
  }

  .transport .transport-truck .truck-info .explore-btn:last-child {
    margin-bottom: 0;
  }

  .transport .compact-truck {
    flex-direction: column;
    height: auto;
  }

  .transport .compact-truck .truck-image {
    width: 100%;
    height: 300px;
  }

  .transport .compact-truck .truck-details {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
  }

  .transport .compact-truck .truck-details h4 {
    font-size: 17px; 
    text-align: center;
  }

  .transport .compact-truck .truck-details .brief {
    font-size: 15px; 
    text-align: center;
  }

  .equipment-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    overflow: visible;
  }

  .equipment-item {
    width: 100%;
    justify-content: center;
  }

  .equipment-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
  }
}

.services-modern {
  padding: 30px 0 30px;
  overflow: visible;
}

.route-master-card-mini {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.085);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  max-width: 1200px; 
  margin: 0px auto;
}

.image-side-full {
  height: 100%;
  width: 100%;
}

.image-side-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-side-compact {
  padding: 30px;
}

.label-accent {
  color: var(--default-color);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  display: block;
  margin-bottom: 5px;
}

.intro-text h2 {
  font-size: 30px;
  color: var(--accent-color);
  font-weight: 900;
  margin-bottom: 12px;
}

.intro-text p {
  font-size: 15px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 30px;
}

.block-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.75px;
}

.block-title i {
  color: var(--accent-color);
  font-size: 25px;
}

.flags-grid-ordered {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.flag-mini-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  transition: all 0.3s ease;
}

.flag-mini-card img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}

.flag-mini-card span {
  font-size: 13px;
  font-weight: 700;
  color: var(--default-color);
}

.flag-mini-card:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .content-side-compact {
    padding: 25px 20px;
    text-align: center;
  }

  .label-accent {
    font-size: 11px;
  }

  .intro-text h2 {
    font-size: 25px;
    line-height: 1.3;
  }

  .intro-text p {
    font-size: 17px;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
  }

  .block-title {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    justify-content: center;
    font-size: 14px;
  }

  .block-title i {
    font-size: 30px;
  }

  .flags-grid-ordered {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    justify-content: center;
  }

  .flag-mini-card {
    justify-content: center;
    text-align: center;
  }

  .flags-grid-ordered .flag-mini-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .image-mobile {
    margin-top: 25px;
  }

  .image-mobile .image-side-full {
    height: auto;
  }

  .image-mobile img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }
}

.custom-benefits-section {
    padding: 30px 0 30px;
}

.info-card {
    overflow: visible;
    background: var(--surface-color);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.085);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 0%);
}

.info-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.info-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--default-color);
    margin-bottom: 0px;
}

.featured-benefit-card {
    background-image: url('../img/services/cxp-trans-services-06.webp');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    height: 100%;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.05) 100%);
    display: flex;
    justify-content: center; 
    align-items: flex-end;  
    padding: 20px;
    text-align: center;      
}

.featured-content h4 {
    color: var(--contrast-color);
    font-weight: 800;
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.featured-content p {
    color: #ffffff;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .info-card {
        width: 100%;
        margin-bottom: 0px;
        padding: 20px;
    }

    .info-card h3 {
        font-size: 1rem; 
    }

    .info-card h4 {
        font-size: 0.95rem; 
    }

    .featured-benefit-card {
        min-height: 350px; 
    }

    .featured-content h4 {
        font-size: 1.5rem;
    }

    .featured-content p {
        font-size: 0.9rem;
    }

    .featured-overlay {
        align-items: flex-end;
        padding: 15px;
    }
}

.transport-cta-section {
  padding: 30px 0 60px;
}

.transport-cta-bar {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-left: 5px solid var(--accent-color);
  border-radius: 15px;
  padding: 25px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.085);
}

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

.cta-icon {
  width: 50px;
  height: 50px;
  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;
  font-size: 24px;
}

.cta-text h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--default-color);
}

.cta-text p {
  margin: 5px 0 0 0;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.btn-transport-premium {
  background: var(--accent-color);
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 75%);
  border: 1px solid transparent;
}

.btn-transport-premium .icon-circle-shaking {
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff; 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.4s ease;
  animation: shake-animation 2s infinite ease-in-out;
}

.btn-transport-premium .phone-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

.btn-transport-premium .phone-wrapper span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: color-mix(in srgb, var(--background-color), transparent 10%);
}

.btn-transport-premium .phone-wrapper strong {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.btn-transport-premium:hover {
  background: #000000; 
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-transport-premium:hover .icon-circle-shaking {
  background: #ffffff; 
  color: var(--accent-color); 
}


@keyframes shake-animation {
  0% { transform: rotate(0deg); }
  5% { transform: rotate(20deg); }
  10% { transform: rotate(-20deg); }
  15% { transform: rotate(20deg); }
  20% { transform: rotate(-20deg); }
  25% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

@media (max-width: 991px) {
  .transport-cta-bar {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 30px;
    border-left: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
    border-bottom: 5px solid var(--accent-color);
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }

  .cta-content {
    flex-direction: column;
    gap: 10px;
  }
}

.ultra-service-section {
    padding: 60px 0;
    background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.title-wrapper {
    display: inline-block;  
    text-align: center; 
}

.main-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--default-color);
    line-height: 1.1;
    margin-bottom: 0px;
}

.main-title2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--surface-color);
    letter-spacing: 10px;
    margin-top: 5px; 
    margin-bottom: 25px;
}


.main-desc {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 5%);
    max-width: 575px;
    margin-bottom: 40px;
}

.glass-feature {
    display: flex;
    align-items: center;
    background: color-mix(in srgb, var(--default-color), transparent 25%);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 500px;
}

.glass-wrapper:last-child .glass-feature {
    margin-bottom: 0;
}

.glass-feature:hover {
    transform: translateX(10px);
}

.icon-box-modern {
    width: 50px;
    height: 50px;
    background: white;
    color: var(--accent-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-text h5 {
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 5px;
    font-weight: 800;
}

.feature-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--surface-color);
}

.modern-image-composition {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.composition-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.4s ease;
}

.composition-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.square-size {
    width: 100%;
    max-width: 400px;
}

.portrait-size {
    width: 100%;
    max-width: 275px;
    margin-top: 90px;
}

.composition-card:hover {
    transform: translateY(-10px);
}

@media (max-width: 768px) {
    .ultra-service-section {
        padding: 60px 0;
        text-align: center;
    }

    .title-wrapper {
        display: block;
        text-align: center;
    }

    .main-title {
        font-size: 2rem;
    }

    .main-title2 {
        font-size: 1.1rem;
        letter-spacing: 10px;
        margin-bottom: 20px;
    }

    .main-desc {
        font-size: 0.95rem;
        max-width: 100%;
        margin: 0 auto 40px auto;
    }

    .glass-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
        margin: 0 auto 15px auto;
        padding: 15px;
    }

    .icon-box-modern {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .feature-text h5 {
        font-size: 16px;
    }

    .feature-text p {
        font-size: 0.85rem;
    }

    .modern-image-composition {
        flex-direction: column; 
        align-items: center;
        gap: 20px; 
    }

    .composition-card {
        width: 90%;
        max-width: 400px;
        height: auto;
        margin: 0 auto;
    }

    .square-size,
    .portrait-size {
        width: 90%;
        max-width: 400px;
        height: auto;
        margin: 0 auto;
    }

    .square-size {
        margin-top: 30px;
    }

    .portrait-size {
        margin-top: 10px;
    }
}

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

.why .intro-content h2 {
  font-size: 25px; 
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--default-color);
  line-height: 1;
}

.why .intro-content h2 span {
  color: var(--accent-color);
  font-size: 35px;
  font-weight: 800;
  display: block;
  margin-top: 5px;
  position: relative;
}

.why .intro-content p {
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 30px;
  line-height: 1.5;
}

.why .intro-content p:last-child {
  margin-bottom: 0px;
}

.why .intro-image {
  position: relative;
  perspective: 2000px; 
}

.why .intro-image img {
  border-radius: 15px;
  transform: rotateY(-15deg) rotateX(10deg);
  transform-style: preserve-3d;
  box-shadow: 
    -20px 20px 50px rgba(0, 0, 0, 0.085),
    0 10px 20px rgba(0, 0, 0, 0.085);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.why .intro-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  filter: blur(80px);
  opacity: 0.15;
  top: 0;
  left: 0;
  z-index: -1;
}

.why .intro-image:hover img {
  transform: rotateY(0deg) rotateX(0deg);
  box-shadow: 0 40px 80px rgba(226, 31, 40, 0.085);
}

.why-item-wrapper {
  height: 100%;
}

.why .why-item {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why .why-item:hover {
  transform: translateY(-10px);
}

.why .why-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.why .why-item .why-content {
  width: 100%;
}

.why .why-item .why-content .why-icon {
  display: flex;
  justify-content: center;
}

.why .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.why .why-item {
  position: relative;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  overflow: hidden;
}

.why .why-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  transition: left 0.5s ease;
}

.why .why-item .why-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 45px;
  font-weight: 800;
  color: color-mix(in srgb, var(--accent-color), transparent 90%);
  line-height: 1;
  z-index: 1;
}

.why .why-item .why-content {
  position: relative;
  z-index: 2;
}

.why .why-item .why-content .why-icon {
  margin-bottom: 25px;
}

.why .why-item .why-content .why-icon i {
  font-size: 30px;
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 25%));
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.why .why-item .why-content h4 {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--default-color);
  line-height: 1.5;
}

.why .why-item .why-content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 0px;
  line-height: 1.5;
}

.why .why-item:hover::before {
  left: 0;
}

.why .why-item:hover .why-number {
  color: color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: scale(1.1);
}

.why .why-item:hover .why-icon i {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 991px) {
  .why .intro-content {
    margin-bottom: 40px;
  }

  .why .intro-content h2 {
    font-size: 32px;
  }

  .why .why-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 25px;
  }
}

@media (max-width: 767px) {
  .why .why-item {
    padding: 25px;
  }

  .why .why-item .why-number {
    font-size: 36px;
    top: 15px;
    right: 20px;
  }

  .why .why-item .why-content h4 {
    font-size: 20px;
  }

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

@media (max-width: 575px) {
  .why .intro-content h2 {
    font-size: 28px;
  }

  .why .intro-content p {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .why .intro-content {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .why .intro-content h2 {
    font-size: 20px; 
    line-height: 1.3;
  }

  .why .intro-content h2 span {
    font-size: 30px; 
  }

  .why .intro-content p {
    font-size: 16px; 
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

.badge-main-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 45px 0 0px;
}

.status-badge-premium {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--default-color);
    padding: 14px 40px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    overflow: hidden;
    cursor: default;
    max-width: 100%;
    box-sizing: border-box;
}

.shimmer-effect {
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-20deg);
    animation: shimmer-swipe 3s infinite;
}

.badge-inner-content {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    flex-wrap: wrap;
}

.badge-inner-content i {
    color: var(--accent-color);
    font-size: 1.5rem;
    display: flex;
    flex-shrink: 0;
}

.brand-name {
    color: var(--accent-color);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.vertical-separator {
    width: 2px;
    height: 25px;
    background-color: rgba(255, 255, 255, 0.5);
}

.promo-text-long {
    color: var(--surface-color);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

@keyframes shimmer-swipe {
    0% {
        left: -150%;
    }
    30% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

@media (max-width: 768px) {
    .status-badge-premium {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 15px 15px;
        max-width: 375px;
        height: auto;
        border-radius: 40px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .badge-inner-content {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 5px;
        margin: 0;
        width: 100%;
    }

    .badge-inner-content i {
        font-size: 1.25rem;
    }

    .brand-name {
        font-size: 1.25rem;
        font-weight: 900;
        margin-left: 6px;
        white-space: nowrap;
    }

    .promo-text-long {
        font-size: 0.8rem;
        margin-top: 0px;
        white-space: normal;
    }

    .pulse-dot,
    .vertical-separator {
        display: none;
    }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.cta-modern {
  padding: 90px 0;
  position: relative;
  background: url("../img/call/cxp-trans-call-01.webp") center center / cover no-repeat;
  color: #000000;
  overflow: hidden;
  text-align: center;
}

@media (max-width: 768px) {
  .cta-modern {
    background: url("../img/call/cxp-trans-call-mobile-01.webp") center center / cover no-repeat;
  }
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.cta-modern .container {
  position: relative;
  z-index: 2;
}

.cta-header {
  margin-bottom: 30px;
}

.cta-title-top {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--accent-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.cta-title-main {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--contrast-color);
  margin-bottom: 20px;
}

.cta-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  line-height: 1.5;
}

.cta-badge-container {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.badge-nonstop {
  background: rgba(40, 167, 69, 0.25);
  border: 1px solid rgba(40, 167, 69, 0.5);
  padding: 20px 40px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.main-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-color);
  letter-spacing: 0.75px;
  line-height: 1;
}

.sub-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: #2ecc71;
  letter-spacing: 1px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(46, 204, 113, 0.4);
  animation: pulse-green 2s infinite;
  margin-bottom: 5px;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0px rgba(46, 204, 113, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0px rgba(46, 204, 113, 0); }
}

.cta-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-card-call {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.contact-card-call:hover {
  transform: translateY(-10px);
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--contrast-color);
  background: #2ecc71;
}

.card-content {
  text-align: left;
  flex-grow: 1;
}

.card-label {
  display: block;
  font-size: 0.75rem;
  color: var(--contrast-color);
  margin-bottom: 0px;
}

.card-number {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--contrast-color);
}

.card-call:hover .card-icon { background: var(--accent-color); color: white; }

@media (max-width: 768px) {

  /* TEXT SIZE MOBIL */
  .cta-title-top {
    font-size: 0.9rem;
    letter-spacing: 3px;
  }

  .cta-title-main {
    font-size: 1.8rem;
  }

  .cta-description {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  /* BADGE IDENTIC CU DESKTOP */
  .badge-nonstop {
    padding: 20px 40px;
    border-radius: 15px;
    gap: 8px;
  }

  .pulse-dot {
    display: block;
    width: 10px;
    height: 10px;
    margin-bottom: 5px;
    background-color: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(46, 204, 113, 0.4);
    animation: pulse-green 2s infinite;
  }

  .main-text {
    font-size: 1.25rem;
  }

  .sub-text {
    font-size: 0.85rem;
  }

  /* BUTOANE APEL RAMAN LA FEL */
  .cta-grid-modern {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-card-call {
    padding: 15px;
    gap: 20px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .card-number {
    font-size: 1.2rem;
  }

}

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

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

@media (max-width: 992px) {
  .bento2-grid { 
    grid-template-columns: repeat(2, 1fr); 
    grid-auto-rows: auto; 
  }
  .sub-image-container { min-height: 250px; }
}

@media (max-width: 576px) {
  .bento2-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 250px; /* înălțime fixă pentru AOS */
    gap: 20px;
  }

  .bento2-item {
    width: 100%;
    height: 100%;
    position: relative;
  }

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

  .bento2-item.tall,
  .bento2-item.wide {
    grid-row: auto;
    grid-column: auto;
  }
}

/*--------------------------------------------------------------
# Stats Section - CIFRELE SUCCESULUI
--------------------------------------------------------------*/
.stats {
  padding: 60px 0;;
}

.stats .intro-content {
  margin-bottom: 60px;
}

.stats .intro-content .section-heading {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

@media (max-width: 768px) {
  .stats .intro-content .section-heading {
    font-size: 2rem;
  }
}

.stats .intro-content .section-description {
  font-size: 1.1rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  max-width: 800px;
  margin: 0 auto;
}

.stats .metric-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.stats .metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stats .metric-card:hover {
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 95%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 0%);
}

.stats .metric-card:hover::before {
  transform: scaleX(1);
}

.stats .metric-card:hover .metric-icon-wrapper {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  transform: rotate(360deg);
}

.stats .metric-card:hover .metric-icon-wrapper i {
  color: var(--contrast-color);
}

.stats .metric-card .metric-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.stats .metric-card .metric-header .metric-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.stats .metric-card .metric-header .metric-icon-wrapper i {
  font-size: 1.85rem;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.stats .metric-card .metric-header .metric-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-color);
  font-family: var(--heading-font);
  line-height: 1;
}

.stats .metric-card .metric-info h4 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--default-color);
}

.stats .metric-card .metric-info p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.stats .highlights-section {
  padding: 60px 0 0px;
}

.stats .highlights-section .highlights-content {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .stats .highlights-section .highlights-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

.stats .highlights-section .highlights-content .highlights-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .stats .highlights-section .highlights-content .highlights-title {
    font-size: 1.8rem;
  }
}

.stats .highlights-section .highlights-content .highlights-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.stats .highlights-section .highlights-content .highlights-features {
  margin-bottom: 2.5rem;
}

.stats .highlights-section .highlights-content .highlights-features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.stats .highlights-section .highlights-content .highlights-features .feature-item i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.stats .highlights-section .highlights-content .highlights-features .feature-item span {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--default-color);
}

.stats .highlights-section .highlights-content .highlights-cta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.stats .highlights-section .highlights-content .highlights-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 15px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.stats .highlights-section .highlights-content .highlights-cta .cta-btn i {
  font-size: 1.15rem;
  line-height: 1;
}

.stats .highlights-section .highlights-content .highlights-cta .cta-btn.primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.stats .highlights-section .highlights-content .highlights-cta .cta-btn.primary:hover {
  background: #25D366;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 85%);
  transform: translateY(-5px);
}

.stats .highlights-section .highlights-content .highlights-cta .cta-btn.secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.stats .highlights-section .highlights-content .highlights-cta .cta-btn.secondary:hover {
  background: #25D366;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 2px solid #25D366;
  color: var(--contrast-color);
  transform: translateY(-5px);
}

.stats .highlights-section .highlights-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 400px;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item {
  position: relative;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.085);
  overflow: hidden;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item.large {
  grid-row: 1/3;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item:hover img {
  transform: scale(1.1);
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .stats .highlights-section .highlights-content {
    text-align: center;
  }

  .stats .highlights-section .highlights-content .highlights-title {
    font-size: 1.8rem;
    margin-left: auto;
    margin-right: auto;
  }

  .stats .highlights-section .highlights-content .highlights-text {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .stats .highlights-section .highlights-content .highlights-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }

  .stats .highlights-section .highlights-content .highlights-features .feature-item {
    display: flex;
    flex-direction: column;  
    align-items: center;
    text-align: center;      
    margin-bottom: 1.5rem;
  }

  .stats .highlights-section .highlights-content .highlights-features .feature-item i {
    margin-bottom: 0.5rem; 
  }

  .stats .highlights-section .highlights-content .highlights-features .feature-item span {
    padding-left: 25px;
    padding-right: 25px; 
  }

  .stats .highlights-section .highlights-content .highlights-cta {
    justify-content: center;
    gap: 0.8rem;
  }

.stats .highlights-section .highlights-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 1rem;
  height: 250px;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item {
  position: relative;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.085);
  overflow: hidden;
  display: flex;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item.large {
  grid-row: span 2; 
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;       
  object-fit: cover;  
  object-position: center;
  display: block;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item:hover img {
  transform: scale(1.1);
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}
}

/*--------------------------------------------------------------
# Testimonials Section - TESTIMONIALE
--------------------------------------------------------------*/
.testimonials {
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  position: relative;
  overflow: hidden;
  /* Left Sidebar */
  /* Testimonials Carousel */
  /* Swiper Pagination */
  /* Responsive Styles */
}

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

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

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

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

.testimonials .testimonials-sidebar .sidebar-content p {
  font-size: 17px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 32px;
}

.testimonials .testimonials-sidebar .sidebar-content .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  letter-spacing: 2.5px;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.testimonials .testimonials-sidebar .sidebar-content .btn-view-all i {
  transition: transform 0.3s ease;
}

.testimonials .testimonials-sidebar .sidebar-content .btn-view-all:hover {
  background: var(--default-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 50%);
}

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

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

.testimonials .testimonial-card {
  background: var(--surface-color);
  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 90%);
}

.testimonials .testimonial-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  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: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  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: 15px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 28px;
  position: relative;
}

.testimonials .testimonial-card .author-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.testimonials .testimonial-card .author-info .author-img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

.testimonials .testimonial-card .author-info .author-details h5 {
  font-size: 20px;
  font-weight: 500;
  color: var(--default-color);
  margin: 0 0 0px;
}

.testimonials .testimonial-card .author-info .author-details span {
  font-size: 15px;
  color: color-mix(in srgb, var(--accent-color), transparent 10%);
  font-weight: 500;
}

.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-modern {
  overflow: visible; 
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 80px 30px;
  max-width: 1100px;
  margin: 60px auto 0px;
}

.contact-container .wow-card-wrapper:nth-child(1) {
  grid-column: 1 / span 2;
}

.contact-container .wow-card-wrapper:nth-child(2) {
  grid-column: 3 / span 2;
}

.contact-container .wow-card-wrapper:nth-child(3) {
  grid-column: 5 / span 2;
}

.contact-container .wow-card-wrapper:nth-child(4) {
  grid-column: 2 / span 2;
}

.contact-container .wow-card-wrapper:nth-child(5) {
  grid-column: 4 / span 2;
}

.wow-card {
  background: var(--surface-color);
  padding: 40px 25px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
}

.wow-card .icon-box {
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  border-radius: 15px;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.4s ease;
}

.wow-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.wow-card:hover .icon-box {
  transform: translateX(-50%) rotate(10deg) scale(1.1);
  background: var(--accent-color);
}

.wow-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--default-color);
  margin-top: 15px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.75px;
}

.wow-card p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 20px;
  line-height: 1.4;
}

.card-link {
  display: inline-block;
  padding: 6px 18px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.card-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {

  .contact-modern {
    padding: 40px 20px 0;
  }

  .contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin: 20px auto;
    padding: 0 15px;
  }

  .contact-container .wow-card-wrapper:nth-child(1),
  .contact-container .wow-card-wrapper:nth-child(2),
  .contact-container .wow-card-wrapper:nth-child(3),
  .contact-container .wow-card-wrapper:nth-child(4),
  .contact-container .wow-card-wrapper:nth-child(5) {
    grid-column: auto;
  }

  .wow-card {
    width: 100%;
    padding: 45px 20px 30px;
    transform: none;
  }

  .wow-card:hover {
    transform: none;
  }

  .wow-card .icon-box {
    width: 56px;
    height: 56px;
    font-size: 22px;
    top: -28px;
  }

  .wow-card h3 {
    font-size: 16px;
    margin-top: 20px;
  }

  .wow-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  .card-link {
    font-size: 12px;
    padding: 6px 16px;
  }

}
.contact-banner-section {
  max-width: 900px;
  margin: 0 auto 75px;
  padding: 0px 0 0px;
}

.contact-banner-card {
  background: var(--surface-color);
  border-radius: 30px;
  padding: 30px 0;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-inner-content {
  display: flex;
  align-items: center; 
  justify-content: center;
  gap: 60px; 
  max-width: 800px; 
}

.ring-image-wrapper {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--default-color);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 85%);
}

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

.banner-text-content {
  text-align: left; 
}

.banner-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--default-color);
  margin-bottom: 10px;
  line-height: 1.2;
}

.banner-description {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin: 0;
}

/* --- Responsive Design --- */
@media (max-width: 850px) {
  .banner-inner-content {
    flex-direction: column; /* Pe mobil le punem unul sub altul */
    text-align: center;
    gap: 30px;
  }

  .banner-text-content {
    text-align: center; /* Pe mobil centrăm și textul */
  }

  .contact-banner-card {
    padding: 40px 20px;
  }
}


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

.floating_btn {
  position: fixed;
  bottom: 70px;   /* 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;
  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);
  }
}

