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

/* 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: #bd8528; /* 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(--default-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(--default-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(--default-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 30px; 
  display: block;     
  width: fit-content;
  text-align: center;
}

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

.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: 850px;
  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(--contrast-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: 22px 25px;
  margin-top: 0;
  border-radius: 20px;
  background: var(--accent-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer .footer-services-list {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--contrast-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer .copyright .copy-main {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1;
}

.copyright-icon {
  font-size: 15px;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .social-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}

@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: 0px;
  }

  .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 !important;
    visibility: visible;
    opacity: 1;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    animation: fadeOutModern 0.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
    animation-delay: 1.5s;
    pointer-events: none;
}

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

@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 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: 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;
  position: relative;
  overflow: visible;
  padding-bottom: 75px;
}

.section-title .title-wrap {
  position: relative;
  display: inline-block;
}

.section-title .watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(30px, 8vw, 70px);
  font-weight: 800;
  letter-spacing: 0px;
  text-transform: uppercase;
  white-space: nowrap;
  color: color-mix(in srgb, var(--default-color), transparent 90%);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.section-title .eyebrow {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--default-color);
  margin-bottom: 30px;
}

.section-title h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 45px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0px;
  color: var(--accent-color);
}

.section-title p {
  position: relative;
  z-index: 1;
  margin: 15px 0 0px;
  font-size: 17px;
  line-height: 1;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
}

@media (max-width: 768px) {
  .section-title {
    padding-bottom: 60px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .section-title .watermark {
    font-size: 40px;
    white-space: nowrap;
  }

  .section-title .eyebrow {
    font-size: 12px;
    letter-spacing: 5px;
    margin-bottom: 20px;
  }

  .section-title h2 {
    font-size: 35px; 
    line-height: 1.2;
  }

  .section-title p {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 10px;
  }
}

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

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

/*--------------------------------------------------------------
# Hero Section - ACASĂ
--------------------------------------------------------------*/
.hero {
  padding: 0;
  margin-bottom: 75px;
}

.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%) 5%, 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.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
  padding: 10px 25px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero .hero-content h1 {
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
}

.hero .hero-content h1 em {
  font-style: normal;
  font-size: 30px;
  font-weight: 800;
  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: 1.15rem;
  color: var(--contrast-color);
  margin-bottom: 35px;
  line-height: 1.75;
  max-width: 70%;
}

.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: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 34px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  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: transparent;
  color: var(--constrast-color);
}

.hero .hero-content .hero-actions .btn-hero2 {
  display: inline-block;
  background-color: transparent;
  color: var(--contrast-color);
  padding: 14px 34px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  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-hero2:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

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

  .hero .hero-slide::before {
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--background-color), transparent 10%) 0%,
      color-mix(in srgb, var(--background-color), transparent 25%) 50%,
      color-mix(in srgb, var(--background-color), transparent 10%) 100%
    );
  }

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

  .hero .hero-content h1 {
    font-size: 40px;
    line-height: 1.15;
  }

  .hero .hero-content h1 em {
    display: block;
    font-size: 23px;
    line-height: 1.25;
    margin-top: 10px;
  }

  .hero .hero-content p {
    max-width: 100%;
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .hero-content .hero-actions {
    justify-content: center;
    gap: 15px;
  }

  .hero .hero-content .hero-actions .btn-hero,
  .hero .hero-content .hero-actions .btn-hero2 {
    width: 100%;
    max-width: 300px;
  }
}

.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/grupo-magda-hero-01-mobile.webp') !important;
    background-size: cover;
    background-position: center;
  }

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

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

.about-2 .section-intro {
  max-width: 850px;
  margin: 60px auto 0px;
}

.about-2 .section-intro .subtitle {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--default-color);
  margin-bottom: 10px;
}

.about-2 .section-intro .title {
  font-size: 30px;
  color: var(--accent-color);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.about-2 .section-intro .desc {
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  line-height: 1.75;
  margin-bottom: 0rem;
}

.about-2 .highlight-cards {
  margin-top: 60px;
}

.about-2 .highlight-cards .highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.075);
  margin-bottom: 60px;
  height: 350px;
  will-change: transform;
}

.about-2 .highlight-cards .highlight-card.elevated {
  transform: translateY(-1rem);
}

.about-2 .highlight-cards .highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-2 .highlight-cards .highlight-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 50%, transparent 100%);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.about-2 .highlight-cards .highlight-card .card-content {
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease;
}

.about-2 .highlight-cards .highlight-card .card-content .card-title {
  color: var(--accent-color);
  font-size: 1.25rem;
  font-weight: 800;
}

.about-2 .highlight-cards .highlight-card:hover img {
  transform: scale(1.025);
}

@media (max-width: 767px) {
  .about-2 .section-intro {
    margin: 60px auto 30px;
    text-align: center;
  }

  .about-2 .section-intro .desc {
    font-size: 16px;
  }

  .about-2 .highlight-cards {
    margin-top: 0px;
  }

  .about-2 .highlight-cards .highlight-card,
  .about-2 .highlight-cards .highlight-card.elevated {
    transform: none;
    margin-bottom: 30px;
    height: 350px;
  }

  .about-2 .highlight-cards .highlight-card .card-title {
    font-size: 1.1rem;
  }
}

