

@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: "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: #000000; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #18444c; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #dd2725; /* 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: #496268;  /* The default color of the main navmenu links */
  --nav-hover-color: #049ebb; /* 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: #496268; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #049ebb; /* 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: #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);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 10px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

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

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

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

.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
--------------------------------------------------------------*/
/* 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: #000000;
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 700;
    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: #000000;
    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: 15px;
    font-weight: 700;
    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: 32px;
    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: 25px;
  display: inline-flex;    
  width: fit-content;      
}

.footer .footer-about .logo img {
  max-height: 90px;
  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: 500px;
}

.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 .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: 25px;
}
  
  .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: 500px;       
    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: 22px;
  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 {
  text-align: center;
  padding: 120px 0 20px 0;
}

.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# 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: 700;
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 5px;
  margin-bottom: 0px;
  display: block;
}

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

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

.fancy-divider .line {
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.fancy-divider .dot {
  width: 8px;
  height: 8px;
  background-color: var(--default-color);
  border-radius: 50%;
}

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

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 32px;
  }
  .section-title p {
    font-size: 17px;
    padding: 0 15px;
  }
}

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


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

.hero .hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 90px 0 60px;
}

.hero .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 10%) 0%, color-mix(in srgb, var(--background-color), transparent 50%) 100%);
  z-index: 2;
}

.hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.hero .hero-content .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero .hero-content .row {
  justify-content: center;
}

.hero .hero-content .col-lg-7,
.hero .hero-content .col-md-10 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .hero-content .content-box {
  padding: 2rem 0 0rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .hero-content .content-box .badge-accent {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.hero .hero-content .content-box h1 {
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  color: #ffffff;
white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero .hero-content .content-box h1 .filled {
  background: linear-gradient(to bottom, #ffffff, #d1d1d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub-text {
  display: block;
  font-size: 30px; 
  font-weight: 400;
  letter-spacing: 10px;
  margin-top: 5px;
  margin-bottom: 2rem;
  color: #ffffff;
  text-transform: uppercase;
  padding-left: 12px;
  opacity: 1;
}

.hero .hero-content .content-box p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 1500px;
}

.hero .hero-content .content-box .cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero .hero-content .content-box .cta-group .btn {
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.hero .hero-content .content-box .cta-group .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.hero .hero-content .content-box .cta-group .btn.btn-primary:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--accent-color);
  transform: translateY(-5px);
}

.hero .features-wrapper {
  background: transparent;
  padding: 0;
  margin-top: 25px;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero .features-wrapper .feature-item {
  background: rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(221, 39, 37, 0.5);
  border-radius: 10px;
  padding: 1.2rem 1rem;
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero .features-wrapper .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 0.8rem;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 100%);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero .features-wrapper .feature-item .feature-text h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #dd2725;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero .features-wrapper .feature-item .feature-text p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
}

.hero .features-wrapper .feature-item:hover {
  transform: translateY(-10px);
  background: rgba(0, 0, 0, 0.5);
  border-color: var(--accent-color);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.hero .features-wrapper .feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(-10deg);
  background: #ffffff;
  color: var(--accent-color);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {

  .hero .hero-content .content-box .badge-accent {
    margin-top: 2rem;
  }

  .hero .hero-wrapper {
    padding: 70px 0 50px;
    min-height: auto;
  }

  .hero .hero-content .content-box h1 {
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.5px;
  }

  .sub-text {
    font-size: 20px;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    padding-left: 6px;
  }

  .hero .hero-content .content-box p {
    font-size: 1.05rem;
    padding: 0 15px;
  }

  .hero .hero-content .content-box .cta-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    width: 100%;
    max-width: 325px;
  }

  .hero .hero-content .content-box .cta-group .btn:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 70%;
  }

  .hero .hero-content .content-box .cta-group .btn {
    width: 100%;
    padding: 0.7rem 0;
    font-size: 0.9rem;
  }
}


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

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

.about-home .about-content p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.about-home .about-content .stats-row {
  display: flex;
  gap: 2rem;
  margin: 2rem 0 0rem;
}

@media (max-width: 576px) {
  .about-home .about-content .stats-row {
    flex-direction: column;
    gap: 1rem;
  }
}

.about-home .about-content .stats-row .stat-item {
  text-align: center;
}

.about-home .about-content .stats-row .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.about-home .about-content .stats-row .stat-item .stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-top: -0.25rem;
}

.about-home .about-images {
  position: relative;
  width: 100%;
  height: 100%; 
  min-height: 500px;
}

.about-home .about-images .main-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 70%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-home .about-images .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-home .about-images .secondary-image {
  position: absolute;
  bottom: 0; 
  left: 0px;
  width: 60%;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.about-home .about-images .secondary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-home .about-images .experience-badge {
  position: absolute;
  top: 60%;
  right: 10%;
  z-index: 3;
  transform: translateY(-50%);
  animation: pulseWave 1.5s infinite;
  border-radius: 15px;
}

@keyframes pulseWave {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--accent-color-rgb, 255, 107, 107), 0.7);
  }
  70% {
    /* Creează cercul care se extinde în exterior */
    box-shadow: 0 0 0 20px rgba(var(--accent-color-rgb, 255, 107, 107), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--accent-color-rgb, 255, 107, 107), 0);
  }
}

