@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: "Marcellus",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

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

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

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

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

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

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

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

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

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

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

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

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-size: 17px;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  font-size: 14px;
  padding-left: 5px;
  font-style: normal;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 0%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--accent-color);
}

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

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

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

@media (max-width: 768px) {
  .header .logo img {
    max-height: 40px;
    margin-left: 8px;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.9);
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--accent-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: 100px;       
    left: 20px;      
    right: 20px;     
    padding: 10px 0;
    margin: 0;
    border-radius: 15px;
    background-color: var(--default-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: #FFFFFF;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

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

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

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

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--accent-color);
    position: absolute;
    font-size: 30px;
    top: 55px;
    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);
  }

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

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

  .scrolled .navmenu {
    top: -40px; 
    left: 0;
    right: 0;
  }

  .navmenu {
    top: 100px;
    left: 20px;
    right: 20px;
  }

  .header .topbar {
    position: relative;
    z-index: 10000;
  }
}

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

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

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

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

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

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

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

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

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

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

.footer .copyright {
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 0%);
  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;
}

/* Layout Desktop: Aliniere pe un singur rând "Wide-Screen" */
@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; /* Serviciile pe centru */
    gap: 20px;
  }

  .footer .copy-main {
    order: 1; /* Copyright pe stânga */
  }

  .footer .credits {
    text-align: right;
    padding-top: 15px; /* Aliniat vizual cu bordura de sus */
  }
}

@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-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: 85%;             
    max-width: 750px;       
    height: auto;               
    display: block;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInLogo 0.6s ease-out;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {

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

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

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

.section-title .eyebrow {
  font-size: 12px;
  font-weight: 600;
  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: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--default-color));
}

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

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

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

@media (max-width: 576px) {
  .section-title p {
    font-size: 15px;
    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;
}

.hero .hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero .hero-slide {
  min-height: calc(100vh - 92px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 210px 0 210px;
  position: relative;
}

.hero .hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, color-mix(in srgb, var(--background-color), transparent 5%) 0%, color-mix(in srgb, var(--background-color), transparent 30%) 40%, color-mix(in srgb, var(--background-color), transparent 75%) 95%, transparent 100%);
}

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

.hero .hero-content .hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 10px 15px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero .hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero .hero-content h1 em {
  font-style: normal;
  font-size: 50px;
  font-weight: 900;
  color: var(--accent-color);
}

.hero .hero-content h1 span {
  display: inline;
}

.hero .hero-content h1 span:last-child {
  display: block;
  margin-top: 5px;
}