.about-2 .values-section .values-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.075);
  will-change: transform;
}

.about-2 .values-section .values-image img {
  width: 100%;
  transition: transform 0.3s ease;
}

.about-2 .values-section .values-image:hover img {
  transform: scale(1.025);
}

.about-2 .values-section .values-content {
  padding: 0 1rem;
}

.about-2 .values-section .values-content .values-title {
  font-size: 30px;
  color: var(--accent-color);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.about-2 .values-section .values-content .values-desc {
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.about-2 .values-section .values-content .values-list .value-item {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.about-2 .values-section .values-content .values-list .value-item:last-child {
  margin-bottom: 0;
}

.about-2 .values-section .values-content .values-list .value-item .value-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}

.about-2 .values-section .values-content .values-list .value-item .value-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about-2 .values-section .values-content .values-list .value-item .value-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 2rem;
}

.about-2 .values-section .values-content .values-list .value-item .value-text h4 {
  font-size: 1.15rem;
  color: var(--accent-color);
  font-weight: 800;
  margin: 0;
  line-height: 2rem;
}

.about-2 .values-section .values-content .values-list .value-item .value-text p {
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  margin: 0.25rem 0 0;
  line-height: 1.75;
}

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

  .about-2 .values-section .values-content .values-title {
    font-size: 28px;
  }

  .about-2 .values-section .values-content .values-desc {
    font-size: 16px;
  }

  .about-2 .values-section .values-content .values-list .value-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-2 .values-section .values-content .values-list .value-item .value-icon {
    margin-right: 0;
    margin-bottom: 0.75rem;
  }

  .about-2 .values-section .values-content .values-list .value-item .value-icon i {
    font-size: 30px;
  }

  .about-2 .values-section .values-content .values-list .value-item .value-text p {
    align-items: center;
    min-height: auto;
    font-size: 16px;
  }

  .about-2 .values-section .values-content .values-list .value-item .value-text h4 {
    line-height: 1.4;
  }
}

.about-stats {
  padding: 0px 0;
}

.about-stats .stats-content .label-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--default-color);
  margin-bottom: 10px;
}

.about-stats .stats-content h2 {
  font-size: 30px;
  color: var(--accent-color);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.about-stats .stats-content p {
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  line-height: 1.75;
  margin-bottom: 25px;
}

.about-stats .stats-content p:last-child {
  margin-bottom: 0;
}

.about-stats .counter-card {
  background: var(--default-color);
  border-radius: 15px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
  height: 100%;
}

.about-stats .counter-card .counter-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 0%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-stats .counter-card .counter-icon i {
  font-size: 30px;
  color: var(--contrast-color);
}

.about-stats .counter-card .counter-data h3 {
  font-size: 30px;
  font-weight: 800;
  color: var(--contrast-color);
  margin-bottom: 0;
  line-height: 1.1;
  display: flex;
  align-items: center;
}

.about-stats .counter-card .counter-data p {
  font-size: 15px;
  color: var(--contrast-color);
  margin: 4px 0 0;
}

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

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

  .about-stats .stats-content .label-tag,
  .about-stats .stats-content h2,
  .about-stats .stats-content p {
    text-align: center;
  }

  .about-stats .stats-content p {
    font-size: 16px;
  }

  .about-stats .counter-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-stats .counter-card .counter-data {
    text-align: center;
  }

  .about-stats .counter-card .counter-data h3 {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-stats .stats-content {
    text-align: center;
    margin-bottom: 30px;
  }

  .about-stats .counter-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-stats .counter-card .counter-data h3 {
    justify-content: center;
  }

  .about-stats .stats-content p {
    font-size: 16px;
  }
}

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

.services .intro-area {
  margin-bottom: 0px;
}

@media (max-width: 768px) {
  .services .intro-area {
    margin-bottom: 60px;
  }
}

.services .image-block {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.services .image-block img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .services .image-block img {
    height: 350px;
  }
}

.services .intro-content h3 {
  font-size: 30px;
  color: var(--accent-color);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .services .intro-content h3 {
    font-size: 1.7rem;
  }
}

.services .intro-content p {
  font-size: 17px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  margin-bottom: 1rem;
}

.services .highlight-points {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.services .highlight-points .point-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.15rem 0;
}

.services .highlight-points .point-item i {
  color: var(--accent-color);
  font-size: 1.35rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.services .highlight-points .point-item span {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

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

.services .intro-content .transport-button {
  display: inline-flex;
  align-items: center;
  background: var(--default-color);
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  gap: 15px;
  flex-shrink: 0;
}

.services .intro-content .transport-button .icon-box-contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 1);
  color: var(--default-color);
  border-radius: 10px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  will-change: transform;
  flex-shrink: 0;
}

.services .intro-content .transport-button .status-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 13px;
  height: 13px;
  background: #10b981;
  border: 1px solid var(--default-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.025rem;
  letter-spacing: 0.5px;
  font-weight: 800;
  line-height: 1.2;
}

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

.services .intro-content .transport-button .transport-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin-left: 4px;
  flex-shrink: 0;
}