.about-home .about-images .experience-badge .badge-content {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 10px;
  width: 110px;
  height: 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-home .about-images .experience-badge .badge-content .badge-number {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.about-home .about-images .experience-badge .badge-content .badge-text {
  font-size: 0.85rem;
  line-height: 1.2;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .about-home .about-images {
    height: 400px;
    margin: 0px 0;
  }

  .about-home .about-images .main-image {
    width: 80%;
    height: 65%;
  }

  .about-home .about-images .secondary-image {
    width: 75%;
    height: 35%;
    top: 60%;
  }

  .about-home .about-images .experience-badge {
    right: 2%;
    top: 55%;
  }

  .about-home .about-images .experience-badge .badge-content {
    width: 80px;
    height: 80px;
    padding: 1rem;
  }

  .about-home .about-images .experience-badge .badge-content .badge-number {
    font-size: 1.5rem;
  }

  .about-home .about-images .experience-badge .badge-content .badge-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 992px) {
  .about-home .row {
    flex-direction: column-reverse;
  }

  .about-home .about-content {
    margin-top: 1rem;
    text-align: center;
  }

  .about-home .about-content .stats-row {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Services1 Section - SERVICII 1
--------------------------------------------------------------*/
.services1 {
  padding: 60px 0;
}

.services1 .services1-banner {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  box-shadow: 0 8px 30px 0 color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.services1 .services1-banner:hover {
  transform: translateY(-5px);
  border: 1px solid color-mix(in srgb, #007bff, transparent 0%);
  box-shadow: 0 15px 40px 0 color-mix(in srgb, #007bff, transparent 85%);
}

.services1 .banner-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

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

.services1 .banner-info {
  padding: 35px 30px;
}

.services1 .banner-info .services1-header {
  margin-bottom: 20px;
}

.services1 .banner-info .services1-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #007bff;
}

.services1 .banner-info p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 25px;
  line-height: 1.7;
}

.services1 .services1-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.services1 .detail-item {
  background: color-mix(in srgb, #007bff, transparent 90%);
  padding: 8px 16px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, #007bff, transparent 50%);
  transition: all 0.3s ease;
}

.services1 .detail-item i {
  color: #007bff;
  margin-right: 8px;
  font-size: 1.45rem;
}

.services1 .detail-item span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--default-color);
  letter-spacing: 0.5px;
}

.services1 .services1-grid {
  height: 100%;
  display: flex;
  align-items: center;
}

.services1 .services1-item {
  display: flex;
  align-items: center;
  background-color: var(--surface-color);
  padding: 15px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  box-shadow: 0 8px 30px 0 color-mix(in srgb, var(--default-color), transparent 90%);
}

.services1 .services1-item:hover {
  border: 1px solid color-mix(in srgb, #007bff, transparent 0%);
  transform: translateX(10px);
}

.services1 .services1-item:hover .item-arrow i {
  transform: translateX(5px);
  color: #007bff;
}

.services1 .services1-item .item-icon {
  width: 125px;
  height: 75px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
}

.services1 .services1-item .item-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services1 .services1-item .item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services1 .services1-item .item-content h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--default-color);
}

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

.services1 .services1-item .item-arrow {
  margin-left: 15px;
}

.services1 .services1-item .item-arrow i {
  font-size: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .services1 .row {
    display: flex;
    flex-direction: column;
  }

  .services1 .banner-info {
    padding: 25px 20px;
  }

  .services1 .banner-info .services1-header h3 {
    font-size: 1.5rem;
  }

  .services1 .banner-info .services1-details {
    flex-direction: column;
    gap: 15px;
  }

  .services1 .services1-item {
    padding: 15px;
  }

  .services1 .services1-item .item-icon {
    width: 100px;
    height: 75px;
    margin-right: 15px;
  }

  .services1 .services1-item .item-content h4 {
    font-size: 1.15rem;
  }

  .services1 .services1-item .item-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .services1 .banner-image {
    height: 220px;
  }

  .services1 .services1-item {
    flex-direction: column;
    text-align: center;
  }

  .services1 .services1-item .item-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .services1 .services1-item .item-arrow {
    margin-left: 0;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .services1 .detail-item {
    justify-content: center;
    text-align: center;
  }

  .services1 .detail-item i {
    margin-right: 6px;
  }
}


.services-ultra-modern {
  padding: 0px 0 60px;
}

.service-card-wrapper {
  perspective: 1000px;
}

.service-card-custom {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card-custom::after {
  content: attr(data-number);
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 5rem;
  font-weight: 900;
  color: color-mix(in srgb, var(--accent-color), transparent 95%);
  z-index: 0;
  line-height: 1;
  transition: all 0.5s ease;
}

.service-icon-box {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
}

.service-icon-box i {
  font-size: 35px;
  color: var(--accent-color);
}

.service-card-custom h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--default-color);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.service-card-custom p {
  font-size: 1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin: 0;
  position: relative;
  z-index: 1;
}

.service-card-custom:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
}

.service-card-custom:hover .service-icon-box {
  background: var(--accent-color);
  transform: rotateY(360deg);
}

.service-card-custom:hover .service-icon-box i {
  color: #ffffff;
}

.service-card-custom:hover::after {
  transform: translateY(20px);
  color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.service-card-custom::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--accent-color);
  transition: width 0.5s ease;
}

.service-card-custom:hover::before {
  width: 100%;
}

.services2 {
  padding: 0px 0 60px;
}

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

.services2 .routes-image-wrapper img {
  width: 100%;
  height: 350px; 
  object-fit: cover;
  border-radius: 15px;
}

.services2 .routes-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--default-color);
}

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