.hero .hero-content p {
  font-size: 1rem;
  color: var(--contrast-color);
  max-width: 900px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero .hero-content .hero-actions {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.hero .hero-content .hero-actions .btn-hero {
  display: inline-block;
  background-color: transparent;
  color: var(--accent-color);
  padding: 14px 34px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  border: 1px solid var(--accent-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hero .hero-content .hero-actions .btn-hero:hover {
  background-color: var(--accent-color);
  color: #000000;
}

.hero .hero-content .hero-actions .btn-hero2 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding-bottom: 4px;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.hero .hero-content .hero-actions .btn-hero2 i {
  transition: transform 0.3s ease;
}

.hero .hero-content .hero-actions .btn-hero2:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.hero .hero-content .hero-actions .btn-hero2:hover i {
  transform: translateX(5px);
}

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

  .hero .hero-content h1 {
    text-align: center;
    font-size: 30px;
    line-height: 1.25;
  }

  .hero .hero-content h1 span {
    display: block;
    line-height: 1.25;
  }

  .hero .hero-content h1 em {
    font-size: 45px;
  }

  .hero .hero-content p {
    font-size: 1.075rem; 
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero .hero-content .hero-actions .btn-hero,
  .hero .hero-content .hero-actions .btn-hero2 {
    justify-content: center;
  }
}

.hero .hero-prev,
.hero .hero-next {
  width: 52px;
  height: 52px;
  background-color: color-mix(in srgb, var(--default-color), transparent 100%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 25%);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.hero .hero-prev i,
.hero .hero-next i {
  font-size: 1.2rem;
  color: var(--default-color);
}

.hero .hero-prev i:hover,
.hero .hero-next i:hover {
  color: #000000;
}

.hero .hero-prev::after,
.hero .hero-next::after {
  display: none;
}

.hero .hero-prev:hover,
.hero .hero-next:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  opacity: 1;
}

@media (max-width: 768px) {
  .hero .hero-prev,
  .hero .hero-next {
    display: none;
  }
}

.hero .hero-prev {
  left: 28px;
}

.hero .hero-next {
  right: 28px;
}

.hero .hero-indicators {
  position: absolute;
  bottom: 75px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 5;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero .hero-indicators li {
  width: 28px;
  height: 3px;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 60%);
  border: none;
  border-radius: 2px;
  padding: 0;
  cursor: pointer;
  transition: width 0.4s ease, background-color 0.3s ease;
  opacity: 1;
  text-indent: 0;
  margin: 0;
}

.hero .hero-indicators li.active {
  width: 60px;
  background-color: var(--accent-color);
}

.hero .hero-info-bar .info-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 30px 35px;
  transition: all 0.3s ease;
  position: relative;
  background: transparent;
}

.hero .hero-info-bar .info-bar-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background-color: var(--accent-color);
  opacity: 0.5;
}

.hero .hero-info-bar .col-md-4:last-child .info-bar-item::after {
  display: none;
}

.hero .hero-info-bar .info-bar-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.hero .hero-info-bar .info-bar-item i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.hero .hero-info-bar .info-bar-item:hover i {
  transform: scale(1.15);
}

.hero .hero-info-bar .info-bar-item .info-bar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero .hero-info-bar .info-bar-item .info-bar-text span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.hero .hero-info-bar .info-bar-item .info-bar-text strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .hero .hero-info-bar {
    display: flex;
    flex-direction: column;
  }

  .hero .hero-info-bar .info-bar-item {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }

  .hero .hero-info-bar .info-bar-item::after {
    top: auto;
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
  }

  .hero .hero-info-bar .col-md-4:last-child .info-bar-item::after {
    display: none;
  }

  .hero .hero-info-bar .info-bar-item .info-bar-text {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .hero .hero-slide {
    min-height: auto;
    padding: 90px 0 120px;
  }

  .hero .hero-content {
    padding-top: 80px;
  }

  .hero .hero-indicators {
    bottom: 60px;
  }
}

@media (max-width: 768px) {
  .carousel-item:nth-child(1) .hero-slide {
    background-image: url('../img/hero/ansian-transport-hero-01-mobile.webp') !important;
    background-size: cover;
    background-position: center;
  }

  .carousel-item:nth-child(2) .hero-slide {
    background-image: url('../img/hero/ansian-transport-hero-02-mobile.webp') !important;
    background-size: cover;
    background-position: center;
  }
}

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

.about-home .about-images {
  position: relative;
  height: 480px;
}

.about-home .about-images .image-stack {
  position: relative;
  height: 100%;
}

.about-home .about-images .image-stack .image-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 95%;
  height: 70%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

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

.about-home .about-images .image-stack .image-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  height: 50%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
  z-index: 2;
}

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

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

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

  .about-home .about-images .image-stack .image-overlay {
    width: 85%;
    height: 55%;
  }
}

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

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

.about-home .about-content .section-header h2 {
  font-size: 1.5rem;
  color: var(--default-color);
  font-weight: 900;
  font-style: italic;
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 768px) {
  .about-home .about-content .section-header h2 {
    font-size: 1.75rem;
  }
}

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

.about-home .about-content .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (max-width: 576px) {
  .about-home .about-content .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  margin: 2.5rem 0 3rem;
  }
}

.about-home .about-content .features-grid .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-home .about-content .features-grid .feature-item .feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 0%);
  color: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.about-home .about-content .features-grid .feature-item .feature-content h4 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
  color: var(--default-color);
}

.about-home .about-content .features-grid .feature-item .feature-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
}