.services .intro-content .contact-icons {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.services .intro-content .contact-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: var(--accent-color);
  color: var(--default-color);
  font-size: 19px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.services .intro-content .contact-icon-link:hover {
  background: var(--default-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
  box-shadow: 0 6px 16px -4px color-mix(in srgb, var(--accent-color), transparent 85%);
}

@media (max-width: 768px) {
  .services .intro-area {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .services .intro-area > div:first-child {
    order: 2;
  }

  .services .intro-area > div:last-child {
    order: 1;
  }

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

  .services .intro-content .intro-content-cta {
    justify-content: center;
  }

  .services .intro-content .contact-icons {
    justify-content: center;
  }
}

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

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

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

.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 50%) 35%, 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: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--contrast-color), transparent 5%);
  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.025);
}

.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;
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 15px;
  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);
}

.services2 .help-banner {
  margin-top: 60px;
  padding: 30px 35px;
  background: var(--accent-color);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.services2 .help-banner .banner-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--default-color), transparent 0%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services2 .help-banner .banner-icon i {
  font-size: 30px;
  color: var(--contrast-color);
}

.services2 .help-banner .banner-text h4 {
  font-size: 20px;
  font-weight: 900;
  color: var(--contrast-color);
  margin-bottom: 5px;
}

.services2 .help-banner .banner-text p {
  font-size: 17px;
  color: color-mix(in srgb, var(--contrast-color), transparent 5%);
  margin-bottom: 0;
}

.services2 .help-banner .button-group {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.services2 .help-banner .action-btn {
  position: relative; 
  overflow: hidden;    
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;           
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.services2 .help-banner .action-btn.filled {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.services2 .help-banner .action-btn i {
  font-size: 1.5rem;   
  transition: transform 0.3s ease;
  display: inline-block;
}

.services2 .help-banner .action-btn:hover {
  transform: translateY(-5px);
  background: var(--contrast-color); 
  color: var(--default-color);
}

@media (max-width: 767px) {
  .services2 .help-banner {
    text-align: center;
    padding: 30px 20px;
  }

  .services2 .help-banner .row {
    flex-direction: column;
    align-items: center;
  }

  .services2 .help-banner .banner-text {
    text-align: center;
    margin: 15px 0;
  }

  .services2 .help-banner .button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

.services2 .help-banner .banner-text h4 {
  margin-bottom: 10px;
}

  .services2 .help-banner .banner-text p {
    margin-bottom: 25px;
  }

  .services2 .help-banner .action-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

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

  .services2 .spot-card {
    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: 18px;
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;
  }
}

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

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

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

.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: 800;
  color: var(--accent-color);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.services3-card-custom p {
  font-size: 16px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  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%;
}

.ai-coverage {
  background: var(--contrast-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.075);
  margin-top: 60px;
}

.ai-coverage__banner {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem 2.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}

.ai-coverage__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--contrast-color);
  margin-bottom: 0;
}

.ai-coverage__title {
  font-size: 30px;
  font-weight: 900;
  color: var(--default-color);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.ai-coverage__text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--contrast-color);
  margin-bottom: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ai-coverage__grid {
  padding: 1.75rem;
}

.ai-country-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
}

.ai-country {
  background: var(--contrast-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 15px;
  width: 100%;
  height: 125px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.5rem;
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.ai-country:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 12px 28px rgba(13, 59, 102, 0.1);
}

.ai-country__flag {
  width: 45px;
  height: 35px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(13, 59, 102, 0.5);
}

.ai-country__name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--default-color);
  line-height: 1.25;
  margin: 0;
}

/* ---------- Ajustări responsive ---------- */
@media (max-width: 1199.98px) {
  .ai-country-grid {
    gap: 0.6rem;
  }

  .ai-country__flag {
    width: 38px;
    height: 27px;
  }

  .ai-country__name {
    font-size: 0.76rem;
  }
}

/* tabletă: 4 pe rând */
@media (max-width: 991.98px) {
  .ai-country-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }

  .ai-country__flag {
    width: 42px;
    height: 30px;
  }

  .ai-country__name {
    font-size: 0.82rem;
  }

  .ai-coverage__banner {
    padding: 2.25rem 1.75rem;
  }

  .ai-coverage__grid {
    padding: 2rem 1.75rem;
  }
}

/* telefon: 3 pe rând */
@media (max-width: 575.98px) {
  .ai-country-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .ai-country {
    height: 100px;
  }

  .ai-country__flag {
    width: 35px;
    height: 25px;
  }

  .ai-country__name {
    font-size: 0.85rem;
  }

  .ai-coverage__banner {
    padding: 2rem 1.25rem;
  }

  .ai-coverage__grid {
    padding: 1.5rem 1rem;
  }
}

/*--------------------------------------------------------------
# Banner Transport Section
--------------------------------------------------------------*/
.transport-banner-hero {
    overflow: visible;
    padding: 90px 0;
    background: rgba(0, 0, 0, 0.05);
}

.transport-card-banner {
    position: relative;
    background: var(--contrast-color);
    border-radius: 50px;
    padding: 3rem 3rem;
    min-height: 280px;
    overflow: visible;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.transport-content-banner {
    position: relative;
    z-index: 5;
    padding-right: 1rem;
    max-width: 100%;
}

.transport-eyebrow-banner {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--default-color);
    margin-bottom: 0rem;
    text-transform: uppercase;
}

