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

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

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

:root {
  --default-font: "Roboto-Variable",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --banner-font: "Montserrat-Variable";
  --heading-font: "Mulish-Variable",  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: #000000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #a60d45; /* 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: #55514f;  /* The default color of the main navmenu links */
  --nav-hover-color: #089f5f; /* 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: #55514f; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #089f5f; /* 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: #f3f3f3;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #322f2d;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4a4643;
  --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);
  font-size: 14px;
}

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: #f3f3f3;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.header .logo img {
  max-height: 70px;
  margin-right: 8px;
  transition: all 0.3s;
}

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

.header .logo .logo-light {
  display: block;
}

.header .logo .logo-dark {
  display: none;
}

.index-page.scrolled .header .logo .logo-light {
  display: none;
}

.index-page.scrolled .header .logo .logo-dark {
  display: block;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Index Page Header */
.index-page .header {
  --background-color: rgba(0, 0, 0, 0.15);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Index Page Header on Scroll */
.index-page.scrolled .header {
  --background-color: #f3f3f3;
  --default-color: #000000;
  --heading-color: #282828;
  --nav-color: #5b5b5b;
}

.header {
  height: 90px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center; 
}

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

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

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

.navmenu ul {
  display: none;
  list-style: none;
  position: absolute;
  top: 70px;       
  left: 20px;      
  right: 20px;     
  padding: 10px 0;
  margin: 0;
  border-radius: 15px;
  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(--default-font);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

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

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

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 30px;
    top: 26px;
    right: 12px;
    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;
  text-align: center;
  padding: 60px 0;
  position: relative;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .footer p {
    font-size: 16px;
  }
}

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

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

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

.footer .copyright {
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer .footer-services-list {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer .footer-services-list .separator {
  color: var(--default-color);
  opacity: 0.75;
  font-weight: 800;
}

.footer .copyright .copy-main {
  font-size: 11px;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.footer .copyright strong {
  font-weight: 500;
  color: var(--default-color);
}

.copyright-icon {
  font-size: 15px;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#custom-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    background: radial-gradient(circle at center, #ffffff 0%, #f8f9fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    pointer-events: all;
    opacity: 1;
}

#custom-preloader.fade-out {
    animation: fadeOutModern 0.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.preloader-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.preloader-logo {
    width: 85%;                
    max-width: 850px;        
    height: auto;               
    display: block;
    margin: 0 auto;
    animation: 
        revealLogo 1s ease-out forwards,
        floatLogo 3s ease-in-out infinite alternate 1s;
    will-change: transform, opacity, filter;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.05));
}

.preloader-wrapper::after {
    content: "";
    width: 150px;
    height: 2px;
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.preloader-wrapper::before {
    content: "";
    width: 0;
    height: 2px;
    background: #000; 
    position: absolute;
    bottom: -10px;
    z-index: 1;
    animation: loadLine 1.5s ease-in-out forwards;
}

@keyframes revealLogo {
    from { 
        opacity: 0; 
        transform: scale(0.9) translateY(20px);
        filter: blur(10px);
    }
    to { 
        opacity: 1; 
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

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

@keyframes loadLine {
    0% { width: 0; opacity: 1; }
    80% { width: 150px; opacity: 1; }
    100% { width: 150px; opacity: 0; }
}

@keyframes fadeOutModern {
    0% { 
        opacity: 1; 
        backdrop-filter: blur(0px);
    }
    100% { 
        opacity: 0; 
        visibility: hidden;
        transform: translateY(-100%);
        backdrop-filter: blur(20px);
    }
}


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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 20px 0 40px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.8rem;
  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.4rem;
  margin-bottom: 1rem;
  font-weight: 300;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 0.9rem;
  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: 89px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--accent-color);
  text-transform: uppercase;
  margin: 0;
  position: relative;
}

.section-title .eyebrow {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--default-color);
  letter-spacing: 5px;
  display: block;
  margin-bottom: 0px;
}

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

.fancy-divider .line {
  width: 75px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent-color));
}

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

.fancy-divider .dot {
  width: 10px;
  height: 10px;
  background: var(--default-color);
  transform: rotate(45deg);
}

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

@media (max-width: 576px) {
  .section-title p {
    padding-left: 10px;
    padding-right: 10px;
  }
}

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

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

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

.hero .cinema-slider {
  position: relative;
}

.hero .swiper {
  overflow: hidden;
}

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

.hero .cinema-frame {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero .cinema-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero .swiper-slide-active .cinema-frame img {
  transform: scale(1.15);
}

.hero .frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 40%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero .frame-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero .content-inner {
  max-width: 650px;
}

.hero .accent-line {
  width: 56px;
  height: 2px;
  background: var(--accent-color);
  margin-bottom: 10px;
  transition: width 0.6s ease;
}

.hero .swiper-slide-active .accent-line {
  width: 80px;
}

.hero .tag-label {
  display: inline-block;
  font-family: var(--default-font);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--surface-color);
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.7s ease 0.2s;
}

.hero .swiper-slide-active .tag-label {
  opacity: 1;
  transform: translateY(0);
}

.hero .content-inner h3 {
  font-family: var(--heading-font);
  font-size: 50px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 1px;
  color: var(--contrast-color);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.35s;
}

.hero .swiper-slide-active .content-inner h3 {
  opacity: 1;
  transform: translateY(0);
}

.hero .content-inner p {
  font-size: 18px;
  line-height: 1.75;
  font-weight: 300;
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.5s;
}

.hero .swiper-slide-active .content-inner p {
  opacity: 1;
  transform: translateY(0);
}

.hero .buttons-wrapper {
  display: flex;
  gap: 20px;
}

.hero .refined-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 75%);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