.services2 .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; 
  justify-content: flex-start; 
  text-align: left; 
}

.services2 .main-route-highlight .content {
  width: 100%; 
}

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

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

.services2 .main-route-highlight .text-highlight {
  font-weight: 500;
  color: color-mix(in srgb, var(--accent-color), transparent 5%);
}

.services2 .country-mini-card {
  display: flex;
  flex-direction: row; 
  align-items: center; 
  justify-content: 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 75%);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

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

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

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

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

@media (max-width: 991px) {
  .services2 .routes-image-wrapper img {
    height: 200px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .services2 .row {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 15px; 
  }

  .services2 [class*="col-"] {
    width: auto !important; 
    max-width: 90%; 
    padding: 0;
  }

  .services2 .country-mini-card {
    display: inline-flex; 
    width: fit-content;   
    min-width: 160px;     
    padding: 10px 20px;
    gap: 12px;
    margin: 0 auto;       
    height: auto;
  }

  .services2 .country-mini-card h5 {
    font-size: 14px;
    white-space: nowrap; 
  }
}

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

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 0px;
}

.why-cards .bento-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 20px;
  padding: 35px;
  position: relative;
  overflow: hidden; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 1;
}

.why-cards .span-col-2 {
  grid-column: span 2;
}

.why-cards .span-col-2 .bento-card {
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.why-cards .bento-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.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: 16px;
  margin-bottom: 20px;
  transition: 0.4s;
}

.why-cards .span-col-2 .card-icon {
  margin-bottom: 0;
}

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

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

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

.why-cards .card-info h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--default-color);
  margin-bottom: 12px;
  letter-spacing: 0px;
}

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

.why-cards .card-bg-icon {
  position: absolute;
  right: -25px;
  bottom: -20px;
  opacity: 0.03; 
  transform: rotate(-15deg);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  z-index: 0;
}

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

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

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

.signature-line {
  height: 1px;
  flex-grow: 1;
  background: linear-gradient(to right, transparent, var(--accent-color), transparent);
  max-width: 250px;
}

.signature-content {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 25px;
  background: #f8f9fa;
  border-radius: 50px;
  border: 1px solid rgba(221,39,37,0.25);
}

.brand-name {
  font-weight: 800;
  color: var(--accent-color);
  letter-spacing: 1px;
}