.transport-title-banner {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.5;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.transport-subtitle-banner {
    font-size: 17px;
    color: color-mix(in srgb, var(--default-color), transparent 5%);
    line-height: 1.75;
    margin-bottom: 1.75rem;
    max-width: 90%;
}

.btn-transport-wrapper {
    display: inline-block;
}

.btn-transport-banner {
    display: inline-flex;
    align-items: center;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-transport-wrapper:hover .btn-transport-banner {
    background: var(--default-color);
    color: var(--contrast-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.transport-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transport-card-banner {
    overflow-x: clip;
}

.transport-truck-banner {
    position: absolute;
    right: -20%;
    top: 50%;
    transform: translateY(-50%);
    width: 125%;
    max-width: 720px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
    z-index: 3;
    pointer-events: none;
}

@media (max-width: 768px) {
  .transport-banner-hero {
    padding: 60px 0;
    overflow: hidden;
  }

  .transport-card-banner {
    padding: 2.5rem 1.5rem 3rem;
    border-radius: 30px;
    text-align: center;
    min-height: auto;
    overflow: hidden;
  }

  .transport-content-banner {
    padding-right: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .transport-eyebrow-banner {
    letter-spacing: 5px;
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .transport-title-banner {
    font-size: 2rem;
    line-height: 1.35;
    text-align: center;
    margin-bottom: 1rem;
  }

  .transport-subtitle-banner {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 2rem;
  }

  .btn-transport-banner {
    justify-content: center;
  }

  .transport-image-wrapper {
    position: relative;
    margin-top: 3rem;
    min-height: 220px;
    overflow: visible;
  }

  .transport-truck-banner {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 125%;     
    max-width: 850px;
    height: auto;
  }
}

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

.why-preface {
  margin-bottom: 60px;
}

.why-preface .preface-card {
  background: var(--default-color);
  border-radius: 25px;
  padding: 35px 45px;
  width: 75%;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--default-color), transparent 90%),
              0 15px 35px rgba(0, 0, 0, 0.075);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.why-preface .preface-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.why-preface .preface-logo-img {
  max-height: 75px;
  width: auto;
}

.why-preface .preface-divider {
  width: 1px;
  height: 50px;
  flex-shrink: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.why-preface .preface-text {
  flex: 1;
}

.why-preface .preface-text p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .why-preface .preface-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    width: 100%;
    gap: 25px;
  }

  .why-preface .preface-logo {
    justify-content: center;
    flex-direction: column;
  }

  .why-preface .preface-divider {
    display: none;
  }

  .why-preface .preface-text {
    text-align: center;
  }

  .why-preface .preface-logo-img {
    max-height: 60px;
  }
}

.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%));
  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.075);           
  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(-5px);
  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: 17px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  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);
}

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

@media (max-width: 991px) {
  .why-cards .card-bg-icon {
    top: 50%;
    right: 10px;
    bottom: auto;
    transform: translateY(-50%) rotate(0deg) scale(1);
    opacity: 0.065;
  }

  .why-cards .card-bg-icon i {
    font-size: 220px;
  }

  .why-cards .bento-card:hover .card-bg-icon {
    top: 50%;
    transform: translateY(-50%) rotate(0deg) scale(1);
    opacity: 0.065;
  }
}

.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: 90px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--default-color);
  overflow: hidden;
}

.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;
  opacity: 1;
  filter: saturate(0.7) contrast(1.1) brightness(0.85);
}

.call-to-action .cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 70% at 50% 50%, transparent 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.95) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.call-to-action .cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,0,0,0.5) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(0,0,0,0.15) 0%, transparent 50%);
  z-index: 2;
}

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

.call-to-action .cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--accent-color);
  margin-bottom: 0.5rem;
  text-align: center;
}

.call-to-action .cta-badge span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--contrast-color);
  text-align: center;
}

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

.call-to-action .cta-content2 h2 .highlight {
  font-size: 3rem;
  margin-bottom: 5px;
  display: block;
  text-transform: normal;
  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: 18px;
  font-weight: 400;
  margin: 0 auto 2.5rem auto;
  color: var(--contrast-color);
  line-height: 1.75;
  max-width: 650px;
  text-align: center;
}

.call-to-action .cta-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  margin: 0 auto 2.25rem auto;
}