.hero .refined-btn i {
  font-size: 15px;
  transition: transform 0.5s ease;
}

.hero .refined-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .refined-btn:hover i {
  transform: translateX(10px);
}

.hero .swiper-slide-active .refined-btn {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease 0.65s;
}

.hero .swiper-slide-active .refined-btn {
  opacity: 1;
  transform: translateY(0); 
  transition: opacity 0.7s ease 0.65s, 
              transform 0.7s ease 0.65s, 
              background 0.5s ease, 
              border-color 0.5s ease, 
              color 0.5s ease;
}

.hero .slider-controls {
  position: absolute;
  bottom: 48px;
  right: 8%;
  z-index: 3;
}

.hero .controls-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero .swiper-pagination {
  position: static;
  width: auto;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, #ffffff 60%, transparent);
}

.hero .swiper-pagination .swiper-pagination-current {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
}

.hero .nav-arrows {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero .swiper-button-prev,
.hero .swiper-button-next {
  position: static;
  width: 52px;
  height: 52px;
  margin: 0;
  border: 1px solid color-mix(in srgb, #ffffff 25%, transparent);
  border-radius: 0;
  background: transparent;
  transition: all 0.5s ease;
}

.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
  font-size: 16px;
  font-weight: 300;
  color: color-mix(in srgb, #ffffff 70%, transparent);
  transition: color 0.5s ease;
}

.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
  background: color-mix(in srgb, #ffffff 10%, transparent);
  border-color: color-mix(in srgb, #ffffff 50%, transparent);
}

.hero .swiper-button-prev:hover::after,
.hero .swiper-button-next:hover::after {
  color: #ffffff;
}

@media (max-width: 768px) {
.hero .cinema-frame {
  height: clamp(520px, 75vh, 900px);
  min-height: 520px;
}

  .hero .frame-content {
    justify-content: center;
    text-align: center;
    padding: 0 20px;
  }

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

  .hero .accent-line {
    margin: 0 auto 10px;
  }

  .hero .tag-label {
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 15px;
  }

  .hero .content-inner h3 {
    font-size: 27px;
    margin-bottom: 16px;
  }

  .hero .content-inner p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero .buttons-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero .refined-btn {
    padding: 12px 20px;
    font-size: 13px;
    gap: 10px;
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

  .hero .slider-controls {
    bottom: 20px;
    right: 20px;
  }

  .hero .controls-inner {
    gap: 20px;
  }

  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    width: 42px;
    height: 42px;
  }

  .hero .swiper-pagination {
    font-size: 14px;
  }

  .hero .swiper-pagination .swiper-pagination-current {
    font-size: 22px;
  }
}

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

.about .row {
  align-items: center;
}

.about .content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.about .stats-container {
  margin: 2rem 0;
  padding: 2rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.075);
}

.about .stat-item {
  text-align: center;
}

.about .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.1rem;
}

.about .stat-item .stat-label {
  font-size: 0.95rem;
  color: var(--default-color);
  font-weight: 500;
}

.about .about-actions {
  margin-top: 2rem;
  display: flex;
  gap: 20px;
}

.about .about-actions .btn-discover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 15px; 
  padding: 10px 15px;
  background-color: transparent;
  color: var(--default-color);
  text-decoration: none;
  border-radius: 15px;
  font-weight: 600;
  letter-spacing: 0.25px;
  border: 1px solid var(--accent-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
  cursor: pointer;
}

.about .about-actions .btn-discover:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-5px);
}

.about .about-actions .btn-discover i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px; 
  height: 35px;
  border-radius: 50%;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
  font-size: 1rem;
  color: var(--contrast-color);
}

.about .about-actions .btn-discover:hover i {
  background-color: var(--default-color);
  color: var(--contrast-color);
  animation: softShake 0.6s ease-in-out infinite;
}