.slogan-text {
  margin: 0;
  font-weight: 500;
  color: var(--default-color);
}

@media (max-width: 768px) {
  .bento-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 30px;
  }

  .why-cards .span-col-2 {
    grid-column: auto !important;
    width: 100% !important;
    max-width: 400px !important;
  }

  .why-cards .bento-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    height: auto !important;
    padding: 20px 30px !important;
    gap: 15px !important;
  }

  .why-cards .card-icon {
    margin-bottom: 0 !important;
    width: 55px !important;
    height: 55px !important;
  }

  .why-cards .card-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .why-cards .card-info h4 {
    font-size: 18px !important;
    margin: 0 !important;
  }

  .why-cards .card-info p {
    font-size: 14px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
  }

  .why-cards .card-bg-icon i {
    font-size: 100px !important;
  }
}

@media (max-width: 768px) {
  .why-footer {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    padding: 0;
  }

  .signature-line {
    display: none;
  }

  .signature-content {
    flex-direction: row;
    align-items: center;
    text-align: center;
    gap: 15px;
    width: auto;
    background: #f8f9fa;
    border: 1px solid rgba(221,39,37,0.25);
    padding: 10px 25px;
  }

  .brand-name {
    font-size: inherit;
    width: auto;
  }

  .brand-name::after {
    display: none;
  }

  .slogan-text {
    font-size: inherit;
    margin: 0;
  }
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 90px 0;
  position: relative;
  background: #000000;
  overflow: hidden;
}

.cta-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../img/call/transportes-raul-call-01.webp');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

@media (max-width: 768px) {
  .cta-bg-image {
    background-image: url('../img/call/transportes-raul-call-mobile-01.webp');
  }
}

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}


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

.online-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(40, 167, 69, 0.25);
  color: #ffffff;
  padding: 10px 35px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border: 1px solid rgba(40, 167, 69, 0.2);
  margin-bottom: 15px;
}

.pulse-dot {
  width: 10px; height: 10px; background: #ffffff; border-radius: 50%;
  animation: pulse-green 1s infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

.cta-title {
  color: var(--accent-color);
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .cta-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 20px;
    text-align: center;
  }
}

.cta-subtitle {
  color: color-mix(in srgb, var(--surface-color), transparent 0%);
  margin: 0 auto 30px;
  font-size: 1.2rem;
  max-width: 750px;
  text-align: center;
}

@media (max-width: 768px) {
  .cta-subtitle {
    font-size: 1rem; /* mai mic decât 1.2rem */
    margin-bottom: 30px; /* dacă vrei să reduci spațiul */
  }
}


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

.btn-custom {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(43, 64, 81, 0.75);
  position: relative;
  top: 0;
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: none;
}

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

.btn-label {
  color: var(--surface-color);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.75px;
}