.call-to-action .btn-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid transparent;;
  background: rgba(0,0,0,0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.call-to-action .btn-custom::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.call-to-action .btn-red {
  border-color: rgba(174,13,13,0.5);
}

.call-to-action .btn-green {
  border-color: rgba(37,211,102,0.5);
}

.call-to-action .btn-blue {
  border-color: rgba(0,123,255,0.5);
}

.call-to-action .btn-orange {
  border-color: rgba(255,140,0,0.5);
}

.call-to-action .btn-call::before     { background: rgba(174,13,13,0.15); }
.call-to-action .btn-whatsapp::before { background: rgba(37,211,102,0.15); }
.call-to-action .btn-email::before    { background: rgba(0,123,255,0.15); }
.call-to-action .btn-location::before    { background: rgba(255,140,0,0.15); }

.call-to-action .btn-custom:hover { transform: translateY(-5px); }
.call-to-action .btn-custom:hover::before { opacity: 1; }

.call-to-action .btn-call:hover {
  border-color: rgba(174,13,13,1);
  box-shadow: 0 10px 32px rgba(174,13,13,0.25);
}
.call-to-action .btn-whatsapp:hover {
  border-color: rgba(37,211,102,1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.25);
}
.call-to-action .btn-email:hover {
  border-color: rgba(0,123,255,1);
  box-shadow: 0 10px 32px rgba(0,123,255,0.25);
}
.call-to-action .btn-location:hover {
  border-color: rgba(255,140,0,1);
  box-shadow: 0 10px 32px rgba(255,140,0,0.25);
}

.call-to-action .icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.call-to-action .btn-call .icon-box     { background: rgba(174,13,13,0.25);   color: #e84040; }
.call-to-action .btn-whatsapp .icon-box { background: rgba(37,211,102,0.25); color: #25d366; }
.call-to-action .btn-email .icon-box    { background: rgba(0,123,255,0.25);   color: #4d8fff; }
.call-to-action .btn-location .icon-box    { background: rgba(255,140,0,0.25);   color: #ff8c00; }

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

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

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

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

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

.call-to-action .cta-features .feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 25px;
  width: 1px;
  background: rgba(255,255,255,0.25);
}

.call-to-action .cta-features .feature-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: color 0.3s, transform 0.3s;
}

.call-to-action .cta-features .feature-item span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--contrast-color);
  transition: color 0.3s;
}

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

  .call-to-action .cta-badge {
    margin-bottom: 1.25rem;
  }

  .call-to-action .cta-badge span {
    font-size: 0.7rem;
  }

  .call-to-action .cta-content2 h2 .highlight {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 15px;
  }

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

@media (max-width: 768px) {
  .call-to-action .cta-features {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .call-to-action .cta-features .feature-item {
    justify-content: center;
    text-align: center;
    padding: 0;
  }

  .call-to-action .cta-features .feature-item::after {
    display: none;
  }

  .call-to-action .cta-features .feature-item:last-child {
    margin-bottom: 0;
  }
}

.call-to-action .cta-img-mobile {
  display: none;
}

@media (max-width: 768px) {
  .call-to-action .cta-img-desktop {
    display: none;
  }

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

/*--------------------------------------------------------------
# Fleet Section - FLOTĂ
--------------------------------------------------------------*/
.fleet-gallery {
  padding: 75px 0;
}

.fleet-intro {
  position: relative;
  background: var(--accent-color);
  border-radius: 15px;
  padding: 3rem 5rem;
  overflow: visible;
}

.fleet-intro > .container-fluid {
  position: relative;
  z-index: 2;
}

.fleet-intro .fleet-eyebrow {
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 5px;
}

.fleet-intro .fleet-title {
  font-weight: 900;
  line-height: 1;
  font-size: 40px;
  color: var(--contrast-color);
  margin-bottom: 1rem;
}

.fleet-intro .fleet-lead {
  color: var(--default-color);
  font-size: 17px;
  line-height: 1.75;
  max-width: 800px;
}

.fleet-intro .fleet-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
}

.fleet-intro .fleet-stats .num {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--contrast-color);
  line-height: 1;
  margin-bottom: 5px;
}

.fleet-intro .fleet-stats .lbl {
  color: var(--default-color);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
}

.fleet-intro .row {
  align-items: center;
}

.fleet-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-truck {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

.fleet-brands {
  position: relative;
  padding: 0;
  margin-top: 60px;
  text-align: center;
}

.fleet-brands .fleet-eyebrow {
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 5px;
}

.fleet-brands .fleet-title {
  font-weight: 900;
  line-height: 1;
  font-size: 40px;
  color: var(--contrast-color);
  margin-bottom: 1rem;
}

.fleet-brands .fleet-lead {
  color: var(--default-color);
  font-size: 17px;
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

/* Grila cu mărci */
.fleet-brands .brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.fleet-brands .brand-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.fleet-brands .brand-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.15);
}

.fleet-brands .brand-logo {
  height: 75px;
  width: auto;
  max-width: 140px;
  object-fit: contain;

  filter: brightness(0) invert(1);
  opacity: 0.95;
}

@media (max-width: 768px) {
  .fleet-intro {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .fleet-intro .row {
    text-align: center;
  }

  .fleet-intro .fleet-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .fleet-intro .fleet-stats {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .fleet-image {
    margin-top: 2rem;
  }

  .fleet-truck {
    height: 350px;
  }

  .fleet-brands {
    text-align: center;
  }

  .fleet-brands .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .fleet-brands .brand-card {
    padding: 1.25rem 1rem;
  }

  .fleet-brands .fleet-title,
  .fleet-intro .fleet-title {
    font-size: 35px;
  }
}

.fleet-cards{
  margin: 60px 0;
}

.fleet-cards .fleet-card {
  background: var(--default-color);
  border-radius: 15px;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fleet-cards .fleet-card .ico {
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  font-size: 2rem;
  margin-bottom: 1.1rem;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.fleet-cards .fleet-card h5 {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

.fleet-cards .fleet-card .sub {
  color: var(--contrast-color);
  font-size: 17px;
  margin-bottom: 2.5rem;
}

.fleet-cards .fleet-feat {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: auto;
}

.fleet-cards .fleet-feat li {
  --pill-icon-size: 1.25rem;   
  --pill-text-size: 16px;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .85rem;
  font-size: var(--pill-text-size);
  color: var(--contrast-color);
  background: var(--accent-color);
  border-radius: 999px;
}

.fleet-cards .fleet-feat li i {
  color: var(--default-color);
  font-size: var(--pill-icon-size);
  line-height: 1;
  flex-shrink: 0;
}

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

  .fleet-cards .fleet-card .sub {
    margin-left: auto;
    margin-right: auto;
  }

  .fleet-cards .fleet-feat {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .fleet-cards .fleet-feat li {
    width: 100%;
    max-width: none;
    justify-content: flex-start;
    text-align: left;
  }
}

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

.bento2-item.tall   { grid-row: span 2; }
.bento2-item.wide   { grid-column: span 2; }
.bento2-item.big    { grid-row: span 2; grid-column: span 2; }
.bento2-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  transform-origin: center center;
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  will-change: transform;
}

.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-2);
  transform: scale(1.25);
}

.bento2-item:hover .bento2-overlay { 
  opacity: 1; 
}

@media (max-width: 992px) {
  .bento2-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .bento2-item.tall {
    grid-row: span 2;
    height: 500px;
  }

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

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

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

  .bento2-item {
    height: 250px;
  }

  .bento2-item.tall {
    height: 500px;
  }

  .bento2-item.wide,
  .bento2-item.big {
    height: 280px;
  }

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

.bento2-item.banner {
  grid-column: 1 / -1;
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  width: 90%;
  margin: 60px auto 0;
  box-shadow: 0 0 15px color-mix(in srgb, var(--default-color), transparent 75%);
}

.bento2-item.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bento2-banner-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(10, 14, 20, 0.92) 0%, rgba(10, 14, 20, 0.7) 40%, rgba(10, 14, 20, 0) 100%);
  z-index: 1;
}

.bento2-banner-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2rem;
  text-align: center;
}

.bento2-banner-text h3 {
  color: var(--accent-color);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.2;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .bento2-item.banner {
    width: 100%;
    height: 200px;
    margin: 60px 0 0;
    border-radius: 15px;
  }

  .bento2-item.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/*--------------------------------------------------------------
# Hire Details Section - CARIERĂ
--------------------------------------------------------------*/
.career-modern {
  padding: 75px 0;
}

.career-header {
  text-align: center;
  margin-bottom: 45px;
}

.career-header h2 {
  font-size: 2rem;
  color: var(--default2-color);
  font-weight: 900;
  line-height: 1.2;
}

.info-inner {
  display: flex;
  align-items: center;
  width: 100%;
  transition: transform 0.25s ease;
}

.info-item:hover .info-inner {
  transform: translate(-5px);
}

.quick-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center; 
  margin-bottom: 60px;
  width: 100%;            
}

.quick-info-grid > div { 
  flex: 1 1 calc(33.333% - 20px); 
  min-width: 280px;  
  max-width: calc(33.333% - 20px); 
}

@media (max-width: 950px) {
  .quick-info-grid > div {
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .quick-info-grid > div {
    max-width: 100%;
  }
}

.info-item {
  background: var(--contrast-color);
  padding: 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.075);
  border-bottom: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
}

.info-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item span {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  line-height: 1.5;
}

.info-item span strong {
  font-size: 15px;
  color: var(--default-color);
  font-weight: 800;
  letter-spacing: 0.75px;
  display: block;
  margin-bottom: 2px;
}

.main-content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.image-wrapper {
  background: url("../img/hire/grupo-magda-hire-01.webp") center/cover no-repeat;
  border-radius: 15px;
}

.side-image {
  width: 100%;
  height: 100%;
  flex: 1;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

.details-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.details-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.075);
  transition: all 0.3s ease;
}