@keyframes softShake {
  0% { transform: rotate(0deg); }
  15% { transform: rotate(8deg); }
  30% { transform: rotate(-8deg); }
  45% { transform: rotate(4deg); }
  60% { transform: rotate(-4deg); }
  75% { transform: rotate(2deg); }
  100% { transform: rotate(0deg); }
}

@media (max-width: 768px) {
  .about .about-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .about .about-actions .btn-discover {
    width: 90%;
    justify-content: center;
  }
}

.about .image-section .main-image {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.075);
}

.about .image-section .main-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about .image-section .image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about .image-section .image-grid .grid-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.075);
}

.about .image-section .image-grid .grid-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about .certifications-section {
  margin-top: 60px;
  padding-top: 3rem;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

.about .certifications-section .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.about .certifications-section .section-header h3 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.about .certifications-section .section-header p {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  max-width: 750px;
  margin: 0 auto;
}

.about .certifications-section .certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
}

.about .certifications-section .certifications-grid .certification-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: #f8f9fa; 
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.075);
  will-change: transform;
}

.about .certifications-section .certifications-grid .certification-item:hover {
  transform: translateY(-5px);
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(0,0,0,0.15);
}

.about .certifications-section .certifications-grid .certification-item img {
  max-height: 75px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.5) opacity(0.75);
  transition: all 0.3s ease;
}

.about .certifications-section .certifications-grid .certification-item:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .about .content {
    margin-bottom: 3rem;
  }

  .about .content h2 {
    font-size: 1.85rem;
  }

  .about .cta-buttons {
    justify-content: center;
  }

  .about .image-section .main-image img {
    height: 300px;
  }

  .about .image-section .image-grid .grid-item img {
    height: 150px;
  }

  .about .stats-container {
    margin: 2rem 0;
  }
}

@media (max-width: 768px) {
  .about .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about .cta-buttons .btn-primary,
  .about .cta-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .about .certifications-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }

  .about .certifications-grid .certification-item {
    padding: 1rem;
  }

  .about .certifications-grid .certification-item img {
    max-height: 45px;
  }
}

@media (max-width: 992px) {
  .about .content {
    text-align: center;
  }

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

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

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

.services .row.align-items-center {
  background: #ffffff;
  padding: 50px 30px;
  border-left: 5px solid var(--accent-color);
  border-right: 5px solid var(--accent-color);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  border-radius: 30px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-left: 0;
  margin-right: 0;
}

.services .intro-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.75px;
}

.services .intro-content .section-badge i {
  font-size: 15px;
}

.services .intro-content .section-heading {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 0.25rem;
}

.services .intro-content .section-heading2 {
  font-size: 1.75rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.2;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.services .intro-content .section-description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 2rem;
}

.services .intro-content .transport-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 25px 10px 25px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.services .intro-content .transport-button .icon-box-email {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  margin-right: 15px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  will-change: transform;
}

.services .intro-content .transport-button .status-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background: #10b981;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
}

.services .intro-content .transport-button .transport-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.services .intro-content .transport-button .transport-title {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  font-weight: 900;
  line-height: 1.2;
}

.services .intro-content .transport-button .transport-subtitle {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.25px;
  font-weight: 400;
  opacity: 0.95;
  margin-top: 2px;
}

.services .intro-content .transport-button:hover {
  transform: translateY(-5px);
  background: var(--accent-color);
  box-shadow: 0 20px 40px -12px color-mix(in srgb, var(--accent-color), transparent 75%);
  color: var(--contrast-color);
}

.services .intro-content .transport-button:hover .icon-box-email {
  transform: rotate(-10deg);
  background: rgba(0, 0, 0, 1);
}

.services .intro-content .transport-button:active {
  transform: translateY(-2px) scale(0.98);
}

.services .hero-visual img {
  border-radius: 15px;
}

@media (max-width: 991px) {
  .services .row.align-items-center {
    padding: 30px 15px;
  }
}

.services .hero-visual {
  position: relative;
}

.services .hero-visual img {
  border-radius: 15px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .services .intro-content {
    text-align: center;
  }

  .services .intro-content .section-badge {
    justify-content: center;
    font-size: 12px;
    padding: 6px 16px;
  }

  .services .intro-content .section-heading {
    font-size: 1.85rem;
  }

  .services .intro-content .section-heading2 {
    font-size: 1.25rem;
  }

  .services .intro-content .section-description {
    font-size: 1rem;
  }

  .services .intro-content .transport-button {
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
  }

  .services .intro-content .transport-button .transport-info {
    text-align: center;
  }

  .services .intro-content .transport-button .icon-box-email {
    margin-right: 10px;
  }

  .services .hero-visual {
    text-align: center;
    margin-top: 30px;
  }

  .services .hero-visual img {
    width: 100%;
  }
}

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

.services2 .spot-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 390px;
}

.services2 .spot-card.spot-featured {
  height: 420px;
}

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