@media (max-width: 576px) {

  .about-home .about-content .features-grid .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-home .about-content .features-grid .feature-item .feature-icon {
    margin-bottom: 6px;
  }

  .about-home .about-content .features-grid .feature-item .feature-content {
    text-align: center;
  }

  .about-home .about-content .features-grid .feature-item .feature-content h4 {
    text-align: center;
  }

  .about-home .about-content .features-grid .feature-item .feature-content p {
    text-align: center;
    max-width: 300px;
  }
}

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

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

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

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

.about-home .about-content .about-actions .btn-discover:hover i {
  background-color: var(--accent-color);
  color: var(--default-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-home .about-content .about-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

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

@media (max-width: 992px) {
  .about-home .about-content {
    padding-left: 0;
    margin-top: 3rem;
    text-align: center;
  }

  .about-home .about-content .features-grid .feature-item {
    text-align: left;
  }
}

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

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

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

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

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

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

.services .services-truck .truck-overlay:hover img {
  transform: scale(1.1);
}

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

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

.services .services-truck .truck-info h3 {
  font-size: 25px;
  font-weight: 800;
  color: var(--background-color);
  margin-bottom: 10px;
  line-height: 1.25;
}

.services .services-truck .truck-info h3 .brand {
  color: var(--accent-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.equipment-item:hover {
  background: var(--default-color);
  color: var(--background-color);
}

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

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

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

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

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

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

  .services .services-truck .truck-info {
    padding: 30px;
  }

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

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

@media (max-width: 768px) {
  .services .services-truck {
    height: 500px;
    margin-bottom: 30px;
  }

.services .services-truck .truck-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

  .services .services-truck .truck-info h3 {
    font-size: 20px;
  }

  .services .services-truck .truck-info .truck-meta {
    flex-direction: column;
    gap: 10px;
  }

  .services .services-truck .truck-info .description {
    font-size: 15px;
  }

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

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

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

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

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

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

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

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

.trailers {
  padding: 15px 0 75px;
}

.trailers .trailers-spotlight {
  background: var(--default-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.075);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.trailers .trailers-spotlight:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.trailers .trailers-spotlight .spotlight-image {
  position: relative;
  height: 100%;
  min-height: 350px;
  overflow: hidden;
}

.trailers .trailers-spotlight .spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.trailers .trailers-spotlight .spotlight-image .accent-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 25px;
  letter-spacing: 0.75px;
  color: var(--default-color);
  background: var(--accent-color);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.trailers .trailers-spotlight .spotlight-image .accent-tag i {
  color: var(--default-color);
  font-size: 15px;
}

.trailers .trailers-spotlight .spotlight-details {
  padding: 40px;
}

.trailers .trailers-spotlight .spotlight-details .label-trailers {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.75px;
  border-radius: 25px;
  color: var(--default-color);
  background: var(--accent-color);
  margin-bottom: 16px;
}

.trailers .trailers-spotlight .spotlight-details .label-trailers i {
  color: var(--default-color);
  font-size: 15px;
}

.trailers .trailers-spotlight .spotlight-details .trailer-name {
  font-size: 25px;
  font-weight: 800;
  color: var(--accent-color);
  margin: 0 0 4px;
}

.trailers .trailers-spotlight .spotlight-details .trailer-title {
  color: var(--background-color);
  font-weight: 500;
  font-size: 17px;
  font-style: italic;
  margin-bottom: 16px;
}

.trailers .trailers-spotlight .spotlight-details .trailer-summary {
  font-size: 15px;
  color: color-mix(in srgb, var(--background-color), transparent 5%);
  line-height: 1.5;
  margin-bottom: 24px;
}

.trailers .trailers-spotlight .spotlight-details .accolades {
  margin-bottom: 25px;
}

.trailers .trailers-spotlight .spotlight-details .accolades li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.trailers .trailers-spotlight .spotlight-details .accolades li:last-child {
  border-bottom: none;
}

.trailers .trailers-spotlight .spotlight-details .accolades li i {
  font-size: 20px;
  color: var(--accent-color);
}

.trailers .trailers-spotlight .spotlight-details .chef-signature img {
  max-width: 250px;
  opacity: 1;
}

@media (max-width: 768px) {
  .trailers .trailers-spotlight .row {
    display: flex;
    flex-direction: column-reverse;
  }

  .trailers .trailers-spotlight .spotlight-details {
    text-align: center;
    padding: 25px;
  }

  .trailers .trailers-spotlight .spotlight-details .label-trailers {
    justify-content: center;
  }

  .trailers .trailers-spotlight .spotlight-details .trailer-name,
  .trailers .trailers-spotlight .spotlight-details .trailer-title,
  .trailers .trailers-spotlight .spotlight-details .trailer-summary {
    text-align: center;
  }

  .trailers .trailers-spotlight .spotlight-details .accolades li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0px;
  }

  .trailers .trailers-spotlight .spotlight-details .accolades li i {
    margin-bottom: 5px;
    font-size: 25px;
  }

  .trailers .trailers-spotlight .spotlight-details .chef-signature {
    display: flex;
    justify-content: center;
    margin-top: 45px;
  }

  .trailers .trailers-spotlight .spotlight-image {
    min-height: 220px;
  }

  .trailers .trailers-spotlight .spotlight-image .accent-tag {
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
    white-space: nowrap;
  }

  .trailers .trailers-spotlight .spotlight-details .trailer-title {
    font-size: 15px;
    margin-bottom: 25px;
  }
}

.services-cta-section {
  padding: 0px 0 60px 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-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(--default-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: 800;
  color: var(--accent-color);
}

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

.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(--accent-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: color-mix(in srgb, var(--default-color), transparent 0%);
}

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

.btn-transport-premium:hover {
  background: transparent; 
  border-color: var(--accent-color);
  transform: translateY(-5px);
  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(--default-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: none;
    border-bottom: 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;
  }
}

.servicess-ultra-modern {
  padding: 0px 0 75px;
}

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

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

.services-icon-box {
  width: 65px;
  height: 65px;
  background: color-mix(in srgb, var(--default-color), transparent 0%);
  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;
}

.services-icon-box i {
  font-size: 30px;
  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;
}

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

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

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

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

.services-card-custom:hover .services-icon-box i {
  color: var(--default-color);
  transform: rotate(15deg);
}

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

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

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

/*--------------------------------------------------------------
# Transports Section - TRANSPORTURI
--------------------------------------------------------------*/
.transports {
  padding: 60px 0;
}

.transports .intro-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px; 
  background: var(--accent-color);
  color: var(--default-color); 
  padding: 10px 22px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  margin-bottom: 15px;
}

.dot-live {
  width: 10px;
  height: 10px;
  background-color: var(--default-color); 
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.dot-live::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--default-color);
  border-radius: 50%;
  z-index: 0;
  animation: dot-pulse-animation 1.5s infinite ease-out;
}

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

.transports .intro-content .section-heading {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--default-color);
  margin-bottom: 0.15rem;
}

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

.transports .intro-content .section-description {
  font-size: 1.1rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  margin-bottom: 2rem;
}

.transports-buttons-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 35px;
}

.transports .intro-content .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-color);
  color: var(--default-color);
  padding: 10px 25px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.transports .intro-content .cta-button i {
  font-size: 25px;
}

.transports .intro-content .cta-button:hover i {
  color: var(--accent-color);
}

.transports .intro-content .cta-button:hover {
  background: #000000;
  color: #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

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

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

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

  .transports .intro-content .section-badge {
    justify-content: center;
  }

  .transports .intro-content .section-heading {
    font-size: 1.85rem;
    margin-bottom: 0.25rem;
  }

  .transports .intro-content .section-heading2 {
    font-size: 1.1rem;
  }

  .transports .intro-content .section-description {
    font-size: 1.1rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.75rem !important;
  }

  .transports-buttons-group {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .transports .intro-content .cta-button,
  .transports .intro-content .cta-button-outline {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

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

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

.transports2 .featured-tours-slider {
  padding-bottom: 0;
}

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

.transports2 .transports2-slider .swiper-pagination {
  position: relative;
  bottom: auto;
  margin: 10px 0 0 0;
  padding: 0;
}

.transports2 .transports2-slider .swiper-pagination-bullets {
  margin-bottom: 0;
}

.transports2 .transports2-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid rgba(0, 0, 0, 1);
  transition: all 0.3s ease;
}

.transports2 .transports2-slider .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.transports2 .transports2-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
}

.transports2 .transports2-card .transports2-image {
  position: relative;
  overflow: hidden;
  cursor: grab;
}

.transports2 .transports2-card .transports2-image:active {
  cursor: grabbing;
}

.transports2 .transports2-card .transports2-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.3s ease;
}

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

.transports2 .transports2-card:hover .category-label {
  color: #FFFFFF;
}

.transports2 .transports2-content {
  background-color: var(--default-color);
  padding: 20px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.transports2 .title-label {
  font-size: 10px;
  color: color-mix(in srgb, var(--background-color), transparent 0%);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  margin: 0;
}

.transports2 .category-label {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-top: 0px;
}

.info-card {
    width: 100%;
    max-width: 60%;           
    margin: 60px auto 0;
    background: var(--background-color);
    border-radius: 25px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 25%);
    border-bottom: 5px solid color-mix(in srgb, var(--accent-color), transparent 25%);
    padding: 45px 45px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: hidden;
    align-items: center; 
    text-align: center;
}

.info-wrapper {
    width: 100%;
}

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

.info-badge {
    display: inline-block;
    width: max-content;
    background: var(--accent-color);
    color: var(--default-color);
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

.info-card h3 {
    color: var(--default-color);
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 10px;
}

.info-text {
    color: color-mix(in srgb, var(--default-color), transparent 5%);
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}

.info-footer {
    margin-top: auto;
    padding-top: 25px;
    display: flex;
    justify-content: center; 
    align-items: center;
}

.footer-logo-black {
    height: 65px; 
    max-width: 800px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

.info-card:hover .footer-logo-black {
    transform: scale(1.15);
}

@media (max-width: 768px) {
  .info-card {
    max-width: 95%;
    margin: 60px auto 0;
    padding: 25px 20px;
    border-radius: 18px;
  }

  .info-card h3 {
    font-size: 25px;
  }

  .info-text {
    font-size: 15px;
    line-height: 1.4;
  }

  .info-badge {
    font-size: 10px;
    padding: 4px 10px;
  }

  .info-footer {
    padding-top: 15px;
  }

  .footer-logo-black {
    height: 50px;
    max-width: 100%;
  }
}

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

.why-us .image-mosaic {
  position: relative;
  padding-bottom: 2rem;
}

.why-us .image-mosaic img {
  border-radius: 15px;
  object-fit: cover;
  height: 285px;
  width: 100%;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 768px) {
  .why-us .image-mosaic img {
    height: 200px;
  }
}

.why-us .image-mosaic .experience-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--default-color), color-mix(in srgb, var(--default-color), black 15%));
  color: var(--contrast-color);
  border-radius: 10px;
  padding: 0.75rem 3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  animation: float-badge 2.5s ease-in-out infinite;
  overflow: hidden;
  white-space: nowrap;
}