.btn-sublabel {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

/* 1. Buton Apel - ROȘU */
.btn-call .icon-box { background: rgba(0, 0, 0, 0.20); color: #ae0d0d; }
.btn-call:hover { background: #ae0d0d; border-color: #ae0d0d; transform: translateY(-10px); }

/* 2. Buton WhatsApp - VERDE */
.btn-whatsapp .icon-box { background: rgba(0, 0, 0, 0.20); color: #25d366; }
.btn-whatsapp:hover { background: #25d366; border-color: #25d366; transform: translateY(-10px); }

/* 3. Buton Email - ALBASTRU */
.btn-email .icon-box { background: rgba(0, 0, 0, 0.20); color: #007bff; }
.btn-email:hover { background: #007bff; border-color: #007bff; transform: translateY(-10px); }

/* 4. Buton Locație - PORTOCALIU */
.btn-location .icon-box { background: rgba(0, 0, 0, 0.20); color: #f39c12; }
.btn-location:hover { background: #f39c12; border-color: #f39c12; transform: translateY(-10px); }
.btn-location:hover .btn-label, .btn-location:hover .btn-sublabel { color: #000; }

/* Reset text la hover (pentru restul butoanelor) */
.btn-custom:hover .btn-label, 
.btn-custom:hover .btn-sublabel, 
.btn-custom:hover .icon-box {
  color: #fff;
}

@media (max-width: 576px) {
  .cta-grid-modern { 
    grid-template-columns: 1fr 1fr; 
    gap: 10px; 
    padding: 0 10px; 
  }

  .btn-custom {
    padding: 12px 10px; 
    flex-direction: row; 
    justify-content: flex-start; 
    align-items: center; 
    gap: 10px; 
    height: 100%;
    min-height: 65px;
  }

  .btn-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    text-align: left;
  }

  .btn-label {
    font-size: 0.75rem; 
    font-weight: 800;
    line-height: 1.1;
    display: block;
    margin-bottom: 5px; 
  }

  .btn-sublabel {
    display: block;
    font-size: 0.65rem;
    opacity: 1;
    line-height: 1;
  }

  .btn-custom i {
    font-size: 1.1rem; 
    flex-shrink: 0; 
  }
}

/*--------------------------------------------------------------
# Gallery Section - FLOTĂ
--------------------------------------------------------------*/
.gallery {
  padding: 60px 0 0px;
}

.gallery .gallery-item {
  margin-bottom: 15px;
}

.gallery .gallery-item:nth-last-child(-n+4) {
  margin-bottom: 0;
}

.gallery .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery .gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery .gallery-card:hover .gallery-overlay {
  opacity: 1;
  visibility: visible;
}

.gallery .gallery-card:hover .gallery-info {
  opacity: 1;
  transform: translateY(0);
}

.gallery .gallery-img {
  position: relative;
  overflow: hidden;
}

.gallery .gallery-img img {
  transition: transform 0.6s ease;
  width: 100%;
  height: 300px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

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

.gallery .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.gallery .gallery-info {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

.gallery .gallery-info h4 {
  color: var(--accent-color);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 5px;
}

.gallery .gallery-info p {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 15px;
}

.gallery .gallery-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.gallery .gallery-link i {
  font-size: 20px;
}

.gallery .gallery-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.25);
}

@media (max-width: 992px) {
  .gallery .gallery-info h4 {
    font-size: 16px;
  }

  .gallery .gallery-info p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .gallery .isotope-filters li {
    padding: 6px 14px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .gallery .gallery-img img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .gallery .gallery-overlay {
    padding: 15px;
  }

  .gallery .gallery-info h4 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .gallery .gallery-info p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .gallery .gallery-link {
    width: 35px;
    height: 35px;
  }

  .gallery .gallery-link i {
    font-size: 18px;
  }
}

.fleet-hook-section {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: stretch; 
}

.info-card {
    flex: 1;
    background-color: var(--background-color);  
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
    color: white;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2 {
    font-size: 1.6rem;
    line-height: 1.1;
    margin: 15px 0;
    font-weight: 400;
    color: var(--default-color);
}

h2 strong {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--accent-color);
}

.subtext {
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    line-height: 1.6;
    margin-bottom: 35px;
}

.check-list {
list-style: none;
padding: 0;
margin: 0;
}

.check-list li {
display: flex;
gap: 15px;
margin-bottom: 18px;
align-items: center;
}

.icon {
background: none;
width: auto;
height: auto;
border-radius: 0;
display: flex;
justify-content: center;
flex-shrink: 0;
}

.icon i {
color: var(--accent-color);
font-size: 25px;
line-height: 1;
}

.txt {
color: color-mix(in srgb, var(--default-color), transparent 10%);
font-size: 0.95rem;
}

.txt strong {
display: block;
color: #000000;
}

/* STIL COLAJ DREAPTA */
.image-collage {
    flex: 1;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    height: 100%; 
}

.img-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

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

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

@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
  .fleet-hook-section .info-card {
    padding: 25px;
  }

  .fleet-hook-section h2 {
    font-size: 1rem;
    margin: 10px 0;
  }

  .fleet-hook-section h2 strong {
    font-size: 1.8rem;
  }

  .fleet-hook-section .subtext {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .fleet-hook-section .txt {
    font-size: 0.85rem;
  }

  .fleet-hook-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .fleet-hook-section .image-collage {
    padding: 10px;
  }

  .fleet-hook-section .collage-grid {
    gap: 10px;
  }
}


/*--------------------------------------------------------------
# Transport-Card Section - VIDEO + SECȚIUNE
--------------------------------------------------------------*/
.page-wrapper {
    background-color: #f2f4f6;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.transport-card-bordered {
    width: 100%;
    max-width: 1000px; 
    background: linear-gradient(135deg, #dd2725 0%, #9b1b19 100%);
    border: 1px solid #000000; 
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(221, 39, 37, 0.15); 
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    overflow: hidden;
    position: relative;
}

.content-side {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2; 
}

.badge-tag {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 15px;
    display: inline-block;
}

.card-title {
    font-size: 25px;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.card-title span {
    font-size: 30px;
    font-weight: 800;
    opacity: 1;
}

.card-desc {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;

}

.stats-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
}

.stat-box strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #000000;
}

.stat-box span {
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.btn-container {
    display: flex;
    gap: 20px; /* spațiu între butoane */
    flex-wrap: wrap; /* ca pe mobil să nu se suprapună */
    align-items: center;
}

.btn-card {
    padding: 14px 32px;
    background: #ffffff;
    color: #dd2725;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 8px; /* spațiu între icon și text */
}

.btn-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background-color: #000000;
    color: #ffffff;
}

.video-side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.075); 
}

.phone-container {
    width: 190px;
    height: 380px;
    background: #000;
    border-radius: 28px;
    border: 4px solid #2a2a2a; 
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: rotate(-3deg); 
    transition: transform 0.5s ease;
}

.transport-card-bordered:hover .phone-container {
    transform: rotate(0deg) scale(1.02);
}

.phone-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 850px) {
    .page-wrapper {
        padding: 60px 15px;
    }

    .transport-card-bordered {
        grid-template-columns: 1fr;
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .content-side {
        padding: 40px 25px;
        align-items: center;
    }

    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 30px;
    }

    .stat-box {
        text-align: center;
    }

    .btn-container {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .btn-card {
        padding: 10px 18px;
        font-size: 13px;
        white-space: nowrap;
    }

    .video-side {
        padding-bottom: 40px;
        background: transparent;
    }

    .phone-container {
        width: 160px;
        height: 320px;
        transform: rotate(0deg);
    }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;

}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 15px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 700;
  font-size: 17px;
  color: #000000;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 75%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Contact Section - DATE DE CONTACT
--------------------------------------------------------------*/
.contact-modern {
  padding: 60px 0 0px;
  overflow: visible; 
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px 30px; 
  max-width: 1100px;
  margin: 30px auto;
}

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

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 20px auto;
  }

  .wow-card {
    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 {
  padding: 45px 0 90px;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 40px; 
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.0.75);
}

.contact .contact-main-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px; 
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 1fr 1fr; 
    align-items: stretch;
  }
}

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

.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;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

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

.contact .contact-form-container h3 {
  font-size: 20px;
  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 95%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  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 5%);
}

.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(--default-color);
  color: var(--surface-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(--accent-color);
  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: 0px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--default2-color), transparent 80%);
  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;
  }
}

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

.floating_btn {
  position: fixed;
  bottom: 62px;   /* WhatsApp jos */
  right: 17px;    /* Aliniere la dreapta */
  width: 50px;
  height: 50px;
  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);
  }
}

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

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