.services2 .spot-card .spot-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, #000000, transparent 15%) 0%, color-mix(in srgb, #000000, transparent 70%) 40%, transparent 100%);
  transition: background 0.4s ease;
  z-index: 1;
}

.services2 .spot-card .spot-tags {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.services2 .spot-card .spot-details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.services2 .spot-card .spot-details .trip-count {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  margin-bottom: 0px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.services2 .spot-card .spot-details .trip-count i {
  font-size: 15px;
}

.services2 .spot-card .spot-details h3 {
  color: var(--contrast-color);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.services2 .spot-card .spot-details p {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.services2 .spot-card:hover img {
  transform: scale(1.1);
}

.services2 .spot-card:hover .spot-gradient {
  background: linear-gradient(to top, color-mix(in srgb, #000000, transparent 5%) 0%, color-mix(in srgb, #000000, transparent 50%) 50%, color-mix(in srgb, #000000, transparent 80%) 100%);
}

.services2 .spot-card:hover .spot-details h3 {
  color: var(--accent-color);
}

.services2 .spot-card:hover .spot-details p {
  max-height: 75px;
  opacity: 1;
}

.services2 .tag-pill {
  display: inline-block;
  background: color-mix(in srgb, #ffffff, transparent 75%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.services2 .tag-pill.vibrant {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .services2 .spot-card {
    height: 280px;
  }

  .services2 .spot-card.spot-featured {
    height: 280px;
  }

  .services2 .spot-card .spot-gradient {
    background: linear-gradient(
      to top,
      color-mix(in srgb, #000000, transparent 5%) 0%,
      color-mix(in srgb, #000000, transparent 50%) 50%,
      color-mix(in srgb, #000000, transparent 80%) 100%
    );
  }

  .services2 .spot-card .spot-details {
    padding: 10px;
text-align: center;
  }

  .services2 .spot-card .spot-details h3 {
    font-size: 18px;
  }

  .services2 .spot-card .spot-details p {
    max-height: 150px;
    opacity: 1;
    font-size: 13px;
  }

  .services2 .spot-card .discover-link {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .services2 .spot-card {
    height: 260px;
  }

  .services2 .spot-card.spot-featured {
    height: 260px;
  }
}

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

.services3-card-custom {
  background: var(--contrast-color);
  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;
}

.services3-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 90%);
  z-index: 0;
  line-height: 1;
  transition: all 0.5s ease;
}

.services3-icon-box {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.services3-icon-box i {
  font-size: 35px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: transform 0.5s ease, color 0.3s ease;
}

.services3-card-custom h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent-color);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

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

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

.services3-card-custom:hover .services3-icon-box {
  background: var(--accent-color);
}

.services3-card-custom:hover .services3-icon-box i {
  color: #ffffff;
  transform: rotate(360deg);
}

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

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

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

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

.services-cta-bar {
  background: var(--default-color);
  border: 1px solid color-mix(in srgb, var(---color), transparent 5%);
  border-left: 5px solid var(--accent-color);
  border-right: 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.075);
}

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

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

.cta-text h4 {
  margin: 0;
  font-size: 21px;
  font-weight: 900;
  color: var(--contrast-color);
}

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

.btn-transport-premium {
  background: var(--accent-color);
  color: var(--default-color);
  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, 1);
  color: var(--background-color); 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.4s ease;
  animation: shake-animation 1.5s 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: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--contrast-color);
}

.btn-transport-premium .phone-wrapper strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--contrast-color);
}

.btn-transport-premium:hover {
  background: transparent; 
  border-color: var(--accent-color);
  transform: translateY(0px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.btn-transport-premium:hover .phone-wrapper span {
  color: #FFFFFF;
}

.btn-transport-premium:hover .phone-wrapper strong {
  color: #FFFFFF;
}

.btn-transport-premium:hover .icon-circle-shaking {
  background: var(--accent-color); 
  color: var(--background-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) {
  .services-cta-bar {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 30px;
    border-left: 5px solid var(--accent-color);
    border-right: 5px solid var(--accent-color);
  }

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

  .btn-transport-premium {
    text-align: left;
    justify-content: flex-start;
  }

  .btn-transport-premium .phone-wrapper {
    align-items: flex-start;
  }
}

/*--------------------------------------------------------------
# Why Section - DE CE EURONID
--------------------------------------------------------------*/
.why-cards {
  padding: 60px 0;
  perspective: 1000px;
}

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

.why-cards .bento-card {
  background: radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--accent-color), transparent 95%), transparent 50%),
              linear-gradient(145deg, color-mix(in srgb, var(--default-color), transparent 97%), color-mix(in srgb, var(--default-color), transparent 99%));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 40px;
  position: relative;
  overflow: hidden; 
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--default-color), transparent 90%),
              0 15px 35px rgba(0, 0, 0, 0.03);           
  transition: transform 0.4s ease,
              box-shadow 0.4s ease,
              border-radius 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 1;
  will-change: transform;
}

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

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

.why-cards .bento-card:hover {
  transform: translateY(-10px);
  box-shadow: inset 0 0 0 1px var(--accent-color),
              0 25px 50px -10px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.why-cards .card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 30px 10px 30px 10px;
  margin-bottom: 25px;

  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              border-radius 0.5s,
              box-shadow 0.5s;

  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--default-color), transparent 90%);
  will-change: transform;
}

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