.details-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-requirements h3 { color: var(--default-color); }
.card-salary h3 { color: var(--default-color); }

.styled-list {
  list-style: none;
  padding: 0;
}

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

.styled-list li {
  display: flex; 
  align-items: center; 
  gap: 12px; 
  padding: 10px 0;
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
}

.styled-list li i {
  color: var(--accent-color);
  font-size: 1.3rem; 
  flex-shrink: 0;
}

.styled-list li span {
  line-height: 1.4;
}

@media (max-width: 991px) {
.main-content-split { 
   grid-template-columns: 1fr; 
}
  
.image-wrapper { 
   height: 375px; 
  }
}

@media (max-width: 576px) {
.career-header h2 { 
   font-size: 1.5rem; 
}
}

.cta-wrapper-centered {
  margin: 60px 0 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.cta-card-premium {
  position: relative;
  width: 100%;
  max-width: 800px;
  background: var(--accent-color);
  padding: 30px 50px;
  border-radius: 100px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 25px;
  text-align: center;
  overflow: hidden;
}

.cta-text-group h3 {
  color: var(--contrast-color);
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0;
  letter-spacing: 0.5px;
}

.cta-text-group p {
  color: var(--contrast-color);
  margin: 5px 0 0 0;
  font-size: 1.1rem;
}

.cta-text-group {
  text-align: center;
}

.cta-action-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.premium-button {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--default-color);
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  white-space: nowrap;
  width: auto;
}