.why-us .image-mosaic .experience-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: skewX(-25deg);
  animation: shimmer 2.5s infinite;
}

.why-us .image-mosaic .experience-badge .badge-number {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--contrast-color);
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.why-us .image-mosaic .experience-badge .badge-text {
  font-size: 1.05rem;
  color: var(--accent-color);
  line-height: 1.5;
  letter-spacing: 1px;
  font-weight: 500;
}

@keyframes float-badge {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

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

@media (max-width: 768px) {
  .why-us .image-mosaic .experience-badge {
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .why-us .image-mosaic {
    margin-bottom: 0.75rem;
  }
}

.why-us .why-us-content .subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--default-color);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 3rem;
}

.why-us .why-us-content .subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2px;
  background: var(--accent-color);
}

.why-us .why-us-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--default-color);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .why-us .why-us-content h2 {
    font-size: 1.75rem;
  }
}

.why-us .why-us-content h2 .highlight {
  color: var(--accent-color);
}

.why-us .why-us-content .intro {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  line-height: 1.5;
  margin-bottom: 1rem;
}

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

  .why-us .why-us-content .subtitle {
    padding-left: 0;
  }

  .why-us .why-us-content .subtitle::before {
    display: none;
  }
}

.why-us .stats-banner {
  margin-top: 60px;
  margin-bottom: 60px;
  background: var(--accent-color);
  border-radius: 15px;
  padding: 0.5rem 0;
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.why-us .stats-banner .stat-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 1rem;
  position: relative;
}