.why-cards .card-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.5s ease;
  will-change: transform;
}

.why-cards .bento-card:hover .card-icon {
  background: var(--accent-color);
  border-radius: 10px 30px 10px 30px;
  transform: translateY(0px) rotate(-10deg);
}

.why-cards .bento-card:hover .card-icon i {
  color: #fff;
  transform: scale(1) rotate(0deg);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.why-cards .card-info h4 {
  font-size: 23px;
  font-weight: 800;
  color: var(--default-color);
  margin-bottom: 12px;
  letter-spacing: 0px;
  transition: all 0.4s ease;
}

.why-cards .card-info p {
  font-size: 16px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin: 0;
  position: relative;
  z-index: 2; 
  transition: all 0.4s ease;
}

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

.why-cards .card-bg-icon {
  position: absolute;
  right: -40px;
  bottom: -40px;
  opacity: 0.05; 
  transform: rotate(-25deg) scale(0.8) translateZ(-50px);
  transform-origin: bottom right;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  z-index: 0;
}

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

.why-cards .bento-card:hover .card-bg-icon {
  transform: rotate(0deg) scale(1) translateZ(0) translate(-20px, -20px);
  opacity: 0.065;
  color: var(--accent-color);
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .why-cards .span-col-2 {
    grid-column: span 1;
  }
  .why-cards .span-col-2 .bento-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .why-cards .span-col-2 .card-icon {
    margin-bottom: 25px;
  }
}

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

.status-badge-premium {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--default-color);
    padding: 16px 30px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
    border-right: 5px solid var(--accent-color);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--default-color), transparent 75%);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translate3d(0, 0, 0);
    will-change: transform, box-shadow;
    backface-visibility: hidden;
}

.status-badge-premium:hover {
    transform: translateY(-5px) translate3d(0, 0, 0);
}

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

.badge-inner-content i {
    color: var(--accent-color);
    font-size: 1.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.status-badge-premium:hover i {
    transform: rotate(-10deg) scale(1.2);
}

.brand-name {
    color: var(--contrast-color);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-right: 5px;
}

.vertical-separator {
    width: 1px;
    height: 20px;
    background: var(--contrast-color);
    opacity: 0.95;
}

.promo-text-long {
    color: var(--contrast-color);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1px;
    font-style: italic;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.status-badge-premium:hover .brand-name {
    opacity: 1;
    color: var(--accent-color);
}

.status-badge-premium:hover .promo-text-long {
    opacity: 1;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .status-badge-premium {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        text-align: center;
    }

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

    .vertical-separator {
        width: 40px;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  padding: 100px 0;
  display: flex;
  align-items: center;
}

.call-to-action .cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.call-to-action .cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.call-to-action .cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, #000000, transparent 25%);
}

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

.call-to-action .cta-content2 h2.cta-title {
  font-weight: 900;
  line-height: 0.6;
}

.call-to-action .cta-content2 h2 .highlight {
  font-size: 3rem;
  margin-bottom: 5px;
  display: block;
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 0px;
}

.call-to-action .cta-content2 h2 .sub-text {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--background-color);
  letter-spacing: 5px; 
  display: block;
}

.call-to-action .cta-content2 p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--background-color), transparent 10%);
  line-height: 1.5;
}

.call-to-action .cta-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, 225px);
  justify-content: center;
  gap: 20px;
  margin-bottom: 2.5rem;
}

.call-to-action .btn-custom {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
  border: 1px solid rgba(166, 13, 69, 0.5);
  background: rgba(166, 13, 69, 0.25);
  position: relative;
  top: 0;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

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

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

.call-to-action .btn-label {
  color: var(--background-color);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.75px;
}

.call-to-action .btn-sublabel {
  color: rgba(255, 255, 255, 1);
  font-size: 0.85rem;
}

/* 1. Buton Apel - ROȘU */
.btn-call .icon-box { background: rgba(0, 0, 0, 0.5); 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.5); 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.5); color: #007bff; }
.btn-email:hover { background: #007bff; border-color: #007bff; transform: translateY(-10px); }

.btn-custom:hover .btn-label, 
.btn-custom:hover .btn-sublabel, 
.btn-custom:hover .icon-box {
  color: #fff;
}

.call-to-action .cta-features {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 0;
}

.call-to-action .cta-features .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  transition: all 0.3s ease;
  padding: 0px 0;
}