.icon-circle {
  width: 44px;
  height: 44px;
  background: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 1.1rem;
}

.btn-text {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.premium-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.premium-button:hover .icon-circle {
  animation: phone-vibrate 0.3s infinite;
}

@keyframes phone-vibrate {
  0% { transform: rotate(0); }
  25% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
  100% { transform: rotate(0); }
}

@media (max-width: 768px) {

  .cta-wrapper-centered {
    justify-content: center;
    align-items: center;
  }

  .cta-card-premium {
    padding: 25px 20px;
    border-radius: 30px;
    align-items: center;
    text-align: center;
  }

  .cta-action-group {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .premium-button {
    width: auto;
    display: inline-flex;
  }
}

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

@media (max-width: 768px) {
  .banner-promo-section {
    background-image: url('../img/banner/grupo-magda-banner-mobile-02.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.5) 75%, 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: 600px;
}

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

.big-number {
    font-size: 100px;
    font-weight: 900;
    font-family: var(--banner-font);
    color: var(--accent-color-2);
    line-height: 1;
    position: relative;
}

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

.highlight-line {
    font-size: 25px;
    font-weight: 900; 
    color: var(--accent-color-2);
    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(--contrast-color);
}

.logo-trust-badge {
    display: flex;
    align-items: center; 
    gap: 25px; 
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid;
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0)) 1; 
}

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

.trust-text {
    font-family: var(--banner-font);
    font-size: 15px;
    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: 0px;
    }

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

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

    .text-content h2 {
        font-size: 25px;
        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: 15px;
        border-top: 1px solid;
        border-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0)) 1;
    }

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

/*--------------------------------------------------------------
# Contact Section - CONTACT
--------------------------------------------------------------*/
.contact-section {
   padding: 75px 0;
}

.contact-card {
   background: color-mix(in srgb, var(--default-color), transparent 90%);
   border-radius: 15px;
   overflow: hidden;
   box-shadow: 0 16px 40px rgba(0, 0, 0, 0.075);
   transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.card-title {
   font-size: 20px;
   font-weight: 800;
   margin-bottom: 2px;
}

.card-subtitle-text {
   font-size: 16px;
   color: var(--default-color);
   margin-bottom: 22px;
}


/* ---------- Card 1: Date de contact ---------- */
.info-card-header {
   padding: 20px 25px;
   background: var(--accent-color);
   text-align: center;
}

.info-card-header .card-title { 
   color: var(--default-color);
   font-size: 20px;
   font-weight: 800; 
   margin: 0;
}

.info-row {
   display: flex;
   gap: 14px;
   align-items: flex-start;
}

.info-row + .info-row { 
   margin-top: 25px; 
}

.info-icon {
   width: 45px;
   height: 45px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   flex-shrink: 0;
   background: var(--default-color);
   color: var(--accent-color);
}

.info-value {
   font-size: 15px;
   font-weight: 500;
   margin: 0;
   line-height: 1.5;
}

.info-value a {
   color: inherit;
   text-decoration: none;
}

.info-value a:hover { 
   color: var(--accent-color);
   text-decoration: underline; 
}

/* ---------- Card 2: Acțiuni rapide ---------- */
.action-buttons {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 18px 14px;
}

.action-btn2 {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px;
   text-decoration: none;
}

.action-btn2 .circle {
   width: 55px;
   height: 55px;
   border-radius: 50%;
   background: var(--default-color);
   color: var(--contrast-color);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   transition: background 0.25s ease, transform 0.25s ease;
}

.action-btn2 span {
   font-size: 15px;
   font-weight: 600;
   color: var(--accent-color);
   transition: color 0.25s ease;
}

.action-btn2:hover .circle {
   background: var(--accent-color);
   color: var(--default-color);
   transform: translateY(-5px);
}

/* ---------- Card 3: Social media ---------- */
.social-squares {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-square {
  width: 125px;
  height: 125px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
  text-decoration: none;
  color: var(--contrast-color);
  font-size: 17px;
  font-weight: 500;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.social-square i { 
   font-size: 40px;
}

.social-square.facebook { 
   background: #185FA5;
}

.social-square.tiktok { 
   background: #000000; 
}

.social-square:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

/* ---------- Rândul 2 / Card Angajări ---------- */
.contact-row {
  margin-top: 60px;
}

.hire-row {
  display: flex;
  gap: 0px;
  background: var(--contrast-color);
  border-radius: 15px;
  padding: 15px 20px;
}

.hire-row + .hire-row {
  margin-top: 15px;
}

.hire-row .info-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 0px;
  text-align: left;
}

.hire-number {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--default-color);
  text-decoration: none;
}

.hire-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.hire-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hire-btn.call {
  background: #34A853;
}

.hire-btn.call:hover {
  background: var(--default-color);
  color: var(--contrast-color);
}

.hire-btn.wa {
  background: #25D366;
}

.hire-btn.wa:hover {
  background: var(--default-color);
  color: var(--contrast-color);
}

/* ---------- Rândul 2 / Card Hartă ---------- */
.map-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.map-stage {
  flex: 1;
  min-height: 320px;
  position: relative;
}

.map-stage iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 24px;
}