.why-us .stats-banner .stat-block::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--default-color);
}

.why-us .stats-banner .stat-block i {
  font-size: 2rem;
  color: var(--default-color);
  opacity: 1;
}

.why-us .stats-banner .stat-block .stat-info {
  display: flex;
  flex-direction: column;
}

.why-us .stats-banner .stat-block .stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--default-color);
  font-family: var(--heading-font);
  line-height: 1.2;
}

.why-us .stats-banner .stat-block .stat-desc {
  font-size: 0.85rem;
  color: var(--default-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-us .stats-banner .col-md-3:last-child .stat-block::after {
  display: none;
}

@media (max-width: 768px) {
  .why-us .stats-banner .stat-block {
    padding: 1rem 0.5rem;
    gap: 0.5rem;
    flex-direction: column;
    text-align: center;
  }

  .why-us .stats-banner .stat-block i {
    font-size: 1.85rem;
  }

  .why-us .stats-banner .stat-block .stat-value {
    font-size: 1.5rem;
  }

  .why-us .stats-banner .stat-block .stat-desc {
    font-size: 0.85rem;
    line-height: 1.3;
    letter-spacing: 0.3px;
    margin-top: 2px;
  }

  .why-us .stats-banner .stat-block::after {
    display: none;
  }
}

.why-us .why-card {
  display: flex;
  background: var(--background-color);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.why-us .why-card .card-accent {
  width: 5px;
  min-height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.why-us .why-card .card-body-inner {
  padding: 1.75rem 1.5rem;
}

.why-us .why-card .card-body-inner i {
  font-size: 1.75rem;
  color: var(--default-color);
  margin-bottom: 1rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.why-us .why-card .card-body-inner h5 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--default-color);
}

.why-us .why-card .card-body-inner p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  margin: 0;
}

.why-us .why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--default-color), transparent 85%);
}