.call-to-action .cta-features .feature-item i {
  font-size: 1.55rem;
  color: var(--contrast-color);
  filter: drop-shadow(0 0 10px rgba(var(--accent-color-rgb), 0.3));
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.call-to-action .cta-features .feature-item span {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase; 
  color: #ffffff;
  letter-spacing: 0.75px;
  position: relative;
  opacity: 1;
  transition: all 0.3s ease;
}

  .call-to-action .cta-features .feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -2rem; 
    height: 15px;
    width: 1px;
    background: var(--accent-color);
  }
}

.call-to-action .cta-features .feature-item span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--accent-color);
}

.call-to-action .cta-features .feature-item:hover span::after {
  width: 100%;
}

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

  .call-to-action .cta-content2 h2.cta-title {
    font-size: 1.85rem;
  }

  .call-to-action .cta-content2 h2 .highlight {
    font-size: 2.5rem;
    line-height: 1;
  }

  .call-to-action .cta-content2 h2 .sub-text {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .call-to-action .cta-content2 p {
    font-size: 1rem;
    max-width: 100%;
    margin: 0 auto 2rem;
  }

  .call-to-action .cta-grid-modern {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .call-to-action .cta-grid-modern .btn-custom {
    width: 170px;       
    box-sizing: border-box; 
    padding: 8px;
    border-radius: 12px;
    text-align: center;
  }

  .call-to-action .cta-grid-modern .btn-custom:nth-child(3) {
    margin-top: 12px;
  }

  .call-to-action .icon-box {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .call-to-action .btn-label {
    font-size: 0.85rem;
  }

  .call-to-action .btn-sublabel {
    font-size: 0.7rem;
  }

  .call-to-action .cta-features {
    display: flex;
    flex-direction: column; 
    align-items: center;   
    gap: 12px;        
    padding: 0;
  }

  .call-to-action .cta-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    width: 100%;
    justify-content: center; 
  }

  .call-to-action .cta-features .feature-item i {
    font-size: 1.25rem;
    color: var(--accent-color);
    filter: drop-shadow(0 0 10px rgba(var(--accent-color-rgb), 0.3));
  }

  .call-to-action .cta-features .feature-item span {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
  }

  .call-to-action .cta-features .feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -6px; 
    left: 50%;
    transform: translateX(-50%); 
    height: 1px;
    width: 5%; 
    background: var(--accent-color);
  }
}

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

.fleet-global-wrapper {
    margin-bottom: 60px;
}

.fleet-intro-card {
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    border-radius: 15px;
    padding: 25px 35px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 60px;
}

.intro2-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--contrast-color);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--accent-color);
    width: fit-content;
    line-height: 1;
}

.intro2-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.intro2-title {
    font-size: 25px;
    font-weight: 900;
    color: var(--default-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0px;
}

.intro2-subtitle {
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    margin: 5px 0 0 0;
    font-size: 15px;
    max-width: 600px;
}

.intro2-stats {
    display: flex;
    gap: 15px;
}

.stat-pill {
    background: var(--default-color);
    color: var(--contrast-color);
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.stat-pill strong {
    font-size: 20px;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 3px;
}

.stat-pill span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    opacity: 1;
}

@media (max-width: 768px) {
  .fleet-intro-card {
    align-items: center;
    text-align: center;
  }

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

  .intro2-subtitle {
    max-width: 100%;
  }

  .intro2-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .stat-pill {
    width: 150px;
    padding: 10px 0px;
  }
}

.tech-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 35px;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 45px rgba(0,0,0,0.075);
}

.tech-card::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 150px; height: 150px;
    background: radial-gradient(circle at top right, rgba(0,0,0,0.02), transparent);
    border-radius: 0 20px 0 100%;
}

.tech-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: var(--contrast-color);
}

.tech-header-text h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    color: var(--default-color);
}