.map-consent .info-icon {
  width: 50px;
  height: 50px;
  font-size: 25px;
  margin-bottom: 14px;
}

.map-consent h3 {
  font-size: 20px;
  color: var(--default-color);
  font-weight: 600;
  margin: 0 0 8px;
}

.map-consent p {
  font-size: 15px;
  color: var(--default-color);
  max-width: 450px;
  line-height: 1.75;
  margin: 0 0 18px;
}

.map-consent a {
  color: var(--default-color);
  font-weight: 500;
  text-decoration: underline;
}

.btn-load-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--default-color);
  color: var(--default-color);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn-load-map:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.map-privacy-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 15px 75px;
  background: var(--accent-color);
  font-size: 17px;
  font-weight: 600;
  color: var(--default-color);
}

.map-privacy-bar i {
  color: var(--default-color);
  font-size: 25px;
}

.map-privacy-bar .btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: var(--contrast-color);
  background: var(--default-color);
}

.map-privacy-bar .btn-maps {
  margin-left: auto;
}

.map-privacy-bar .btn-maps:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .map-privacy-bar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    text-align: center;
    gap: 0px;
  }

  .map-privacy-bar i {
    font-size: 30px;
  }

  .map-privacy-bar span {
    display: block;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .map-privacy-bar .btn-maps {
    margin-left: 0;
    margin-top: 10px;
    width: fit-content;
  }
}

@media (max-width: 768px) {
  .card-title {
    font-size: 18px;
  }

  .card-subtitle-text {
    font-size: 15px;
  }

  .info-card-header {
    padding: 18px 20px;
  }

  .info-row {
    gap: 12px;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .info-value {
    font-size: 14px;
  }

  .action-buttons {
    gap: 16px 12px;
  }

  .action-btn2 .circle {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .action-btn2 span {
    font-size: 14px;
  }

  .social-squares {
    gap: 10px;
  }

  .social-square {
    width: calc(50% - 5px);
    height: 110px;
    font-size: 15px;
  }

  .social-square i {
    font-size: 34px;
  }

  .contact-row {
    margin-top: 60px;
  }

  /* aceeași distanță ca între cardurile de sus */
  .contact-row .col-12 + .col-12 {
    margin-top: 24px;
  }

  .hire-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .hire-row .info-label {
    text-align: center;
  }

  .hire-number {
    text-align: center;
  }

  .hire-actions {
    margin-left: 0;
    justify-content: center;
    width: 100%;
  }

  .map-stage {
    min-height: 325px;
  }

  .map-consent {
    padding: 15px;
  }

  .map-consent h3 {
    font-size: 18px;
  }

  .map-consent p {
    font-size: 14px;
    line-height: 1.5;
  }

  .btn-load-map {
    padding: 10px 16px;
    font-size: 14px;
  }
}

.contact-final-card {
   background: var(--accent-color);
   border-radius: 15px;
   overflow: hidden;
   width: 1000px;
   display: flex;
   align-items: stretch;
   margin: 0 auto;
   margin-top: 60px;
}

.contact-final-image {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

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

.contact-final-curve {
  position: absolute;
  right: -1px;
  top: 0;
  height: 100%;
  width: 80px;
  z-index: 3;
  pointer-events: none;
}

.contact-final-curve path {
  fill: var(--accent-color);
}

.contact-final-content {
   flex: 1;
   padding: 15px;
   display: flex;
   flex-direction: column;
   justify-content: center;
}

.contact-final-badge {
   display: inline-block;
   align-self: flex-start;
   color: var(--contrast-color);
   font-size: 12px;
   font-weight: 600;
   letter-spacing: 5px;
   text-transform: uppercase;
   margin-bottom: 0px;
}

.contact-final-card h3 {
   margin: 0 0 15px;
   font-size: 25px;
   letter-spacing: 0px;
   color: var(--contrast-color);
   font-weight: 800;
}

.contact-final-card p {
   margin-bottom: 10px;
   font-size: 16px;
   color: var(--default-color);
   line-height: 1.75;
}

.contact-final-card p:last-child {
   margin-bottom: 0;
}

.contact-final-card p span {
   font-weight: 600;
}

@media (max-width: 767px) {
  .contact-final-card {
    width: 100%;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-final-image {
    width: 100%;
    min-height: 250px;
    order: 1;
  }

  .contact-final-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .contact-final-curve {
    display: none;
  }

  .contact-final-content {
    width: 100%;
    order: 2;
    padding: 30px 20px;
    align-items: center;
    text-align: center;
  }

  .contact-final-badge {
    align-self: center;
    text-align: center;
    margin-bottom: 5px;
    letter-spacing: 3px;
  }

  .contact-final-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    text-align: center;
  }

  .contact-final-card p {
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
  }
}


/*--------------------------------------------------------------
# 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: 45px;
  z-index: 9999;
}

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

.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: 1px solid rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
  }

  .lang-widget .current-lang:hover {
    background: #ffffff;
    transform: scale(1.05);
    border-color: rgba(0, 0, 0, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  }

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

.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: 45px;
  width: 45px;
  background: #edebed;
  border: 1px solid rgba(0, 0, 0, 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(--default-color);
    box-shadow: -2px 4px 10px rgba(0, 0, 0, 0.25);
    background-color: #fff;
  }
}

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