.why-us .why-card:hover .card-accent {
  background: var(--accent-color);
  width: 5px;
}

.why-us .why-card:hover .card-body-inner i {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .why-us {
    padding: 60px 0;
  }

  .why-us .stats-banner {
    margin-top: 2.5rem;
  }
}

.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.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-right: 5px;
}

.vertical-separator {
    width: 1px;
    height: 45px;
    background: linear-gradient(to bottom, transparent, var(--accent-color), transparent);
    opacity: 0.85;
}

.promo-text-long {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
    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(--contrast-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: 120px 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, #191818, transparent 25%);
}

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

.call-to-action .cta-content2 h2.cta-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 0.65;
}

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

.call-to-action .cta-content2 h2 .sub-text {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--background-color);
  letter-spacing: 7.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 5%);
  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(250, 210, 16, 0.5);
  background: rgba(250, 210, 16, 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: 1.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.5rem;
  color: var(--accent-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: 600;
  text-transform: uppercase; 
  color: #ffffff;
  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:hover {
  transform: translateY(0px);
}

.call-to-action .cta-features .feature-item:hover i {
  transform: rotate(-15deg);
  filter: drop-shadow(0 0 15px rgba(var(--accent-color-rgb), 0.8));
}

.call-to-action .cta-features .feature-item:hover span {
  opacity: 1;
  color: 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;
    line-height: 0.75;
  }

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 576px) {
  .bento2-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    gap: 20px;
  }

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

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

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

.fleet-banner {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin: 30px 0 0px;
}

.fleet-banner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  transform-origin: center center;
  will-change: transform;
}

.fleet-banner:hover img {
  transform: scale(1.025); 
}

@media (max-width: 768px) {
  .fleet-banner img {
    height: 200px;
  }
}

.fleet-banner .fleet-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 50px;
  background: linear-gradient(to top, color-mix(in srgb, var(--default-color), transparent 5%), transparent);
  text-align: center;
}

@media (max-width: 768px) {
  .fleet-banner .fleet-hero-overlay {
    padding: 20px 25px;
  }
}