.lang-widget .current-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 45px;
  background: #ffffff;
  border: 1px solid var(--accent-color); 
  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);
}

@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 var(--accent-color);
    border-top: 2.5px solid var(--accent-color);
    transform: translateX(-50%) rotate(45deg); 
    pointer-events: none;
    margin-bottom: 8px;
    opacity: 0.5; 
    transition: opacity 0.3s ease, margin-bottom 0.3s ease;
  }

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

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

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

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

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

@keyframes arrowFlyStrictlyUp {
  0% { margin-bottom: 2px; opacity: 0; }
  30% { opacity: 1; }
  100% { margin-bottom: 28px; opacity: 0; }
}

@keyframes buttonPulseLanguage {
  to {
    box-shadow: 0 0 0 10px rgba(211, 152, 58, 0);
  }
}

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

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

.lang-widget .lang-options li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 45px;
  background: #ffffff;
  border: 1px solid rgba(211, 152, 58, 0.5); 
  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);
}

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

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

.lang-widget img {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
}

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

/*--------------------------------------------------------------
# Privacy Section - POLITICA CONFIDENȚIALITATE
--------------------------------------------------------------*/
.privacy {
  padding: 30px 0;
  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);
  margin-bottom: 20px;
  font-weight: 700;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  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);
  margin-bottom: 25px;
  font-weight: 800;
}

.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 {
  text-decoration: underline;
  color: var(--accent-color);
}

.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: 40px;
  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);
  margin-bottom: 20px;
  font-weight: 800;
}

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

.privacy .privacy-contact .contact-details {
  background-color: rgba(0, 20, 137, 0.1);
  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: #000000;
  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;
  }
}