.tech-header-text span {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.tech-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.spec-item {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    border-radius: 15px;
    transition: 0.3s;
}

.spec-item i {
    font-size: 25px;
    color: #22c55e;
}

.spec-item strong {
    display: block;
    font-size: 15px;
    color: var(--default-color);
    margin-bottom: 2px;
}

.spec-item p {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
    line-height: 1.2;
}

.tech-brand-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 25px;
    padding-top: 25px;
    border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.tech-brand {
    flex: 0 0 auto; 
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.tech-brand img {
    max-height: 100%;
    max-width: 150px; /* mai mare */
    object-fit: contain;
}

@media (max-width: 768px) {
  .tech-card {
    text-align: center;
  }

  .tech-card-header {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .tech-spec-grid {
    grid-template-columns: 1fr;
  }

  .spec-item {
    justify-content: center;
    text-align: center;
  }

  .tech-brand-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .tech-brand {
    flex: 1;
    height: auto;
  }

  .tech-brand img {
    width: 100%;
    max-width: 100px;
    height: auto;
    object-fit: contain;
  }
}

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

.gallery .gallery-item:nth-last-child(-n+3) {
  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-img {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.gallery .gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease-out;
  will-change: transform;
  backface-visibility: hidden;
}

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

.gallery .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;

  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

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

.gallery .gallery-info {
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

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

.gallery .gallery-info h4 {
  color: var(--contrast-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;
  will-change: transform;
}

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

.gallery .gallery-link:hover {
  background-color: var(--accent-color);
  transform: scale(1.25);
}

.gallery-item {
  will-change: transform, opacity;
}

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

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

@media (max-width: 576px) {
  .gallery .gallery-img {
    height: auto;
  }

  .gallery .gallery-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .gallery .gallery-overlay {
    transition: none;
  }

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

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

.faq .faq-card {
  height: 100%;
  padding: 30px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.faq .faq-card i {
  font-size: 50px;
  color: var(--default-color);
  margin-top: 0;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}

.faq .faq-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--defaut-color);
  margin-bottom: 20px;
}

.faq .faq-card p {
  margin-bottom: 50px;
  font-size: 16px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.faq .faq-card .btn-primary {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  background-color: var(--default-color);
  color: var(--contrast-color);
  border: none;
  outline: none;
  box-shadow: none;
  transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.faq .faq-card .btn-primary:hover {
  background-color: #25D366;
  transform: translateY(0px);
  color: var(--background-color);
  outline: none;
  box-shadow: none;
}

.faq .faq-list {
  padding: 0;
}

.faq .faq-list .faq-item {
  position: relative;
  margin-bottom: 15px;
  padding: 30px;
  background-color: transparent;
  border-radius: 15px;
  cursor: pointer;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

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

.faq .faq-list .faq-item h3 {
  font-size: 17px;
  color: var(--default-color);
  line-height: 1.5;
  font-weight: 800;
  padding-right: 40px;
  margin-bottom: 0;
  position: relative;
  transition: color 0.3s ease;
}

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

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

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

.faq .faq-list .faq-item .faq-toggle {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 25px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.faq .faq-list .faq-item.faq-active .faq-toggle {
  transform: none;
}

.faq .faq-list .faq-item.faq-active .faq-toggle::before {
  content: "\f33e";
  font-family: "bootstrap-icons";
}

.faq .faq-list .faq-item .faq-toggle::before {
  content: "\f33f";
  font-family: "bootstrap-icons";
}

@media (max-width: 768px) {
  .faq .faq-list .faq-item {
    padding: 20px;
  }

  .faq .faq-list .faq-item h3 {
    font-size: 15px;
    line-height: 24px;
  }

  .faq .faq-list .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Banner presentation
--------------------------------------------------------------*/
.banner-promo-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    margin: 60px 0;
    display: flex;
    align-items: center;
    font-family: var(--banner-font);
    color: #ffffff;
    background-image: url('../img/banner/euronid-truck-banner-01.webp');
    background-size: cover;
    background-position: center right;
    overflow: hidden;
}

@media (max-width: 768px) {
  .banner-promo-section {
    background-image: url('../img/banner/euronid-truck-banner-01-mobile.webp');
    background-position: center;
    min-height: auto;
  }
}

.banner-promo-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(30, 30, 30, 1) 30%, rgba(30, 30, 30, 0.4) 60%, rgba(30, 30, 30, 0) 100%);
    z-index: 1;
}

.banner-promo-section .container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.content-wrapper {
    max-width: 550px;
}

.years-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.big-number {
    font-size: 85px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    position: relative;
}

.badge-text {
    font-size: 25px;
    font-weight: 400;
    line-height: 1.1;
    display: inline-block;
    vertical-align: middle;
}

.highlight-line {
    font-weight: 800; 
    display: block;   
    margin-top: 2px; 
}

.text-content h2 {
    font-family: var(--banner-font);
    font-size: 25px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.text-content p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 20px;
    color: var(--surface-color);
}

.logo-trust-badge {
    display: flex;
    align-items: center; 
    gap: 25px; 
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.5); 
}

.trust-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.trust-text {
    font-family: var(--banner-font);
    font-size: 16px;
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .banner-promo-section {
        min-height: auto;
        padding: 45px 15px;
        background-position: center;
        text-align: center;
        justify-content: center;
    }

    .banner-promo-section::before {
        background: rgba(0, 0, 0, 0.65);
    }

    .content-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .years-badge {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .big-number {
        font-size: 60px;
    }

    .badge-text {
        font-size: 20px;
        text-align: center;
    }

    .text-content h2 {
        font-size: 30px;
        text-align: center;
    }

    .text-content p {
        font-size: 16px;
        text-align: center;
    }

    .logo-trust-badge {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .trust-text {
        font-size: 14px;
    }
}


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

.contact-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.contact-container::before,
.contact-container::after {
  content: '';
  position: absolute;
  left: 0;
  width: 0;
  height: 1px;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  transition: width 0.6s ease;
}

.contact-container::before {
  top: 0;
}

.contact-container::after {
  bottom: 0;
  transition-delay: 0.2s;
}

.wow-card-wrapper {
  position: relative;
}

.wow-card-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  transition: height 0.6s ease;
}

.wow-card-wrapper:last-child::after {
  display: none;
}

.wow-card-wrapper:nth-child(2)::after {
  transition-delay: 0.2s;
}

.wow-card-wrapper:nth-child(3)::after {
  transition-delay: 0.4s;
}

.contact-container.aos-animate::before,
.contact-container.aos-animate::after {
  width: 100%;
}

.contact-container.aos-animate .wow-card-wrapper::after {
  height: 100%;
}

.wow-card {
  padding: 25px 30px;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.wow-card:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.wow-card .icon-box {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.wow-card:hover .icon-box {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-5px);
}

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

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

.card-link {
  display: inline-block;
  padding: 10px 24px;
  background-color: var(--accent-color);
  color: var(--background-color);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.card-link:hover {
  background-color: var(--default-color);
  color: #fff;
}

@media (max-width: 767.98px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding-left: 15px;
    padding-right: 15px;
  }

  .contact-container::before,
  .contact-container::after {
    display: none;
  }

  .wow-card-wrapper {
    border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  }

  .wow-card-wrapper:first-child {
    border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  }

  .wow-card-wrapper::after {
    display: none;
  }
}

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

.contact-banner-card {
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 30px;
  padding: 45px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.banner-inner-content {
  display: flex;
  align-items: center; 
  justify-content: center;
  gap: 60px; 
  max-width: 825px; 
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.bg-icon {
  position: absolute;
  color: #000000;
  opacity: 0.1;           
  font-size: 50px;         
  pointer-events: none;
  z-index: 0;
  transition: all 0.5s ease-in-out;
}

.contact-banner-card:hover .bg-icon {
  transform: scale(1.05) translate(5px, -5px);
  opacity: 0.2;
}

.i-1  { top: 5%;   left: 5%;   transform: rotate(-10deg); }
.i-2  { top: 5%;   left: 35%;  transform: rotate(15deg);  }
.i-3  { top: 5%;   right: 5%;  transform: rotate(-5deg);  }
.i-4  { top: 40%;  left: 3%;   transform: rotate(10deg);  }
.i-5  { top: 45%;  left: 45%;  transform: rotate(-20deg); }
.i-6  { top: 40%;  right: 3%;  transform: rotate(5deg);   }
.i-7  { bottom: 5%; left: 5%;   transform: rotate(-15deg); }
.i-8  { bottom: 5%; left: 35%;  transform: rotate(20deg);  }
.i-9  { bottom: 5%; right: 5%;  transform: rotate(-10deg); }
.i-10 { top: 25%;  left: 20%;  transform: rotate(10deg);  }
.i-11 { bottom: 25%; right: 20%; transform: rotate(-12deg); }
.i-12 { top: 65%;  right: 35%; transform: rotate(8deg);   }
.i-13 { top: 25%;  right: 35%; transform: rotate(8deg);   }

.ring-image-wrapper {
  flex-shrink: 0;
  width: 250px;
  height: 200px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  overflow: hidden;
  border: 1px solid var(--default-color); 
  box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 75%);
  transition: border-radius 0.5s ease, transform 0.4s ease;
}

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

.contact-banner-card:hover .ring-image-wrapper {
  border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  transform: translateY(-5px);
}

.contact-banner-card:hover .ring-image {
  transform: scale(1.1);
}

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

.banner-title {
  font-size: 25px;
  font-weight: 900;
  color: var(--accent-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

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

@media (max-width: 768px) {
  .contact-banner-section {
    padding: 0px 15px 60px;
    margin: 0 auto 0px;
  }

  .contact-banner-card {
    padding: 30px 20px;
    border-radius: 25px;
  }

  .banner-inner-content {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

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

  .ring-image-wrapper {
    width: 200px;
    height: 160px;
  }

  .banner-title {
    font-size: 24px;
  }

  .banner-description {
    font-size: 15px;
  }
}


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

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

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

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

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

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

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

.lang-widget span {
  display: none;
}

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

  .lang-widget .current-lang:hover {
    background: #ffffff;
    transform: scale(1.05);
    border-color: rgba(166, 13, 69, 0.8);
    box-shadow: 0 8px 25px rgba(166, 13, 69, 0.1);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