.fleet-banner .fleet-hero-overlay h1 {
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1px;
  color: var(--accent-color);
  margin: 0 auto;
  display: inline-block;      
  transform-origin: center; 
  will-change: transform;
  transition: color 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-banner:hover .fleet-hero-overlay h1 {
  color: var(--background-color);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .fleet-banner .fleet-hero-overlay h1 {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# 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: var(--accent-color);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.075); 
    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: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: color-mix(in srgb, var(--default-color), transparent 0%);
    margin-bottom: 5px;
    display: inline-block;
}

.card-title {
    font-size: 25px;
    font-weight: 800;
    color: var(--default-color);
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.card-desc {
    font-size: 16px;
    color: var(--default-color);
    margin-bottom: 30px;
    line-height: 1.5;

}

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

.stat2-box strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #000000;
    line-height: 0.75;
}

.stat2-box span {
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.85);
}

.btn-container {
    display: flex;
    gap: 20px; 
    flex-wrap: wrap; 
    align-items: center;
}

.btn-card {
    padding: 14px 32px;
    background: #ffffff;
    color: var(--default-color);
    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;
}

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

.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.1);
    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) {
    .transport-card-bordered {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .content-side,
    .video-side {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

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

    .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-grid2 {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 30px;
    }

    .stat2-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-card {
  height: 100%;
  padding: 30px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 0%);
  border-radius: 10px;
  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 5%);
}

.faq .faq-card .btn-primary {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 25px;
  background-color: var(--default-color);
  color: var(--accent-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(-3px);
  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: var(--default-color);
  border-radius: 10px;
  cursor: pointer;
}

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

.faq .faq-list .faq-item h3 {
  font-size: 17px;
  color: var(--background-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(--background-color), transparent 5%);
  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;
  }
}

/*--------------------------------------------------------------
# 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: 1250px;
  margin: 30px auto; 

}

.wow-card {
  background: transparent;
  padding: 40px 15px 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.075);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  z-index: 1;

}

.wow-card .icon-box {
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  color: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  border-radius: 15px;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center;
  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);
  z-index: 10;
}

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

.wow-card h3 {
  font-size: 17px;
  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 5%);
  margin-bottom: 20px;
  line-height: 1.4;
}

.card-link {
  display: inline-block;
  padding: 6px 18px;
  background-color: var(--default-color);
  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 {
  color: var(--background-color);
}

@media (max-width: 768px) {
  .contact-modern {
    padding: 60px 15px 0;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 75px;
    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: 30px 0 60px;
  overflow: visible; 

}

.contact .contact-form-container {
  background-color: var(--background-color);
  padding: 40px; 
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.075);
}

.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-shrink: 0;
  position: relative;
}

.contact .map-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

@media (max-width: 768px) {
  .contact .map-wrapper {
    height: 275px;
  }
}

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

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

.form-content.company-vertical-layout {
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  height: 100%;
}

.info-header-modern {
  margin-bottom: 25px;
}

.info-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--default-color);
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.modern-title {
  font-size: 25px;
  font-weight: 800;
  color: var(--default-color);
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

.description-ample {
  font-size: 15px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin: 0;
}

@media (max-width: 768px) {
  .info-header-modern {
    text-align: center;
  }

  .info-badge {
    display: inline-block;
  }

  .modern-title {
    text-align: center;
  }

  .description-ample {
    text-align: center;
  }
}

.info-body-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
  justify-content: center; 
}

.info-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-row i {
  font-size: 20px;
  color: var(--accent-color);
  background: var(--default-color);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.info-row .label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-transform: uppercase;
  letter-spacing: 0.75px;
}

.info-row .value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--default-color);
}

.info-footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px; 
  flex-grow: 1;
  background-color: var(--accent-color);
  color: var(--default-color);
  border-radius: 10px;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background-color: var(--default-color);
  color: #ffffff;
  transform: translateY(0px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }
  .modern-title {
    font-size: 22px;
  }
  .info-footer-socials {
    flex-wrap: wrap;
  }
  .social-btn {
    flex-basis: calc(33.33% - 12px); 
  }
}


/*--------------------------------------------------------------
# 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);
  }
}


